/* Helen Monroe — shared stylesheet (site v2, 2026-08-25) */
:root {
  --cream: #faf6ef;
  --cream-2: #f3ecdf;
  --white: #fffdf8;
  --ink: #3a3a35;
  --ink-soft: #6b6a62;
  --terracotta: #c4744d;
  --sage: #8a9a83;
  --sage-dark: #5f6f5a;
  --en-green: #5f6f4a;
  --en-ocre: #c49a5e;
  --meno-plum: #6e4a5e;
  --meno-gold: #c6a15b;
  --line: rgba(58,58,53,0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
img { display: block; max-width: 100%; }
a { color: var(--sage-dark); }

/* ---------- Header ---------- */
header {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  position: sticky; top: 0; z-index: 50;
}
.nav { display: flex; justify-content: space-between; align-items: center; }
.brand { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; color: var(--ink); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }

/* ---------- Hero (home) ---------- */
.hero { padding: 104px 0 84px; text-align: center; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.hero .eyebrow { font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 26px; }
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 4.4rem); font-weight: 500; line-height: 1.08; margin-bottom: 30px; letter-spacing: -0.01em; }
.hero h1 em { font-style: italic; color: var(--sage-dark); }
.manifesto { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.35rem, 3vw, 1.85rem); color: var(--ink); line-height: 1.6; margin-bottom: 30px; }
.manifesto span { display: block; }
.manifesto .dot { color: var(--terracotta); padding: 0 8px; font-style: normal; }
.hero p.sub { font-size: 1.06rem; color: var(--ink-soft); max-width: 600px; margin: 0 auto 40px; }
.btn {
  display: inline-block; padding: 15px 38px; background: var(--terracotta); color: #fff;
  text-decoration: none; border-radius: 999px; font-size: 0.9rem; letter-spacing: 0.06em;
  transition: background .2s, transform .2s;
}
.btn:hover { background: #a85f3d; transform: translateY(-1px); }
.btn.secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn.secondary:hover { background: var(--cream-2); }
.hero .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (about / free guide) ---------- */
.page-hero { padding: 84px 0 60px; text-align: center; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.page-hero .eyebrow { font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 500; line-height: 1.12; margin-bottom: 16px; }
.page-hero p.sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 600px; margin: 0 auto; }

/* ---------- Brand strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; background: var(--white); }
.strip .inner { display: flex; justify-content: center; align-items: center; gap: 26px; flex-wrap: wrap; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; color: var(--ink-soft); text-align: center; }
.strip .inner .star { color: var(--terracotta); font-style: normal; }

/* ---------- Books (home) ---------- */
.books { padding: 96px 0 40px; background: var(--white); }
.section-title { text-align: center; font-size: 2.4rem; font-weight: 500; margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--ink-soft); max-width: 560px; margin: 0 auto 72px; font-size: 1rem; }

.book-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 0 0 104px; }
.book-block.flip .book-visual { order: 1; }
.book-block.flip .book-copy { order: 2; }
.book-visual .banner {
  border-radius: 10px; overflow: hidden; box-shadow: 0 22px 50px rgba(58,58,53,0.16);
  aspect-ratio: 9/5; background: var(--cream-2); display: block; cursor: zoom-in; position: relative;
}
.book-visual .banner img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.book-visual .banner:hover img { transform: scale(1.02); }
.book-visual .banner .zoom-hint {
  position: absolute; right: 14px; bottom: 14px; background: rgba(58,58,53,0.72); color: #fff;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px;
  opacity: 0; transition: opacity .25s;
}
.book-visual .banner:hover .zoom-hint { opacity: 1; }
.book-visual .cover-note { display: flex; align-items: center; gap: 14px; margin-top: 18px; cursor: zoom-in; }
.book-visual .cover-note img { width: 54px; border-radius: 4px; box-shadow: 0 6px 16px rgba(58,58,53,0.18); transition: transform .25s; }
.book-visual .cover-note:hover img { transform: scale(1.06); }
.book-visual .cover-note span { font-size: 0.82rem; color: var(--ink-soft); }

.book-copy .eyebrow { font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 14px; }
.book-copy h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 500; line-height: 1.2; margin-bottom: 20px; }
.book-copy .what { color: var(--ink); margin-bottom: 10px; }
.book-copy .who { color: var(--ink-soft); margin-bottom: 18px; font-size: 0.98rem; }
.book-copy .inside-list { list-style: none; margin: 0 0 18px; }
.book-copy .inside-list li { padding-left: 26px; position: relative; color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 8px; }
.book-copy .inside-list li::before { content: "✳"; position: absolute; left: 0; color: var(--terracotta); font-size: 0.85rem; }
.book-copy .rhythm { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; border-left: 2px solid var(--line); padding-left: 16px; margin-bottom: 18px; }
.book-copy .result { font-family: 'Cormorant Garamond', serif; font-size: 1.28rem; font-style: italic; color: var(--ink); margin-bottom: 22px; }
.book-copy .buy { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.book-copy .price { font-size: 0.9rem; color: var(--ink-soft); }
.book-copy .price strong { color: var(--ink); font-weight: 500; }
.buy-btn {
  display: inline-block; padding: 13px 30px; color: #fff; text-decoration: none; border-radius: 999px;
  font-size: 0.88rem; letter-spacing: 0.06em; transition: transform .2s, opacity .2s;
}
.buy-btn:hover { transform: translateY(-1px); opacity: 0.92; }
.book-empty .buy-btn { background: var(--en-green); }
.book-empty .eyebrow { color: var(--en-ocre); }
.book-empty .inside-list li::before { color: var(--en-ocre); }
.book-meno .buy-btn { background: var(--meno-plum); }
.book-meno .eyebrow { color: var(--meno-plum); }
.book-meno .inside-list li::before { color: var(--meno-gold); }

/* ---------- What's inside (spreads reais) ---------- */
.inside { margin-top: 30px; }
.inside h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; }
.inside .inside-sub { font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 16px; }
.inside-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.inside-grid figure { margin: 0; cursor: zoom-in; }
.inside-grid img { width: 100%; border-radius: 6px; box-shadow: 0 8px 22px rgba(58,58,53,0.14); border: 1px solid var(--line); transition: transform .25s; }
.inside-grid figure:hover img { transform: translateY(-3px); }
.inside-grid figcaption { font-size: 0.72rem; color: var(--ink-soft); margin-top: 8px; letter-spacing: 0.02em; }

