/* === Re:fresh landing styles — Mobile First === */

:root {
  --green-900: #2f4a37;
  --green-700: #4f7a5a;
  --green-500: #7ea687;
  --green-100: #e6efe6;
  --cream: #f7f4ec;
  --bg: #fbfaf6;
  --text: #2a2f2a;
  --muted: #6b7268;
  --line: #e5e2d8;
  --accent: #c98b5b;
  --max: 1200px;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(40, 60, 45, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }

h1, h2, h3, h4 {
  font-family: 'Spectral', 'Times New Roman', serif;
  font-weight: 500;
  color: var(--green-900);
  margin: 0 0 .5em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 8vw, 4rem); }
h2 { font-size: clamp(1.7rem, 6vw, 2.8rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-900); }

ul { padding-left: 1.2em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.8rem;
}
.eyebrow--light { color: var(--green-100); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--green-900);
  color: #fff;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--green-900);
  transition: transform .2s, background .2s, box-shadow .2s;
  text-align: center;
}
.btn:hover,
.btn:focus { background: var(--green-700); border-color: var(--green-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--small { padding: 10px 18px; font-size: 0.82rem; }
.btn--light { background: #fff; color: var(--green-900); border-color: #fff; }
.btn--light:hover { background: var(--cream); color: var(--green-900); border-color: var(--cream); }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,246,0.95);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  gap: 12px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.3rem; color: var(--green-900); font-weight: 600;
  flex-shrink: 0;
}
.logo img {
  width: 28px; height: 28px;
  object-fit: cover;
  border-radius: 50%;
}
.nav__links { display: none; }

/* === SECTIONS === */
.section { padding: 56px 0; }
.section--cream {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    var(--cream) 12%,
    var(--cream) 88%,
    var(--bg) 100%
  );
}
.section--green {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    var(--green-100) 14%,
    #d9e6dc 70%,
    var(--bg) 100%
  );
}
.section--dark {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    #3b5a44 10%,
    var(--green-900) 50%,
    #3b5a44 90%,
    var(--bg) 100%
  );
  color: #e8efe8;
}
.section--dark h2 { color: #fff; }
.section__head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.section__sub { color: var(--muted); }

/* === HERO === */
.hero {
  padding: 24px 0 48px;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(126,166,135,0.18), transparent 60%),
    var(--bg);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero__visual { order: -1; }
.hero__text h1 { margin-bottom: 18px; }
.hero__lead {
  font-size: 1.08rem;
  color: var(--green-900);
  margin-bottom: 18px;
}
.hero__desc {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.98rem;
}
.hero__meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.hero__meta span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.hero__meta strong {
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.4rem;
  color: var(--green-900);
  font-weight: 600;
}
.hero__price-note {
  display: inline-block !important;
  font-size: 0.75rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #b85c38 !important;
  margin-top: 2px;
  font-weight: 500;
}
.hero__note {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--muted);
  border-left: 3px solid var(--green-500);
  padding: 2px 0 2px 14px;
  line-height: 1.55;
}

.hero__visual { position: relative; }
.hero__visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Hero CTA */
.hero__cta { margin: 0; }

/* === ABOUT === */
.about {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__eyebrow { display: inline-flex; margin-bottom: 14px; }
.about .lede { font-size: 1.05rem; color: var(--green-900); }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.about__stats strong {
  display: block;
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.7rem;
  color: var(--green-700);
  font-weight: 600;
  line-height: 1;
}
.about__stats span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* === CARDS === */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__num {
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 0.85rem;
  color: var(--green-500);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.card h3 { color: var(--green-900); margin-bottom: 14px; }
.card ul { list-style: none; padding: 0; margin: 0; }
.card ul li {
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}
.card ul li:last-child { border-bottom: 0; }
.card ul li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 12px; height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237ea687' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2v20M2 12h20M4.5 4.5l15 15M19.5 4.5l-15 15'/></svg>") center/contain no-repeat;
}
.card__intro { color: var(--muted); margin-bottom: 12px; font-size: 0.95rem; }
.card__hint { color: var(--muted); font-size: 0.88rem; margin-top: 14px; }

/* === STAGES === */
.stages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.stage {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 6px 24px rgba(40,60,45,0.06);
}
.stage--accent { background: var(--green-900); color: #e6efe6; }
.stage--accent h3 { color: #fff; }
.stage--accent .stage__tag { background: var(--accent); color: #fff; }
.stage--accent .stage__days { color: var(--green-100); }

.stage__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; gap: 8px; flex-wrap: wrap;
}
.stage__tag {
  background: var(--green-100); color: var(--green-900);
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px; font-weight: 600;
}
.stage__days { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.stage h3 small { font-size: 0.65em; color: var(--accent); font-weight: 400; }
.stage__goal { font-size: 0.95rem; }
.stage ul { padding-left: 18px; margin: 8px 0 14px; }
.stage ul li { margin-bottom: 6px; font-size: 0.92rem; }
.stage__quote { font-size: 0.9rem; opacity: 0.85; margin-top: 12px; }
.stage__choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ico-check {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--green-500);
  background: var(--green-100);
  border-radius: 50%;
  padding: 3px;
}
.stage--accent .ico-check {
  color: #fff;
  background: var(--accent);
}

/* === RESULTS — BENTO 2026 === */
.results-section {
  position: relative;
}
.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 0%, rgba(126,166,135,0.08), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(201,139,91,0.06), transparent 40%);
  pointer-events: none;
}
.results-section > * { position: relative; }

.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: 10px;
}

