@font-face {
  font-family: "Bethany Elingston";
  src: url("fonts/BethanyElingston.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Griffiths";
  src: url("fonts/Griffiths.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Reactin";
  src: url("fonts/Reactin.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Relationship Melodrame";
  src: url("fonts/RelationshipMelodrame.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #1f1f21;
  --bg-2: #2a2a2c;
  --bg-3: #343437;
  --bg-4: #17171a;
  --paper: #F3EDE0;
  --paper-soft: rgba(243, 237, 224, 0.78);
  --paper-dim: rgba(243, 237, 224, 0.55);
  --gold: #C9C3B0;
  --gold-dark: #AFAA98;
  --border: rgba(243, 237, 224, 0.14);
  --border-gold: rgba(201, 195, 176, 0.30);

  --f-display: "Playfair Display", Georgia, serif;
  --f-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --f-sans: "Playfair Display", "Montserrat", system-ui, sans-serif;
  --f-script: "Bethany Elingston", "Sacramento", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--paper);
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a, button { cursor: pointer; color: inherit; text-decoration: none; background: none; border: 0; font: inherit; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }
::selection { background: var(--gold); color: var(--bg); }

/* ====== Typography helpers ====== */
.f-display { font-family: var(--f-display); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400; }
.f-serif { font-family: var(--f-serif); }
.f-serif-it { font-family: var(--f-serif); font-style: italic; font-weight: 400; }
.f-script { font-family: var(--f-script); font-weight: 400; line-height: 1; letter-spacing: 0.005em; }
.f-sans  { font-family: var(--f-sans); }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}
.eyebrow-serif {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ====== Decorative ====== */
.dbl-rule {
  display: inline-block;
  width: 42px; height: 5px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.vert-rule {
  width: 1px; background: var(--gold); opacity: 0.45;
}
.diamond-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 10px;
  vertical-align: middle;
}
.circle-pattern {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background-image:
    repeating-linear-gradient(45deg,  rgba(201,195,176,0.28) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(201,195,176,0.28) 0 1px, transparent 1px 14px);
  pointer-events: none;
}
.no-ornaments .circle-pattern,
.no-ornaments .corner-orn { display: none !important; }

/* ====== Buttons ====== */
.btn {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 34px;
  border: 1px solid var(--paper);
  color: var(--paper);
  background: transparent;
  display: inline-block;
  transition: all .4s ease;
}
.btn:hover { background: var(--paper); color: var(--bg); }
.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--bg); }

.link-u {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
  position: relative;
  color: var(--paper);
  display: inline-block;
  transition: color .3s;
}
.link-u::after {
  content:""; position:absolute; left:0; bottom:0; height:1px; width:100%;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s cubic-bezier(.77,0,.175,1);
}
.link-u:hover { color: var(--gold); }
.link-u:hover::after { transform: scaleX(1); transform-origin: left; }

/* ====== Image reveal ====== */
.img-reveal { overflow: hidden; position: relative; }
.img-reveal .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s cubic-bezier(.25,.46,.45,.94);
}
.img-reveal:hover .bg { transform: scale(1.06); }

/* ====== Navbar ====== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all .4s ease;
  padding: 18px 32px;
}
.nav.scrolled {
  background: rgba(23,23,26,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 10px 32px;
}
.nav-inner {
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.nav-mark { font-family: var(--f-script); font-size: 28px; color: var(--paper); }
.nav-mark .sep { color: var(--gold); margin: 0 2px; }
.nav-links { display: flex; justify-content: center; gap: 36px; }
.nav-link {
  font-family: var(--f-sans); font-size: 10px; letter-spacing: .38em;
  text-transform: uppercase; font-weight: 500; color: var(--paper);
  padding-bottom: 6px; border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); border-color: var(--gold); }
.nav-group { position: relative; }
.nav-group-trigger { cursor: default; }
.nav-group:hover .nav-group-trigger { color: var(--gold); border-color: var(--gold); }
.nav-submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 18px 0 0 0; margin: 0; list-style: none;
  white-space: nowrap;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-right { display: flex; justify-content: flex-end; gap: 20px; align-items: center; }
.nav-phone {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.18em;
  color: var(--paper-soft);
}
.nav-phone:hover { color: var(--gold); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-right { display: none; }
}

/* ====== Hero ====== */
.hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 640px;
  background: var(--bg-4);
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.6s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1);
  transition: transform 10s ease-out;
}
.hero-slide.active .bg { transform: scale(1.06); }
.hero-slide .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,17,.55) 0%, rgba(15,15,17,.28) 35%, rgba(15,15,17,.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.hero-lockup {
  display: flex; align-items: center; justify-content: center; gap: 38px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.hero-script {
  color: var(--paper);
  font-family: var(--f-script);
  font-size: clamp(64px, 9vw, 128px);
  line-height: .92;
  white-space: nowrap;
}
.hero-script .inc {
  color: var(--gold); font-style: italic; font-size: .42em;
  vertical-align: super; margin-left: 4px;
  font-family: var(--f-serif);
  letter-spacing: 0.02em;
}
.hero-tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--paper);
  line-height: 1.2;
  text-align: left;
}
.hero-tag .amp { color: var(--gold); font-size: 1.1em; }
.hero-caption {
  max-width: 560px; margin: 0 auto 36px;
  font-family: var(--f-serif);
  font-size: clamp(16px, 1.4vw, 19px);
  font-style: italic;
  color: rgba(243,237,224,.88);
  line-height: 1.55;
}
.hero-dots {
  position: absolute; bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: transparent; border: 1px solid var(--paper);
  transition: all .3s;
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); }
.hero-arrow {
  position: absolute; top: 50%; z-index: 3;
  color: rgba(243,237,224,.7);
  padding: 12px;
  transition: color .3s;
}
.hero-arrow:hover { color: var(--gold); }
.hero-arrow.left { left: 24px; }
.hero-arrow.right { right: 24px; }
.hero-scroll {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: none;
}

