:root {
  --cream: #fff9f1;
  --linen: #f4dfcf;
  --rose: #efb8ad;
  --terracotta: #dc5936;
  --clay: #9d5f3c;
  --coffee: #4a2417;
  --espresso: #1d100b;
  --ink: #251710;
  --muted: #76594b;
  --line: rgba(74, 36, 23, .15);
  --shadow: 0 24px 70px rgba(55, 28, 18, .14);
  --radius: 18px;
  --shell: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(74,36,23,.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--cream), #fff);
  background-size: 44px 44px, auto;
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.6;
}

body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 999;
  padding: .7rem 1rem;
  background: var(--espresso);
  color: #fff;
}

.skip-link:focus { top: 1rem; }

.shell {
  width: min(var(--shell), calc(100% - 32px));
  margin-inline: auto;
}

.narrow { max-width: 900px; }
.section-pad { padding: clamp(64px, 8vw, 108px) 0; }

.offer-strip {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: .58rem 1rem;
  min-height: 46px;
  color: #fff;
  background: var(--espresso);
  text-align: center;
  font-size: .92rem;
}

.offer-strip strong {
  padding: .22rem .58rem;
  border-radius: 999px;
  background: var(--terracotta);
}

.offer-strip a {
  padding: .38rem .75rem;
  border-radius: 999px;
  background: #fff;
  color: var(--espresso);
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 46px;
  z-index: 90;
  background: rgba(255, 249, 241, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 900;
}

.brand img {
  width: 92px;
  height: auto;
}

.brand span {
  padding: .22rem .48rem;
  border-radius: 999px;
  background: var(--espresso);
  color: #fff;
  font-size: .72rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
  font-size: .94rem;
}

.nav-links a:hover { color: var(--terracotta); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: .55rem .82rem;
  font-weight: 900;
}

.header-cta,
.button,
.price-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: .86rem 1.25rem;
  border: 0;
  background: var(--terracotta);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(220, 89, 54, .25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-cta {
  min-height: 42px;
  padding: .66rem 1rem;
}

.button:hover,
.header-cta:hover,
.price-card:hover strong {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(220, 89, 54, .32);
}

.text-link {
  color: var(--coffee);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  overflow: hidden;
  padding: clamp(44px, 7vw, 92px) 0 clamp(66px, 9vw, 118px);
  background:
    radial-gradient(circle at 82% 10%, rgba(239, 184, 173, .72), transparent 28%),
    linear-gradient(135deg, #fff9f1 0%, #f4dfcf 54%, #f0b7ab 100%);
}

.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(330px, .82fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.hero-card {
  position: relative;
  padding: clamp(1.35rem, 4vw, 3rem);
  border: 1px solid rgba(74,36,23,.18);
  border-radius: 28px;
  background: rgba(255, 249, 241, .72);
  box-shadow: var(--shadow);
}

.kicker,
.eyebrow {
  margin: 0 0 .85rem;
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; line-height: 1.04; }
h1, h2 { font-family: Fraunces, Georgia, serif; }

h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 7vw, 3.9rem);
}

h1 span {
  display: block;
  color: var(--clay);
  font-size: .56em;
  letter-spacing: .01em;
}

h2 { font-size: clamp(2rem, 4.7vw, 2.8rem); }
h3 { font-size: 1.14rem; }
p { margin: 0; }

.hero-lead {
  max-width: 650px;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-actions,
.micro-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-top: 1.6rem;
}

.micro-trust span {
  padding: .52rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
  rotate: 2deg;
}

.floating-note {
  position: absolute;
  left: -1.2rem;
  bottom: 1.5rem;
  display: grid;
  gap: .1rem;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 40px rgba(74,36,23,.16);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  color: var(--terracotta);
  font-size: 1.3rem;
}

.floating-note span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.review-bar {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.review-track div {
  padding: 1.1rem;
  border-right: 1px solid var(--line);
}

.review-track div:last-child { border-right: 0; }
.review-track strong { display: block; color: var(--coffee); font-size: 1.05rem; }
.review-track span { color: var(--muted); font-size: .88rem; font-weight: 700; }

.section-heading {
  max-width: 850px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: .85rem;
  color: var(--muted);
}

.intro-grid,
.ritual-grid {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.intro-text {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.fine-print,
.secure-note {
  color: var(--muted);
  font-size: .92rem;
}

.problem-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2rem;
}

.problem-pills span {
  padding: .76rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--coffee);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(74,36,23,.06);
}

.benefits,
.pricing,
.faq {
  background: #fff;
}

.feature-grid,
.price-grid,
.review-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card,
.ingredient-card,
.ingredient-note,
.price-card,
.review-card,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 16px 46px rgba(74,36,23,.08);
}

.feature-card {
  padding: 1.2rem;
}

.feature-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--espresso);
  color: #fff;
  font-weight: 900;
}

.feature-card p,
.ingredient-card p,
.ingredient-note p,
.review-card blockquote {
  margin-top: .65rem;
  color: var(--muted);
}

