/* ==========================================================================
   Ecolosophy — Commercial Webinar Landing (ecobnb.ecolosophy.com)
   Warm-editorial rebuild. Terracotta / cream / clay / forest green.
   ========================================================================== */

:root {
  --cream:        #F7F1E7;
  --cream-2:      #EFE6D6;
  --paper:        #FBF7EF;
  --ink:          #2A2420;
  --ink-soft:     #574B40;
  --muted:        #8A7A6A;
  --terracotta:   #BE5B3E;
  --terracotta-d: #A2492F;
  --clay:         #D2A183;
  --forest:       #2E4739;
  --forest-2:     #3E5C48;
  --line:         #E2D6C3;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --radius:  18px;
  --radius-s: 12px;
  --shadow: 0 30px 60px -30px rgba(46, 40, 33, 0.4);
  --shadow-soft: 0 18px 40px -24px rgba(46, 40, 33, 0.35);
  --maxw: 1080px;

  /* Ecolosophy brand system — matches the main store */
  --eco-forest-deep: #072F2D;
  --eco-forest:      #0E4A47;
  --eco-teal:        #0E7C74;
  --eco-teal-bright: #2AA79E;
  --eco-cream:       #F1E7D8;
  --eco-paper:       #FAF6F0;
  --eco-clay:        #C97B5D;
  --eco-clay-deep:   #A85F44;
  --eco-gold:        #D8A657;
  --eco-ink:         #23201B;
  --eco-sage:        #8BA888;
  --eco-water:       #A7D8D2;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ---- Atmosphere -------------------------------------------------------- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}
.ambient {
  position: fixed; z-index: 0; pointer-events: none; border-radius: 50%;
  filter: blur(80px); opacity: 0.55;
}
.ambient.a1 {
  width: 44vw; height: 44vw; top: -14vw; right: -10vw;
  background: radial-gradient(circle, var(--clay), transparent 68%);
  animation: drift1 26s ease-in-out infinite;
}
.ambient.a2 {
  width: 40vw; height: 40vw; bottom: -16vw; left: -12vw;
  background: radial-gradient(circle, #cdd8c6, transparent 68%);
  animation: drift2 32s ease-in-out infinite;
}
@keyframes drift1 { 50% { transform: translate(-3vw, 4vw) scale(1.08); } }
@keyframes drift2 { 50% { transform: translate(3vw, -3vw) scale(1.05); } }

main, .topbar, .site-foot { position: relative; z-index: 2; }

/* ---- Top bar ----------------------------------------------------------- */
.topbar {
  max-width: var(--maxw); margin: 0 auto;
  padding: 26px 28px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.wordmark {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--serif); font-weight: 600; font-size: 20px;
  letter-spacing: -0.01em; color: var(--ink); text-decoration: none;
}
.wordmark .mark { flex: none; }
.wordmark.small { font-size: 16px; gap: 7px; color: var(--ink-soft); }
.topbar-tag {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600;
}

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  border: none; border-radius: 100px; cursor: pointer;
  padding: 15px 28px; transition: transform .25s cubic-bezier(.2,.8,.2,1),
    box-shadow .25s, background .2s, color .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  line-height: 1;
}
.btn-primary {
  background: var(--terracotta); color: var(--cream);
  box-shadow: 0 12px 26px -12px rgba(190, 91, 62, 0.75);
}
.btn-primary:hover { background: var(--terracotta-d); transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(190, 91, 62, 0.8); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--line); padding: 13.5px 26px;
}
.btn-ghost:hover { border-color: var(--forest); background: rgba(46,71,57,0.04); transform: translateY(-2px); }
.btn-lg { font-size: 18px; padding: 18px 38px; }
.play-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--cream); position: relative;
  box-shadow: 0 0 0 0 rgba(247,241,231,.7); animation: pulse 2.4s infinite;
}
.play-dot::after {
  content: ""; position: absolute; left: 4px; top: 3px;
  border-left: 5px solid var(--terracotta); border-top: 3px solid transparent; border-bottom: 3px solid transparent;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(247,241,231,.6); }
  70% { box-shadow: 0 0 0 10px rgba(247,241,231,0); }
  100% { box-shadow: 0 0 0 0 rgba(247,241,231,0); }
}

