/* ============================================================
   West Coast Special Events — stylesheet
   Design language: fine-dining luxe — warm noir, ivory,
   champagne gold. High-contrast serif display + clean sans.
   ============================================================ */

:root {
  /* darks */
  --noir: #100f0d;
  --espresso: #17130e;
  --char: #211b14;        /* raised surface on dark */
  --char-2: #2a231a;
  /* lights — bright warm champagne (airy, leans amber, never green) */
  --ivory: #faf6ec;       /* light section background */
  --bone: #fffefa;        /* card / paper surface (near-white) */
  /* accent */
  --gold: #c2a15e;
  --gold-soft: #d9c08a;
  --gold-deep: #a9863f;
  /* text */
  --ink: #1b1712;         /* text on light */
  --cream: #ece4d4;       /* text on dark */
  --muted-d: #9c9280;     /* muted on dark */
  --muted-l: #6f6555;     /* muted on light */
  /* lines */
  --line-d: rgba(217, 192, 138, 0.16);
  --line-l: rgba(27, 23, 18, 0.14);
  --gline: rgba(194, 161, 94, 0.45);

  --shadow-sm: 0 2px 14px rgba(16, 15, 13, 0.10);
  --shadow-md: 0 20px 55px rgba(16, 15, 13, 0.16);
  --shadow-lg: 0 40px 90px rgba(16, 15, 13, 0.45);
  --radius: 4px;
  --radius-lg: 6px;
  --maxw: 1200px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

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

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

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

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

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

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.08; letter-spacing: 0.012em; }
h1 { font-size: clamp(3.2rem, 7.2vw, 6rem); font-weight: 300; }
h2 { font-size: clamp(2.4rem, 4.8vw, 3.7rem); }
h3 { font-size: 1.6rem; font-weight: 500; }

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

.accent { color: var(--gold); font-style: italic; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
/* short gold rule before eyebrow text */
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 0.7em;
  opacity: 0.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: var(--noir); box-shadow: 0 10px 30px rgba(194, 161, 94, 0.28); }
.btn-primary:hover { background: var(--gold-deep); color: var(--noir); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(169, 134, 63, 0.42); }
.btn-ghost { background: transparent; color: var(--gold); border-color: var(--gline); }
.btn-ghost:hover { background: rgba(194, 161, 94, 0.1); border-color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 1.15rem 2.4rem; font-size: 0.82rem; }
.btn-sm { padding: 0.72rem 1.3rem; font-size: 0.72rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.scrolled {
  background: rgba(16, 15, 13, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-d);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 82px; }

.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand-mark {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; color: var(--cream); }
.brand-text strong { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; letter-spacing: 0.01em; }
.brand-text em { font-style: normal; font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav > a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); transition: color 0.2s; }
.nav > a:not(.nav-cta):hover { color: var(--gold); }
.nav > a.nav-cta { color: var(--noir); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--cream); border-radius: 2px; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  padding: 130px 0 100px;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(16,15,13,0.62) 0%, rgba(16,15,13,0.48) 42%, rgba(16,15,13,0.92) 100%),
    linear-gradient(90deg, rgba(16,15,13,0.7) 0%, rgba(16,15,13,0.15) 60%),
    url('images/crispy-octopus-hero.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.05);
  animation: slowZoom 22s ease-out forwards;
}
@keyframes slowZoom { to { transform: scale(1); } }
.hero-content { position: relative; max-width: 820px; }
.hero-content h1 { margin-bottom: 1.6rem; font-weight: 500; }
.hero .eyebrow { color: var(--gold-soft); }
.hero-sub { font-family: var(--font-sans); font-size: clamp(1.02rem, 1.7vw, 1.22rem); max-width: 600px; color: rgba(236, 228, 212, 0.86); margin-bottom: 2.4rem; font-weight: 300; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(236, 228, 212, 0.72); }
.hero-trust li { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust li:not(:last-child)::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin-left: 1.5rem; }

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 1.3rem; opacity: 0.85;
  animation: bob 1.9s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--noir); border-top: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d); }
.trustbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trustbar-grid > div { padding: 2.4rem 1rem; text-align: center; border-left: 1px solid var(--line-d); }
.trustbar-grid > div:first-child { border-left: 0; }
.trustbar-grid strong { display: block; font-family: var(--font-serif); font-size: 1.9rem; font-weight: 500; color: var(--gold); letter-spacing: 0.01em; }
.trustbar-grid span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-d); }

/* ---------- Sections ---------- */
.section { padding: 120px 0; background: var(--ivory); }
.section-head { max-width: 680px; margin: 0 auto 68px; text-align: center; }
.section-head h2 { color: var(--ink); }
.section-lead { color: var(--muted-l); font-size: 1.12rem; margin-top: 1.2rem; font-weight: 300; }

/* light vs dark section text defaults */
.section.on-dark, .chef, .menu, .gallery, .testimonials { }

/* ---------- Service cards (light section) ---------- */
#services { background: var(--ivory); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: var(--bone);
  border: 1px solid var(--line-l);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gline); }
.card-media { display: block; width: 100%; height: 230px; object-fit: cover; filter: saturate(0.96) contrast(1.03); }
.card-body { padding: 32px 30px 34px; }
.card-body h3 { margin-bottom: 0.7rem; color: var(--ink); }
.card-body p { color: var(--muted-l); font-size: 0.97rem; }
.ticks { list-style: none; margin-top: 1.3rem; display: grid; gap: 0.6rem; }
.ticks li { position: relative; padding-left: 1.6rem; font-size: 0.88rem; color: var(--ink); }
.ticks li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Chef (dark section) ---------- */
.chef { background: var(--espresso); color: var(--cream); }
.chef-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center; }
.chef-photo {
  position: relative;
  aspect-ratio: 5/7;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chef-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  /* mute the leafy background without amplifying grain */
  filter: saturate(0.72) contrast(1.0) brightness(1.01);
}
.chef-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,14,0) 55%, rgba(23,19,14,0.45) 100%);
  z-index: 1;
}
.chef-photo::before {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid var(--gline);
  z-index: 2;
  pointer-events: none;
}
.chef-body .eyebrow { color: var(--gold); }
.chef-body h2 { color: var(--bone); margin-bottom: 1.4rem; }
.chef-body p { color: rgba(236, 228, 212, 0.82); margin-bottom: 1.1rem; font-weight: 300; }
.chef-body blockquote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gold-soft);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.9rem 0 2.1rem;
}

/* ---------- Menu (dark section, luxe menu card pops) ---------- */
.menu { background: var(--espresso); }
.menu .section-head h2 { color: var(--bone); }
.menu .section-lead { color: var(--muted-d); }
.menu-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bone);
  border: 1px solid var(--gline);
  border-radius: var(--radius-lg);
  padding: 52px 40px 46px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.menu-card::before {
  content: "";
  position: absolute; inset: 16px;
  border: 1px solid rgba(194, 161, 94, 0.3);
  border-radius: 2px;
  pointer-events: none;
}
.menu-card-kicker {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.menu-card-kicker + .menu-courses { margin-top: 38px; }
/* two balanced columns — compact but elegant */
.menu-courses { column-count: 2; column-gap: 56px; max-width: 780px; margin: 0 auto; }
.menu-course {
  text-align: center;
  margin-bottom: 34px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.course-title {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--gold-deep);
  margin-bottom: 1.6rem;
  padding-bottom: 0.9rem;
  position: relative;
}
.course-title::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 34px; height: 1px; background: var(--gold);
}
.course-list { list-style: none; display: grid; gap: 1.15rem; }
.course-list > li { line-height: 1.3; }
.dish { display: block; font-family: var(--font-serif); font-weight: 500; font-size: 1.4rem; letter-spacing: 0.01em; color: var(--ink); }
.desc { display: block; color: var(--muted-l); font-size: 0.84rem; font-style: italic; margin-top: 0.3rem; letter-spacing: 0.01em; }
.choice-label { display: block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-deep); font-weight: 600; margin-bottom: 0.7rem; }
.choice-list { list-style: none; display: grid; gap: 0.55rem; }
.choice-list li { font-size: 0.9rem; color: var(--muted-l); }
.choice-list strong { font-family: var(--font-serif); font-weight: 500; font-size: 1.12rem; color: var(--ink); }
.menu-note { text-align: center; margin-top: 46px; color: var(--muted-l); font-size: 0.98rem; }
.menu-note a { color: var(--gold-deep); font-weight: 600; white-space: nowrap; border-bottom: 1px solid var(--gline); }