@media (max-width: 1100px) {
  .hero-lockup { flex-direction: column; gap: 18px; }
  .vert-rule-hero { display: none; }
  .hero-tag { text-align: center; }
}

/* ====== Section container ====== */
.section {
  position: relative;
  padding: 120px 32px;
  overflow: hidden;
}
.section-narrow { max-width: 1100px; margin: 0 auto; }
.section-wide { max-width: 1440px; margin: 0 auto; }

@media (max-width: 760px) {
  .section { padding: 80px 20px; }
}

/* Section heading block */
.heading-block { text-align: center; }
.heading-block .title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 56px);
  margin: 14px 0 16px;
  color: var(--paper);
}
.heading-block .subtitle {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--paper-soft);
  max-width: 620px;
  margin: 18px auto 0;
  line-height: 1.6;
}

/* ====== About ====== */
.about {
  background: var(--bg-2);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-body {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  color: var(--paper-soft);
  margin: 24px 0 28px;
}
.about-signature {
  font-family: var(--f-script);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-top: 8px;
}
.about-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-template-areas:
    "a a b"
    "a a b"
    "c d e"
    "c d e";
  gap: 10px;
  aspect-ratio: 5 / 4;
}
.bento-cell { background: var(--bg-4); }

/* ====== Marquee ====== */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 36px 0;
  background: var(--bg-4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  will-change: transform;
}
.marquee span {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 42px);
  color: var(--paper);
  letter-spacing: 0.26em;
  opacity: 0.85;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee span.alt { color: var(--gold); font-family: var(--f-display); font-size: clamp(22px, 3vw, 42px); letter-spacing: 0.26em; text-transform: uppercase; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====== Services v2 ====== */
.services-v2 { background: var(--bg); }
.svc-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  margin-top: 64px;
  align-items: stretch;
}
@media (max-width: 980px) { .svc-wrap { grid-template-columns: 1fr; gap: 40px; } }

.svc-feature {
  position: relative;
  min-height: 560px;
  display: flex;
}
.svc-feature-img {
  position: relative;
  width: 100%;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  animation: svcFade .9s cubic-bezier(.25,.46,.45,.94);
}
@keyframes svcFade {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}
.svc-feature-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,17,.15) 0%, rgba(15,15,17,.3) 45%, rgba(15,15,17,.88) 100%);
}
.svc-feature-num {
  position: absolute;
  top: 28px; left: 28px;
  font-family: var(--f-display);
  font-size: clamp(64px, 8vw, 120px);
  color: var(--paper);
  opacity: .12;
  letter-spacing: .04em;
  line-height: 1;
}
.svc-feature-meta {
  position: absolute;
  left: 32px; right: 32px; bottom: 32px;
  z-index: 2;
}

