/* ==========================================================
   TRAITEUR BARRACUDA — STYLESHEET
   Editorial black & gold, single amber accent, no gradients.
   ========================================================== */

/* Font: Roboto (preserved from source) */
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; font-display: fallback; src: url('https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vBh05IsDqlA.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: fallback; src: url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xKKTU1Kg.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: fallback; src: url('https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vBh05IsDqlA.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: fallback; src: url('https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvBh05IsDqlA.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 900; font-display: fallback; src: url('https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvBh05IsDqlA.woff2') format('woff2'); }
@font-face { font-family: 'PlayfairDisplay'; font-style: normal; font-weight: 400 900; font-display: fallback; src: url('https://fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvXDXbtY.woff2') format('woff2'); }

/* ----- TOKENS ----- */
:root {
  --primary: #c7921c;
  --primary-ink: #0d0d0d;
  --primary-rgb: 199, 146, 28;
  --primary-dark: #856210;
  --primary-dark-rgb: 133, 98, 16;
  --primary-light: #e5a823;
  --primary-light-rgb: 229, 168, 35;

  --secondary: #e11c20;
  --secondary-ink: #ffffff;
  --secondary-rgb: 225, 28, 32;

  --accent: #e5a823;
  --accent-ink: #0d0d0d;
  --accent-rgb: 229, 168, 35;

  --ink: #1a1a1a;
  --ink-rgb: 26, 26, 26;
  --text: #26241f;
  --text-rgb: 38, 36, 31;
  --text-light: #6e6a63;
  --text-light-rgb: 110, 106, 99;

  --background: #ffffff;
  --background-rgb: 255, 255, 255;
  --bg-alt: #f7f3ec;
  --bg-alt-ink: #1a1a1a;
  --surface: #faf8f4;
  --surface-rgb: 250, 248, 244;
  --line: #ebe4d6;
  --line-rgb: 235, 228, 214;

  --dark: #0e0e0e;
  --dark-rgb: 14, 14, 14;
  --dark-2: #1a1613;
  --dark-3: #2a221c;

  --font-body: 'Roboto', var(--wp--preset--font-family--roboto, system-ui), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'PlayfairDisplay', 'Roboto', Georgia, serif;

  --wrap: 1240px;
  --wrap-narrow: 1080px;
  --pad-x: clamp(1rem, 4vw, 2.5rem);

  --radius-0: 0px;
  --radius-1: 2px;
  --radius-2: 4px;

  --shadow-soft: 0 24px 60px -30px rgba(var(--dark-rgb), 0.35);

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; color: var(--ink); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; transition: color .18s var(--ease); }
img, svg, video { display: block; max-width: 100%; height: auto; }
img { border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--dark); color: #fff; padding: .75rem 1rem; font-weight: 700;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ----- UTILITIES ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--primary);
  display: inline-block;
}
.eyebrow--dark { color: var(--primary-dark); }
.eyebrow--gold { color: var(--primary); }
.eyebrow--gold::before { background: var(--primary); }

.text-accent { color: var(--primary-dark); font-family: var(--font-display); font-style: italic; font-weight: 500; }

.tag {
  display: inline-flex;
  align-items: center;
  padding: .35rem .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  background: rgba(var(--primary-rgb), 0.06);
  border-radius: 999px;
}

/* ----- BUTTONS ----- */
.btn {
  --btn-py: .95rem;
  --btn-px: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius-1);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--sm { --btn-py: .65rem; --btn-px: 1.15rem; font-size: .72rem; }
.btn--lg { --btn-py: 1.1rem; --btn-px: 2rem; font-size: .82rem; }

.btn--primary { background: var(--primary); color: var(--primary-ink); border-color: var(--primary); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }

.btn--dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn--dark:hover, .btn--dark:focus-visible { background: var(--primary); color: var(--primary-ink); border-color: var(--primary); }

.btn--ghost { background: var(--dark); color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: #000; border-color: #fff; color: #fff; }

/* ----- LINK ARROW ----- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary-dark);
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.5);
  transition: color .2s var(--ease), border-color .2s var(--ease), gap .2s var(--ease);
}
.link-arrow:hover, .link-arrow:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  gap: .75rem;
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background);
  border-bottom: 1px solid var(--line);
}

.topbar {
  background: var(--dark);
  color: #f2ebd8;
  font-size: .78rem;
}
.topbar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding-block: .55rem;
}
.topbar__note {
  margin: 0;
  color: #cfc4a6;
  letter-spacing: .04em;
}
.topbar__contact {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.topbar__link {
  color: #f2ebd8;
  transition: color .18s var(--ease);
}
.topbar__link:hover { color: var(--primary-light); }
.topbar__sep { color: rgba(255,255,255,0.25); }
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary-light);
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.topbar__phone-text { white-space: nowrap; }
.topbar__phone:hover { color: #fff; }

.mainbar {
  background: var(--background);
}
.mainbar__row {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 84px;
  padding-block: .75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}
.brand__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand__tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-top: 3px;
}

.nav {
  margin-left: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav__link {
  position: relative;
  display: inline-block;
  padding: .6rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .35rem;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width .22s var(--ease);
}
.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.active::after {
  width: calc(100% - 1.4rem);
}
.nav__link.active { color: var(--primary-dark); }
.nav__close { display: none; }

.mainbar__cta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  color: #fff;
  background: var(--dark);
  overflow: hidden;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 5rem;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--dark-rgb), 0.7) 0%, rgba(var(--dark-rgb), 0.82) 55%, rgba(var(--dark-rgb), 0.95) 100%),
    linear-gradient(90deg, rgba(var(--dark-rgb), 0.92) 0%, rgba(var(--dark-rgb), 0.45) 60%, rgba(var(--dark-rgb), 0.55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero__eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--primary-light);
  display: inline-block;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6.2vw, 5.25rem);
  line-height: 1.02;
  color: #fff;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero__title-accent {
  color: var(--primary-light);
  font-style: italic;
  font-weight: 400;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 0 2.25rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.5rem;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: .82rem;
  color: rgba(255,255,255,0.9);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero__proof li { display: inline-flex; align-items: center; gap: .6rem; }
.hero__proof-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(var(--primary-light-rgb), 0.2);
}

.hero__scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ==========================================================
   BRAND ANCHOR
   ========================================================== */
.anchor {
  background: var(--dark);
  color: #fff;
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.anchor__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.anchor__rule {
  flex: 1;
  height: 1px;
  max-width: 260px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.6), transparent);
}
.anchor__logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(var(--primary-rgb), 0.25));
}
.anchor__tagline {
  margin: 1.25rem 0 0;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--primary-light);
  padding-left: .5em;
}