/* === HERO STAT === */
.bento__hero {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(140deg, #2f4a37 0%, #3b5a44 60%, #4f7a5a 100%);
  color: #fff;
  padding: 26px 22px;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.bento__hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.bento__hero-bg svg { width: 100%; height: 100%; }
.bento__hero-content { position: relative; z-index: 1; }
.bento__label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.bento__big {
  font-family: 'Spectral', 'Times New Roman', serif;
  font-weight: 600;
  font-size: clamp(3rem, 14vw, 5rem);
  line-height: 0.95;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.bento__minus {
  background: linear-gradient(135deg, #f0c39a, #c98b5b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bento__sep {
  font-size: 0.55em;
  opacity: 0.5;
  margin: 0 2px;
  transform: translateY(-0.2em);
}
.bento__unit {
  font-size: 0.42em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-left: 8px;
  align-self: center;
  padding-bottom: 0.4em;
  opacity: 0.85;
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
}
.bento__hero p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  max-width: 320px;
  line-height: 1.5;
  margin: 0;
}

/* === STAT CARDS === */
.bento__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px 16px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px;
}
.bento__card::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -30%;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-100) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
  transition: transform .5s ease, opacity .3s;
}
.bento__card:hover {
  transform: translateY(-3px);
  border-color: rgba(126,166,135,0.4);
  box-shadow: 0 14px 40px rgba(40,60,45,0.1);
}
.bento__card:hover::after {
  transform: scale(1.4);
  opacity: 0.8;
}
.bento__card:hover .bento__icon { transform: rotate(-6deg) scale(1.05); }

.bento__num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: 'Spectral', 'Times New Roman', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--green-500);
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.bento__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff5f0 0%, #d6e6da 100%);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 4px 12px rgba(126,166,135,0.15);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.bento__icon svg { width: 22px; height: 22px; }

.bento__body { position: relative; z-index: 1; }
.bento__body h4 {
  color: var(--green-900);
  margin: 0 0 4px;
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.bento__body p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}

/* === QUOTE BAND === */
.bento__quote {
  grid-column: 1 / -1;
  position: relative;
  background: var(--cream);
  border: 1px dashed rgba(126,166,135,0.4);
  border-radius: 18px;
  padding: 22px 24px 22px 60px;
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-900);
  line-height: 1.4;
}
.bento__quote-mark {
  position: absolute;
  top: 18px; left: 20px;
  width: 28px; height: 28px;
  color: var(--green-500);
  opacity: 0.6;
}
.bento__quote p { margin: 0; }


/* ===========================================
   BENTO — TABLET (600px+)
   =========================================== */
@media (min-width: 600px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .bento__hero {
    grid-column: span 4;
    padding: 36px 32px;
    min-height: 240px;
  }
  .bento__card { grid-column: span 2; padding: 22px 20px; min-height: 170px; }
  .bento__quote {
    grid-column: span 4;
    padding: 26px 30px 26px 70px;
    font-size: 1.3rem;
  }
}


/* ===========================================
   BENTO — DESKTOP (900px+)
   =========================================== */
@media (min-width: 900px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
  /* Row 1: hero spans 3, two cards 1.5 each */
  .bento__hero {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 320px;
    padding: 44px 40px;
  }
  .bento__hero p { font-size: 0.95rem; max-width: 360px; }
  .bento__card { grid-column: span 3; min-height: 150px; }
  /* cards 1-3: span 3 each — but with 6 cols and hero=3, row1 gets 1 card span3.
     Actually layout: hero(3) + card01(3) | card02(3) + card03(3) | quote(6) | card04(3) + card05(3) */
  .bento__quote {
    grid-column: span 6;
    padding: 32px 40px 32px 90px;
    font-size: 1.5rem;
  }
  .bento__quote-mark { top: 26px; left: 36px; width: 36px; height: 36px; }

  .bento__card { padding: 26px 24px; }
  .bento__icon { width: 48px; height: 48px; border-radius: 14px; }
  .bento__icon svg { width: 26px; height: 26px; }
  .bento__body h4 { font-size: 1.3rem; }
  .bento__body p { font-size: 0.92rem; }
  .bento__num { font-size: 0.95rem; top: 18px; right: 22px; }
}

/* === FOR LIST === */
.for-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  display: grid;
  gap: 12px;
}
.for-list li {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px 16px 48px;
  position: relative;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}
.for-list li::before {
  content: '';
  position: absolute;
  left: 16px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%234f7a5a'><path d='M16 16c-2-3-2-7 0-9 2 2 2 6 0 9zm0 0c-3-2-7-2-9 0 2 2 6 2 9 0zm0 0c2 3 2 7 0 9-2-2-2-6 0-9zm0 0c3 2 7 2 9 0-2-2-6-2-9 0zM15 16h2v10h-2z'/></svg>") center/contain no-repeat;
}

