/* ---------- Tokens (paleta oficial Essence by Bella Clean) ---------- */
:root {
  --olive:        #5d4c2e;
  --olive-deep:   #3a2f1c;
  --olive-soft:   #7a6647;
  --cream:        #f5efe2;
  --sand:         #d9d2c5;
  --sand-deep:    #c2b8a4;
  --ink:          #1c1812;
  --paper:        #fbf8f1;
  --line-dark:    rgba(28, 24, 18, 0.10);
  --line-light:   rgba(245, 239, 226, 0.14);
  --gold:         #b9985b;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1240px;
  /* Easing — Emil-style stronger curves */
  --ease:        cubic-bezier(0.23, 1, 0.32, 1);   /* ease-out forte (entradas/UI) */
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);  /* movimentos on-screen */
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);   /* iOS-like (drawers) */
}

*:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin: 0 0 18px;
}
.display, .h-display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin: 0;
  color: var(--olive);
}
.display { font-size: clamp(56px, 11vw, 168px); }
.h-display {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
}
.lede {
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--olive-soft);
  font-weight: 300;
  max-width: 56ch;
  margin: 18px 0 0;
}
.lede.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Inversao para secoes escuras */
.on-dark, .on-dark .display, .on-dark .h-display { color: var(--cream); }
.on-dark .eyebrow { color: var(--sand-deep); }
.on-dark .lede    { color: var(--sand); }

/* ---------- Announcement bar (CASACOR — sazonal) ---------- */
.announce {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 51;
  background: var(--olive-deep);
  color: var(--cream);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(245,239,226,0.08);
}
.announce a {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 24px;
  transition: opacity .25s var(--ease);
}
.announce a:hover { opacity: 0.85; }
.announce-eyebrow {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
}
.announce-text { color: var(--cream); font-weight: 300; }
.announce-arrow { color: var(--gold); transition: transform .25s var(--ease); }
.announce a:hover .announce-arrow { transform: translateX(3px); }
@media (max-width: 700px) {
  .announce a { padding: 8px 14px; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .announce-text { font-size: 11.5px; }
}

/* Quando a barra existe, empurra a nav e o body para baixo */
body:has(.announce) .nav { top: 38px; }
@media (max-width: 700px) {
  body:has(.announce) .nav { top: 60px; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  background: rgba(58, 47, 28, 0.55);
  border-bottom: 1px solid var(--line-light);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(251, 248, 241, 0.85);
  border-bottom-color: var(--line-dark);
}
.brand .logo-dark { display: none; }
.brand .logo-light { display: block; }
.nav.is-scrolled .brand .logo-dark  { display: block; }
.nav.is-scrolled .brand .logo-light { display: none; }
.nav .nav-links a, .nav .nav-cta { color: var(--cream); border-color: var(--sand-deep); }
.nav.is-scrolled .nav-links a { color: var(--olive); }
.nav.is-scrolled .nav-cta { color: var(--olive); border-color: var(--olive); }
.nav .nav-cta:hover { background: var(--cream); color: var(--olive-deep); border-color: var(--cream); }
.nav.is-scrolled .nav-cta:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 72px; width: auto; display: block; }
@media (max-width: 760px) { .brand img { height: 54px; } }

.nav-links {
  display: flex; gap: 28px;
  justify-self: center;
  font-size: 13.5px;
  color: var(--olive);
}
.nav-links a { transition: color .2s var(--ease); opacity: .75; }
.nav-links a:hover { opacity: 1; }

/* CASACOR destaque na nav — vermelho-ocre, fica facil identificar e remover */
.nav-flag {
  color: var(--gold) !important;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 1 !important;
  position: relative;
}
.nav-flag::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.1); }
}
.nav.is-scrolled .nav-flag { color: var(--gold) !important; }

