:root {
  --green: #0d5a5d;
  --green-dark: #073e40;
  --leaf: #bad62b;
  --leaf-dark: #8fb01f;
  --cream: #f7f5ed;
  --sand: #eee7d3;
  --text: #172321;
  --muted: #5f6f6a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 62, 64, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

main h1,
main h2,
main h3,
main p,
main .eyebrow,
main .micro,
.footer h4,
.footer p,
.footer a,
.footer-bottom {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 245, 237, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 90, 93, 0.1);
}
.site-header.compact { position: relative; }
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--green-dark); font-size: 1.05rem; }
.brand img { width: 220px; height: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 700; color: var(--green-dark); font-size: 0.94rem; }
.nav-links a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.nav-links a:not(.btn):hover { color: var(--leaf-dark); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--green-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--green);
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(13, 90, 93, 0.22);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--green-dark); box-shadow: 0 18px 40px rgba(13, 90, 93, 0.26); }
.btn-small { padding: 10px 16px; font-size: 0.9rem; }
.btn-ghost { background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.45); }
.btn-outline { background: transparent; color: var(--green); border: 1px solid rgba(13, 90, 93, 0.28); box-shadow: none; }
.btn-outline:hover { color: white; }
.btn-light { background: white; color: var(--green-dark); }
.btn-full { width: 100%; }
.text-link { font-weight: 800; color: var(--green); }

.hero {
  position: relative;
  min-height: 720px;
  padding: 60px 0;
  background:
    linear-gradient(115deg, rgba(7,62,64,0.94), rgba(13,90,93,0.72)),
    url('https://images.unsplash.com/photo-1548550023-2bdb3c5beed7?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: white;
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(40vw, 520px);
  opacity: 0.11;
  z-index: 1;
  pointer-events: none;
}
.hero:after {
  content: "";
  position: absolute;
  right: -160px;
  top: -140px;
  width: 440px;
  height: 440px;
  background: rgba(186, 214, 43, 0.22);
  border-radius: 50%;
  filter: blur(8px);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; min-height: 560px; }
.eyebrow { margin: 0 0 12px; color: var(--leaf); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; font-size: .78rem; }
h1, h2, h3 { line-height: 1.08; margin: 0; color: inherit; }
h1 { font-size: clamp(2.5rem, 6vw, 5.4rem); letter-spacing: -0.07em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.055em; }
h3 { font-size: 1.35rem; letter-spacing: -0.03em; }
.hero-copy { display: grid; align-content: center; }
.hero-text { font-size: 1.17rem; max-width: 680px; color: rgba(255,255,255,0.84); margin: 24px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; justify-content: center; }
.hero-badges span { border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.08); padding: 9px 12px; border-radius: 999px; color: rgba(255,255,255,0.85); font-weight: 700; font-size: .88rem; }
.booking-card {
  background: rgba(255,255,255,0.93);
  color: var(--text);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.55);
  display: grid;
  justify-items: center;
  text-align: center;
  align-content: center;
}
.booking-card img { width: min(100%, 240px); height: auto; object-fit: contain; margin-bottom: 18px; }
.booking-card p { color: var(--muted); }
.micro { font-size: .86rem; color: var(--muted); }