.svc-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
}
.svc-list {
  list-style: none;
  border-top: 1px solid var(--border);
}
.svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  padding: 22px 8px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all .4s ease;
  position: relative;
}
.svc-row::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .5s cubic-bezier(.77,0,.175,1);
}
.svc-row.on::before { width: 100%; }
.svc-row:hover { padding-left: 18px; }
.svc-row-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  opacity: .7;
  transition: opacity .3s;
}
.svc-row.on .svc-row-num { opacity: 1; }
.svc-row-title {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: .22em;
  color: var(--paper-soft);
  margin: 0;
  transition: color .3s;
}
.svc-row.on .svc-row-title { color: var(--gold); }
.svc-row-tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--paper-dim);
  margin-top: 3px;
}
.svc-row-arrow {
  color: var(--paper-dim);
  display: inline-flex;
  transform: translateX(-8px);
  opacity: 0;
  transition: all .4s cubic-bezier(.77,0,.175,1);
}
.svc-row.on .svc-row-arrow,
.svc-row:hover .svc-row-arrow { transform: translateX(0); opacity: 1; color: var(--gold); }

.svc-details {
  animation: svcDetFade .5s ease;
}
@keyframes svcDetFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.svc-details-row { margin-bottom: 22px; }
.svc-details-row .eyebrow { display: block; margin-bottom: 14px; }
.svc-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--border-gold);
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--paper-soft);
  letter-spacing: .04em;
  transition: all .3s;
}
.svc-chip:hover { border-color: var(--gold); color: var(--paper); }
.svc-chip-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}
.svc-details-foot {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 36px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.svc-details-foot-cta {
  grid-template-columns: 1fr;
  justify-items: flex-end;
}
@media (max-width: 620px) {
  .svc-details-foot { grid-template-columns: 1fr 1fr; }
  .svc-cta { grid-column: 1 / -1; justify-self: stretch; text-align: center; }
  .svc-details-foot-cta { grid-template-columns: 1fr; justify-items: stretch; }
}
.svc-foot-val {
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: .16em;
  color: var(--paper);
  margin-top: 6px;
}
.svc-cta { justify-self: end; }
.svc-card {
  display: block;
  position: relative;
  aspect-ratio: 3/4.2;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}
.svc-card .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s cubic-bezier(.25,.46,.45,.94);
  filter: saturate(0.95);
}
.svc-card:hover .bg { transform: scale(1.07); }
.svc-card .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,17,.2) 0%, rgba(15,15,17,.82) 100%);
  transition: background .5s;
}
.svc-card:hover .veil { background: linear-gradient(180deg, rgba(15,15,17,.2) 0%, rgba(15,15,17,.55) 100%); }
.svc-card .meta {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 28px;
  color: var(--paper);
}
.svc-card .num {
  font-family: var(--f-serif); font-style: italic;
  color: var(--gold); opacity: 0.85;
  font-size: 14px; margin-bottom: 4px;
}
.svc-card h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.5vw, 24px);
  margin: 6px 0 10px;
  color: var(--paper);
}
.svc-card .tag {
  font-family: var(--f-serif); font-style: italic;
  font-size: 15px; color: rgba(243,237,224,.75);
  margin-bottom: 18px;
  transform: translateY(12px);
  opacity: 0;
  transition: all .5s;
}
.svc-card:hover .tag { transform: translateY(0); opacity: 1; }
.svc-card .rule {
  width: 28px; height: 1px; background: var(--gold);
  margin-bottom: 14px;
  transition: width .5s;
}
.svc-card:hover .rule { width: 56px; }

/* ====== Quote ====== */
.quote {
  background: var(--bg-4);
  text-align: center;
}
.quote .body {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.5;
  color: var(--paper);
  max-width: 880px;
  margin: 36px auto 28px;
}
.quote .sig {
  font-family: var(--f-script);
  font-size: 40px;
  color: var(--gold);
  margin-top: 10px;
}