/* ---------- Gallery (light section, image-forward) ---------- */
.gallery { background: var(--ivory); padding-bottom: 96px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  grid-auto-flow: dense;
  gap: 14px;
  padding: 0 14px;
}
.g-item {
  position: relative;
  display: block;
  padding: 0; margin: 0; border: 0;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--char); /* placeholder tone while lazy-loading */
  -webkit-appearance: none; appearance: none;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.g-item:hover img, .g-item:focus-visible img { transform: scale(1.05); filter: saturate(1.06) contrast(1.05); }
.g-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.g-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px 14px 11px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #f4eee2;
  text-align: left;
  background: linear-gradient(180deg, rgba(16,15,13,0) 0%, rgba(16,15,13,0.8) 100%);
  pointer-events: none;
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-hidden { display: none; }
.gallery-more { text-align: center; margin-top: 46px; }
.gallery-more .btn-ghost { color: var(--gold-deep); border-color: var(--gline); }
.gallery-more .btn-ghost:hover { background: rgba(194,161,94,0.1); border-color: var(--gold); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(10, 9, 8, 0.94);
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lb-figure { margin: 0; max-width: 92vw; max-height: 90vh; text-align: center; }
.lb-figure img { max-width: 92vw; max-height: 80vh; width: auto; height: auto; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lb-figure figcaption { margin-top: 16px; color: var(--cream); font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; letter-spacing: 0.01em; }
.lb-close, .lb-nav {
  position: absolute;
  background: transparent; border: 0; color: var(--cream);
  cursor: pointer; line-height: 1;
  transition: color 0.2s, transform 0.2s;
}
.lb-close { top: 22px; right: 30px; font-size: 2.6rem; }
.lb-nav { top: 50%; transform: translateY(-50%); font-size: 3.4rem; padding: 0 22px; }
.lb-prev { left: 8px; }
.lb-next { right: 8px; }
.lb-close:hover, .lb-nav:hover { color: var(--gold); }
.lb-nav:hover { transform: translateY(-50%) scale(1.12); }

/* ---------- Full-bleed image band ---------- */
.image-band {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(16,15,13,0.72), rgba(16,15,13,0.72)),
    url('images/burrata-board.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.image-band-inner { max-width: 720px; padding: 60px 28px; }
.image-band-inner .eyebrow { color: var(--gold-soft); }
.image-band-inner h2 { color: var(--bone); font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 2rem; }

/* ---------- Process (light section) ---------- */
.process { background: var(--ivory); }
.process .section-head h2 { color: var(--ink); }
.process .section-lead { color: var(--muted-l); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.steps li {
  background: var(--bone);
  border: 1px solid var(--line-l);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 42px 34px;
}
.step-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 500; color: var(--gold); display: block; margin-bottom: 0.7rem; line-height: 1; }
.steps h3 { color: var(--ink); margin-bottom: 0.6rem; }
.steps p { color: var(--muted-l); font-size: 0.96rem; font-weight: 300; }

/* ---------- Reviews / testimonials (light section) ---------- */
.testimonials { background: var(--ivory); }
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.reviews-link { text-align: center; margin-top: 2.4rem; }
.reviews-link a { color: var(--gold-deep); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gline); padding-bottom: 3px; }
.reviews-link a:hover { color: var(--ink); }
.quotes figure {
  background: var(--bone);
  border: 1px solid var(--line-l);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
}
.stars { color: var(--gold-deep); letter-spacing: 4px; margin-bottom: 1.3rem; font-size: 0.9rem; }
.quotes blockquote { font-family: var(--font-serif); font-size: 1.4rem; font-style: italic; line-height: 1.4; margin-bottom: 1.3rem; color: var(--ink); font-weight: 500; }
.quotes figcaption { color: var(--muted-l); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Contact (light section) ---------- */
.contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact-copy .eyebrow { text-align: left; }
.contact-copy .eyebrow::before { display: none; }
.contact-copy h2 { color: var(--ink); }
.contact-copy > p { color: var(--muted-l); margin-top: 1.2rem; font-weight: 300; font-size: 1.05rem; }
.contact-points { list-style: none; margin-top: 2.4rem; display: grid; gap: 1.5rem; }
.contact-points li { display: flex; flex-direction: column; border-top: 1px solid var(--line-l); padding-top: 1.1rem; }
.contact-points strong { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-deep); margin-bottom: 0.35rem; font-weight: 600; }
.contact-points a, .contact-points span { font-size: 1.3rem; font-weight: 500; font-family: var(--font-serif); color: var(--ink); }
.contact-points a:hover { color: var(--gold-deep); }

.lead-form {
  background: var(--bone);
  border: 1px solid var(--gline);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--muted-l); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line-l);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 161, 94, 0.18);
}
.field input:invalid:not(:placeholder-shown) { border-color: #a2432f; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { margin-top: 16px; font-size: 0.95rem; font-weight: 500; text-align: center; min-height: 1.2em; }
.form-msg.ok { color: var(--gold-deep); }
.form-msg.err { color: #a2432f; }

/* ---------- Footer ---------- */
.site-footer { background: var(--noir); color: var(--cream); padding: 72px 0 0; border-top: 1px solid var(--line-d); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 52px; }
.footer-brand { display: flex; gap: 1.1rem; }
.footer-brand strong { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; display: block; margin-bottom: 0.5rem; color: var(--bone); }
.footer-brand p { color: var(--muted-d); font-size: 0.92rem; max-width: 340px; font-weight: 300; }
.footer-nav { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-nav a, .footer-contact a, .footer-contact span { color: var(--muted-d); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-bottom { border-top: 1px solid var(--line-d); padding: 26px 0; text-align: center; }
.footer-bottom p { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-d); opacity: 0.7; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 90;
  background: var(--gold);
  color: var(--noir);
  text-align: center;
  padding: 1.05rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(16, 15, 13, 0.5);
  /* hidden until the user scrolls past the hero (toggled by JS) */
  transform: translateY(160%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mobile-cta.show { transform: none; opacity: 1; pointer-events: auto; }

/* ---------- Reveal animation (progressive enhancement) ---------- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .cards, .steps, .quotes { grid-template-columns: 1fr; }
  .menu-card { padding: 44px 30px 40px; }
  .menu-courses { column-gap: 40px; }
  .chef-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .chef-photo { aspect-ratio: 5/7; max-width: 430px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .g-wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 82px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(16, 15, 13, 0.97);
    backdrop-filter: blur(14px);
    padding: 12px 28px 28px;
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform 0.4s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav > a { padding: 16px 0; border-bottom: 1px solid var(--line-d); }
  .nav-cta { margin-top: 14px; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
  .trustbar-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar-grid > div { padding: 1.8rem 0.6rem; }
  .trustbar-grid > div:nth-child(odd) { border-left: 0; }
  .trustbar-grid > div:nth-child(3), .trustbar-grid > div:nth-child(4) { border-top: 1px solid var(--line-d); }
  .section { padding: 84px 0; }
  .field-row { grid-template-columns: 1fr; }
  .menu-courses { column-count: 1; }
  .menu-card::before { inset: 9px; }
  .hero-trust li:not(:last-child)::after { display: none; }
  .mobile-cta { display: block; }
  .hero { min-height: 94vh; }
  .image-band { background-attachment: scroll; min-height: 52vh; }
}