/* === EXPERTS === */
.experts { display: grid; gap: 36px; }
.expert {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.expert__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.expert__role {
  color: var(--green-700);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.expert ul { padding-left: 18px; }
.expert ul li { margin-bottom: 4px; }

/* === SAFETY === */
.safety { max-width: 820px; margin: 0 auto; text-align: center; }
.safety p { color: #d8e1d8; }
.safety__warn {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 8px;
  text-align: left;
  color: #fff !important;
  margin: 20px 0;
  font-size: 0.95rem;
}

/* === FORMAT === */
.format {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.format__item {
  background: #fff;
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.format__item h4 {
  color: var(--green-700);
  font-size: 0.72rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.format__item p { margin: 0; color: var(--text); font-size: 0.95rem; }

/* === FAQ === */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 18px;
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--green-900);
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--green-500);
  transition: transform .2s;
  font-family: 'Manrope', sans-serif;
  line-height: 1;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 16px; color: var(--text); font-size: 0.95rem; }

/* === CTA === */
.cta__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.8rem, 6vw, 3rem); }
.cta p { color: var(--green-900); font-size: 1.02rem; margin-bottom: 28px; }

/* === FOOTER === */
.footer {
  background: var(--green-900);
  color: #d8e1d8;
  padding: 32px 0;
}
.footer__inner {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: space-between;
  gap: 14px;
}
.footer__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.25rem; color: #fff; font-weight: 600;
}
.footer__brand img {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  object-fit: contain;
}
.footer p { margin: 0; font-size: 0.85rem; opacity: 0.8; }
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 0.85rem;
}
.footer__legal a {
  color: #d8e1d8;
  opacity: 0.85;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1px;
  transition: opacity .2s ease, border-color .2s ease;
}
.footer__legal a:hover { opacity: 1; border-color: rgba(255,255,255,0.6); }


/* ===========================================
   TABLET — 600px and up
   =========================================== */
@media (min-width: 600px) {
  body { font-size: 16.5px; }

  .container { padding: 0 24px; }

  .section { padding: 72px 0; }
  .section__head { margin-bottom: 48px; }

  .hero { padding: 56px 0 80px; }
  .hero__visual img { height: 460px; }

  .about__image img { height: 420px; }

  .cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .card { padding: 32px 26px; }

  .format { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .footer__inner { flex-direction: row; align-items: center; }
}


/* ===========================================
   DESKTOP — 900px and up
   =========================================== */
@media (min-width: 900px) {
  body { font-size: 17px; line-height: 1.65; }

  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.1rem; }

  .nav__inner { height: 72px; }
  .nav__links {
    display: flex;
    gap: 28px;
  }
  .nav__links a { color: var(--text); font-size: 0.92rem; }
  .nav__links a:hover { color: var(--green-700); }

  .logo { font-size: 1.5rem; gap: 10px; }
  .logo img { width: 34px; height: 34px; }

  .btn { padding: 16px 34px; }
  .btn--small { padding: 11px 22px; font-size: 0.85rem; }

  .section { padding: 100px 0; }
  .section__head { margin-bottom: 60px; }

  .hero { padding: 80px 0 100px; }
  .hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .hero__visual { order: 0; }
  .hero__lead { font-size: 1.2rem; }
  .hero__desc { margin-bottom: 32px; }
  .hero__meta { gap: 40px; padding: 18px 0; margin-bottom: 32px; }
  .hero__meta span { font-size: 0.78rem; letter-spacing: 0.15em; }
  .hero__meta strong { font-size: 1.6rem; }
  .hero__note { margin-top: 28px; font-size: 0.95rem; padding-left: 16px; }
  .hero__visual img { height: 620px; }

  .about {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
  }
  .about__image img { height: 580px; }
  .about .lede { font-size: 1.15rem; }
  .about__stats { gap: 16px; margin-top: 32px; padding-top: 28px; }
  .about__stats strong { font-size: 2.2rem; }
  .about__stats span { font-size: 0.82rem; }

  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .card { padding: 36px 30px; }
  .card__num { font-size: 0.9rem; }
  .card ul li { font-size: 0.95rem; }

  .stages { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .stage { padding: 36px 30px; }
  .stage__tag { font-size: 0.7rem; padding: 6px 12px; }
  .stage__days { font-size: 0.85rem; }

  .for-list { gap: 14px; }
  .for-list li {
    padding: 20px 24px 20px 56px;
    font-size: 1rem;
  }
  .for-list li::before { left: 20px; width: 26px; height: 26px; }

  .experts { gap: 50px; }
  .expert {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
  }
  .expert:nth-child(even) { direction: rtl; }
  .expert:nth-child(even) > * { direction: ltr; }
  .expert__photo img { aspect-ratio: 1 / 1; height: auto; }
  .expert__role { font-size: 1rem; margin-bottom: 18px; padding-bottom: 18px; }

  .safety__warn { padding: 18px 24px; margin: 24px 0; font-size: 1rem; }

  .format {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .format__item { padding: 28px 26px; }
  .format__item h4 { font-size: 0.78rem; letter-spacing: 0.18em; }
  .format__item p { font-size: 1rem; }

  .faq { gap: 12px; }
  .faq details { padding: 6px 24px; }
  .faq summary { font-size: 1.25rem; padding: 16px 0; }
  .faq summary::after { font-size: 1.6rem; }
  .faq p { font-size: 1rem; padding-bottom: 18px; }

  .cta p { font-size: 1.1rem; margin-bottom: 32px; }

  .footer { padding: 40px 0; }
  .footer__brand { font-size: 1.4rem; gap: 12px; }
  .footer__brand img { width: 32px; height: 32px; }
  .footer p { font-size: 0.9rem; }
}


/* ===========================================
   LARGE DESKTOP — 1200px and up
   =========================================== */
@media (min-width: 1200px) {
  .container { padding: 0 32px; }
  .cards { gap: 28px; }
}


/* ===========================================================
   EDITORIAL POLISH — inspired by Linear / Mercury / ElevenLabs
   refined typography, hairlines, tabular nums, paper grain
   =========================================================== */

:root {
  --hairline: rgba(47, 74, 55, 0.12);
  --hairline-strong: rgba(47, 74, 55, 0.22);
}

/* OpenType: tabular numerals + ligatures, optical sizing */
html { font-feature-settings: "ss01", "cv11", "kern"; }
body { font-feature-settings: "kern", "liga", "calt"; }
.hero__meta strong,
.about__stats strong,
.bento__big,
.stage__days,
.card__num,
.bento__num {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum", "lnum";
}

/* Subtle paper grain — gives the cream texture Refero-style references love */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.28;
  mix-blend-mode: multiply;
  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='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.22  0 0 0 0 0.18  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Tighter editorial display type */
h1, h2 {
  font-weight: 500;
  letter-spacing: -0.022em;
}
h1 { line-height: 1.05; }
h2 { line-height: 1.1; }
h3 { letter-spacing: -0.01em; }

/* Eyebrow with leading rule — refined section mark */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
  position: relative;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
/* Symmetric rule for centered section heads */
.section__head .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.section--dark .eyebrow,
.eyebrow--light { color: rgba(255,255,255,0.7); }

/* Buttons: keep primary, refine the small one to feel premium */
.btn {
  position: relative;
  border-radius: 999px;
  letter-spacing: 0.005em;
}
.btn--small { letter-spacing: 0.01em; }

/* Sticky nav: hairline border, tighter blur */
.nav {
  background: rgba(251, 250, 246, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav__links a {
  position: relative;
  letter-spacing: 0.005em;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

/* Hero: editorial scale on large screens */
@media (min-width: 900px) {
  .hero__text h1 { font-size: clamp(3.2rem, 5.2vw, 4.6rem); }
  .hero__lead { line-height: 1.4; }
}

/* Hero meta — use hairlines, vertical divider on tablet+ */
.hero__meta {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 600px) {
  .hero__meta > div { position: relative; padding-right: 28px; }
  .hero__meta > div + div { padding-left: 28px; border-left: 1px solid var(--hairline); }
}

/* About stats — hairline divider grid */
.about__stats {
  border-top: 1px solid var(--hairline);
  gap: 0;
  align-items: start;
}
.about__stats > div {
  padding: 4px 16px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about__stats > div:first-child { padding-left: 0; }
.about__stats > div:last-child { border-right: 0; padding-right: 0; }
.about__stats span { line-height: 1.3; }

/* Cards — flatten to hairline editorial blocks */
.card {
  background: #fff;
  border: 1px solid var(--hairline);
  box-shadow: none;
  transition: border-color .25s ease, transform .25s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--green-500);
  box-shadow: 0 1px 0 var(--green-500);
}
.card__num {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--green-700);
  opacity: 0.7;
}
.card ul li { border-bottom-color: var(--hairline); }

/* Stages — softer edges, hairline style for default cards */
.stage {
  border: 1px solid var(--hairline);
  box-shadow: none;
}
.stage--accent { border-color: var(--green-900); }

/* FAQ — minimal hairline list, no boxed look */
.faq { gap: 0; max-width: 820px; }
.faq details {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--hairline);
  border-radius: 0;
  padding: 4px 0;
  box-shadow: none !important;
}
.faq details:last-of-type { border-bottom: 1px solid var(--hairline); }
.faq summary {
  padding: 20px 0;
  transition: color .2s ease;
}
.faq summary:hover { color: var(--green-700); }
.faq p { padding: 0 0 20px; max-width: 70ch; }

/* Format grid — tabular hairline list */
.format__item {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--hairline);
  border-radius: 0;
  padding: 22px 0 6px;
}
.format__item h4 { color: var(--green-700); margin-bottom: 6px; }

/* For-list — clean text rows with custom marker */
.for-list li {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--hairline);
  border-radius: 0;
  padding: 18px 0 18px 36px;
}
.for-list li:last-child { border-bottom: 1px solid var(--hairline); }
.for-list li::before {
  left: 0;
  width: 18px; height: 18px;
  background: none;
  border: 1.5px solid var(--green-500);
  border-radius: 50%;
}
.for-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 50%;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--green-700);
  border-bottom: 1.5px solid var(--green-700);
  transform: translateY(-65%) rotate(-45deg);
}