.nav-cta {
  justify-self: end;
  font-size: 13.5px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--olive);
  color: var(--olive);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-cta:hover { background: var(--olive); color: var(--cream); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 160ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
  border: 1px solid transparent;
}
.btn-primary { background: var(--olive); color: var(--cream); }
.btn-primary:hover { background: var(--olive-deep); }
.btn-ghost { border-color: var(--olive); color: var(--olive); }
.btn-ghost:hover { background: var(--olive); color: var(--cream); }
.on-dark .btn-primary { background: var(--cream); color: var(--olive-deep); }
.on-dark .btn-primary:hover { background: var(--paper); }
.on-dark .btn-ghost { border-color: var(--sand); color: var(--cream); }
.on-dark .btn-ghost:hover { background: var(--cream); color: var(--olive-deep); }
.btn:active { transform: scale(0.97); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--olive);
  color: var(--cream);
}
.hero-headline {
  min-height: 100vh;
  padding: 110px 28px 40px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.hero-lede {
  padding: 0 28px 110px;
  display: grid;
  place-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
  animation: rise 1.1s var(--ease) both;
}
.hero-lede .lede { text-align: center; max-width: 60ch; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 18%, rgba(245,239,226,0.10), transparent 70%),
    radial-gradient(80% 60% at 50% 95%, rgba(58,47,28,0.85), transparent 70%),
    linear-gradient(180deg, #5d4c2e 0%, #4a3c25 50%, #2f2616 100%);
  z-index: -1;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(245,239,226,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}
/* Sombras subliminares de produtos nas margens do hero */
.hero-shadows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hs {
  position: absolute;
  width: 28vw;
  max-width: 420px;
  min-width: 280px;
  opacity: 0.22;
  filter: blur(1px) brightness(0.95) saturate(0.8);
  animation: hsFloat 14s ease-in-out infinite;
  /* máscara radial — dissolve a foto suavemente em todas as direções, sem corte algum */
  -webkit-mask-image: radial-gradient(
    ellipse 65% 55% at 50% 55%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.9) 35%,
    rgba(0,0,0,0.4) 70%,
    transparent 100%
  );
          mask-image: radial-gradient(
    ellipse 65% 55% at 50% 55%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.9) 35%,
    rgba(0,0,0,0.4) 70%,
    transparent 100%
  );
}
/* 2 grandes nas bases (presenca dominante) */
.hs-bl { left:  -2%; bottom: -4%;  width: 28vw; max-width: 420px; min-width: 280px; --r: -5deg; transform: rotate(-5deg); animation-delay:  0s;  }
.hs-br { right: -2%; bottom: -4%;  width: 28vw; max-width: 420px; min-width: 280px; --r:  4deg; transform: rotate(4deg);  animation-delay: -7s;  }

/* 2 medios laterais (meio-altura) */
.hs-ml { left:  4%;  top: 28%;     width: 18vw; max-width: 260px; min-width: 180px; --r:  3deg; transform: rotate(3deg);  animation-delay: -3s; opacity: 0.16; }
.hs-mr { right: 4%;  top: 24%;     width: 18vw; max-width: 260px; min-width: 180px; --r: -4deg; transform: rotate(-4deg); animation-delay: -10s; opacity: 0.16; }

/* 2 pequenos altos (cantos superiores, atras da nav) */
.hs-tl { left:  10%; top: 4%;      width: 14vw; max-width: 200px; min-width: 140px; --r: -8deg; transform: rotate(-8deg); animation-delay: -5s; opacity: 0.14; }
.hs-tr { right: 10%; top: 6%;      width: 14vw; max-width: 200px; min-width: 140px; --r:  6deg; transform: rotate(6deg);  animation-delay: -12s; opacity: 0.14; }

@keyframes hsFloat {
  0%, 100% { transform: translateY(0)    rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-10px) rotate(calc(var(--r, 0deg) + 0.6deg)); }
}
@media (max-width: 760px) {
  .hs { opacity: 0.16 !important; width: 50vw !important; min-width: 0 !important; }
  /* manter so 2: 1 baixo-esquerda e 1 cima-direita */
  .hs-br, .hs-ml, .hs-mr, .hs-tl { display: none; }
}

/* Garante que conteudo do hero fica acima das sombras */
.hero-headline,
.hero-lede {
  position: relative;
  z-index: 2;
}

/* Logo wrap (ancoragem da fumaca) */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.hero-logo {
  height: clamp(200px, 28vw, 360px);
  max-height: 38vh;
  width: auto;
  filter: drop-shadow(0 2px 40px rgba(0,0,0,0.3));
  animation: rise 1.1s var(--ease) both;
  position: relative;
  z-index: 2;
}