/* ====== Signature dish ====== */
.signature-dish {
  background: var(--bg-2);
}
.sd-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 920px) { .sd-grid { grid-template-columns: 1fr; gap: 40px; } }
.sd-image {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  position: relative;
}
.sd-image .badge {
  position: absolute;
  top: 20px; right: 20px;
  width: 100px; height: 100px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(23,23,26,.55);
  backdrop-filter: blur(6px);
  animation: spin 22s linear infinite;
}
.sd-image .badge span {
  position: absolute;
  font-family: var(--f-sans);
  font-size: 9px; letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ====== Menu tabs ====== */
.menu {
  background: var(--bg);
}
.menu-tabs {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; margin: 40px 0 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.menu-tab {
  font-family: var(--f-sans);
  font-size: 11px; letter-spacing: .38em; text-transform: uppercase;
  font-weight: 500;
  padding: 20px 28px;
  color: var(--paper-dim);
  border-right: 1px solid var(--border);
  transition: all .3s;
  flex: 1; min-width: 160px;
  position: relative;
}
.menu-tab:last-child { border-right: none; }
.menu-tab.active { color: var(--gold); background: rgba(201,195,176,.04); }
.menu-tab.active::after {
  content:""; position:absolute; left:50%; bottom:-1px;
  transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--gold);
}
.menu-tab:hover { color: var(--paper); }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}
@media (max-width: 820px) { .menu-grid { grid-template-columns: 1fr; gap: 44px; } }

.menu-section h4 {
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: .28em;
  margin-bottom: 28px;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
}
.menu-section h4::before,
.menu-section h4::after {
  content:""; flex: 0 0 18px; height: 1px; background: var(--gold); opacity: .5;
}
.menu-section h4::after { flex: 1; }

.menu-item {
  padding: 18px 0;
  border-bottom: 1px dashed var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item .top {
  display: flex; justify-content: space-between; gap: 16px;
  align-items: baseline;
}
.menu-item .name {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: .18em;
  color: var(--paper);
}
.menu-item .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201,195,176,.35);
  margin: 0 10px 4px;
}
.menu-item .note {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item .desc {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--paper-soft);
  margin-top: 6px;
  line-height: 1.55;
}

/* ====== Chef ====== */
.chef {
  background: var(--bg-4);
  position: relative;
}
.chef-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) { .chef-grid { grid-template-columns: 1fr; gap: 36px; } }
.chef-img {
  aspect-ratio: 3/4;
  background-size: cover; background-position: center;
}
.chef-body {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  color: var(--paper-soft);
  margin: 22px 0;
}
.chef-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}
.chef-stat .num {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.4vw, 38px);
  color: var(--gold);
  letter-spacing: .08em;
}
.chef-stat .lbl {
  font-family: var(--f-sans);
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--paper-dim); margin-top: 6px;
}

/* ====== Gallery ====== */
.gallery {
  background: var(--bg-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 48px;
}
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-cell {
  aspect-ratio: 1/1.2;
  overflow: hidden;
  position: relative;
}
.gallery-cell.tall { grid-row: span 2; aspect-ratio: 1/2.4; }
.gallery-cell .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s cubic-bezier(.25,.46,.45,.94);
}
.gallery-cell:hover .bg { transform: scale(1.07); }

/* ====== Reservation ====== */
.reserve {
  background: var(--bg-3);
  position: relative;
}
.reserve-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
  max-width: 780px;
  margin: 48px auto 0;
}
@media (max-width: 640px) { .reserve-form { grid-template-columns: 1fr; } }
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-family: var(--f-sans);
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-gold);
  color: var(--paper);
  font-family: var(--f-serif);
  font-size: 17px;
  padding: 10px 0;
  outline: none;
  transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--gold);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field select option { background: var(--bg); color: var(--paper); }
.field.wide { grid-column: 1 / -1; }
.field textarea { resize: vertical; min-height: 90px; }
.field-choices {
  display: flex; flex-direction: column; gap: 12px;
  padding: 12px 0 4px;
}
.field-choices .choice {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-serif); font-size: 16px; color: var(--paper);
  cursor: pointer;
}
.field-choices .choice input {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px; margin: 0;
  border: 1px solid var(--border-gold);
  background: transparent;
  position: relative; cursor: pointer; flex-shrink: 0;
  transition: border-color .2s;
}
.field-choices .choice input[type="radio"] { border-radius: 50%; }
.field-choices .choice input:checked { border-color: var(--gold); }
.field-choices .choice input[type="radio"]:checked::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 50%; background: var(--gold);
}
.field-choices .choice input[type="checkbox"]:checked::after {
  content: ""; position: absolute; inset: 2px;
  background: var(--gold);
}
.field-choices .choice input:focus-visible { outline: 1px solid var(--gold); outline-offset: 2px; }

