/* ============================================================
   O INÍCIO DA ERA DOURADA — Landing Page
   Palette: deep cosmic black + warm browns + aged + main gold
   ============================================================ */

:root {
  /* Palette */
  --ink-0: #040608;          /* deep black */
  --ink-1: #0a0805;
  --ink-2: #1D150E;          /* warm black */
  --ink-3: #2D190F;          /* cosmic brown */
  --ink-4: #42301C;          /* dark gold brown */
  --gold-1: #7F6038;         /* aged gold */
  --gold-2: #C3AC6D;         /* main gold */
  --gold-3: #E4CE92;         /* gold highlight */
  --cream-1: #FFFCEE;        /* soft white */
  --cream-2: #FFFFF4;        /* luminous off-white */
  --cream-mute: rgba(255, 252, 238, .68);
  --cream-faint: rgba(255, 252, 238, .42);
  --gold-faint: rgba(195, 172, 109, .14);
  --gold-line: rgba(195, 172, 109, .28);

  /* Type */
  --f-display: "Cinzel", "Cormorant Garamond", "Times New Roman", serif;
  --f-serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --f-sans: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --space-section: clamp(80px, 11vw, 160px);
  --radius: 4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink-0);
  color: var(--cream-1);
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold-2); color: var(--ink-0); }