/* Glow quente atras da chama do logo (respira lento) */
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8%;
  width: 38%;
  height: 38%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 215, 150, 0.35) 0%, rgba(255, 180, 100, 0.12) 35%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
  animation: breathe 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.9;  transform: translateX(-50%) scale(1.08); }
}

/* Fumaca de essencia subindo da chama */
.smoke {
  position: absolute;
  left: 50%;
  top: 4%;
  width: 220px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.puff {
  position: absolute;
  left: 50%;
  top: 22%;            /* sai do topo da chama */
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 244, 222, 0.55) 0%,
    rgba(255, 232, 200, 0.22) 35%,
    transparent 70%);
  filter: blur(20px);
  mix-blend-mode: screen;
  transform: translate(-50%, 0) scale(0.4);
  opacity: 0;
  animation: drift 9s ease-out infinite;
  will-change: transform, opacity;
}
.puff.p1 { animation-delay: 0s;   --x-end:  22px; }
.puff.p2 { animation-delay: 1.7s; --x-end: -26px; width: 70px; height: 70px; }
.puff.p3 { animation-delay: 3.5s; --x-end:  14px; width: 80px; height: 80px; }
.puff.p4 { animation-delay: 5.2s; --x-end: -18px; width: 95px; height: 95px; }
.puff.p5 { animation-delay: 6.9s; --x-end:   8px; width: 75px; height: 75px; }

@keyframes drift {
  0%   { opacity: 0;    transform: translate(-50%, 20px) scale(0.4); }
  12%  { opacity: 0.95; }
  55%  { opacity: 0.55; }
  100% { opacity: 0;    transform: translate(calc(-50% + var(--x-end, 0px)), -340px) scale(1.7); }
}

@media (prefers-reduced-motion: reduce) {
  .puff, .hero-logo-wrap::before { animation: none; opacity: 0.4; }
}
.hero .display {
  color: var(--cream);
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.98;
}
.hero .eyebrow { color: var(--sand); margin: 0; }
.hero-headline > * { animation: rise 1.1s var(--ease) both; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px;
  background: linear-gradient(180deg, transparent, var(--sand-deep));
}
.hero-scroll span {
  display: block; width: 1px; height: 16px;
  background: var(--cream);
  animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollHint {
  0%   { transform: translateY(-16px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(56px); opacity: 0; }
}

/* ---------- Product feature (Mente & Coracao) ---------- */
.product-feature {
  padding: 140px 28px;
  background: var(--cream);
}
.feature-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 880px) {
  .feature-grid { grid-template-columns: 1fr; gap: 56px; }
}
.feature-copy .notes {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; gap: 12px;
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
}
.feature-copy .notes li {
  display: grid; grid-template-columns: 110px 1fr;
  font-size: 16px; color: var(--olive);
}
.feature-copy .notes span {
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive-soft); align-self: center;
}
.meta-row {
  display: flex; gap: 40px; margin: 32px 0 36px;
  border-top: 1px solid var(--line-dark); padding-top: 24px;
}
.meta-row div { display: grid; gap: 4px; }
.meta-row strong { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--olive); }
.meta-row span { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive-soft); }