.eggs-page { padding: 0 0 42px; }
.eggs-hero {
  min-height: 660px;
  padding: 72px 0;
  background:
    linear-gradient(118deg, rgba(7,62,64,0.86), rgba(13,90,93,0.54)),
    url('../assets/eggs-hero-wide.webp') center 54% / cover;
}
.eggs-hero:after {
  background: rgba(186, 214, 43, 0.18);
  width: 420px;
  height: 420px;
  right: -120px;
  top: -110px;
}
.eggs-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.66fr);
  min-height: 520px;
}
.eggs-hero .hero-copy {
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.eggs-hero-frame {
  width: min(100%, 420px);
  justify-self: center;
  padding: 18px;
  border-radius: 34px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.eggs-hero-frame img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(7, 62, 64, 0.24);
}

.trust-strip { background: var(--green-dark); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 25px 18px; border-left: 1px solid rgba(255,255,255,.1); }
.trust-grid strong { display: block; font-size: 1.1rem; }
.trust-grid span { color: rgba(255,255,255,.7); font-size: .9rem; }

.section { padding: 38px 0; }
.section-heading { max-width: 760px; margin: 0 auto 36px; display: grid; justify-items: center; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.cards { display: grid; gap: 22px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.consultation-grid {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
  position: relative;
  isolation: isolate;
  max-width: 1120px;
  min-height: 390px;
  margin: 0 auto;
  padding: 24px 250px;
  background:
    radial-gradient(circle at 14% 50%, rgba(13, 90, 93, 0.08), transparent 26%),
    radial-gradient(circle at 86% 50%, rgba(186, 214, 43, 0.18), transparent 30%);
  border-radius: 38px;
}
.consultation-grid::before,
.consultation-grid::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 250px;
  height: 330px;
  border-radius: 36px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.28;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 18px 44px rgba(7, 62, 64, 0.12);
}
.consultation-grid::before {
  left: 10px;
  background-image:
    linear-gradient(145deg, rgba(255,255,255,0.66), rgba(255,255,255,0.18)),
    url('../assets/booking-band-detail.webp');
}
.consultation-grid::after {
  right: 10px;
  background-image:
    linear-gradient(145deg, rgba(255,255,255,0.62), rgba(255,255,255,0.14)),
    url('../assets/booking-band-main.webp');
}
.consultation-grid > .card { position: relative; z-index: 1; width: 100%; }
.card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 12px 44px rgba(7, 62, 64, 0.08);
  border: 1px solid rgba(13, 90, 93, 0.08);
  text-align: center;
}
.card p { color: var(--muted); }
.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px 10px;
  background: rgba(186,214,43,.2);
  color: var(--green-dark);
  border-radius: 52% 48% 50% 50% / 58% 58% 42% 42%;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 16px;
}
.featured-card { border: 2px solid rgba(186,214,43,.72); transform: translateY(-10px); }
.price { margin: 24px 0; font-weight: 900; color: var(--green-dark); font-size: 1.9rem; }
.price span { font-size: .9rem; color: var(--muted); }

.image-band { background: white; padding: 40px 0; }
.band-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.band-copy { display: grid; justify-items: center; text-align: center; }
.steps { list-style: none; padding: 0; display: grid; gap: 18px; margin: 28px 0 0; }
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.steps span {
  width: 38px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 52% 48% 50% 50% / 58% 58% 42% 42%;
  background: var(--leaf);
  color: var(--green-dark);
  font-weight: 900;
  flex: 0 0 auto;
}
.steps p { margin: 5px 0 0; color: var(--muted); }
.photo-stack { position: relative; min-height: 420px; }
.photo { position: absolute; border-radius: 34px; box-shadow: var(--shadow); background-size: cover; background-position: center; }
.photo-one { inset: 0 80px 80px 0; background-image: url('../assets/booking-band-main.webp'); }
.photo-two { right: 0; bottom: 0; width: 42%; height: 48%; background-image: url('../assets/booking-band-detail.webp'); border: 8px solid white; }