/* ============================================================
   AMBIENT BACKGROUND
   ============================================================ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(127, 96, 56, .18), transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(45, 25, 15, .55), transparent 55%),
    linear-gradient(180deg, #040608 0%, #0a0604 50%, #040608 100%);
}
.ambient__stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,252,238,.5), transparent 50%),
    radial-gradient(1px 1px at 27% 62%, rgba(255,252,238,.35), transparent 50%),
    radial-gradient(1px 1px at 44% 22%, rgba(255,252,238,.55), transparent 50%),
    radial-gradient(1.2px 1.2px at 67% 80%, rgba(255,252,238,.45), transparent 50%),
    radial-gradient(1px 1px at 81% 28%, rgba(255,252,238,.4), transparent 50%),
    radial-gradient(1px 1px at 93% 71%, rgba(255,252,238,.5), transparent 50%),
    radial-gradient(1px 1px at 9% 84%, rgba(255,252,238,.35), transparent 50%),
    radial-gradient(1px 1px at 55% 47%, rgba(255,252,238,.3), transparent 50%),
    radial-gradient(1px 1px at 36% 91%, rgba(255,252,238,.4), transparent 50%),
    radial-gradient(1px 1px at 73% 12%, rgba(255,252,238,.55), transparent 50%);
  background-size: 100% 100%;
  opacity: .8;
  animation: starShimmer 9s ease-in-out infinite alternate;
}
@keyframes starShimmer { 0% { opacity: .55; } 100% { opacity: .95; } }

.ambient__glow {
  position: absolute;
  width: 80vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.ambient__glow--top { top: -30vw; left: -15vw; background: radial-gradient(circle, rgba(195,172,109,.22), transparent 65%); }
.ambient__glow--bottom { bottom: -40vw; right: -20vw; background: radial-gradient(circle, rgba(127,96,56,.28), transparent 65%); }

.ambient__grain {
  position: absolute; inset: 0;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 .95  0 0 0 0 .8  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
  position: relative;
}

.section__head { margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--center { text-align: center; }

/* ============================================================
   TYPE
   ============================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 28px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-line);
}
.kicker--center { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 36px;
}
.eyebrow__line { width: 36px; height: 1px; background: var(--gold-line); }

.h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -.012em;
  color: var(--cream-2);
  margin: 0 0 28px;
  text-wrap: balance;
}
.h2 em {
  font-style: italic;
  color: var(--gold-2);
  font-family: var(--f-serif);
}
.h2--center { text-align: center; }

h3 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--cream-2);
  margin: 0 0 8px;
}

p { color: var(--cream-mute); margin: 0 0 1em; }
p strong, p em { color: var(--cream-2); font-style: normal; font-weight: 500; }
p em { color: var(--gold-2); font-family: var(--f-serif); font-style: italic; font-weight: 400; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--cream-1);
  --btn-border: var(--gold-line);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .25s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:hover svg { transform: translateX(3px); }

.btn--gold {
  --btn-bg: linear-gradient(180deg, var(--gold-3) 0%, var(--gold-2) 45%, var(--gold-1) 100%);
  --btn-fg: var(--ink-0);
  --btn-border: var(--gold-2);
  background: var(--btn-bg);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 10px 30px -10px rgba(195,172,109,.55);
}
.btn--gold:hover { box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 14px 40px -10px rgba(195,172,109,.75); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--cream-1);
  --btn-border: rgba(195,172,109,.55);
}
.btn--outline:hover {
  --btn-bg: rgba(195,172,109,.08);
  --btn-border: var(--gold-2);
  --btn-fg: var(--cream-2);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-border: transparent;
  --btn-fg: var(--cream-mute);
  padding: 10px 18px;
}
.btn--ghost:hover { --btn-fg: var(--gold-2); }

.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn--lg { padding: 20px 32px; font-size: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(4, 6, 8, .55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(195,172,109,.1);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.nav__mark { width: 22px; height: 22px; color: var(--gold-2); }
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--cream-mute);
  transition: color .25s ease;
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover { color: var(--gold-2); }
.nav__cta { font-size: 11px !important; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav { padding: 14px 20px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 32px clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.hero__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.018em;
  color: var(--cream-2);
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 400;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  max-width: 540px;
  color: var(--cream-mute);
  margin-bottom: 40px;
}
.hero__sub strong { color: var(--cream-2); font-weight: 500; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero__note {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin: 0;
}

.hero__cover {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__cover img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: min(100%, 480px);
  box-shadow:
    0 30px 60px rgba(0,0,0,.7),
    0 12px 24px rgba(0,0,0,.5),
    0 0 0 1px rgba(195,172,109,.18);
  transform: perspective(1600px) rotateY(-3deg);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.hero__cover:hover img { transform: perspective(1600px) rotateY(0deg); }

.hero__cover-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 60%, rgba(195,172,109,.4), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(127,96,56,.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: .6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

.hero__cover-cap {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-2);
  z-index: 3;
}
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-2); }

.hero__byline {
  max-width: var(--container);
  margin: clamp(60px, 8vw, 100px) auto 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--gold-line);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.hero__byline strong {
  color: var(--cream-2);
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: .26em;
}

@media (max-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero__cover { order: -1; margin-bottom: 20px; }
  .hero__cover img { width: min(75%, 320px); transform: none; }
  .hero__cover:hover img { transform: none; }
}

/* ============================================================
   IDENTIFICATION
   ============================================================ */
.identify { text-align: center; }
.identify .kicker { display: inline-flex; }
.identify__questions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 48px 0 56px;
  padding: 40px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  position: relative;
}
.identify__questions::before,
.identify__questions::after {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold-2);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold-2);
}
.identify__questions::before { top: -3px; }
.identify__questions::after { bottom: -3px; }

.identify__questions p {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  color: var(--cream-2);
  margin: 0;
}
.identify__questions p em {
  color: var(--gold-2);
  font-style: italic;
}

