/* ==========================================================================
   Gelatine Sculpt — styles.css
   Tokens: forest #1F3A2E, ivory #F6F1E7, amber #C98A4B, ink #0F1F17
   Type: Fraunces (display) + Work Sans (body)
   ========================================================================== */

:root {
  --forest: #1F3A2E;
  --forest-dark: #142720;
  --ivory: #F6F1E7;
  --amber: #C98A4B;
  --amber-light: #E3B27E;
  --ink: #0F1F17;
  --white: #FFFFFF;
  --line: rgba(15, 31, 23, 0.12);
  --shadow: 0 20px 40px -20px rgba(15, 31, 23, 0.35);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', 'Open Sans', sans-serif;

  --container: 1180px;
  --radius: 18px;
  --gap: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.1; color: var(--forest-dark); }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--alt { background: var(--white); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(28px, 5vw, 48px); }
.section-head h2 { font-size: clamp(26px, 4vw, 36px); }
.section-head p { color: rgba(15,31,23,0.7); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--amber); color: var(--white); box-shadow: 0 12px 24px -10px rgba(201,138,75,0.6); }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 16px 32px -10px rgba(201,138,75,0.7); background: var(--amber-light); }
.btn-outline { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); transform: scale(1.05); }
.btn-block { width: 100%; }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,241,231,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px -16px rgba(15,31,23,0.3); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest-dark);
}
.nav-links {
  display: none;
  gap: 32px;
  font-weight: 500;
  font-size: 15px;
}
.nav-cta { display: none; }
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .hamburger { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(80vw, 320px);
  height: 100vh;
  background: var(--forest);
  color: var(--white);
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 20px; font-weight: 500; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(15,31,23,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 98;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------------- Hero ---------------- */
.hero {
  padding: clamp(40px, 8vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
@media (min-width: 768px) {
  .hero .container { grid-template-columns: 1fr 1fr; }
}
.hero-visual { order: 1; position: relative; display: flex; justify-content: center; }
.hero-content { order: 2; }
@media (min-width: 768px) {
  .hero-visual { order: 1; }
  .hero-content { order: 2; }
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.8s ease forwards 0.1s;
}
.hero p.lede {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(15,31,23,0.75);
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.8s ease forwards 0.3s;
}
.hero .btn {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.8s ease forwards 0.5s;
}
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  opacity: 0;
  animation: heroIn 0.8s ease forwards 0.7s;
}
.hero-badge-row span { display: inline-flex; align-items: center; gap: 6px; }

/* Signature animated strand */
.strand-wrap {
  width: min(100%, 380px);
  aspect-ratio: 1 / 1.1;
  position: relative;
}
.strand-wrap svg { width: 100%; height: 100%; }
.strand-path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 12px 24px rgba(201,138,75,0.35));
}
.strand-path.alt { stroke: var(--forest); opacity: 0.55; }
.strand-orbit { transform-origin: center; animation: spin 18s linear infinite; }
.strand-orbit.reverse { animation-direction: reverse; animation-duration: 26s; }
@keyframes spin { to { transform: rotate(360deg); } }
.strand-dot { fill: var(--forest-dark); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------------- Fade-in on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------------- Why choose cards ---------------- */
.grid-4 {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 576px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.card:hover { transform: scale(1.04) rotate(1deg); box-shadow: var(--shadow); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: rgba(15,31,23,0.7); margin: 0; }

/* ---------------- Two column (image/text) ---------------- */
.split {
  display: grid;
  gap: var(--gap);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; } }
.split.reverse .split-media { order: 1; }
.split.reverse .split-body { order: 2; }
@media (min-width: 768px) {
  .split.reverse .split-media { order: 2; }
  .split.reverse .split-body { order: 1; }
}
.split-media img, .media-placeholder {
  border-radius: var(--radius);
  width: 100%;
}
.media-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory); font-family: var(--font-display); font-size: 18px;
  text-align: center; padding: 20px;
}

/* ---------------- Accordion ---------------- */
.accordion-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  min-height: 48px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  color: var(--forest-dark);
}
.accordion-trigger .plus { font-size: 22px; transition: transform 0.3s ease; color: var(--amber); flex-shrink: 0; }
.accordion-item.open .plus { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-panel-inner { padding: 0 20px 20px; font-size: 15px; color: rgba(15,31,23,0.75); }

/* ---------------- Reviews ---------------- */
.grid-3 { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 576px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--forest); color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.review-name { font-weight: 700; font-size: 15px; }
.review-loc { font-size: 13px; color: rgba(15,31,23,0.55); }
.stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 8px; }
.review-note { font-size: 12px; color: rgba(15,31,23,0.45); margin-top: 12px; font-style: italic; }