/* Section heading subtitle — width clamp for editorial feel */
.section__head h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.section__sub { max-width: 56ch; margin-left: auto; margin-right: auto; }

/* CTA button on dark sections — keep arrow tone */
.section--dark .btn,
.section--green .btn { /* placeholder kept for spec compatibility */ }

/* Footer — finer scale */
.footer {
  border-top: 0;
  box-shadow: 0 80px 0 var(--green-900);
}
.footer p { letter-spacing: 0.01em; }

/* Selection */
::selection { background: var(--green-100); color: var(--green-900); }

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Reveal-on-scroll — used by script.js if .reveal is added */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* === LEGAL PAGES (Datenschutz / Impressum) === */
.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}
.legal h2 {
  font-size: clamp(1.25rem, 3.5vw, 1.6rem);
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
  color: var(--green-900);
}
.legal p,
.legal ul {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}
.legal ul {
  padding-left: 1.2rem;
  margin: 0 0 1.1em;
}
.legal ul li { margin-bottom: 6px; }
.legal a {
  color: var(--green-700);
  border-bottom: 1px solid var(--hairline-strong);
  transition: color .2s ease, border-color .2s ease;
}
.legal a:hover {
  color: var(--green-900);
  border-color: var(--green-700);
}
.legal__updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--hairline);
}

