/* Gtastyb0nus — Gastronomic Editorial Experience */

:root {
  --cream: #f7f3ec;
  --linen: #efe8dc;
  --beige: #dccfbc;
  --olive: #6f755f;
  --caramel: #9a7048;
  --terracotta: #a9785c;
  --chocolate: #2a1f17;
  --deep-olive: #3a4330;
  --ink: #1f1813;
  --muted: #6a5f54;
  --surface: rgba(247, 243, 236, 0.92);
  --line: rgba(42, 31, 23, 0.12);
  --shadow: 0 24px 60px rgba(42, 31, 23, 0.12);
  --radius: 2px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Figtree", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(169, 120, 92, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(111, 117, 95, 0.1), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--linen) 48%, var(--cream) 100%);
  background-attachment: fixed;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.container-wide {
  width: min(1360px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Typography */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--chocolate);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
}

h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 38rem;
}

.prose {
  color: var(--muted);
  max-width: 40rem;
}

.prose p + p {
  margin-top: 1.1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(247, 243, 236, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 243, 236, 0.98);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1002;
  position: relative;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--chocolate);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--deep-olive);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--caramel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--chocolate);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid var(--deep-olive);
  padding: 0.65rem 1.2rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  font-size: 0.72rem !important;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--deep-olive);
  color: var(--cream) !important;
  border-color: var(--deep-olive);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1002;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--chocolate);
  position: relative;
  transition: background 0.25s var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--chocolate);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 31, 23, 0.72) 0%, rgba(42, 31, 23, 0.35) 48%, rgba(42, 31, 23, 0.2) 100%),
    linear-gradient(0deg, rgba(42, 31, 23, 0.55) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--cream);
  max-width: 34rem;
}

.hero-content .eyebrow {
  color: var(--beige);
}

.hero-content h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.hero-content .lead {
  color: rgba(247, 243, 236, 0.86);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--caramel);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--terracotta);
}

.btn-ghost {
  border: 1px solid rgba(247, 243, 236, 0.55);
  color: var(--cream);
}

.btn-ghost:hover {
  background: rgba(247, 243, 236, 0.12);
  border-color: var(--cream);
}

.btn-dark {
  background: var(--deep-olive);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--chocolate);
}

.btn-outline {
  border: 1px solid var(--deep-olive);
  color: var(--deep-olive);
}

.btn-outline:hover {
  background: var(--deep-olive);
  color: var(--cream);
}

/* Sections */
.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  position: relative;
}

.section-tight {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-label span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--terracotta);
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: translateY(-0.35rem);
}

/* Editorial layouts */
.editorial-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.editorial-split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.editorial-split.reverse .editorial-copy {
  order: 2;
}

.editorial-split.reverse .editorial-visual {
  order: 1;
}

.editorial-copy h2 {
  margin-bottom: 1.25rem;
}

.editorial-copy .prose,
.editorial-copy .lead {
  margin-bottom: 1.75rem;
}

.editorial-visual {
  position: relative;
}

.editorial-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.editorial-visual.landscape img {
  aspect-ratio: 5 / 4;
}

.visual-offset {
  margin-top: 2.5rem;
  margin-left: 8%;
}

.visual-frame {
  position: relative;
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: -1.1rem -1.1rem auto auto;
  border: 1px solid var(--beige);
  width: 55%;
  height: 55%;
  z-index: -1;
}

