:root {
  --cream: #f7f3ec;
  --cream-deep: #eee8dd;
  --paper: #fffdf8;
  --olive: #29371b;
  --olive-mid: #596744;
  --olive-soft: #dde1d2;
  --terracotta: #7c401d;
  --ink: #25291f;
  --muted: #65695e;
  --line: rgba(41, 55, 27, 0.18);
  --white-line: rgba(247, 243, 236, 0.18);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 80px rgba(39, 43, 30, 0.13);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #b97543;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: .7rem 1rem;
  color: var(--cream);
  background: var(--olive);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

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

.section-pad { padding: clamp(5rem, 9vw, 8.5rem) 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.25rem;
  color: var(--terracotta);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light { color: #d7bb95; }

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

h1 em, h2 em {
  color: var(--terracotta);
  font-weight: 400;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.4rem;
  border: 1px solid var(--olive);
  border-radius: 3px;
  color: var(--cream);
  background: var(--olive);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

.button:hover {
  color: var(--olive);
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(41, 55, 27, .13);
}

.button-small { min-height: 43px; padding: .65rem 1rem; font-size: .8rem; }

.button-cream {
  color: var(--olive);
  background: var(--cream);
  border-color: var(--cream);
}

.button-cream:hover {
  color: var(--cream);
  background: transparent;
  border-color: rgba(247, 243, 236, .65);
  box-shadow: none;
}

.button-full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  width: fit-content;
  padding: .3rem 0;
  border-bottom: 1px solid currentColor;
  color: var(--olive);
  font-size: .88rem;
  font-weight: 700;
  transition: gap .25s var(--ease), color .25s ease;
}

.text-link:hover { gap: .95rem; color: var(--terracotta); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, .9);
  border-bottom: 1px solid rgba(41, 55, 27, .12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  width: fit-content;
  color: var(--olive);
}

.brand-icon {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.brand small { margin-top: .3rem; font-size: .53rem; font-weight: 700; letter-spacing: .35em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav a { position: relative; font-size: .78rem; font-weight: 600; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.35rem;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; }
.menu-button { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: min(940px, calc(100svh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  top: -260px;
  left: -280px;
  border: 1px solid rgba(124, 64, 29, .15);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .82fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 1.7rem;
  color: var(--olive);
  font-size: clamp(3.9rem, 7.3vw, 7.1rem);
  line-height: .88;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
}

.hero-actions { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  gap: 0;
  margin: 3.1rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.trust-list li {
  display: flex;
  flex-direction: column;
  padding-inline: 1rem;
  border-right: 1px solid var(--line);
}

.trust-list li:first-child { padding-left: 0; }
.trust-list li:last-child { border-right: 0; }
.trust-list strong { color: var(--olive); font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.trust-list span { color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }

.hero-art { position: relative; padding: 2rem 1.5rem 3rem; }

.hero-image-wrap {
  position: relative;
  z-index: 2;
  aspect-ratio: .78;
  overflow: hidden;
  border-radius: 47% 47% 4px 4px;
  box-shadow: var(--shadow);
}

.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 47% center; }

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(89, 103, 68, .32);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one { inset: -2% -16% 18% -7%; transform: rotate(16deg); }
.orbit-two { inset: 9% -6% 2% -19%; transform: rotate(-18deg); }

.hero-note {
  position: absolute;
  z-index: 3;
  top: 19%;
  left: -12%;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1rem;
  color: var(--olive);
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(41, 55, 27, .12);
  box-shadow: 0 18px 38px rgba(37, 41, 31, .13);
  backdrop-filter: blur(10px);
}

.hero-note svg { width: 30px; fill: none; stroke: var(--terracotta); stroke-linecap: round; stroke-width: 1.4; }
.hero-note span { display: flex; flex-direction: column; font-size: .65rem; }
.hero-note strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; line-height: 1; }

.hero-caption {
  position: absolute;
  right: -1.5rem;
  bottom: 0;
  z-index: 4;
  width: 210px;
  margin: 0;
  padding: .85rem 1rem;
  color: var(--cream);
  background: var(--olive-mid);
  font-size: .68rem;
  line-height: 1.4;
}

/* Marquee */
.marquee {
  overflow: hidden;
  color: var(--cream);
  background: var(--olive);
  transform: rotate(-1deg) scale(1.02);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .95rem 0;
  animation: marquee 28s linear infinite;
}

.marquee span { font-family: var(--serif); font-size: 1.2rem; font-style: italic; }
.marquee i { color: #d7bb95; font-size: .7rem; font-style: normal; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* Shared headings */
.section-heading { max-width: 680px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-heading h2,
.kit-copy h2,
.croquette-copy h2,
.experience-head h2,
.chef-copy h2,
.contact-copy h2 {
  margin-bottom: 1.25rem;
  color: var(--olive);
  font-size: clamp(2.9rem, 5.2vw, 5.2rem);
  line-height: .98;
}
.section-heading > p:last-child { max-width: 560px; color: var(--muted); }

/* Paths */
.paths { background: var(--paper); }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.path-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.path-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.path-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: var(--olive);
  background: var(--cream);
  font-size: .7rem;
  font-weight: 700;
}
.path-image { aspect-ratio: 1.25; overflow: hidden; }
.path-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.path-card:hover .path-image img { transform: scale(1.04); }
.path-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 1.8rem; }
.card-kicker { margin-bottom: .6rem; color: var(--terracotta); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.path-body h3 { margin-bottom: .8rem; color: var(--olive); font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1; }
.path-body p { color: var(--muted); font-size: .88rem; }
.path-body a { display: inline-flex; gap: .6rem; margin-top: auto; padding-top: 1rem; color: var(--olive); border-bottom: 1px solid var(--line); font-size: .78rem; font-weight: 700; }
.path-body a span { transition: transform .2s ease; }
.path-body a:hover span { transform: translateX(4px); }

/* Weekly kits */
.kits { position: relative; overflow: hidden; color: var(--cream); background: var(--olive); }
.kits::after {
  content: "";
  position: absolute;
  top: -300px;
  right: -270px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(247, 243, 236, .12);
  border-radius: 50%;
}
.kits-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.kit-poster { position: relative; max-width: 450px; }
.poster-frame { overflow: hidden; border-radius: 220px 220px 8px 8px; box-shadow: 0 35px 80px rgba(0, 0, 0, .25); }
.poster-frame img { width: 100%; }
.poster-stamp {
  position: absolute;
  right: -50px;
  bottom: 9%;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border-radius: 50%;
  color: var(--olive);
  background: #d7bb95;
  text-align: center;
  font-size: .62rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: rotate(7deg);
}
.poster-stamp strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; text-transform: none; }
.kit-copy h2, .kit-copy h2 em { color: var(--cream); }
.kit-copy h2 em { color: #d7bb95; }
.kit-intro { max-width: 650px; margin-bottom: 2rem; color: rgba(247, 243, 236, .72); }
.offer-list { border-top: 1px solid var(--white-line); }
.offer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--white-line);
}
.offer-label { color: #d7bb95; font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.offer h3 { margin: .25rem 0 .5rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.offer p { max-width: 570px; margin-bottom: 0; color: rgba(247, 243, 236, .66); font-size: .81rem; line-height: 1.5; }
.price { min-width: 115px; display: flex; flex-direction: column; align-items: flex-end; }
.price small, .price span { color: rgba(247, 243, 236, .58); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.price strong { color: #d7bb95; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.1; }
.kit-notes { display: flex; gap: 1rem 2rem; flex-wrap: wrap; margin: 1.2rem 0 1.7rem; color: rgba(247, 243, 236, .68); font-size: .75rem; }
.kit-notes strong { color: var(--cream); }
.availability { margin: .75rem 0 0; color: rgba(247, 243, 236, .48); font-size: .65rem; }

/* Croquettes */
.croquettes { background: var(--olive-soft); }
.croquette-grid { display: grid; grid-template-columns: 1fr .75fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.croquette-copy > p:not(.eyebrow) { max-width: 590px; color: var(--muted); }
.mini-offers { max-width: 650px; margin: 2rem 0; border-top: 1px solid var(--line); }
.mini-offers > div { display: grid; grid-template-columns: .65fr 1.8fr auto; align-items: center; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.mini-offers span { color: var(--terracotta); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mini-offers strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; line-height: 1.15; }
.mini-offers b { color: var(--olive); white-space: nowrap; }
.croquette-poster { max-width: 430px; justify-self: end; overflow: hidden; border-radius: 6px 210px 6px 6px; box-shadow: var(--shadow); }

/* Experience */
.experience { color: var(--cream); background: var(--terracotta); }
.experience-head { max-width: 820px; margin-bottom: 4rem; }
.experience-head h2, .experience-head h2 em { color: var(--cream); }
.experience-head h2 em { color: #e8cfaa; }
.experience-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.experience-gallery { position: relative; min-height: 560px; }
.experience-gallery figure { position: absolute; margin: 0; overflow: hidden; }
.experience-gallery img { width: 100%; height: 100%; object-fit: cover; }
.experience-gallery figcaption { position: absolute; right: 0; bottom: 0; padding: .65rem .8rem; color: var(--cream); background: rgba(41, 55, 27, .86); font-size: .65rem; }
.gallery-main { top: 0; left: 0; width: 67%; height: 78%; border-radius: 200px 200px 4px 4px; }
.gallery-small { right: 0; bottom: 0; width: 48%; height: 53%; border: 9px solid var(--terracotta); }
.experience-steps { border-top: 1px solid rgba(247, 243, 236, .25); }
.experience-steps article { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid rgba(247, 243, 236, .25); }
.experience-steps article > span { color: #e8cfaa; font-size: .7rem; }
.experience-steps h3 { margin: 0 0 .35rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.experience-steps p { margin-bottom: 0; color: rgba(247, 243, 236, .7); font-size: .82rem; }
.experience-steps .button { margin-top: 1.8rem; }

/* Chef */
.chef { background: var(--paper); }
.chef-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 9vw, 9rem); }
.chef-manifesto { align-self: stretch; display: flex; flex-direction: column; padding: 2.5rem; background: var(--olive-soft); }
.chef-manifesto blockquote { margin: auto 0; color: var(--olive); font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.3rem); line-height: 1.05; }
.signature { display: flex; flex-direction: column; padding-top: 2rem; border-top: 1px solid var(--line); }
.signature span { font-family: var(--serif); font-size: 1.25rem; }
.signature small { color: var(--muted); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; }
.chef-copy { padding: 2rem 0; }
.chef-copy p { max-width: 660px; color: var(--muted); }
.chef-links { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.chef-links > span { color: var(--muted); font-size: .72rem; }

/* Contact */
.contact { background: var(--paper); padding-top: 0; }
.contact-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--cream);
  background: var(--olive);
}
.contact-copy h2, .contact-copy h2 em { color: var(--cream); }
.contact-copy h2 em { color: #d7bb95; }
.contact-copy > p:not(.eyebrow) { color: rgba(247, 243, 236, .68); }
.direct-contact { display: flex; flex-direction: column; margin-top: 2.5rem; }
.direct-contact small { color: rgba(247, 243, 236, .52); }
.direct-contact a { width: fit-content; border-bottom: 1px solid rgba(247, 243, 236, .5); font-family: var(--serif); font-size: 1.5rem; }
.contact-form { padding: clamp(1.5rem, 4vw, 2.5rem); color: var(--ink); background: var(--cream); }
.contact-form fieldset { margin: 0 0 1.4rem; padding: 0; border: 0; }
.contact-form legend, .contact-form > label, .field-row label { display: block; margin-bottom: .6rem; color: var(--olive); font-size: .72rem; font-weight: 700; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.choice-grid label { position: relative; cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid span { display: grid; min-height: 45px; place-items: center; padding: .5rem; border: 1px solid var(--line); color: var(--muted); font-size: .7rem; font-weight: 600; text-align: center; transition: .2s ease; }
.choice-grid input:checked + span { color: var(--cream); background: var(--olive-mid); border-color: var(--olive-mid); }
.choice-grid input:focus-visible + span { outline: 3px solid #b97543; outline-offset: 2px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input[type="text"], .contact-form textarea {
  width: 100%;
  margin-top: .45rem;
  padding: .85rem .9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  outline: 0;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(124, 64, 29, .12); }
.contact-form .button-cream { color: var(--cream); background: var(--terracotta); border-color: var(--terracotta); }
.contact-form .button-cream:hover { color: var(--terracotta); background: transparent; }
.form-note { margin: .6rem 0 0; color: var(--muted); font-size: .62rem; text-align: center; }

/* FAQ */
.faq { background: var(--cream-deep); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); }
.faq-grid .section-heading { margin-bottom: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; border: 0; color: var(--olive); background: transparent; font-size: .9rem; font-weight: 600; text-align: left; cursor: pointer; }
.faq-item button b { display: grid; width: 27px; height: 27px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 1rem; font-weight: 400; transition: transform .25s ease, background .25s ease; }
.faq-item button[aria-expanded="true"] b { color: var(--cream); background: var(--olive); transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: .85rem; }
.faq-item:has(button[aria-expanded="true"]) .faq-answer { grid-template-rows: 1fr; }
.faq-item:has(button[aria-expanded="true"]) .faq-answer p { padding-bottom: 1.5rem; }

/* Footer */
.site-footer { color: var(--cream); background: #1d2615; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 2rem; padding: 4rem 0 3rem; }
.brand-light { color: var(--cream); }
.footer-top > p { margin: 0; color: rgba(247, 243, 236, .58); font-family: var(--serif); font-size: 1.25rem; line-height: 1.2; }
.footer-social { display: flex; justify-self: end; gap: 1.5rem; font-size: .73rem; font-weight: 700; }
.footer-social a { border-bottom: 1px solid transparent; }
.footer-social a:hover { border-color: currentColor; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid rgba(247, 243, 236, .12); color: rgba(247, 243, 236, .42); font-size: .62rem; letter-spacing: .04em; text-transform: uppercase; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .9rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: white;
  background: #267a45;
  box-shadow: 0 12px 35px rgba(20, 58, 35, .24);
  font-size: .72rem;
  font-weight: 700;
  transition: transform .25s var(--ease);
}
.floating-whatsapp:hover { transform: translateY(-4px); }
.floating-whatsapp svg { width: 21px; height: 21px; fill: currentColor; }

/* Progressive reveal */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-button {
    position: relative;
    z-index: 102;
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    color: var(--olive);
    background: transparent;
    cursor: pointer;
    justify-self: end;
  }
  .menu-button span { width: 18px; height: 1px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 5rem 2rem;
    color: var(--cream);
    background: var(--olive);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; }
  .menu-button[aria-expanded="true"] { position: fixed; top: 17px; right: 24px; color: var(--cream); border-color: rgba(247, 243, 236, .3); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-art { width: min(620px, 100%); margin-inline: auto; }
  .hero-note { left: -2%; }
  .path-grid { grid-template-columns: 1fr 1fr; }
  .path-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
  .path-card-featured .path-image { aspect-ratio: auto; min-height: 360px; }
  .kits-grid, .croquette-grid, .experience-grid, .chef-grid, .contact-card, .faq-grid { grid-template-columns: 1fr; }
  .kit-poster { width: min(440px, 90%); margin-inline: auto; }
  .croquette-poster { width: min(430px, 90%); justify-self: center; }
  .experience-gallery { min-height: 620px; }
  .chef-manifesto { min-height: 420px; }
  .contact-card { width: min(900px, calc(100% - 32px)); }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 32px, 1180px); }
  .section-pad { padding: 4.5rem 0; }
  .brand strong { font-size: 1.1rem; }
  .brand-icon { width: 34px; height: 34px; }
  .hero-grid { gap: 2.5rem; }
  .hero-copy { min-width: 0; }
  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3rem, 12.8vw, 3.3rem);
    line-height: .94;
  }
  .hero-lead { font-size: .95rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .trust-list { grid-template-columns: 1fr; gap: .8rem; }
  .trust-list li { padding: 0 0 .8rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-list li:last-child { border-bottom: 0; }
  .hero-art { padding: 1rem .75rem 2.5rem; }
  .hero-note { top: 9%; left: -2%; }
  .hero-caption { right: -.25rem; }
  .section-heading h2, .kit-copy h2, .croquette-copy h2, .experience-head h2, .chef-copy h2, .contact-copy h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .path-grid { grid-template-columns: 1fr; }
  .path-card-featured { grid-column: auto; display: flex; }
  .path-card-featured .path-image { min-height: 0; aspect-ratio: 1.25; }
  .poster-stamp { right: -22px; width: 100px; height: 100px; }
  .offer { grid-template-columns: 1fr; }
  .price { align-items: flex-start; }
  .mini-offers > div { grid-template-columns: 1fr auto; }
  .mini-offers span { grid-column: 1 / -1; }
  .experience-gallery { min-height: 450px; }
  .gallery-main { width: 76%; height: 75%; }
  .gallery-small { width: 54%; height: 48%; }
  .chef-manifesto { min-height: 380px; padding: 1.7rem; }
  .contact-card { width: calc(100% - 16px); padding: 2.2rem 1.2rem; }
  .contact-form { padding: 1.2rem; }
  .choice-grid, .field-row { grid-template-columns: 1fr; }
  .choice-grid { gap: .4rem; }
  .choice-grid span { min-height: 40px; }
  .footer-top { grid-template-columns: 1fr; align-items: start; }
  .footer-social { justify-self: start; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 52px; height: 52px; justify-content: center; padding: 0; }
}

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