/* ==========================================================
   SECTION SHELL
   ========================================================== */
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section--dark {
  background: var(--dark);
  color: #fff;
}
.section-head {
  max-width: 720px;
  margin: 0 0 3.5rem;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--split {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-head--light .eyebrow { color: var(--primary-light); }
.section-head--light .section-title { color: #fff; }
.section-head--light .section-lede { color: rgba(255,255,255,0.8); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.section-lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
  max-width: 620px;
}
.section-lede--light { color: rgba(255,255,255,0.82); }

/* ==========================================================
   SERVICES
   ========================================================== */
.services { background: var(--background); }

.service-grid {
  display: grid;
  gap: 2.5rem 2rem;
}
.service-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.service-grid--tight { margin-top: 3.5rem; gap: 2rem 1.5rem; }

.service-card {
  position: relative;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: .35rem;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .5s var(--ease);
  filter: saturate(1.05) brightness(0.92);
}
.service-card:hover .service-card__media img {
  transform: scale(1.05);
  filter: saturate(1.1) brightness(1);
}
.service-card__media--sm {
  aspect-ratio: 4 / 3;
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--primary-ink);
  border: 1px solid var(--primary);
  background: var(--primary);
  flex-shrink: 0;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  box-shadow: 0 6px 18px -8px rgba(var(--dark-rgb), 0.55);
}
.service-card__media--sm .service-card__icon {
  width: 44px;
  height: 44px;
}
.service-card:hover .service-card__icon {
  background: var(--dark);
  color: var(--primary-light);
  border-color: var(--dark);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: .25rem 0 0;
  letter-spacing: -0.005em;
}
.service-card__desc {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.service-card--minor .service-card__title { font-size: 1.05rem; }
.service-card--minor .service-card__desc { font-size: .88rem; }

.service-card--feature {
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
  box-shadow: 0 12px 32px -22px rgba(var(--dark-rgb), 0.28);
}
.service-card--feature .service-card__title { color: var(--ink); }
.service-card--feature .service-card__desc { color: var(--text); }
.service-card--feature .service-card__icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-ink);
}
.service-card--feature:hover .service-card__icon {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}
.service-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary-ink);
  background: var(--primary);
  padding: .3rem .55rem;
  border: 1px solid var(--primary);
}