/* === CLUB PAGE === */
.club-page {
  background:
    radial-gradient(900px 460px at 8% 4%, rgba(201,139,91,0.09), transparent 58%),
    radial-gradient(760px 420px at 92% 14%, rgba(126,166,135,0.14), transparent 58%),
    var(--bg);
}
.club-hero {
  padding: 32px 0 58px;
}
.club-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.club-hero__visual { order: -1; }
.club-hero__visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.club-hero__desc {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 24px;
}
.club-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0;
}
.club-hero__meta span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.club-hero__meta strong {
  display: block;
  color: var(--green-900);
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.3rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums lining-nums;
}
.club-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.club-link {
  color: var(--green-900);
  border-bottom: 1px solid var(--hairline-strong);
  font-size: 0.94rem;
}
.club-link:hover { border-color: var(--green-700); }
.club-intro { padding-top: 0; }
.club-intro__inner {
  max-width: 920px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding-top: 28px;
  padding-bottom: 28px;
}
.club-intro p {
  margin: 0;
  color: var(--green-900);
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: clamp(1.45rem, 4.5vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.018em;
}
.club-checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  gap: 0;
}
.club-checklist li {
  position: relative;
  border-top: 1px solid var(--hairline);
  padding: 18px 0 18px 40px;
  color: var(--text);
}
.club-checklist li:last-child { border-bottom: 1px solid var(--hairline); }
.club-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--green-500);
  border-radius: 50%;
}
.club-checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 29px;
  width: 9px;
  height: 5px;
  border-left: 1.6px solid var(--green-700);
  border-bottom: 1.6px solid var(--green-700);
  transform: rotate(-45deg);
}
.club-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.club-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px 22px;
  min-height: 100%;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.club-card:hover {
  transform: translateY(-2px);
  border-color: var(--green-500);
  box-shadow: 0 1px 0 var(--green-500);
}
.club-card__num {
  display: inline-block;
  color: var(--green-700);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.club-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.club-card li {
  position: relative;
  padding: 8px 0 8px 20px;
  border-bottom: 1px dashed var(--hairline);
  font-size: 0.93rem;
}
.club-card li:last-child { border-bottom: 0; }
.club-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
}
.club-support__grid {
  display: grid;
  gap: 18px;
}
.club-person {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: var(--radius);
  padding: 18px;
}
.club-person img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(40,60,45,0.10);
}
.club-person h3 { margin-bottom: 8px; }
.club-person p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.club-support__note {
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
  color: var(--green-900);
}
.club-support__note p { margin: 0; }
.club-habit__inner {
  max-width: 900px;
  text-align: center;
}
.club-habit p {
  color: #d8e1d8;
  font-size: 1.02rem;
  max-width: 760px;
  margin: 0 auto 28px;
}
.club-habit__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}
.club-habit__steps div {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  text-align: left;
}
.club-habit__steps span {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.club-habit__steps strong {
  color: #fff;
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 500;
}
.club-outcomes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.club-outcomes__grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--hairline);
  padding: 20px 0;
}
.club-outcomes__grid span {
  color: var(--green-700);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.club-outcomes__grid p {
  margin: 0;
  color: var(--green-900);
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.2rem;
  line-height: 1.28;
}
.club-manifesto__inner {
  max-width: 900px;
  text-align: center;
}
.club-manifesto p {
  color: var(--muted);
  margin: 0 auto 18px;
  max-width: 720px;
}
.club-manifesto h2 {
  max-width: 780px;
  margin: 0 auto;
}
.club-signup__inner {
  display: grid;
  gap: 34px;
}
.club-signup__text p {
  color: var(--muted);
  max-width: 560px;
}
.club-form {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 16px 50px rgba(40,60,45,0.08);
  display: grid;
  gap: 16px;
}
.club-form label {
  display: grid;
  gap: 7px;
}
.club-form label span {
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.club-form input,
.club-form select,
.club-form textarea {
  width: 100%;
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.club-form textarea { resize: vertical; min-height: 108px; }
.club-form input:focus,
.club-form select:focus,
.club-form textarea:focus {
  border-color: var(--green-700);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(126,166,135,0.16);
}
.club-form .btn {
  border: 0;
  cursor: pointer;
  width: 100%;
}
.club-form__hint {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.club-form__status {
  min-height: 1.4em;
  margin: 0;
  color: var(--green-700);
  font-size: 0.9rem;
}
.club-form__result {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}
.club-form__result[hidden] { display: none; }
.club-form__result textarea { min-height: 150px; }
.club-form__telegram {
  justify-self: start;
  color: var(--green-900);
  font-weight: 600;
  border-bottom: 1px solid var(--hairline-strong);
}

@media (min-width: 600px) {
  .club-hero { padding: 56px 0 78px; }
  .club-hero__visual img { height: 460px; }
  .club-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .club-card { padding: 32px 26px; }
  .club-habit__steps { grid-template-columns: repeat(3, 1fr); }
  .club-outcomes__grid { grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--hairline); }
  .club-outcomes__grid article { padding: 24px; border-right: 1px solid var(--hairline); }
  .club-form { padding: 30px; }
}

@media (min-width: 900px) {
  .club-hero { padding: 84px 0 104px; }
  .club-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 72px;
  }
  .club-hero__visual { order: 0; }
  .club-hero__visual img { height: 620px; }
  .club-hero__text h1 { font-size: clamp(3.2rem, 5.4vw, 4.8rem); }
  .club-hero__desc { font-size: 1.03rem; }
  .club-hero__meta { gap: 0; }
  .club-hero__meta > div { padding: 0 22px; border-left: 1px solid var(--hairline); }
  .club-hero__meta > div:first-child { padding-left: 0; border-left: 0; }
  .club-hero__meta strong { font-size: 1.55rem; }
  .club-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .club-card--wide { grid-column: span 2; }
  .club-support__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .club-person { grid-template-columns: 120px 1fr; gap: 24px; padding: 24px; }
  .club-person img { width: 120px; height: 120px; }
  .club-habit p { font-size: 1.1rem; }
  .club-habit__steps div { padding: 24px; }
  .club-outcomes__grid p { font-size: 1.32rem; }
  .club-signup__inner {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 72px;
  }
}

/* === CLUB PAGE REDESIGN — 2025/2026 editorial system === */
.club-page {
  background:
    linear-gradient(180deg, var(--bg) 0%, #f4f0e7 45%, var(--bg) 100%);
}
.club-page .nav {
  background: rgba(247,244,236,0.78);
}
.club-hero {
  position: relative;
  min-height: 76svh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
  background: var(--green-900);
}
.club-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
  transform: scale(1.02);
}
.club-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(31,48,36,0.88) 0%, rgba(31,48,36,0.62) 42%, rgba(31,48,36,0.18) 100%),
    linear-gradient(180deg, rgba(31,48,36,0.18) 0%, rgba(31,48,36,0.84) 100%);
}
.club-hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(88px, 12vh, 140px);
  padding-bottom: 128px;
}
.club-hero__content h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(3.1rem, 12vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.club-hero__content p {
  max-width: 640px;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.45;
}
.club-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.club-hero__link {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.42);
  padding-bottom: 2px;
}
.club-hero__link:hover {
  color: var(--green-100);
  border-color: #fff;
}
.club-hero__dock {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 32px), var(--max));
  background: rgba(247,244,236,0.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid rgba(255,255,255,0.38);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}