.visual-caption {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

/* Signature strip */
.signature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.signature-main {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.signature-main img,
.signature-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-main figcaption,
.signature-side figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem;
  background: linear-gradient(transparent, rgba(42, 31, 23, 0.78));
  color: var(--cream);
}

.signature-main h3,
.signature-side h3 {
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.signature-main p,
.signature-side p {
  color: rgba(247, 243, 236, 0.82);
  font-size: 0.95rem;
  max-width: 28rem;
}

.signature-side {
  display: grid;
  gap: 1.25rem;
}

.signature-side figure {
  position: relative;
  min-height: 248px;
  overflow: hidden;
}

/* Philosophy / quote */
.philosophy {
  background: linear-gradient(135deg, var(--deep-olive), #2f3628 60%, var(--chocolate));
  color: var(--cream);
  overflow: hidden;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.philosophy blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.25;
  font-weight: 400;
}

.philosophy .eyebrow {
  color: var(--beige);
}

.philosophy p {
  color: rgba(247, 243, 236, 0.82);
  margin-top: 1.25rem;
  max-width: 34rem;
}

.philosophy-visual img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

/* Ingredient mosaic */
.ingredient-band {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  align-items: end;
}

.ingredient-copy {
  grid-column: 1 / span 5;
  padding-bottom: 1rem;
}

.ingredient-panel {
  grid-column: 6 / span 7;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.ingredient-panel figure:first-child img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}

.ingredient-panel figure:last-child {
  margin-top: 3.5rem;
}

.ingredient-panel figure:last-child img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

/* Concept modules */
.concept-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.concept-item {
  padding: 2.4rem 1.8rem;
  border-right: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}

.concept-item:last-child {
  border-right: none;
}

.concept-item:hover {
  background: rgba(239, 232, 220, 0.65);
}

.concept-item .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 1.2rem;
}

.concept-item h3 {
  margin-bottom: 0.85rem;
}

.concept-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Season strip */
.season-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.season-list {
  display: grid;
  gap: 0;
}

.season-list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.season-list li:first-child {
  border-top: 1px solid var(--line);
}

.season-list .term {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--caramel);
}

.season-list h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.season-list p {
  color: var(--muted);
  font-size: 0.95rem;
}

.season-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Page hero (inner) */
.page-hero {
  padding: calc(var(--header-h) + 4.5rem) 0 3.5rem;
  position: relative;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.page-hero h1 {
  margin-bottom: 1.2rem;
}
@media (max-width:450px){
.page-hero h1{
font-size:1.8em;
}
}
.page-hero-visual img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-hero.plain .page-hero-grid {
  grid-template-columns: 1fr;
  max-width: 46rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-details {
  display: grid;
  gap: 1.75rem;
}

.detail-block h3 {
  margin-bottom: 0.55rem;
  font-size: 1.4rem;
}

.detail-block p,
.detail-block address {
  color: var(--muted);
  font-style: normal;
}

.contact-form {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.form-row {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.form-row label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--caramel);
  box-shadow: 0 0 0 3px rgba(154, 112, 72, 0.15);
}

.form-row input.is-invalid,
.form-row textarea.is-invalid,
.form-row select.is-invalid {
  border-color: #8a4a3a;
  box-shadow: 0 0 0 3px rgba(138, 74, 58, 0.12);
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: #8a4a3a;
}

.field-error[hidden],
.form-error[hidden] {
  display: none;
}

.form-error {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(138, 74, 58, 0.08);
  border: 1px solid rgba(138, 74, 58, 0.28);
  color: #8a4a3a;
  font-size: 0.92rem;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(111, 117, 95, 0.12);
  color: var(--deep-olive);
  border: 1px solid rgba(111, 117, 95, 0.25);
}

.form-success.is-visible {
  display: block;
}

/* Legal */
.legal-content {
  max-width: 48rem;
}

.legal-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.legal-content h3 {
  margin: 1.75rem 0 0.7rem;
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  margin: 0.8rem 0 1.2rem 1.1rem;
  list-style: disc;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.legal-visual {
  margin: 2.5rem 0;
}

.legal-visual img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

/* CTA band */
.cta-band {
  background: linear-gradient(125deg, var(--chocolate) 0%, var(--deep-olive) 55%, #4a3a2c 100%);
  color: var(--cream);
  text-align: left;
}

.cta-band h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(247, 243, 236, 0.84);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

/* Footer */
.site-footer {
  background: var(--chocolate);
  color: rgba(247, 243, 236, 0.82);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .brand-name {
  color: var(--cream);
}

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 18rem;
  font-size: 0.95rem;
}

.footer-col h3 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-col address,
.footer-col p {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  gap: 0.55rem;
}

.footer-nav a {
  color: rgba(247, 243, 236, 0.78);
  transition: color 0.25s var(--ease);
}

.footer-nav a:hover {
  color: var(--cream);
}

.social-list {
  display: grid;
  gap: 0.55rem;
}

.social-list a {
  color: rgba(247, 243, 236, 0.78);
  transition: color 0.25s var(--ease);
}

.social-list a:hover {
  color: var(--cream);
}

.contact-details .social-list a {
  color: var(--deep-olive);
}

.contact-details .social-list a:hover {
  color: var(--chocolate);
}

.footer-bottom {
  border-top: 1px solid rgba(247, 243, 236, 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(247, 243, 236, 0.55);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal a:hover {
  color: var(--cream);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

/* Cookie notice */
.cookie-notice {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  max-width: 420px;
  margin-left: auto;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem;
  display: none;
}

.cookie-notice.is-visible {
  display: block;
  animation: slideUp 0.45s var(--ease);
}

.cookie-notice p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 1.75rem;
}

.mt-lg {
  margin-top: 2.5rem;
}

.pad-note {
  padding: 1.5rem 0.2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .editorial-split,
  .editorial-split.reverse,
  .philosophy-inner,
  .season-layout,
  .page-hero-grid,
  .contact-layout,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .editorial-split.reverse .editorial-copy,
  .editorial-split.reverse .editorial-visual {
    order: initial;
  }

  .visual-offset {
    margin-left: 0;
    margin-top: 0;
  }

  .ingredient-band {
    grid-template-columns: 1fr;
  }

  .ingredient-copy,
  .ingredient-panel {
    grid-column: auto;
  }

  .ingredient-panel figure:last-child {
    margin-top: 0;
  }

  .concept-rail {
    grid-template-columns: 1fr;
  }

  .concept-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .concept-item:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signature-main {
    min-height: 380px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    background: rgba(247, 243, 236, 0.98);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
    padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    letter-spacing: 0.02em;
  }

  .nav-cta {
    margin-top: 0.5rem;
    font-family: var(--font-sans) !important;
    font-size: 0.78rem !important;
  }

  .site-header.menu-active {
    background: rgba(247, 243, 236, 0.98);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(14px);
  }

  .site-header.menu-active.is-scrolled {
    background: rgba(247, 243, 236, 0.98);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(14px);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 72px;
  }

  .container,
  .container-wide {
    width: min(100% - 1.75rem, 1180px);
  }

  .hero {
    align-items: center;
    padding-bottom: 3rem;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .signature-side {
    grid-template-columns: 1fr;
  }

  .ingredient-panel {
    grid-template-columns: 1fr;
  }

  .season-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .cookie-notice {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