/* Candle stage (CSS-only ilustracao) */
.candle-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background:
    radial-gradient(60% 45% at 50% 65%, rgba(245,239,226,0.18), transparent 70%),
    radial-gradient(80% 60% at 50% 100%, rgba(58,47,28,0.55), transparent 70%),
    linear-gradient(180deg, #5d4c2e 0%, #2f2616 100%);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  display: grid; place-items: end center;
}
.candle {
  position: relative;
  width: 38%;
  height: 46%;
  margin-bottom: 14%;
  display: grid;
  place-items: center end;
}
.vessel {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(245,239,226,0.10), rgba(0,0,0,0.4)),
    linear-gradient(180deg, #3a2f1c 0%, #1c160c 100%);
  border-radius: 8px 8px 14px 14px;
  box-shadow:
    inset 0 1px 0 rgba(245,239,226,0.08),
    inset 0 -30px 60px rgba(0,0,0,0.5),
    0 30px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(245,239,226,0.06);
}
.vessel::before {
  content: ""; position: absolute;
  left: 8%; right: 8%; top: 6%;
  height: 16%;
  background: radial-gradient(50% 80% at 50% 30%, rgba(245,239,226,0.30), transparent);
  border-radius: 50%;
  filter: blur(2px);
}
.candle .label {
  position: absolute; bottom: 14%; left: 0; right: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--sand);
  opacity: 0.75;
}
.flame {
  position: absolute;
  width: 10px; height: 18px;
  top: -22px;
  background: radial-gradient(50% 80% at 50% 60%, #ffe6b8 0%, #f0a657 50%, transparent 70%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(0.3px);
  box-shadow: 0 0 24px 6px rgba(255,180,90,0.4);
  animation: flicker 2.2s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes flicker {
  0%, 100% { transform: scale(1)   rotate(-1deg); opacity: 1; }
  40%      { transform: scale(1.05) rotate(1deg);  opacity: .92; }
  70%      { transform: scale(0.97) rotate(-0.5deg); opacity: .95; }
}
.candle-shadow {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
}

/* ---------- Feature photo ---------- */
.feature-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 30px 80px -40px rgba(58,47,28,0.45);
  border: 1px solid var(--line-dark);
}

/* ---------- CASACOR ---------- */
.casacor {
  padding: 140px 28px;
  background: var(--cream);
}
.casacor-inner { max-width: var(--maxw); margin: 0 auto; }
.casacor-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.casacor-card {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 28px 24px;
  display: grid; gap: 8px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.casacor-card:hover {
  transform: translateY(-4px);
  border-color: var(--sand-deep);
  box-shadow: 0 24px 60px -30px rgba(58,47,28,0.35);
}
.cc-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 2px solid var(--cream);
  box-shadow: 0 4px 14px -4px rgba(58,47,28,0.35);
  margin-bottom: 8px;
  filter: grayscale(0.1) contrast(1.02);
}
.cc-avatar-duo {
  width: 88px; height: 64px;
  border-radius: 999px;
  object-position: center 30%;
}
.cc-feature {
  background: var(--olive-deep);
  color: var(--cream);
  border-color: var(--olive-soft);
}
.cc-feature .cc-eyebrow { color: var(--gold); }
.cc-feature .cc-title { color: var(--cream); }
.cc-feature .cc-arch { color: var(--sand); border-color: rgba(245,239,226,0.12); }
.cc-feature .cc-notes { color: var(--sand); }
.cc-feature .cc-avatar { border-color: var(--olive-deep); }

.cc-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive-soft); margin: 0;
}
.cc-title {
  font-family: var(--serif);
  font-size: 28px; font-weight: 400;
  color: var(--olive); margin: 4px 0 0;
  line-height: 1.05;
}
.cc-arch {
  font-size: 13.5px; color: var(--olive);
  margin: 6px 0 14px;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 14px;
}
.cc-notes {
  font-size: 13px;
  color: var(--olive-soft);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ---------- Phil-letter (carta) ---------- */
.phil-letter {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: left;
  display: grid; gap: 18px;
}
.phil-letter p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--sand);
  margin: 0;
}
.phil-letter strong { color: var(--cream); font-weight: 500; }
.phil-marks {
  margin-top: 48px;
  display: flex; gap: 14px; justify-content: center;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand-deep);
}
.phil-sep { opacity: 0.45; }

/* ---------- Gift ---------- */
.gift {
  padding: 140px 28px;
  background: var(--paper);
}
.gift-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 880px) {
  .gift-inner { grid-template-columns: 1fr; gap: 56px; }
}
.gift-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 30px 80px -40px rgba(58,47,28,0.45);
  border: 1px solid var(--line-dark);
}

/* ---------- Quote ---------- */
.quote {
  padding: 140px 28px;
  text-align: center;
  background: var(--sand);
}
.quote blockquote {
  max-width: 1000px; margin: 0 auto;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--olive-deep);
}
.quote cite {
  display: block; margin-top: 28px;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive-soft); font-style: normal;
}