.ingredients {
  background: linear-gradient(180deg, #fff9f1, #fff);
}

.ingredient-stack {
  display: grid;
  gap: 1rem;
}

.ingredient-card {
  display: grid;
  grid-template-columns: 1fr 170px;
  align-items: center;
  gap: 1rem;
  min-height: 164px;
  padding: 1.1rem 1.2rem 1.1rem 1.5rem;
  overflow: hidden;
  background: #fff;
}

.ingredient-card img {
  justify-self: end;
  max-height: 140px;
  object-fit: contain;
}

.ingredient-note {
  margin-top: 1rem;
  padding: 1.3rem;
  background: var(--espresso);
  color: #fff;
}

.ingredient-note p,
.ingredient-note small {
  color: rgba(255,255,255,.8);
}

.ritual {
  background: var(--linen);
}

.ritual-grid {
  grid-template-columns: minmax(320px, .85fr) 1fr;
}

.rounded-img,
.gallery-grid img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: .8rem;
  margin: 1.3rem 0 1.6rem;
  padding-left: 1.2rem;
  color: var(--muted);
  font-weight: 800;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220,89,54,.55);
}

.price-card b {
  position: absolute;
  top: .8rem;
  right: .8rem;
  padding: .36rem .58rem;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-size: .7rem;
  text-transform: uppercase;
}

.price-card.value b { background: var(--espresso); }

.price-card img {
  width: min(220px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
}

.price {
  color: var(--espresso);
  font-family: Fraunces, Georgia, serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.price span {
  font-family: Manrope, sans-serif;
  font-size: .9rem;
  vertical-align: super;
}

.price-card small {
  color: var(--muted);
  font-weight: 800;
}

.secure-note {
  margin-top: 1.2rem;
  text-align: center;
}

.review-card {
  padding: 1.1rem;
  background: #fff;
}

.review-card p {
  color: #bd742b;
  font-weight: 900;
}

.review-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: .45rem;
}

.review-card h3 span {
  padding: .24rem .48rem;
  border-radius: 999px;
  background: #e6f2df;
  color: #436b33;
  font-size: .7rem;
  font-weight: 900;
}

.review-card blockquote {
  margin-left: 0;
  margin-right: 0;
}

.gallery {
  background: linear-gradient(135deg, var(--espresso), #63331f);
}

.gallery-grid img {
  aspect-ratio: 1;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: .8rem;
}

details {
  padding: 1rem 1.1rem;
  background: #fff;
}

summary {
  cursor: pointer;
  color: var(--espresso);
  font-weight: 900;
}

details p {
  margin-top: .8rem;
  color: var(--muted);
}

.site-footer {
  padding: 42px 0 92px;
  background: var(--espresso);
  color: rgba(255,255,255,.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-brand { color: #fff; }
.site-footer p { max-width: 560px; margin-top: .8rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .6rem;
}

.footer-links button {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: .55rem .8rem;
  color: #fff;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  color: #fff;
  background: var(--terracotta);
  font-weight: 900;
  box-shadow: 0 15px 40px rgba(38, 19, 13, .26);
}

.modal-backdrop,
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(29,16,11,.62);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden],
.exit-popup[hidden] { display: none; }

.modal,
.exit-card {
  width: min(680px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  position: relative;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.modal { padding: clamp(1.25rem, 4vw, 2.2rem); }
.modal h2, .exit-card h2 { margin-right: 2rem; font-size: clamp(1.6rem, 4vw, 2.35rem); }
.modal p, .modal li, .exit-card p { color: var(--muted); }
.modal ul { padding-left: 1.2rem; }

.modal-close,
.exit-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--espresso);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.exit-card {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem;
}

.exit-card img { border-radius: 18px; background: #fff; }
.exit-card p { margin: .8rem 0 1.2rem; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .7rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .8rem; }
  .hero-wrap,
  .intro-grid,
  .ritual-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .feature-grid,
  .price-grid,
  .review-grid,
  .gallery-grid,
  .review-track { grid-template-columns: repeat(2, 1fr); }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .offer-strip {
    flex-wrap: wrap;
    gap: .45rem;
    font-size: .82rem;
  }
  .site-header { top: 62px; }
  .nav { min-height: 66px; }
  .section-pad { padding: 58px 0; }
  .hero { padding-top: 28px; }
  .hero-card { padding: 1.1rem; border-radius: 22px; }
  .hero-actions .button { width: 100%; }
  .floating-note { left: .8rem; bottom: .8rem; }
  .feature-grid,
  .price-grid,
  .review-grid,
  .gallery-grid,
  .review-track { grid-template-columns: 1fr; }
  .review-track div { border-right: 0; border-bottom: 1px solid var(--line); }
  .review-track div:last-child { border-bottom: 0; }
  .ingredient-card {
    grid-template-columns: 1fr 112px;
    min-height: 140px;
    padding: 1rem;
  }
  .ingredient-card img { max-height: 112px; }
  .exit-card { grid-template-columns: 1fr; }
  .exit-card img { max-height: 250px; object-fit: contain; margin-inline: auto; }
  .mobile-sticky-cta { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