.reserve-submit {
  display: flex; justify-content: center; margin-top: 36px;
}
.reserve-success {
  text-align: center; margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--gold);
  background: rgba(201,195,176,.06);
}
.reserve-success .t { font-family: var(--f-display); font-size: 18px; letter-spacing: .28em; color: var(--gold); }
.reserve-success .s { font-family: var(--f-serif); font-style: italic; font-size: 17px; color: var(--paper); margin-top: 12px; }

/* ====== Footer ====== */
.footer {
  background: var(--bg-4);
  text-align: center;
  padding: 96px 32px 30px;
}
.footer-mark {
  font-family: var(--f-script);
  font-size: clamp(64px, 8vw, 120px);
  color: var(--paper);
  line-height: 1;
}
.footer-mark .inc {
  color: var(--gold); font-family: var(--f-serif); font-style: italic;
  font-size: .32em; vertical-align: super; margin-left: 4px;
}
.footer-info {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: .06em;
  line-height: 2;
  color: var(--paper-soft);
  margin-top: 24px;
}
.footer-info .sep { color: var(--gold); margin: 0 10px; }
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 36px;
  margin-top: 28px;
  font-family: var(--f-sans);
  font-size: 12px; letter-spacing: .04em;
  color: var(--paper-soft);
}
.footer-links a { text-decoration: underline; text-underline-offset: 6px; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-family: var(--f-sans);
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(243,237,224,.35);
  margin-top: 56px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ====== Corner ornaments ====== */
.corner-orn {
  position: absolute; width: 64px; height: 64px;
  pointer-events: none;
  opacity: .55;
}
.corner-orn.tl { top: 36px; left: 36px; border-left: 1px solid var(--gold); border-top: 1px solid var(--gold); }
.corner-orn.tr { top: 36px; right: 36px; border-right: 1px solid var(--gold); border-top: 1px solid var(--gold); }
.corner-orn.bl { bottom: 36px; left: 36px; border-left: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.corner-orn.br { bottom: 36px; right: 36px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }

/* ====== Reveal on scroll ====== */
.reveal { opacity: 0; transform: translateY(28px); transition: all 1s cubic-bezier(.25,.46,.45,.94); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ====== Tweaks panel ====== */
.tweaks {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 200;
  background: rgba(23,23,26,.95);
  border: 1px solid var(--border-gold);
  padding: 22px 24px 20px;
  width: 280px;
  backdrop-filter: blur(12px);
  font-family: var(--f-sans);
  color: var(--paper);
  display: none;
}
.tweaks.show { display: block; }
.tweaks h5 {
  font-family: var(--f-display);
  font-size: 12px; letter-spacing: .32em;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks label.row { display: block; font-size: 10px; letter-spacing: .28em; color: var(--paper-soft); margin: 14px 0 6px; text-transform: uppercase; }
.tweaks .swatches { display: flex; gap: 8px; }
.tweaks .sw {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border); cursor: pointer;
}
.tweaks .sw.sel { box-shadow: 0 0 0 2px var(--gold), 0 0 0 3px var(--bg); }
.tweaks select, .tweaks input[type="range"] {
  width: 100%;
  background: var(--bg); color: var(--paper);
  border: 1px solid var(--border); padding: 8px;
  font-family: var(--f-sans); font-size: 12px;
}
.tweaks .toggle {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--paper-soft);
}
.tweaks .switch {
  width: 36px; height: 18px; background: var(--bg-3);
  border-radius: 10px; position: relative;
  cursor: pointer; border: 1px solid var(--border);
}
.tweaks .switch .knob {
  position: absolute; top: 1px; left: 1px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--paper); transition: all .3s;
}
.tweaks .switch.on { background: var(--gold); }
.tweaks .switch.on .knob { left: 19px; background: var(--bg); }

/* ====== Brand logo lockups ====== */
.nav-mark-img { display: inline-flex; align-items: center; padding: 2px 0; }
.nav-mark-img img {
  height: 46px; width: auto;
  filter: brightness(1.15);
  transition: opacity .25s ease;
}
.nav.scrolled .nav-mark-img img { height: 40px; }
@media (max-width: 720px) {
  .nav-mark-img img { height: 38px; }
}

.hero-lockup-img {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.hero-logo {
  width: clamp(280px, 46vw, 620px);
  height: auto;
  filter: drop-shadow(0 2px 40px rgba(0,0,0,0.35));
}

.footer-mark-img {
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 8px;
}
.footer-mark-img img {
  width: clamp(220px, 28vw, 360px);
  height: auto;
  opacity: 0.95;
}