/* ---------- Collection ---------- */
.collection { padding: 120px 28px 140px; background: var(--paper); }
.section-head { max-width: 900px; margin: 0 auto 56px; text-align: center; }
.filters {
  max-width: var(--maxw); margin: 0 auto 40px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.filter {
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--olive-soft);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: all .25s var(--ease);
}
.filter:hover { color: var(--olive); border-color: var(--olive-soft); }
.filter.is-active {
  background: var(--olive); color: var(--cream); border-color: var(--olive);
}

.grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 28px;
  display: grid; gap: 18px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--sand-deep);
  box-shadow: 0 24px 60px -30px rgba(58,47,28,0.35);
}
.card-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
}
.card-visual {
  aspect-ratio: 4/5;
  border-radius: 12px;
  background:
    radial-gradient(60% 45% at 50% 60%, rgba(245,239,226,0.18), transparent 70%),
    linear-gradient(180deg, #5d4c2e 0%, #2f2616 100%);
  position: relative;
  overflow: hidden;
}
.card-visual::before {
  content: ""; position: absolute;
  left: 30%; right: 30%; bottom: 22%; top: 38%;
  border-radius: 6px 6px 12px 12px;
  background: linear-gradient(180deg, #3a2f1c, #1c160c);
  box-shadow: inset 0 1px 0 rgba(245,239,226,0.08), 0 20px 40px rgba(0,0,0,0.4);
}
.card-visual::after {
  content: ""; position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 60%;
  width: 8px; height: 14px;
  background: radial-gradient(50% 80% at 50% 60%, #ffe6b8, #f0a657 60%, transparent 75%);
  border-radius: 50%;
  box-shadow: 0 0 22px 5px rgba(255,180,90,0.35);
  animation: flicker 2.6s ease-in-out infinite;
}
.card[data-cat="difusores"]  .card-visual::before { left: 35%; right: 35%; top: 30%; bottom: 18%; border-radius: 4px; }
.card[data-cat="difusores"]  .card-visual::after  { display: none; }
.card[data-cat="home-spray"] .card-visual::before { left: 38%; right: 38%; top: 28%; bottom: 20%; border-radius: 4px 4px 10px 10px; }
.card[data-cat="home-spray"] .card-visual::after  { display: none; }
.card[data-cat="limpeza"]    .card-visual::before { left: 32%; right: 32%; top: 26%; bottom: 18%; border-radius: 6px; }
.card[data-cat="limpeza"]    .card-visual::after  { display: none; }

.card-cat {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive-soft);
}
.card-name {
  font-family: var(--serif);
  font-size: 24px; font-weight: 400;
  line-height: 1.15;
  color: var(--olive);
  margin: 4px 0 0;
}
.card-tag { font-size: 14px; color: var(--olive-soft); margin: 0; }
.card-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--line-dark); padding-top: 14px;
}
.card-price { font-family: var(--serif); font-size: 20px; color: var(--olive); }
.card-link {
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--olive);
  transition: color .2s var(--ease);
}
.card-link:hover { color: var(--olive-deep); }

/* ---------- Philosophy ---------- */
.philosophy {
  padding: 140px 28px;
  background: var(--olive-deep);
  color: var(--cream);
}
.philosophy .h-display, .philosophy .eyebrow { color: var(--cream); }
.philosophy .eyebrow { color: var(--sand-deep); }
.philosophy-inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.phil-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  text-align: left;
}
@media (max-width: 760px) { .phil-grid { grid-template-columns: 1fr; } }
.phil-grid h3 {
  font-family: var(--serif);
  font-size: 28px; font-weight: 400;
  color: var(--cream);
  margin: 0 0 12px;
}
.phil-grid p { color: var(--sand); margin: 0; }

/* ---------- Visit ---------- */
.visit {
  padding: 140px 28px;
  background: var(--sand);
}
.visit-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.visit-cta { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.foot { padding: 64px 28px; border-top: 1px solid var(--line-dark); background: var(--paper); }
.foot-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 18px;
  text-align: center;
  justify-items: center;
}
.foot-brand img { height: 72px; width: auto; }
.foot-tag { font-family: var(--serif); font-size: 22px; color: var(--olive); margin: 0; }
.foot-meta { color: var(--olive-soft); font-size: 12.5px; letter-spacing: 0.06em; margin: 0; }