/* ---- Hero -------------------------------------------------------------- */
.hero {
  max-width: 900px; margin: 0 auto; text-align: center;
  padding: 60px 28px 20px;
}
.eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--forest-2); font-weight: 600;
  background: rgba(62,92,72,0.08); padding: 7px 15px; border-radius: 100px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.3rem, 6vw, 4.15rem); line-height: 1.04;
  letter-spacing: -0.02em; color: var(--ink);
  font-optical-sizing: auto;
}
.hero h1 em {
  font-style: italic; font-weight: 500; color: var(--terracotta);
}
.subhead {
  font-size: clamp(1.05rem, 2.2vw, 1.32rem); font-weight: 400;
  color: var(--ink-soft); max-width: 620px; margin: 24px auto 0;
}
.hero-cta {
  margin-top: 34px; display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
.reassure {
  list-style: none; display: flex; gap: 8px 22px; flex-wrap: wrap;
  justify-content: center; margin-top: 26px;
  font-size: 13.5px; color: var(--muted); font-weight: 500;
}
.reassure li { position: relative; padding-left: 20px; }
.reassure li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--forest-2); font-weight: 700;
}
.reassure.center { margin-top: 20px; }

/* ---- Video ------------------------------------------------------------- */
.video-wrap { max-width: 940px; margin: 46px auto 0; padding: 0 28px; }
.video-frame {
  padding: 12px; background: var(--paper);
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}
.video-container {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden; background: #1c1a17;
}
.video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap {
  text-align: center; margin-top: 16px; font-size: 14px;
  color: var(--muted); font-style: italic;
}

/* ---- Proof ------------------------------------------------------------- */
.proof {
  max-width: var(--maxw); margin: 70px auto 0; padding: 0 28px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.proof-stats { display: grid; gap: 26px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--serif); font-weight: 500; font-size: 2.6rem;
  color: var(--terracotta); line-height: 1; letter-spacing: -0.02em;
}
.stat-num-sub { font-size: 1.6rem; color: var(--forest); }
.stat-label { font-size: 14.5px; color: var(--ink-soft); max-width: 260px; }
.testimonial {
  background: var(--forest); color: var(--cream);
  border-radius: var(--radius); padding: 34px 32px; box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial::before {
  content: "\201C"; font-family: var(--serif); font-size: 5rem;
  position: absolute; top: 2px; left: 18px; color: rgba(247,241,231,0.16); line-height: 1;
}
.testimonial blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.12rem;
  line-height: 1.5; position: relative;
}
.testimonial figcaption { margin-top: 16px; font-size: 13.5px; color: var(--clay); font-weight: 500; }

/* ---- Why --------------------------------------------------------------- */
.why { max-width: var(--maxw); margin: 88px auto 0; padding: 0 28px; text-align: center; }
.why h2, .closer h2 {
  font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem); color: var(--ink);
}
.why-grid {
  margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.why-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px; text-align: left;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.why-ico {
  color: var(--terracotta); font-size: 20px; margin-bottom: 14px;
  width: 42px; height: 42px; display: grid; place-items: center;
  background: rgba(190,91,62,0.09); border-radius: 12px;
}
.why-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.24rem; margin-bottom: 8px; }
.why-card p { font-size: 15px; color: var(--ink-soft); }

/* ---- Closer ------------------------------------------------------------ */
.closer {
  max-width: 760px; margin: 96px auto 0; padding: 56px 28px 40px; text-align: center;
}
.closer p { font-size: 1.1rem; color: var(--ink-soft); max-width: 560px; margin: 18px auto 30px; }