.identify__body {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.identify__body p { font-size: 17px; }
.identify__pull {
  margin-top: 24px !important;
  font-family: var(--f-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--gold-2) !important;
  text-align: center;
}

/* ============================================================
   ABOUT THE BOOK
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__media-frame {
  position: relative;
  padding: 26px;
  background: linear-gradient(160deg, rgba(195,172,109,.08), rgba(45,25,15,.4));
  border: 1px solid var(--gold-line);
}
.about__media-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(195,172,109,.18);
  pointer-events: none;
}
.about__media-frame img {
  width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}

.about__meta {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gold-line);
}
.about__meta dl {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 0;
}
.about__meta dt {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 6px;
}
.about__meta dd {
  margin: 0;
  font-family: var(--f-serif);
  font-size: 15px;
  color: var(--cream-2);
  line-height: 1.3;
}

.about__lede {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  color: var(--cream-2);
  margin-bottom: 24px;
}
.about__lede em { color: var(--gold-2); font-style: italic; }

.about__themes {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about__themes li {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid var(--gold-line);
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-1);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.about__themes li:hover {
  background: rgba(195,172,109,.08);
  color: var(--gold-2);
  border-color: var(--gold-2);
}

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   FOR WHOM (cards)
   ============================================================ */
.forwhom__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
}
.card {
  background: linear-gradient(160deg, rgba(29,21,14,.4), rgba(4,6,8,.6));
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 200px;
  transition: background .35s ease;
  position: relative;
}
.card:hover { background: linear-gradient(160deg, rgba(66,48,28,.4), rgba(29,21,14,.6)); }
.card__num {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .22em;
  color: var(--gold-2);
}
.card p {
  font-family: var(--f-serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--cream-2);
  margin: 0;
  font-weight: 400;
}
.card--accent {
  background: linear-gradient(160deg, rgba(127,96,56,.25), rgba(66,48,28,.4));
  grid-column: 1 / -1;
}
.card--accent p { font-size: 22px; color: var(--cream-2); }
.card--accent .card__num { color: var(--gold-3); }

@media (max-width: 880px) {
  .forwhom__grid { grid-template-columns: 1fr 1fr; }
  .card { padding: 28px 22px; min-height: 160px; }
  .card p { font-size: 17px; }
}
@media (max-width: 540px) {
  .forwhom__grid { grid-template-columns: 1fr; }
  .card--accent { grid-column: auto; }
}

/* ============================================================
   WHAT YOU'LL FIND
   ============================================================ */
.find__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: find;
}
.find__list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gold-line);
  align-items: start;
}
.find__list li:first-child { border-top: 1px solid var(--gold-line); }

.find__index {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-2);
  letter-spacing: .04em;
  padding-top: 4px;
}

.find__list h3 {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--cream-2);
  margin: 0 0 8px;
  line-height: 1.25;
  letter-spacing: -.005em;
}
.find__list p { margin: 0; font-size: 16px; }

@media (max-width: 600px) {
  .find__list li { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================================
   IMPACT QUOTE
   ============================================================ */
.impact {
  position: relative;
  text-align: center;
  padding-top: clamp(100px, 14vw, 200px);
  padding-bottom: clamp(100px, 14vw, 200px);
}
.impact .container { position: relative; z-index: 2; }
.impact__crescent {
  position: absolute;
  width: clamp(280px, 36vw, 480px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 0;
  opacity: .9;
}
.impact__quote {
  font-family: var(--f-serif);
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.25;
  font-style: italic;
  font-weight: 400;
  color: var(--cream-2);
  max-width: 880px;
  margin: 0 auto 48px;
  position: relative;
  text-wrap: balance;
}
.impact__quote em {
  color: var(--gold-2);
  font-style: italic;
}
.impact__mark {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(60px, 8vw, 100px);
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: -10px;
  opacity: .8;
}

/* ============================================================
   AUTHOR
   ============================================================ */
.author__grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.author__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.author__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.02) brightness(.95);
  border: 1px solid var(--gold-line);
}
.author__photo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 40%, rgba(195,172,109,.25), transparent 55%);
  z-index: -1;
  filter: blur(60px);
}

.author__copy .h2 { margin-bottom: 32px; }
.author__copy p { font-size: 17px; }