/* ---------- Builder ---------- */
.builder {
  padding: 100px 28px 140px;
  background: var(--cream);
}
.builder-inner { max-width: var(--maxw); margin: 0 auto; }
.step.is-hidden { display: none; }

.builder-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 40px;
}

.builder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.bcard {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 16px;
  display: grid; gap: 12px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.bcard:hover { transform: translateY(-3px); border-color: var(--sand-deep); }
.bcard.is-selected {
  border-color: var(--olive);
  box-shadow: 0 0 0 2px var(--olive) inset, 0 16px 40px -22px rgba(58,47,28,0.5);
}
.bcard-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 10px;
}
.bcard-body { display: grid; gap: 4px; }
.bcard-cat { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive-soft); margin: 0; }
.bcard-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--olive); margin: 2px 0 0; line-height: 1.1; }
.bcard-price { font-family: var(--serif); font-size: 17px; color: var(--olive); margin: 4px 0 0; }
.bcard-price strong { font-weight: 500; }
.bcard-qty {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  padding-top: 10px;
}
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--olive);
  font-size: 18px; line-height: 1;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.qty-btn:hover { background: var(--olive); color: var(--cream); }
.qty-num { font-family: var(--serif); font-size: 20px; color: var(--olive); min-width: 24px; text-align: center; }

.builder-cta {
  margin-top: 56px;
  display: flex; justify-content: center; gap: 14px;
}
.builder-cta.two { justify-content: space-between; max-width: 720px; margin-left: auto; margin-right: auto; }

.btn:disabled {
  opacity: 0.4; cursor: not-allowed;
  pointer-events: none;
}
.btn-block { display: flex; width: 100%; justify-content: center; margin-top: 12px; }
.btn-small { padding: 8px 14px; font-size: 12.5px; }

/* Form */
.builder-form {
  max-width: 640px; margin: 0 auto;
  display: grid; gap: 24px;
}
.builder-form label {
  display: grid; gap: 8px;
  font-size: 13.5px; color: var(--olive);
}
.builder-form label > span em { color: var(--olive-soft); font-style: normal; font-size: 12px; }
.builder-form input,
.builder-form textarea {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  color: var(--olive);
  resize: vertical;
  transition: border-color .2s var(--ease);
}
.builder-form input:focus,
.builder-form textarea:focus {
  outline: none;
  border-color: var(--olive);
}

/* Review */
.review {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) {
  .review { grid-template-columns: 1fr; }
}
.review-list { display: grid; gap: 14px; }
.review-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 12px;
}
.review-item img {
  width: 80px; height: 100px;
  object-fit: cover;
  border-radius: 8px;
}
.review-item-body { display: grid; gap: 2px; }

.review-summary {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 32px;
  position: sticky; top: 90px;
}
.review-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  color: var(--olive); margin: 0 0 18px;
}
.review-line {
  display: flex; justify-content: space-between;
  font-size: 14px; color: var(--olive);
  margin: 8px 0;
}
.review-total {
  font-family: var(--serif);
  font-size: 22px;
  border-top: 1px solid var(--line-dark);
  padding-top: 14px; margin-top: 16px;
}
.review-ded {
  background: var(--cream);
  border-radius: 10px;
  padding: 14px;
  font-size: 13.5px;
  color: var(--olive);
  margin: 20px 0 0;
  line-height: 1.5;
}
.review-ded:empty { display: none; }
.review-fineprint {
  font-size: 12px;
  color: var(--olive-soft);
  margin: 16px 0 0;
  line-height: 1.5;
}