/* ---------- Teaser About (home) ---------- */
.teaser-about { padding: 96px 0; background: var(--cream); }
.teaser-about .inner { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; max-width: 900px; margin: 0 auto; }
.teaser-about .photo { aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 40px rgba(58,58,53,0.12); }
.teaser-about .photo img { width: 100%; height: 100%; object-fit: cover; }
.teaser-about h2 { font-size: 2.1rem; font-weight: 500; margin-bottom: 14px; }
.teaser-about p { color: var(--ink-soft); margin-bottom: 14px; max-width: 520px; }
.teaser-about .meet { display: inline-block; margin-top: 6px; font-size: 0.92rem; letter-spacing: 0.06em; text-decoration: none; color: var(--terracotta); border-bottom: 1px solid transparent; transition: border-color .2s; }
.teaser-about .meet:hover { border-color: var(--terracotta); }

/* ---------- About page ---------- */
.about-page { padding: 80px 0 110px; background: var(--white); }
.about-page .inner { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; max-width: 960px; margin: 0 auto; }
.about-page .photo { aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 40px rgba(58,58,53,0.12); position: sticky; top: 110px; }
.about-page .photo img { width: 100%; height: 100%; object-fit: cover; }
.about-page .bio p { color: var(--ink-soft); margin-bottom: 18px; }
.about-page .bio p.dropcap::first-letter { font-family: 'Cormorant Garamond', serif; font-size: 3.1rem; float: left; line-height: 0.9; padding-right: 10px; padding-top: 4px; color: var(--terracotta); }
.about-page .signature { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.7rem; color: var(--terracotta); margin-top: 10px; }
.about-page .cta-line { margin-top: 34px; }
.about-page .note { margin-top: 26px; font-size: 0.85rem; color: var(--ink-soft); font-style: italic; }

/* ---------- Free guide page ---------- */
.free-page { padding: 70px 0 110px; background: var(--white); }
.free-page .card { max-width: 620px; margin: 0 auto; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 46px 46px 40px; text-align: center; box-shadow: 0 18px 44px rgba(58,58,53,0.08); }
.free-page .card .gift { font-size: 2rem; margin-bottom: 8px; }
.free-page .card h2 { font-size: 1.9rem; font-weight: 500; margin-bottom: 12px; }
.free-page .card > p { color: var(--ink-soft); margin-bottom: 24px; font-size: 0.98rem; }
.free-page .what { list-style: none; text-align: left; margin: 0 auto 28px; max-width: 400px; }
.free-page .what li { padding-left: 26px; position: relative; color: var(--ink); font-size: 0.95rem; margin-bottom: 10px; }
.free-page .what li::before { content: "✳"; position: absolute; left: 0; color: var(--terracotta); }
.free-page .form-wrap { background: rgba(255,255,255,0.7); border-radius: 12px; padding: 20px; border: 1px solid var(--line); }
.free-page .fine { margin-top: 18px; font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(28,26,24,0.92); z-index: 200;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-height: 78vh; max-width: 92vw; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox figcaption { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-top: 16px; font-style: italic; }
.lb-btn {
  position: absolute; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.25);
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.lb-btn:hover { background: rgba(255,255,255,0.22); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.12em; }

/* ---------- CTA guide (home, antes do footer) ---------- */
.cta-guide { padding: 88px 0; background: var(--sage); color: #fff; text-align: center; }
.cta-guide h2 { font-size: 2.3rem; font-weight: 500; margin-bottom: 14px; color: #fff; }
.cta-guide p { color: rgba(255,255,255,0.88); max-width: 520px; margin: 0 auto 32px; font-size: 1rem; }
.cta-guide .btn { background: var(--terracotta); }
.cta-guide .btn:hover { background: #a85f3d; }
.cta-guide .fine { margin-top: 16px; color: rgba(255,255,255,0.7); font-size: 0.8rem; }

/* ---------- Footer ---------- */
footer { padding: 44px 0 36px; background: var(--ink); color: rgba(255,255,255,0.6); text-align: center; font-size: 0.8rem; letter-spacing: 0.05em; }
footer .socials { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; }
footer .socials a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color .2s; }
footer .socials a:hover { color: #fff; }
footer .disclaimer { max-width: 640px; margin: 14px auto 0; color: rgba(255,255,255,0.45); font-size: 0.74rem; line-height: 1.6; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .book-block { grid-template-columns: 1fr; gap: 36px; }
  .book-block.flip .book-visual { order: 0; }
  .book-block.flip .book-copy { order: 1; }
  .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-about .inner { grid-template-columns: 1fr; text-align: center; }
  .teaser-about .photo { max-width: 280px; margin: 0 auto; }
  .about-page .inner { grid-template-columns: 1fr; }
  .about-page .photo { position: static; max-width: 320px; margin: 0 auto; }
  .nav-links { display: none; }
  .hero { padding: 76px 0 60px; }
  .books { padding: 72px 0 20px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}