.club-hero__dock div {
  min-width: 0;
  padding: 18px 16px;
  border-left: 1px solid var(--hairline);
}
.club-hero__dock div:first-child { border-left: 0; }
.club-hero__dock span,
.club-system__index {
  display: block;
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.club-hero__dock strong {
  display: block;
  color: var(--green-900);
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: clamp(1rem, 2.8vw, 1.45rem);
  font-weight: 500;
  line-height: 1.08;
}
.club-opening {
  padding-top: 48px;
}
.club-opening__grid {
  display: grid;
  gap: 28px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 48px;
}
.club-opening__statement {
  margin: 0;
  color: var(--green-900);
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: clamp(2rem, 7vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.club-opening__text {
  color: var(--muted);
  font-size: 1rem;
}
.club-opening__text p:last-child { margin-bottom: 0; }
.club-for__rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.club-signal {
  position: relative;
  min-height: 0;
  padding: 24px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: rgba(255,255,255,0.58);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}
.club-signal::before {
  content: none;
}
.club-signal__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(126,166,135,0.38);
  background: linear-gradient(145deg, rgba(255,255,255,0.86), rgba(230,239,230,0.62));
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.club-signal__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.club-signal__tag {
  display: block;
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.club-signal p {
  margin: 2px 0 0;
  color: var(--green-900);
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.25rem;
  line-height: 1.22;
}
.club-section-kicker {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}
.club-section-kicker h2 {
  max-width: none;
  margin: 0;
}
.club-system__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.club-system__panel {
  position: relative;
  min-height: 240px;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: #fff;
  overflow: hidden;
}
.club-system__panel::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 120px;
  height: 120px;
  opacity: 0.18;
  background:
    radial-gradient(circle at 22px 22px, var(--green-500) 0 2px, transparent 2.5px) 0 0 / 28px 28px;
  border: 1px solid rgba(126,166,135,0.45);
  border-radius: 30px;
}
.club-system__panel--platform::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  height: 150px;
  border-top: 1px solid rgba(255,255,255,0.13);
  border-bottom: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.10) 0 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, transparent 0 30%, rgba(255,255,255,0.09) 30% 31%, transparent 31% 62%, rgba(255,255,255,0.09) 62% 63%, transparent 63%);
  opacity: 0.85;
}
.club-system__panel--platform {
  background: var(--green-900);
  color: #e8efe8;
}
.club-system__panel--platform h3,
.club-system__panel--platform .club-system__index { color: #fff; }
.club-system__panel h3 {
  max-width: 640px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 4vw, 2.3rem);
}
.club-system__panel p {
  position: relative;
  z-index: 1;
  max-width: 670px;
  color: inherit;
  opacity: 0.86;
}
.club-system__panel ul {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 8px;
}
.club-system__panel li {
  color: #fff;
  padding-left: 18px;
  position: relative;
}
.club-system__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.club-system__panel--community { background: #fffaf0; }
.club-system__panel--monthly { background: #eef5ef; }
.club-system__panel--movement { background: #fff; }
.club-system__panel--platform p,
.club-system__panel--platform ul,
.club-system__panel--platform h3,
.club-system__panel--platform .club-system__index {
  position: relative;
  z-index: 1;
}
.club-rhythm {
  position: relative;
  background:
    linear-gradient(180deg, #3b5a44 0%, var(--green-900) 18%, var(--green-900) 82%, #36523e 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(47,74,55,0.18);
}
.club-rhythm__grid {
  display: grid;
  gap: 34px;
}
.club-rhythm__sticky h2 {
  color: #fff;
  max-width: 720px;
}
.club-rhythm__sticky p {
  color: #d8e1d8;
  max-width: 620px;
}
.club-rhythm__list {
  display: grid;
  gap: 12px;
}
.club-rhythm__item {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  padding: 24px;
}
.club-rhythm__item span,
.club-expert span {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.club-rhythm__item h3 { color: #fff; }
.club-rhythm__item p {
  color: #d8e1d8;
  margin: 0;
}
.club-support__layout {
  display: grid;
  gap: 16px;
}
.club-support.section--green {
  background:
    linear-gradient(180deg, #d9e6dc 0%, var(--green-100) 36%, #eef5ef 100%);
}
.club-expert {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: end;
  gap: 18px;
  min-height: 230px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.72);
}
.club-expert img {
  width: 104px;
  height: 164px;
  object-fit: cover;
  object-position: top center;
  border-radius: 999px 999px 14px 14px;
  box-shadow: 0 14px 32px rgba(40,60,45,0.12);
}
.club-expert h3 {
  margin-bottom: 6px;
  font-size: 1.65rem;
}
.club-expert p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.club-support__center {
  min-height: 230px;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: var(--green-900);
  color: #fff;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.club-support__center p {
  color: #e8efe8;
  margin: 0 0 22px;
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.35rem;
  line-height: 1.22;
}
.club-support__center strong {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.club-outcomes__layout {
  display: grid;
  gap: 34px;
}
.club-outcomes {
  background: var(--bg);
}
.club-outcomes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.club-outcomes__grid article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}
.club-outcomes__grid span {
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.club-outcomes__grid p {
  margin: 0;
  color: var(--green-900);
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.22rem;
  line-height: 1.24;
}
.club-signup {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--cream) 42%, #f3eee2 100%);
}
.club-signup__inner {
  display: grid;
  gap: 28px;
}
.club-signup__text p {
  color: var(--muted);
  max-width: 560px;
}
.club-signup__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.club-signup__steps span {
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.club-form {
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(40,60,45,0.10);
  display: grid;
  gap: 16px;
}

@media (max-width: 520px) {
  .club-hero__dock {
    grid-template-columns: 1fr;
  }
  .club-hero__dock div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    border-left: 0;
    border-top: 1px solid var(--hairline);
    padding: 12px 14px;
  }
  .club-hero__dock div:first-child { border-top: 0; }
  .club-hero__dock span { margin-bottom: 0; }
  .club-hero__content { padding-bottom: 176px; }
  .club-expert {
    grid-template-columns: 88px 1fr;
  }
  .club-expert img {
    width: 88px;
    height: 136px;
  }
}

@media (min-width: 600px) {
  .club-hero { min-height: 78svh; }
  .club-opening__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 42px;
  }
  .club-for__rail {
    grid-template-columns: repeat(2, 1fr);
  }
  .club-system__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .club-system__panel--platform {
    grid-column: span 2;
    min-height: 360px;
  }
  .club-outcomes__grid {
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid var(--hairline);
  }
  .club-outcomes__grid article {
    padding: 26px;
    border-right: 1px solid var(--hairline);
  }
  .club-form { padding: 30px; }
}

@media (min-width: 900px) {
  .club-hero { min-height: calc(100svh - 92px); }
  .club-hero__content {
    padding-top: 120px;
    padding-bottom: 150px;
  }
  .club-opening {
    padding-top: 74px;
  }
  .club-opening__grid {
    padding-bottom: 78px;
  }
  .club-for__rail {
    grid-template-columns: repeat(4, 1fr);
  }
  .club-signal:nth-child(even) { transform: translateY(34px); }
  .club-system__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 18px;
  }
  .club-system__panel { padding: 34px; }
  .club-system__panel--platform {
    grid-column: span 4;
    grid-row: span 2;
  }
  .club-system__panel--community,
  .club-system__panel--monthly,
  .club-system__panel--movement {
    grid-column: span 2;
  }
  .club-rhythm__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 72px;
  }
  .club-rhythm__sticky {
    position: sticky;
    top: 112px;
  }
  .club-rhythm__item {
    min-height: 190px;
    padding: 34px;
  }
  .club-support__layout {
    grid-template-columns: 1fr 0.9fr 1fr;
    align-items: stretch;
    gap: 18px;
  }
  .club-expert {
    grid-template-columns: 1fr;
    align-content: space-between;
    min-height: 440px;
    padding: 24px;
  }
  .club-expert img {
    width: 100%;
    height: 260px;
    border-radius: 999px 999px 18px 18px;
  }
  .club-expert--primary { transform: translateY(34px); }
  .club-support__center {
    min-height: 440px;
    padding: 34px;
  }
  .club-outcomes__layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 72px;
  }
  .club-outcomes__grid p { font-size: 1.38rem; }
  .club-signup__inner {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 72px;
  }
}

/* === CLUB SUBSCRIPTION LAYERS === */
.club-membership {
  padding-top: 28px;
}
.club-membership__layout {
  display: grid;
  gap: 18px;
}
.club-membership__summary {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 26px;
  background: var(--green-900);
  color: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.12);
}
.club-membership__summary::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 150px;
  height: 150px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, rgba(255,255,255,0.08) 0 1px, transparent 1px) 0 0 / 100% 25%;
  opacity: 0.85;
}
.club-membership__label,
.club-membership__card span,
.club-month-card span {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.club-membership__summary strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 420px;
  color: #fff;
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.club-membership__summary p {
  position: relative;
  z-index: 1;
  color: #d8e1d8;
  max-width: 470px;
  margin-bottom: 24px;
}
.club-membership__summary .btn {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  background: #fff;
  border-color: #fff;
  color: var(--green-900);
}
.club-membership__summary .btn:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--green-900);
}
.club-membership__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.club-membership__card,
.club-month-card {
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.62);
}
.club-membership__card h3,
.club-month-card h3 {
  margin-bottom: 10px;
}
.club-membership__card p,
.club-month-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.96rem;
}
.club-month {
  padding-top: 24px;
  background: linear-gradient(180deg, var(--bg) 0%, #f4f0e7 100%);
}
.club-month__inner {
  display: grid;
  gap: 28px;
  padding-top: 42px;
  border-top: 1px solid var(--hairline);
}
.club-month__intro p {
  max-width: 620px;
  color: var(--muted);
}
.club-month__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.club-month-card {
  min-height: 210px;
}
.club-month-card:nth-child(2) {
  background: #fffaf0;
}
.club-month-card:nth-child(3) {
  background: #eef5ef;
}

@media (min-width: 600px) {
  .club-membership__cards,
  .club-month__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .club-month__cards .club-month-card:first-child {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .club-membership__layout {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: stretch;
    gap: 18px;
  }
  .club-membership .club-section-kicker {
    grid-column: 1 / -1;
    margin-bottom: 18px;
  }
  .club-membership__summary {
    min-height: 520px;
    padding: 34px;
  }
  .club-membership__cards {
    gap: 18px;
  }
  .club-membership__card {
    padding: 30px;
  }
  .club-month__inner {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 72px;
    padding-top: 72px;
  }
  .club-month__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .club-month__cards .club-month-card:first-child {
    grid-column: auto;
  }
  .club-month-card:nth-child(2) {
    transform: translateY(34px);
  }
}

/* === SCROLL-TO-TOP BUTTON === */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  color: var(--green-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .2s ease, border-color .2s ease;
  box-shadow: 0 6px 20px rgba(40,60,45,0.10);
}
.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover {
  background: #fff;
  border-color: var(--green-700);
}
.to-top svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 900px) {
  .to-top {
    right: 28px;
    bottom: 28px;
    width: 48px;
    height: 48px;
  }
}

/* === SCROLL PROGRESS BAR === */
.nav__progress {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.nav__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-700), var(--accent));
  transition: width .12s linear;
}