.services__ribbon {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.services__ribbon-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.services__ribbon-tags {
  display: inline-flex;
  gap: .5rem;
  flex-wrap: wrap;
}

/* ==========================================================
   STORY
   ========================================================== */
.story { background: var(--bg-alt); }

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.story__media { position: relative; }
.story__stack {
  position: relative;
  padding: 0 3rem 3rem 0;
}
.story__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(1.05);
}
.story__img--a {
  aspect-ratio: 4 / 5;
  object-position: center;
}
.story__img--b {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  aspect-ratio: 4 / 5;
  border: 8px solid var(--bg-alt);
  object-position: center;
}

.story__body { max-width: 560px; }
.story__lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.story__body-copy {
  color: var(--text-light);
  margin: 0 0 2rem;
}

.pillars { display: flex; flex-direction: column; gap: 1.25rem; margin: 0 0 2rem; }
.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--primary-dark);
  min-width: 2rem;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .25rem;
}
.pillar__desc {
  margin: 0;
  color: var(--text-light);
  font-size: .92rem;
}

/* ==========================================================
   PROCESS (DARK)
   ========================================================== */
.process { position: relative; }
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(var(--primary-rgb), 0.1), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(var(--secondary-rgb), 0.06), transparent 55%);
  pointer-events: none;
}
.process > .container { position: relative; z-index: 1; }

.steps {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.3) 20%, rgba(var(--primary-rgb), 0.3) 80%, transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
}
.step__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border: 1px solid var(--primary);
  color: var(--primary-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 .5rem;
}
.step__desc {
  color: rgba(255,255,255,0.72);
  font-size: .92rem;
  margin: 0;
}

/* ==========================================================
   DISHES
   ========================================================== */
.dishes { background: var(--background); }
.dishes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.dish {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dish__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface);
}
.dish__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.dish:hover .dish__frame img { transform: scale(1.05); }
.dish__caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: .75rem;
}
.dish__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.dish__note {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials { background: var(--bg-alt); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.quote {
  margin: 0;
  padding: 2.25rem 2rem 2rem;
  background: var(--background);
  border-top: 3px solid var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.quote__mark {
  color: rgba(var(--primary-rgb), 0.5);
  flex-shrink: 0;
}
.quote__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  flex: 1;
}
.quote__cite {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.quote__name {
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
  letter-spacing: .02em;
}
.quote__role {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

/* ==========================================================
   PHOTO STRIP
   ========================================================== */
.strip {
  background: var(--dark);
  padding: 6px;
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.strip__cell {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}
.strip__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .5s var(--ease);
  filter: brightness(0.95);
}
.strip__cell:hover img { transform: scale(1.06); filter: brightness(1.1); }

.strip__cell--cta {
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.strip__cell--cta img.strip__cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
.strip__cell--cta:hover img.strip__cta-img {
  transform: scale(1.06);
  filter: brightness(0.3);
}
.strip__cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--dark-rgb), 0.55), rgba(var(--dark-rgb), 0.85));
}
.strip__cta-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem;
  color: #fff;
}
.strip__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #fff;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq { background: var(--background); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.faq__intro { position: sticky; top: 140px; }
.faq__lead {
  color: var(--text-light);
  margin: 0 0 1.75rem;
  font-size: 1rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__q {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--primary-dark); }