/* ---- Footer ------------------------------------------------------------ */
.site-foot {
  max-width: var(--maxw); margin: 80px auto 0; padding: 30px 28px 120px;
  border-top: 1px solid var(--line); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.site-foot p { font-size: 13px; color: var(--muted); }

/* ---- Sticky mobile CTA ------------------------------------------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(247,241,231,0.92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); display: none;
  transform: translateY(120%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

/* ---- Modal ------------------------------------------------------------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(30, 25, 20, 0.55); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 20px;
  animation: fade .3s ease;
}
.modal-scrim[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } }
.modal {
  background: var(--paper); border-radius: 22px; box-shadow: var(--shadow);
  width: 100%; max-width: 540px; max-height: 92vh; overflow: hidden;
  position: relative; display: flex; flex-direction: column;
  animation: pop .35s cubic-bezier(.2,.9,.2,1);
}
@keyframes pop { from { transform: translateY(14px) scale(.98); opacity: 0; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(42,36,32,0.06); color: var(--ink-soft); cursor: pointer;
  font-size: 14px; transition: background .2s;
}
.modal-close:hover { background: rgba(42,36,32,0.12); }
.modal-progress { height: 4px; background: var(--cream-2); }
.modal-progress-bar {
  height: 100%; width: 0%; background: var(--terracotta);
  transition: width .45s cubic-bezier(.4,0,.2,1); border-radius: 0 4px 4px 0;
}
.modal-body { padding: 42px 38px 36px; overflow-y: auto; }

/* Step */
.step { animation: stepIn .4s cubic-bezier(.2,.8,.2,1); }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } }
.step-kicker {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 700; margin-bottom: 10px;
}
.step h3 {
  font-family: var(--serif); font-weight: 400; font-size: 1.65rem;
  line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--ink);
}
.step .step-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 22px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 14px 16px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(190,91,62,0.12);
}
.field textarea { resize: vertical; min-height: 90px; }

/* choice buttons (employees) */
.choices { display: grid; gap: 10px; }
.choice {
  text-align: left; font-family: var(--sans); font-size: 15px; font-weight: 500;
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 15px 18px; cursor: pointer; color: var(--ink);
  transition: border-color .2s, background .2s, transform .15s;
  display: flex; align-items: center; justify-content: space-between;
}
.choice:hover { border-color: var(--clay); transform: translateX(2px); }
.choice.selected { border-color: var(--terracotta); background: rgba(190,91,62,0.06); }
.choice.selected::after { content: "✓"; color: var(--terracotta); font-weight: 700; }

/* calendar */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head button {
  width: 34px; height: 34px; border-radius: 9px; border: 1.5px solid var(--line);
  background: var(--cream); cursor: pointer; color: var(--ink-soft); font-size: 15px;
  transition: border-color .2s;
}
.cal-head button:hover:not(:disabled) { border-color: var(--terracotta); }
.cal-head button:disabled { opacity: .35; cursor: not-allowed; }
.cal-title { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-dow { text-align: center; font-size: 11px; font-weight: 700; color: var(--muted); padding: 4px 0; text-transform: uppercase; letter-spacing: .05em; }
.cal-day {
  aspect-ratio: 1; border: none; background: transparent; border-radius: 9px;
  font-family: var(--sans); font-size: 14px; color: var(--ink); cursor: pointer;
  transition: background .18s, color .18s;
}
.cal-day:hover:not(:disabled) { background: rgba(190,91,62,0.1); }
.cal-day:disabled { color: var(--line); cursor: default; }
.cal-day.muted { color: transparent; pointer-events: none; }
.cal-day.today { box-shadow: inset 0 0 0 1.5px var(--clay); }
.cal-day.selected { background: var(--terracotta); color: var(--cream); }

/* time slots */
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 6px; }
.slot {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 12px 4px; cursor: pointer; color: var(--ink); transition: all .18s;
}
.slot:hover { border-color: var(--clay); }
.slot.selected { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.slots-empty, .slots-loading { font-size: 13.5px; color: var(--muted); padding: 8px 0; }

.step-nav { display: flex; gap: 12px; margin-top: 26px; align-items: center; }
.step-nav .btn { flex: 1; }
.step-back {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-family: var(--sans); font-size: 14px; font-weight: 600; padding: 8px;
}
.step-back:hover { color: var(--ink); }
.step-error { color: var(--terracotta-d); font-size: 13px; margin-top: 10px; font-weight: 500; }
.consent { font-size: 11.5px; color: var(--muted); text-align: center; line-height: 1.5; margin-top: 18px; }

/* success */
.success { text-align: center; }
.success-check {
  width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--forest); color: var(--cream); display: grid; place-items: center;
  font-size: 30px; animation: pop .5s cubic-bezier(.2,.9,.2,1);
}
.success h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; margin-bottom: 8px; }
.success p { font-size: 15px; color: var(--ink-soft); margin-bottom: 4px; }
.success .booked-when {
  display: inline-block; margin: 16px 0 4px; padding: 10px 20px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
}
.contact-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.contact-chip {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  font-size: 14px; font-weight: 600; color: var(--forest);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 100px;
  padding: 10px 18px; transition: border-color .2s, transform .2s;
}
.contact-chip:hover { border-color: var(--forest); transform: translateY(-2px); }