/* ---------- Pix Modal ---------- */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal-bg {
  position: absolute; inset: 0;
  background: rgba(28, 24, 18, 0.65);
  backdrop-filter: blur(10px);
}
.modal-card {
  position: relative;
  background: var(--paper);
  border-radius: 22px;
  padding: 40px 32px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: modalRise .4s var(--ease);
}
@keyframes modalRise {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute; top: 12px; right: 14px;
  background: transparent; border: none;
  font-size: 28px; color: var(--olive-soft);
  width: 36px; height: 36px;
  line-height: 1;
}
.modal-close:hover { color: var(--olive); }
.pix-qr {
  margin: 20px auto 14px;
  width: 230px; height: 230px;
  padding: 12px;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--line-dark);
}
.pix-qr svg { width: 100%; height: 100%; }
.pix-code {
  display: flex; gap: 8px; align-items: center;
  background: var(--cream);
  border-radius: 10px;
  padding: 10px;
  margin: 14px 0 6px;
}
.pix-code code {
  flex: 1;
  font-size: 10.5px;
  font-family: ui-monospace, "SF Mono", monospace;
  color: var(--olive);
  word-break: break-all;
  text-align: left;
  max-height: 64px;
  overflow-y: auto;
}

/* ---------- Press / Como visto em ---------- */
.press {
  padding: 80px 28px;
  background: var(--olive-deep);
  color: var(--cream);
  text-align: center;
}
.press-inner { max-width: 980px; margin: 0 auto; }
.press-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  margin: 18px 0 32px;
  color: var(--cream);
}
.press-title strong { color: var(--gold); font-weight: 400; }
.press-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 18px;
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand);
}
.press-logo {
  padding: 8px 16px;
  border: 1px solid rgba(245,239,226,0.2);
  border-radius: 999px;
}
.press-dot { color: var(--gold); opacity: 0.5; }
.eyebrow.center { text-align: center; }

/* ---------- Quem somos ---------- */
.about {
  padding: 140px 28px;
  background: var(--cream);
}
.about-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 880px) { .about-inner { grid-template-columns: 1fr; gap: 48px; } }
.about-visual { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(0.05) contrast(1.02);
  box-shadow: 0 30px 80px -40px rgba(58,47,28,0.45);
}
.about-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--olive-soft);
  letter-spacing: 0.04em;
  margin: 14px 0 0;
  text-align: center;
}
.about-copy .lede + .lede { margin-top: 18px; }
.about-copy strong { color: var(--olive); font-weight: 500; }
.about-copy .btn { margin-top: 28px; }