/* === GIFT BANNER === */
.gift-banner {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 300px;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(40, 60, 45, 0.22), 0 4px 16px rgba(40,60,45,0.08);
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  pointer-events: none;
}
.gift-banner.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.gift-banner.is-hidden {
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
}
.gift-banner__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green-900);
  padding: 10px 14px 10px 16px;
}
.gift-banner__tag {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-100);
}
.gift-banner__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  padding: 0;
  transition: background 0.2s;
  flex-shrink: 0;
}
.gift-banner__close:hover { background: rgba(255,255,255,0.25); }
.gift-banner__close svg { width: 14px; height: 14px; display: block; }
.gift-banner__body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 12px;
}
.gift-banner__visual {
  font-size: 2.6rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.gift-banner__title {
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-900);
  margin: 0 0 8px;
  line-height: 1.25;
}
.gift-banner__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gift-banner__list li {
  font-size: 0.78rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.gift-banner__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-500);
}
.gift-banner__btn {
  display: block;
  margin: 0 16px 10px;
  padding: 13px 16px;
  background: var(--green-900);
  color: #fff;
  text-align: center;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.gift-banner__btn:hover { background: var(--green-700); color: #fff; transform: translateY(-1px); }
.gift-banner__note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 14px;
  padding: 0;
}
@media (max-width: 400px) {
  .gift-banner {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 16px;
  }
}
  will-change: width;
}