/* ---- Scroll reveal ----------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 860px) {
  .proof { grid-template-columns: 1fr; gap: 30px; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .mob-hide { display: none; }
  .topbar { padding: 20px 20px 0; }
  .topbar-tag { display: none; }
  .hero { padding: 40px 20px 12px; }
  .video-wrap { padding: 0 16px; }
  .video-frame { padding: 8px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .sticky-cta { display: block; }
  .site-foot { padding-bottom: 110px; }
  .modal-body { padding: 34px 22px 28px; }
  .slots { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   SITE HEADER + FULL-SCREEN MENU + FOOTER  (Ecolosophy brand system)
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 240, 0.94);       /* cream/paper @ 94% */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 124, 116, 0.10);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px -12px rgba(7, 47, 45, 0.28);
  background: rgba(250, 246, 240, 0.97);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 12px; padding: 10px 24px;
}
.eco-brand-lockup {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .3s ease;
}
.eco-brand-lockup:hover { transform: scale(1.03); }
.eco-brand-logo {
  height: 40px; width: auto; display: block;
  filter: drop-shadow(0 1px 4px rgba(14, 124, 116, 0.14));
}
@media (min-width: 768px) { .eco-brand-logo { height: 46px; } }
.header-shop {
  justify-self: end; text-decoration: none;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em; color: var(--eco-forest-deep);
  padding: 9px 20px; border-radius: 100px;
  border: 1.5px solid rgba(14, 124, 116, 0.28);
  background: rgba(14, 124, 116, 0.05);
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.header-shop:hover {
  color: #fff; background: var(--eco-teal);
  border-color: var(--eco-teal); transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; border: none;
  background: transparent; color: var(--eco-forest-deep); cursor: pointer;
  justify-self: start;
}
.hamburger-bars { position: relative; display: inline-block; width: 22px; height: 16px; }
.bar {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: currentColor; border-radius: 2px; transform-origin: 50% 50%;
  transition: transform .45s cubic-bezier(.5,.01,.3,1.4), opacity .2s ease, width .3s ease;
}
.bar-1 { top: 0; }
.bar-2 { top: 7px; width: 75%; }
.bar-3 { top: 14px; width: 50%; }
.hamburger:hover .bar-2, .hamburger:hover .bar-3 { width: 100%; }
[data-x] .bar-1, .hamburger[aria-expanded='true'] .bar-1 { top: 7px; transform: rotate(45deg); width: 100%; }
[data-x] .bar-2, .hamburger[aria-expanded='true'] .bar-2 { opacity: 0; transform: scaleX(0); }
[data-x] .bar-3, .hamburger[aria-expanded='true'] .bar-3 { top: 7px; transform: rotate(-45deg); width: 100%; }

/* Overlay */
.menu-overlay {
  position: fixed; inset: 0; z-index: 70;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility 0s linear .4s;
  display: flex; flex-direction: column;
}
.menu-overlay.open { opacity: 1; visibility: visible; transition: opacity .4s ease, visibility 0s; }
.menu-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #FAF6F0 0%, #FFFFFF 22%, #E8F5F2 62%, #CDECE7 100%);
}
.menu-leaf-accent {
  position: absolute; top: -50px; left: -60px; width: 220px; height: 220px;
  z-index: 1; pointer-events: none; animation: leaf-drift 14s ease-in-out infinite;
}
@keyframes leaf-drift {
  0%, 100% { transform: rotate(-8deg) translate(0, 0); }
  50%      { transform: rotate(0deg) translate(15px, 10px); }
}
.menu-wave { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 80px; pointer-events: none; }
.menu-topbar {
  position: relative; z-index: 10;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
}
.menu-eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.25em; color: var(--eco-teal); margin-left: 6px;
}
.menu-nav {
  position: relative; z-index: 10; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 10px 24px; overflow-y: auto;
  width: 100%; max-width: 720px; margin: 0 auto;
}
.menu-list { list-style: none; width: 100%; }
.menu-group { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(14, 124, 116, 0.14); }
.menu-group-label {
  display: block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--eco-clay-deep); margin: 0 0 8px 18px;
}
.menu-item {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease-out, transform .55s ease-out;
}
.menu-overlay.open .menu-item {
  opacity: 1; transform: translateY(0); transition-delay: var(--delay, 0ms);
}
.menu-link {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 16px; padding: 13px 18px; border-radius: 14px;
  color: var(--eco-ink); text-decoration: none; border: 1px solid transparent;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.menu-link:hover, .menu-link:focus-visible {
  background: rgba(255, 255, 255, 0.72); border-color: rgba(14, 124, 116, 0.14);
  transform: translateX(4px); outline: none;
}
.menu-link[aria-current='page'] { background: rgba(14, 124, 116, 0.07); }
.menu-link-bullet {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  background: var(--eco-teal-bright); box-shadow: 0 0 0 4px rgba(42, 167, 158, 0.18);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.menu-link:hover .menu-link-bullet, .menu-link:focus-visible .menu-link-bullet {
  background: var(--eco-teal); transform: scale(1.4); box-shadow: 0 0 0 6px rgba(14, 124, 116, 0.22);
}
.menu-link-text { display: flex; flex-direction: column; min-width: 0; }
.menu-link-label {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.4rem, 4vw, 2.35rem); line-height: 1.1; letter-spacing: -0.015em;
  color: var(--eco-forest-deep);
}
.menu-link-hint { font-size: 0.82rem; color: rgba(35, 32, 27, 0.55); margin-top: 2px; letter-spacing: 0.02em; }
.menu-link-arrow { font-size: 1.4rem; color: rgba(14, 124, 116, 0.35); transition: transform .3s ease, color .3s ease; }
.menu-link:hover .menu-link-arrow, .menu-link:focus-visible .menu-link-arrow { transform: translateX(8px); color: var(--eco-teal); }
.menu-footer {
  position: relative; z-index: 10; padding: 18px 24px 26px;
  display: flex; justify-content: center;
}
.menu-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(35, 32, 27, 0.5); }
body.menu-open { overflow: hidden; }

/* ---- Full footer ------------------------------------------------------- */
.site-foot {
  max-width: var(--maxw); margin: 90px auto 0;
  padding: 0 28px 120px; border-top: 1px solid var(--line);
  display: block; text-align: left;
}
.foot-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 52px 0 40px;
}
.foot-col h4 {
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--eco-forest-deep); margin-bottom: 14px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-col a { font-size: 14.5px; color: var(--ink-soft); text-decoration: none; transition: color .2s; }
.foot-col a:hover { color: var(--eco-teal); }
.foot-base {
  border-top: 1px solid var(--line); padding-top: 26px;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
}
.foot-logo { height: 34px; width: auto; display: block; opacity: 0.92; }
.foot-tag { font-size: 12.5px; letter-spacing: 0.06em; color: var(--eco-teal); font-weight: 600; }
.foot-copy { font-size: 12.5px; color: var(--muted); }

@media (max-width: 860px) {
  .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 640px) {
  .header-inner { padding: 8px 16px; }
  .header-shop { padding: 8px 16px; font-size: 13px; }
  .site-foot { padding-bottom: 110px; }
  .foot-cols { padding: 40px 0 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .menu-item, .menu-leaf-accent, .menu-wave animate, .bar { animation: none !important; transition: none !important; }
}