.author__sig {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.author__sig-line { display: inline-block; width: 48px; height: 1px; background: var(--gold-2); }

@media (max-width: 880px) {
  .author__grid { grid-template-columns: 1fr; }
  .author__photo { max-width: 360px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  padding: 32px;
  border: 1px solid var(--gold-line);
  background: linear-gradient(160deg, rgba(29,21,14,.4), rgba(4,6,8,.5));
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
}
.review__stars {
  color: var(--gold-2);
  letter-spacing: .15em;
  font-size: 15px;
}
.review__text {
  font-family: var(--f-serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--cream-2);
  margin: 0;
  flex-grow: 1;
  font-style: italic;
}
.review__by {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.reviews__note {
  text-align: center;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin: 40px 0 0;
}

@media (max-width: 880px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(127,96,56,.25), transparent 60%),
    linear-gradient(180deg, transparent, rgba(29,21,14,.5));
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  position: relative;
}
.final__crest {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background: radial-gradient(circle at 50% 50%, var(--gold-2), transparent 70%);
  opacity: .7;
  filter: blur(2px);
}
.final__lede {
  font-family: var(--f-serif);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--cream-mute);
  line-height: 1.5;
}
.final__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.final__note {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  border-top: 1px solid var(--gold-line);
}
.faq__item {
  border-bottom: 1px solid var(--gold-line);
  padding: 4px 0;
}
.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--f-serif);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--cream-2);
  gap: 24px;
  transition: color .25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-2); }
.faq__item summary svg {
  width: 22px;
  height: 22px;
  color: var(--gold-2);
  flex-shrink: 0;
  transition: transform .35s ease;
}
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__item p {
  padding: 0 0 28px;
  max-width: 700px;
  margin: 0;
  color: var(--cream-mute);
  font-size: 16px;
  animation: faqIn .35s ease;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.6));
  padding: 80px 0 32px;
  border-top: 1px solid var(--gold-line);
  margin-top: 60px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer__brand-mark {
  width: 32px; height: 32px; color: var(--gold-2);
  margin-bottom: 20px;
}
.footer__brand-mark svg { width: 100%; height: 100%; }
.footer__title {
  font-family: var(--f-serif);
  font-size: 20px;
  line-height: 1.25;
  color: var(--cream-2);
  margin: 0 0 12px;
}
.footer__author { font-size: 13px; margin: 0 0 4px; }
.footer__author strong { color: var(--cream-2); font-weight: 500; }
.footer__publisher {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0;
}
.footer__col h4 {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-family: var(--f-serif);
  font-size: 16px;
  color: var(--cream-mute);
  transition: color .25s ease;
}
.footer__col a:hover { color: var(--gold-2); }

.footer__base {
  padding-top: 28px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   STICKY MOBILE BUY
   ============================================================ */
.stickybuy {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  background: linear-gradient(180deg, var(--gold-3) 0%, var(--gold-2) 45%, var(--gold-1) 100%);
  color: var(--ink-0);
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 12px 36px rgba(0,0,0,.55);
}
.stickybuy svg { width: 16px; height: 16px; }
@media (max-width: 760px) {
  .stickybuy { display: flex; }
  body { padding-bottom: 72px; }
}

/* ============================================================
   REVEAL ANIMATIONS (subtle)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .hero__copy > *,
  .hero__cover,
  .section__head,
  .identify__questions,
  .about__media,
  .about__copy,
  .card,
  .find__list li,
  .impact__quote,
  .author__photo,
  .author__copy,
  .review,
  .faq__item {
    animation: rise .9s cubic-bezier(.2,.7,.2,1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 50%;
  }
  @keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ============================================================
   TWEAKS THEME SWAPS (controlled via tweaks.jsx)
   ============================================================ */
body[data-theme="warm"] {
  --gold-2: #D4B870;
  --gold-3: #EFD79B;
  --ink-0: #0a0604;
  --ink-2: #2A1C10;
}
body[data-theme="deep"] {
  --gold-2: #B89A5C;
  --ink-0: #020304;
  --ink-2: #0F0A06;
}

body[data-display="serif"] {
  --f-display: "Cormorant Garamond", "Times New Roman", serif;
}
body[data-display="modern"] {
  --f-display: "Outfit", system-ui, sans-serif;
}