.muted { background: #eef1df; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }
.feature-list { display: grid; gap: 16px; }
.feature-list div { background: white; padding: 22px; border-radius: 22px; border: 1px solid rgba(13,90,93,.08); box-shadow: 0 10px 32px rgba(7,62,64,.06); }
.feature-list strong { display: block; color: var(--green-dark); font-size: 1.05rem; }
.feature-list span { color: var(--muted); }
.scroll-story-section {
  --story-steps: 4;
  --story-base: 420px;
  --story-stage: var(--story-base);
  --story-step-span: 14vh;
  padding-top: 18px;
  padding-bottom: 18px;
  min-height: calc(var(--story-base) + (var(--story-steps) - 1) * var(--story-step-span));
}
.scroll-story-sticky {
  position: sticky;
  top: 94px;
  min-height: var(--story-base);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
  padding: 0;
}
.scroll-story-copy {
  max-width: 520px;
  display: grid;
  gap: 18px;
  align-content: center;
  align-self: center;
  justify-items: center;
  text-align: center;
}
.scroll-story-copy .btn {
  justify-self: center;
}
.scroll-story-copy p:not(.eyebrow) {
  margin: 0;
}
.story-rail-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(13, 90, 93, 0.16);
  background: rgba(255,255,255,0.7);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.story-rail-hint span {
  display: inline-block;
  animation: rail-nudge 1.8s ease-in-out infinite;
}
@keyframes rail-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
.scroll-story-stage {
  position: relative;
  min-height: var(--story-stage);
  align-self: center;
}
.scroll-story-panel {
  position: absolute;
  inset: 0;
  isolation: isolate;
  opacity: 0;
  transform: translateY(34px) scale(0.97);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.scroll-story-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.egg-story-copy { padding: 20px; }
.egg-story-step {
  display: inline-flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 46px;
  padding: 6px 12px;
  border-radius: 52% 48% 50% 50% / 58% 58% 42% 42%;
  background: rgba(186,214,43,.18);
  color: var(--green-dark);
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: .08em;
}
.story-panel-index {
  grid-area: badge;
  width: 44px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 52% 48% 50% 50% / 58% 58% 42% 42%;
  background: rgba(186,214,43,.18);
  color: var(--green-dark);
  font-weight: 900;
  font-size: .95rem;
  letter-spacing: 0;
}
.feature-stage { min-height: var(--story-stage); }
.feature-panel {
  position: absolute;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "badge title"
    "body body";
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: start;
  column-gap: 16px;
  row-gap: 18px;
  background: white;
  padding: 34px;
  border-radius: 28px;
  border: 2px solid rgba(186,214,43,.7);
  box-shadow: 0 18px 40px rgba(7,62,64,.1);
}
.feature-panel::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 320px;
  height: 210px;
  background: url('../assets/regenroots_navbar_logo_transparent_v2.webp') center/contain no-repeat;
  transform: translate(-50%, -50%);
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.feature-panel > * {
  position: relative;
  z-index: 1;
}
.feature-panel h3 {
  grid-area: title;
  color: var(--text);
  font-size: 2.1rem;
  line-height: 1.08;
  margin: 0;
  text-align: center;
}
.feature-panel p {
  grid-area: body;
  margin: 0;
  color: #243330;
  font-size: 1.34rem;
  line-height: 1.55;
  max-width: 28ch;
  justify-self: center;
  text-align: center;
}
#feed.scroll-story-section {
  background: transparent;
  min-height: calc(var(--story-base) + (var(--story-steps) - 1) * var(--story-step-span) + 36px);
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 20px;
}
#feed .scroll-story-sticky {
  top: 96px;
  min-height: var(--story-base);
  padding: 18px 32px;
  background: #eef1df;
  border-radius: 30px;
  align-items: center;
}
#feed .scroll-story-copy {
  min-height: auto;
  max-width: 470px;
  gap: 16px;
  align-content: center;
  align-self: center;
  padding-top: 0;
}
#feed .feature-stage {
  min-height: var(--story-stage);
}
#feed .feature-panel {
  inset: 0;
  transform: translateY(20px) scale(0.98);
}
#feed .feature-panel.active {
  transform: translateY(0) scale(1);
}
.egg-story-section {
  padding-top: 52px;
  margin-bottom: 24px;
}
.egg-story-section .scroll-story-copy {
  justify-items: center;
  text-align: center;
  margin: 0 auto;
  align-self: center;
}
.egg-story-section .scroll-story-copy h2 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  letter-spacing: -0.07em;
}
.egg-story-section .scroll-story-copy p:not(.eyebrow) {
  font-size: 1.22rem;
  max-width: 30ch;
}
.egg-stage {
  min-height: calc(var(--story-stage) + 44px);
  display: grid;
  place-items: center;
  padding-top: 22px;
}
.egg-panel {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  width: min(420px, calc(100% - 24px));
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  background:
    radial-gradient(circle at top right, rgba(186, 214, 43, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff, #f3f0e4);
  border-radius: 34px;
  overflow: hidden;
  border: 2px solid rgba(186,214,43,.72);
  box-shadow: var(--shadow);
  transform: translate(-50%, calc(-50% + 20px)) scale(0.98);
}
.egg-panel.active {
  transform: translate(-50%, -50%) scale(1);
}
.egg-panel::before {
  content: none;
}
.egg-panel img {
  width: calc(100% - 18px);
  height: 320px;
  margin: 9px auto 0;
  border-radius: 24px;
  object-fit: contain;
  object-position: center center;
  background: #f3f0e4;
  position: relative;
  z-index: 1;
}
.egg-story-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.egg-story-copy h3 {
  color: var(--green-dark);
  font-size: 1.95rem;
  margin: 0;
}
.egg-story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.5;
}
.egg-story-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 14px 20px 18px;
}
.egg-story-step {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border-radius: 50%;
}
.trailer-banner {
  background:
    linear-gradient(135deg, rgba(7, 62, 64, 0.96), rgba(13, 90, 93, 0.82)),
    radial-gradient(circle at top right, rgba(186, 214, 43, 0.28), transparent 35%);
  color: white;
  border-radius: 34px;
  padding: 38px;
  display: grid;
  gap: 14px;
  justify-items: start;
  box-shadow: var(--shadow);
}
.trailer-banner strong {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
}
.trailer-banner p {
  margin: 0;
  max-width: 640px;
  color: rgba(255,255,255,.84);
}
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.merch-card { padding: 18px; }
.merch-image-shell {
  position: relative;
  margin-bottom: 20px;
}
.merch-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  background: #f6f2e7;
}
.merch-banner {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px 9px;
  border-radius: 52% 48% 50% 50% / 58% 58% 42% 42%;
  background: rgba(7, 62, 64, 0.88);
  color: white;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(7, 62, 64, 0.18);
}
.store-toolbar {
  margin: 0 0 24px;
  padding: 22px 24px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 12px 36px rgba(7,62,64,.08);
  border: 1px solid rgba(13,90,93,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.store-toolbar strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.store-toolbar span { color: var(--muted); }
.cart-count-badge {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 52% 48% 50% 50% / 58% 58% 42% 42%;
  background: var(--green);
  color: white;
  font-size: 0.84rem;
  font-weight: 900;
}
.btn .cart-count-badge {
  background: white;
  color: var(--green-dark);
}
.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(186,214,43,.18);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.variant-field {
  display: grid;
  gap: 8px;
  margin: 4px 0 14px;
  text-align: center;
}
.variant-field span {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.92rem;
}
.variant-field select {
  width: 100%;
}
.add-to-cart.added {
  background: var(--green-dark);
  color: white;
}
.merch-cta {
  margin-top: 28px;
  background: white;
  border: 1px solid rgba(13,90,93,.1);
  border-radius: 28px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 12px 44px rgba(7, 62, 64, 0.08);
}
.merch-cta strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.merch-cta span { color: var(--muted); }
.store-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.cart-panel {
  position: sticky;
  top: 104px;
  background: white;
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 12px 36px rgba(7,62,64,.08);
  border: 1px solid rgba(13,90,93,.08);
  display: grid;
  gap: 18px;
}
.cart-panel h2 { color: var(--green-dark); }
.cart-panel p { margin: 0; color: var(--muted); }
.cart-lines { display: grid; gap: 14px; }
.cart-line {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  background: #f8f5ea;
  border: 1px solid rgba(13,90,93,.08);
}
.cart-line strong { color: var(--green-dark); }
.cart-line-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}
.cart-line-preview {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 18px;
  background: #f6f2e7;
  justify-self: center;
}
.cart-line-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cart-line-actions button { min-width: 42px; }
.product-preview-modal[hidden] { display: none; }
.product-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
}
.product-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 62, 64, 0.48);
  backdrop-filter: blur(6px);
}
.product-preview-card {
  position: relative;
  z-index: 1;
  width: min(92vw, 460px);
  background: white;
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.product-preview-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  background: #f6f2e7;
}
.product-preview-copy {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}
.product-preview-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 62, 64, 0.1);
  color: var(--green-dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.product-preview-copy p {
  margin: 0;
}
.stockists-section {
  padding-top: 18px;
}
.stockist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stockist-card {
  background: white;
  border: 1px solid rgba(13,90,93,.08);
  border-radius: 28px;
  box-shadow: 0 12px 36px rgba(7,62,64,.08);
  padding: 24px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}
.stockist-card strong {
  color: var(--green-dark);
  font-size: 1.2rem;
}
.stockist-card span:last-child {
  color: var(--muted);
}
.stockist-cta {
  margin-top: 26px;
  background: white;
  border: 1px solid rgba(13,90,93,.08);
  border-radius: 28px;
  box-shadow: 0 12px 36px rgba(7,62,64,.08);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.stockist-cta strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.stockist-cta span {
  color: var(--muted);
}
.cart-summary-box {
  background: #eef1df;
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 8px;
}
.cart-summary-box strong { color: var(--green-dark); }
.cart-empty { color: var(--muted); padding: 18px 0; }
.story-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: start; }
.about-hero {
  min-height: 520px;
  padding: 80px 0 64px;
  background:
    linear-gradient(120deg, rgba(7,62,64,0.84), rgba(13,90,93,0.44)),
    url('../assets/about-hero-francois.webp') center 38% / cover;
}
.about-hero-shell {
  position: relative;
  z-index: 2;
  min-height: 360px;
  display: grid;
  align-content: end;
  justify-items: center;
  text-align: center;
  gap: 14px;
  color: white;
}
.about-hero .eyebrow {
  color: rgba(186,214,43,0.96);
}
.about-hero h1 {
  max-width: 11ch;
}
.about-hero-quote {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.story-card {
  background: white;
  border-radius: 38px;
  padding: 42px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 90, 93, 0.08);
}
.story-copy { display: grid; gap: 18px; }
.story-copy p { margin: 0; color: var(--muted); }
.story-copy,
.story-side,
.booking-card,
.trailer-banner,
.merch-cta,
.cta-box,
.booking-intro,
.booking-form,
.narrow-page,
.contact-details {
  text-align: center;
}
.booking-card,
.trailer-banner,
.merch-cta,
.cta-box,
.booking-intro,
.booking-form,
.narrow-page {
  justify-items: center;
}
.story-side { display: grid; gap: 20px; }
.story-side h3 { color: var(--green-dark); }
.story-points { gap: 14px; }
.story-quote {
  margin: 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: #eef1df;
  color: var(--green-dark);
  font-weight: 700;
}
.cta-section { padding: 28px 0; background: var(--green); }
.cta-box { text-align: center; color: white; }
.cta-box p { color: rgba(255,255,255,.8); font-size: 1.1rem; }

.footer { background: #051f20; color: white; padding-top: 54px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.footer-mark {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
  border: 6px solid rgba(186,214,43,.92);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}
.footer-logo {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  flex: 0 0 auto;
}
.footer a { display: block; color: rgba(255,255,255,.78); margin: 6px 0; }
.footer p { color: rgba(255,255,255,.72); }
.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  text-align: center;
  color: rgba(255,255,255,.58);
  font-size: .9rem;
}
.footer-bottom a { display: inline; color: rgba(255,255,255,.78); }