/* ---------- Depoimentos ---------- */
.testimonials {
  padding: 120px 28px;
  background: var(--paper);
}
.testimonials-inner { max-width: var(--maxw); margin: 0 auto; }
.testimonials-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 36px 30px;
  margin: 0;
  position: relative;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.testi:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -30px rgba(58,47,28,0.3);
}
.testi::before {
  content: """;
  position: absolute;
  top: -8px; left: 18px;
  font-family: var(--serif);
  font-size: 84px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
}
.testi blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--olive);
  font-style: italic;
  position: relative;
}
.testi figcaption {
  margin-top: 22px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-soft);
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 140px 28px;
  background: var(--paper);
}
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list { margin-top: 56px; display: grid; gap: 4px; }
.faq-item {
  background: transparent;
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 4px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--olive);
  padding: 6px 0;
  transition: color 160ms var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--olive-soft);
  transition: transform 220ms var(--ease);
  margin-left: 14px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--olive-deep); }
.faq-item p {
  font-size: 15px;
  color: var(--olive-soft);
  margin: 12px 0 8px;
  line-height: 1.65;
  max-width: 70ch;
}

/* ---------- Garantias / Selos ---------- */
.guarantees {
  padding: 70px 28px;
  background: var(--cream);
  border-top: 1px solid var(--line-dark);
}
.guarantees-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 760px) {
  .guarantees-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.guarantee { text-align: center; }
.g-icon {
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  border: 1px solid var(--olive);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 20px;
}
.guarantee h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  color: var(--olive);
  margin: 0 0 6px;
}
.guarantee p {
  font-size: 12.5px;
  color: var(--olive-soft);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Visit meta line ---------- */
.visit-meta {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin: 14px 0 0;
}

/* ---------- Footer enhanced ---------- */
.foot { padding: 80px 28px 32px; }
.foot-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 56px;
  text-align: left;
  margin-bottom: 56px;
}
@media (max-width: 860px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-news { grid-column: 1 / -1; }
}
.foot-col h5 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin: 0 0 18px;
  text-transform: none;
}
.foot-col a {
  display: block;
  font-size: 13px;
  color: var(--sand);
  padding: 5px 0;
  transition: color 160ms var(--ease);
}
.foot-col a:hover { color: var(--cream); }
.foot-logo { height: 44px; width: auto; margin-bottom: 18px; }
.foot-brand-col .foot-tag {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--cream);
  margin: 0 0 16px;
}
.foot-brand-col .foot-addr {
  font-size: 12.5px;
  color: var(--sand);
  margin: 0;
  line-height: 1.6;
}
.foot-news p { font-size: 13px; color: var(--sand); margin: 0 0 14px; line-height: 1.55; }
.foot-store {
  font-size: 12.5px !important;
  color: var(--sand);
  margin: 0 0 18px !important;
  line-height: 1.65 !important;
}
.foot-store strong {
  display: block;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.foot-inline {
  display: inline !important;
  padding: 0 !important;
  color: var(--gold) !important;
  transition: color 160ms var(--ease);
}
.foot-inline:hover { color: var(--cream) !important; }
.news-form {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.news-form input {
  flex: 1; min-width: 0;
  background: rgba(245,239,226,0.06);
  border: 1px solid rgba(245,239,226,0.15);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--cream);
  font: inherit;
  font-size: 13.5px;
  transition: border-color 200ms var(--ease);
}
.news-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.news-form input::placeholder { color: rgba(245,239,226,0.4); }
.news-form .btn { padding: 10px 18px; font-size: 12.5px; }
.news-fineprint {
  font-size: 12px;
  color: var(--gold);
  margin: 12px 0 0;
  min-height: 16px;
}
.foot-bottom {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(245,239,226,0.1);
  gap: 16px;
}
.foot-bottom .foot-meta { margin: 0; font-size: 11.5px; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 80;
  background: #25D366;
  color: white;
  border-radius: 999px;
  padding: 14px 20px 14px 16px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5), 0 4px 14px rgba(0,0,0,0.2);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.02em;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgba(37,211,102,0.6), 0 6px 18px rgba(0,0,0,0.25);
}
.wa-float:active { transform: scale(0.97); }
.wa-label { white-space: nowrap; }
@media (max-width: 600px) {
  .wa-float { padding: 12px; }
  .wa-label { display: none; }
}

/* ---------- Toast (estilo Sonner) ---------- */
.toast-wrap {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 90;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--olive);
  color: var(--cream);
  padding: 12px 18px 12px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 10px 30px -6px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.15);
  display: inline-flex; align-items: center; gap: 10px;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 320ms var(--ease), opacity 320ms var(--ease);
  pointer-events: auto;
  max-width: 360px;
}
.toast.is-in { transform: translateY(0) scale(1); opacity: 1; }
.toast::before {
  content: "✓";
  display: inline-grid; place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--olive-deep);
  font-size: 12px;
  flex-shrink: 0;
}

/* ---------- Quick-view modal ---------- */
.qv-modal.is-open { display: flex; }
.qv-card {
  position: relative;
  background: var(--paper);
  border-radius: 22px;
  max-width: 820px;
  width: 100%;
  overflow: hidden;
  animation: modalRise .42s var(--ease);
  transform-origin: var(--qv-origin, center);
}
.qv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 720px) { .qv-grid { grid-template-columns: 1fr; } }
.qv-visual {
  background: var(--cream);
  aspect-ratio: 4/5;
}
.qv-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.qv-body {
  padding: 40px 36px;
  display: grid; gap: 14px; align-content: center;
}
.qv-body .eyebrow { margin: 0; }
.qv-name {
  font-family: var(--serif);
  font-size: 36px; font-weight: 400;
  color: var(--olive);
  margin: 0;
  line-height: 1.05;
}
.qv-tag { color: var(--olive-soft); margin: 0; line-height: 1.55; }
.qv-body .notes { margin: 0; padding: 16px 0 0; border-top: 1px solid var(--line-dark); }
.qv-body .meta-row { padding: 0; margin: 0; border: none; gap: 28px; }
.qv-body .meta-row strong { font-size: 22px; }
.qv-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

/* ---------- Card cursor ---------- */
.card { cursor: pointer; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