/* ---------------- Pricing ---------------- */
.timer-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 32px;
  max-width: 420px;
}
.timer-unit {
  background: var(--forest);
  color: var(--ivory);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  min-width: 76px;
}
.timer-unit .num { font-family: var(--font-display); font-size: clamp(24px,5vw,32px); font-weight: 700; display: block; }
.timer-unit .label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }

.pricing-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 576px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.popular {
  border-color: var(--amber);
  background: linear-gradient(180deg, #FFF9F1, var(--white));
  transform: scale(1.03);
}
.price-badge {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.price-supply { font-size: 14px; color: rgba(15,31,23,0.6); margin-bottom: 16px; }
.price-tag { font-family: var(--font-display); font-size: 34px; color: var(--forest-dark); margin-bottom: 2px; }
.price-strike { text-decoration: line-through; color: rgba(15,31,23,0.4); font-size: 15px; }
.price-perks { list-style: none; padding: 0; margin: 16px 0; font-size: 13px; color: rgba(15,31,23,0.65); text-align: left; }
.price-perks li { margin-bottom: 6px; padding-left: 18px; position: relative; }
.price-perks li::before { content: "✓"; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.pay-logos { display: flex; justify-content: center; gap: 8px; margin-top: 16px; font-size: 12px; color: rgba(15,31,23,0.45); }

/* ---------------- Bonus ---------------- */
.bonus-grid { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 768px) { .bonus-grid { grid-template-columns: 1fr 1fr; } }
.bonus-card {
  background: var(--forest);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.bonus-card .media-placeholder { background: rgba(255,255,255,0.08); margin-bottom: 16px; }

/* ---------------- Benefits list ---------------- */
.benefits-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; max-width: 640px; margin: 0 auto; }
.benefits-list li {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}
.benefits-list .check {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--amber); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 700;
}

/* ---------------- Guarantee ---------------- */
.guarantee-points { list-style: none; padding: 0; margin: 20px 0 0; }
.guarantee-points li { margin-bottom: 16px; padding-left: 28px; position: relative; }
.guarantee-points li::before { content: "🛡️"; position: absolute; left: 0; }

/* ---------------- Final CTA ---------------- */
.final-cta {
  background: var(--forest);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 { color: var(--ivory); font-size: clamp(26px,4vw,40px); }
.final-cta .price-row { margin: 20px 0 28px; font-size: 20px; }
.final-cta .price-strike { color: rgba(246,241,231,0.5); }
.final-cta .price-tag { color: var(--amber-light); font-family: var(--font-display); font-size: 32px; }
.final-cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,138,75,0.25), transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--forest-dark);
  color: rgba(246,241,231,0.75);
  padding: 48px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; text-align: left; }
}
.footer-legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
@media (min-width: 768px) { .footer-legal-links { justify-content: flex-start; } }
.legal-link { color: rgba(246,241,231,0.75); }
.legal-link:hover { color: var(--amber-light); }
.link-separator { opacity: 0.4; }
.social-row { display: flex; gap: 14px; justify-content: center; margin-top: 12px; }
@media (min-width: 768px) { .social-row { justify-content: flex-start; } }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(246,241,231,0.25);
  display: flex; align-items: center; justify-content: center;
}
.disclaimer {
  font-size: 12px;
  color: rgba(246,241,231,0.5);
  border-top: 1px solid rgba(246,241,231,0.15);
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
  line-height: 1.7;
}
.copyright { text-align: center; font-size: 12px; color: rgba(246,241,231,0.5); margin-top: 12px; }

/* ---------------- Scroll to top ---------------- */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: none;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 90;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ---------------- Exit / delayed popup ---------------- */
.promo-popup {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: -200px;
  transform: translateX(-50%);
  width: min(92vw, 420px);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(15,31,23,0.5);
  padding: 22px 22px 20px;
  transition: bottom 0.5s cubic-bezier(.2,.9,.3,1.2);
  border: 1px solid var(--line);
}
.promo-popup.open { bottom: 20px; }
.promo-popup-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ivory);
  border: none;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.promo-popup h4 { font-size: 17px; margin-bottom: 6px; padding-right: 24px; }
.promo-popup p { font-size: 13.5px; color: rgba(15,31,23,0.7); margin-bottom: 14px; }
@media (min-width: 768px) {
  .promo-popup { left: auto; right: 24px; bottom: -200px; transform: none; }
  .promo-popup.open { bottom: 24px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.small { font-size: 13px; color: rgba(15,31,23,0.55); }