.page-wrap { padding: 0 0 42px; }
.narrow-page { padding-top: 30px; }
.booking-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 42px; align-items: start; }
.booking-intro { position: sticky; top: 110px; }
.booking-intro h1 { color: var(--green-dark); font-size: clamp(2.3rem, 5vw, 4.1rem); }
.booking-intro p { color: var(--muted); }
.info-box { background: white; border-left: 5px solid var(--leaf); border-radius: 18px; padding: 18px; margin: 24px 0; box-shadow: 0 12px 36px rgba(7,62,64,.07); }
.info-box p { margin: 4px 0 0; }
.booking-form { background: white; padding: 32px; border-radius: 34px; box-shadow: var(--shadow); display: grid; gap: 18px; }
.booking-form h2 { color: var(--green-dark); font-size: 1.25rem; margin-top: 6px; }
label { display: grid; gap: 8px; font-weight: 800; color: var(--green-dark); text-align: center; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(13,90,93,.18);
  border-radius: 16px;
  padding: 14px 15px;
  background: #fbfaf5;
  color: var(--text);
  font: inherit;
  outline: none;
  text-align: center;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(13,90,93,.08); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-row { display: flex; gap: 12px; align-items: flex-start; justify-content: center; color: var(--muted); font-weight: 700; text-align: center; }
.checkbox-row input { width: auto; margin-top: 5px; }
.summary-box { background: #eef1df; border-radius: 22px; padding: 18px; display: grid; gap: 12px; }
.summary-box div { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.summary-box span { color: var(--muted); }
.summary-box strong { color: var(--green-dark); }
.narrow-page { max-width: 760px; }
.narrow-page h1 { color: var(--green-dark); font-size: clamp(2rem, 6vw, 3.8rem); }
.narrow-page h2 { color: var(--green-dark); font-size: 1.5rem; margin-top: 26px; }
.contact-panel { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.contact-details { margin-top: 30px; }

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

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links:not(.simple) { display: none; position: absolute; top: 78px; left: 18px; right: 18px; background: white; padding: 18px; border-radius: 22px; box-shadow: var(--shadow); flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .nav-links.open { display: flex; }
  .nav-links:not(.simple) a:not(.btn) {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 0;
  }
  .nav-links:not(.simple) .btn {
    align-self: center;
    min-width: min(280px, 100%);
  }
  .hero-grid, .band-grid, .split, .booking-layout, .scroll-story-sticky, .store-shell { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
  .cards.three, .cards.two, .catalog-grid, .story-layout, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .featured-card { transform: none; }
  .field-grid { grid-template-columns: 1fr; }
  .photo-stack { min-height: 330px; }
  .footer-brand { align-items: center; }
  .merch-cta { flex-direction: column; align-items: flex-start; }
  .store-toolbar,
  .stockist-cta { flex-direction: column; align-items: stretch; }
  .stockist-grid { grid-template-columns: 1fr; }
  .cart-panel { position: static; }
  .consultation-grid {
    max-width: 100%;
    min-height: auto;
    width: 100%;
    padding: 0;
    background: none;
    border-radius: 0;
  }
  .consultation-grid::before,
  .consultation-grid::after { display: none; }
  .scroll-story-section { min-height: auto; }
  .scroll-story-sticky {
    position: static;
    min-height: auto;
    gap: 28px;
    padding: 0;
  }
  .scroll-story-stage {
    display: flex;
    gap: 16px;
    min-height: auto;
    overflow-x: auto;
    overflow-y: visible;
    padding: 8px 4px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .scroll-story-panel {
    position: relative;
    inset: auto;
    flex: 0 0 min(88vw, 420px);
    opacity: 1;
    transform: none;
    pointer-events: auto;
    scroll-snap-align: center;
  }
  .scroll-story-panel.active {
    opacity: 1;
    pointer-events: auto;
  }
  #feed.scroll-story-section {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 12px;
  }
  #feed .scroll-story-sticky {
    top: auto;
    min-height: auto;
    padding: 22px 18px;
  }
  #feed .feature-stage {
    min-height: auto;
  }
  #feed .feature-panel,
  #feed .feature-panel.active {
    inset: auto;
    transform: none;
  }
  .feature-panel {
    min-height: 100%;
    width: min(100%, 520px);
    margin: 0 auto;
    grid-template-columns: auto auto;
    grid-template-areas:
      "badge title"
      "body body";
    align-content: center;
    align-items: center;
    justify-items: center;
    justify-content: center;
    padding: 24px 22px 26px;
    text-align: center;
    row-gap: 14px;
    column-gap: 14px;
  }
  .story-panel-index {
    justify-self: center !important;
    align-self: center;
    margin: 0 auto;
  }
  .feature-panel h3 {
    font-size: 1.62rem;
    max-width: 9ch;
    text-align: center;
  }
  .feature-panel p {
    font-size: 1.06rem;
    max-width: none;
    text-align: center;
  }
  .egg-story-section {
    padding-top: 26px;
    margin-bottom: 18px;
  }
  .egg-stage {
    min-height: auto;
    padding-top: 0;
  }
  .egg-panel {
    top: auto;
    left: auto;
    width: min(88vw, 390px);
    min-height: auto;
    transform: none;
  }
  .egg-panel.active {
    transform: none;
  }
  .egg-panel img {
    height: auto;
    aspect-ratio: auto;
    max-height: 380px;
  }
  .egg-story-head {
    gap: 10px;
  }
  .egg-story-copy h3 {
    font-size: 1.5rem;
  }
  .egg-story-copy p {
    font-size: 1rem;
  }
  .hero-watermark { width: min(62vw, 420px); left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .hero { min-height: auto; padding: 40px 0; }
  .eggs-hero { min-height: auto; padding: 52px 0 42px; }
  .eggs-hero-grid { min-height: auto; }
  .eggs-hero-frame { max-width: 360px; }
  .about-hero {
    min-height: auto;
    padding: 56px 0 42px;
  }
  .about-hero-shell {
    min-height: 240px;
  }
  .footer-brand {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .container { width: min(100% - 26px, 1120px); }
  .nav-links.simple { gap: 10px; font-size: .85rem; }
  .brand img { width: 176px; }
  .hero-actions, .contact-panel { flex-direction: column; }
  .btn { width: 100%; }
  .booking-form { padding: 22px; border-radius: 24px; }
  .section { padding: 28px 0; }
  .footer-brand { flex-direction: column; align-items: center; justify-content: center; }
  .footer-mark { width: 188px; height: 188px; margin-inline: auto; }
  .footer-logo { width: 100%; max-width: 100%; height: 100%; padding: 18px; }
  .trailer-banner { padding: 28px 22px; }
  .hero-watermark { width: 68vw; opacity: 0.11; }
  .feature-panel::before,
  .egg-panel::before { width: 120px; height: 74px; }
  .scroll-story-stage { padding-inline: 2px; }
  .scroll-story-panel { flex-basis: min(92vw, 360px); }
  #feed .scroll-story-copy h1,
  .egg-story-section .scroll-story-copy h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }
  .feature-panel {
    border-radius: 26px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "title"
      "body";
    row-gap: 12px;
  }
  .feature-panel .story-panel-index,
  .feature-panel h3,
  .feature-panel p {
    justify-self: center;
  }
  .feature-panel h3 {
    max-width: none;
  }
  .egg-panel {
    width: min(92vw, 360px);
    border-radius: 28px;
  }
  .egg-panel img {
    width: calc(100% - 14px);
    margin-top: 7px;
    border-radius: 20px;
  }
  .story-rail-hint {
    display: inline-flex;
  }
  .cart-line-actions { gap: 8px; }
}