/* === NAV ACTIONS WRAPPER === */
.nav { position: sticky; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* === HAMBURGER === */
.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px; height: 40px;
  border: 1px solid var(--hairline-strong);
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, border-color .2s ease;
}
.nav__burger:hover { background: #fff; border-color: var(--green-700); }
.nav__burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}
@media (min-width: 900px) {
  .nav__burger { display: none; }
}

/* === MOBILE MENU PANEL === */
.nav__mobile {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(251, 250, 246, 0.98);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 16px 20px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.nav__mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__mobile a {
  font-family: 'Spectral', 'Times New Roman', serif;
  font-size: 1.25rem;
  color: var(--green-900);
  padding: 14px 4px;
  border-bottom: 1px solid var(--hairline);
  letter-spacing: -0.005em;
}
.nav__mobile a:last-child { border-bottom: 0; }
.nav__mobile-cta {
  margin-top: 14px;
  text-align: center;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  color: #fff !important;
  border-bottom: 0 !important;
  padding: 14px 24px !important;
}
.nav__mobile-gift {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 13px 24px;
  background: var(--cream);
  border: 1.5px solid var(--green-500);
  border-radius: var(--radius);
  color: var(--green-900);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.nav__mobile-gift:hover { background: var(--green-100); }
@media (min-width: 900px) {
  .nav__mobile { display: none; }
}

/* When mobile menu open — lock body scroll subtly */
body.menu-open { overflow: hidden; }

/* Responsive CTA label in nav */
.btn__short { display: none; }
@media (max-width: 599px) {
  .nav__actions .btn--small { padding: 9px 14px; font-size: 0.78rem; }
  .nav__actions .btn__full { display: none; }
  .nav__actions .btn__short { display: inline; }
}