.faq-item__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--primary);
  transition: transform .2s var(--ease);
}
.faq-item__icon::before {
  width: 14px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 2px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item[open] .faq-item__q { color: var(--primary-dark); }

.faq-item__a {
  padding: 0 0 1.5rem;
  color: var(--text-light);
  font-size: .98rem;
  line-height: 1.7;
  max-width: 640px;
}
.faq-item__a p { margin: 0; }

/* ==========================================================
   CTA BAND
   ========================================================== */
.cta-band {
  background: var(--dark);
  color: #fff;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(var(--primary-rgb), 0.18), transparent 55%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 .75rem;
  letter-spacing: -0.01em;
}
.cta-band__lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: flex-end;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: #0a0a0a;
  color: #d9d1b8;
  padding-top: 4.5rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin: 0 0 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(var(--primary-rgb), 0.25));
}
.site-footer__intro {
  color: #cfc4a6;
  font-size: .95rem;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 0 1.5rem;
}
.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  color: var(--primary-light);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.site-footer__social:hover {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
}

.site-footer__title {
  color: var(--primary-light);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.25);
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.site-footer__links a {
  color: #d9d1b8;
  font-size: .95rem;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.site-footer__links a:hover {
  color: var(--primary-light);
  padding-left: .35rem;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.site-footer__contact li {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.site-footer__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8a8267;
}
.site-footer__contact a,
.site-footer__contact span:not(.site-footer__label) {
  color: #f2ebd8;
  font-size: .98rem;
  word-break: break-word;
}
.site-footer__contact a:hover { color: var(--primary-light); }
.site-footer__phone {
  font-weight: 700;
  white-space: nowrap;
}

.site-footer__bottom {
  padding-block: 1.5rem;
}
.site-footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: #8a8267;
}
.site-footer__bottom p { margin: 0; }
.site-footer__meta {
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .service-grid--four { grid-template-columns: repeat(2, 1fr); }
  .service-grid--five { grid-template-columns: repeat(3, 1fr); }
  .dishes__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__inner { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq__intro { position: static; }
}

@media (max-width: 980px) {
  .topbar__row { flex-direction: column; gap: .35rem; text-align: center; padding-block: .65rem; }
  .topbar__note { font-size: .72rem; }

  .mainbar__row { min-height: 72px; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88%);
    background: var(--background);
    z-index: 200;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,0.3);
    margin-left: 0;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav__link {
    display: block;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
  }
  .nav__link::after { display: none; }
  .nav__link.active { background: transparent; }
  .nav__close {
    display: inline-flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
  }
  .nav-toggle { display: inline-flex; margin-left: .25rem; }

  .mainbar__cta { margin-left: auto; gap: .5rem; }
  .mainbar__cta .btn--sm { display: none; }

  .hero { min-height: 620px; padding: 5rem 0 3rem; }
  .story__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story__stack { padding: 0 2rem 2rem 0; max-width: 480px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .steps::before { display: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  :root { --pad-x: 1.25rem; }

  .brand__name { font-size: 1.1rem; }
  .brand__tag { font-size: .58rem; letter-spacing: .18em; }
  .brand__logo { width: 48px; height: 48px; }

  .topbar__contact { gap: .55rem; }
  .topbar__link { display: none; }
  .topbar__sep { display: none; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__proof { gap: .85rem 1.25rem; font-size: .78rem; }
  .hero__scroll { display: none; }

  .anchor { padding: 2.5rem 0 2rem; }
  .anchor__inner { gap: 1rem; }
  .anchor__logo { width: 110px; height: 110px; }
  .anchor__tagline { letter-spacing: .35em; font-size: .72rem; }

  .service-grid--four { grid-template-columns: 1fr; }
  .service-grid--five { grid-template-columns: 1fr; }
  .service-grid--tight { margin-top: 2rem; }
  .services__ribbon { flex-direction: column; align-items: flex-start; gap: .85rem; }

  .story__stack { padding: 0 1.5rem 1.5rem 0; }
  .story__img--b { border-width: 5px; width: 62%; }
  .section-head--split { align-items: flex-start; }

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

  .dishes__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .dish__label { font-size: .95rem; }
  .dish__note { font-size: .62rem; }

  .strip__inner { grid-template-columns: repeat(2, 1fr); }

  .site-footer { padding-top: 3.5rem; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
  .site-footer__bottom-row { flex-direction: column; text-align: center; gap: .5rem; }

  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { width: 100%; }

  .quote { padding: 1.75rem 1.5rem 1.5rem; }

  .faq-item__q { font-size: 1rem; padding: 1.25rem 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Body scroll lock when nav open */
body.nav-open { overflow: hidden; }

/* Backdrop for mobile nav */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
