/* ═══════════════════════════════════════════════════════════
   EMBER & OAK — styles.css
   Palette: bg #14110E | surface #1C1813 | text #EDE6D8
            muted #B6A892 | accent #C2703D | line rgba(194,112,61,.25)
   Fonts:   Cormorant Garamond (display) · Jost (body)
═══════════════════════════════════════════════════════════ */

/* ─── Reset & Custom Properties ─────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:       #14110E;
  --surface:  #1C1813;
  --text:     #EDE6D8;
  --muted:    #B6A892;
  --accent:   #C2703D;
  --line:     rgba(194,112,61,.25);
  --line-dim: rgba(237,230,216,.08);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-custom: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 72px;
  --container: 1280px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul { list-style: none; }

address { font-style: normal; }

button {
  font-family: var(--ff-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

/* ─── Focus Visible ──────────────────────────────────────── */
:focus-visible {
  outline: 1.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

/* ─── Sections ───────────────────────────────────────────── */
.section {
  padding-block: clamp(80px, 12vw, 160px);
}

/* ─── Typography ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: clamp(10px, 0.7vw, 11px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(20px, 3vw, 36px);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.display-heading {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: clamp(24px, 4vw, 48px);
}

.display-heading em {
  font-style: italic;
  color: var(--accent);
}

.body-text {
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s var(--ease-out-expo), color 0.2s;
}

.inline-link:hover { border-color: var(--accent); }

/* ─── Section Header ─────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(48px, 7vw, 96px);
}

/* ─── Double Bezel ───────────────────────────────────────── */
.double-bezel {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-dim);
  border-radius: 20px;
  padding: 6px;
}

.double-bezel > img,
.double-bezel > .gallery-bezel-inner {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: clamp(12px, 0.8vw, 13px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform 0.28s var(--ease-spring),
              background-color 0.25s var(--ease-out-expo),
              box-shadow 0.25s var(--ease-out-expo),
              opacity 0.25s;
  position: relative;
  overflow: hidden;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 24px rgba(194,112,61,.25);
}

.btn--primary:hover {
  background: #d4804d;
  box-shadow: 0 8px 32px rgba(194,112,61,.35);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
}

.btn--full { width: 100%; justify-content: center; }

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
  transition: transform 0.28s var(--ease-spring);
}

.btn:hover .btn-icon {
  transform: translate(2px, -1px) scale(1.08);
}

/* ─── Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out-expo),
              transform 0.75s var(--ease-out-expo);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background-color 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo),
              height 0.4s var(--ease-out-expo);
}

.site-header.scrolled {
  background-color: rgba(20,17,14,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line-dim);
  height: 60px;
}

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.75; }

.nav-logo-text {
  font-family: var(--ff-display);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-left: auto;
}

.nav-link {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.22s var(--ease-out-expo);
}

.nav-link:hover { color: var(--text); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--accent);
  border-radius: 100px;
  padding: 10px 22px;
  flex-shrink: 0;
  transition: background-color 0.25s var(--ease-out-expo),
              transform 0.25s var(--ease-spring),
              box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(194,112,61,.2);
}

.nav-cta:hover {
  background: #d4804d;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(194,112,61,.35);
}

.nav-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  transition: transform 0.28s var(--ease-spring);
}

.nav-cta:hover .nav-cta-icon { transform: translate(2px, -1px); }

/* Hamburger */
.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
  padding: 4px;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.hamburger:hover { opacity: 0.7; }

.hamburger-line {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out-expo),
              opacity 0.35s var(--ease-out-expo);
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20,17,14,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  text-align: center;
  padding: 40px 24px;
}

.mobile-nav-list { display: flex; flex-direction: column; gap: 8px; }

.mobile-nav-item {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out-expo),
              opacity 0.5s var(--ease-out-expo);
}

.mobile-nav-item:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-item:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav-item:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-item:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav-item:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-item:nth-child(6) { transition-delay: 0.30s; }

.mobile-menu.is-open .mobile-nav-item {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-link {
  font-family: var(--ff-display);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 400;
  color: var(--text);
  padding: 8px 16px;
  display: block;
  transition: color 0.2s;
}

.mobile-nav-link:hover { color: var(--accent); }
.mobile-nav-link--accent { color: var(--accent); }

.mobile-menu-address {
  margin-top: 48px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 2;
}


/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20,17,14,1) 0%, rgba(20,17,14,.7) 35%, rgba(20,17,14,.2) 65%, transparent 100%),
    linear-gradient(to right, rgba(20,17,14,.6) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  padding-bottom: clamp(60px, 10vw, 120px);
  width: 100%;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.hero-title em {
  display: block;
  font-style: italic;
  color: var(--accent);
}

.hero-title span {
  display: block;
  color: var(--text);
}

.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(40px, 7vw, 90px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

.hero-meta {
  position: absolute;
  left: clamp(20px, 5vw, 80px);
  bottom: clamp(40px, 7vw, 90px);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237,230,216,.35);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}


/* ═══════════════════════════════════════════════════════════
   EXPERIENCE
═══════════════════════════════════════════════════════════ */
.experience-section { overflow: hidden; }

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.experience-images {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
}

.exp-image-primary {
  border-radius: 24px;
  overflow: hidden;
  height: clamp(280px, 35vw, 460px);
}

.exp-image-secondary {
  border-radius: 20px;
  overflow: hidden;
  height: clamp(180px, 22vw, 280px);
  width: 75%;
  margin-left: auto;
}

.exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.double-bezel:hover .exp-img,
.double-bezel:hover .gallery-img,
.double-bezel:hover .chef-img,
.double-bezel:hover .private-img {
  transform: scale(1.04);
}

.experience-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--line-dim);
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--line);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   MENU
═══════════════════════════════════════════════════════════ */
.menu-section { border-top: 1px solid var(--line-dim); }

/* Tasting Menu Block */
.menu-block {
  background: var(--surface);
  border: 1px solid var(--line-dim);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 56px);
  margin-bottom: clamp(48px, 7vw, 80px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.menu-block-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dim);
}

.menu-block-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: var(--text);
}

.menu-block-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.menu-price-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--accent);
  font-weight: 500;
}

.menu-block-desc {
  font-size: 13px;
  color: var(--muted);
  padding-top: 16px;
  margin-bottom: 24px;
}

.tasting-courses { display: flex; flex-direction: column; }

.course-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line-dim);
  transition: background-color 0.2s;
}

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

.course-num {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  flex-shrink: 0;
  width: 24px;
}

.course-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex: 1;
  flex-wrap: wrap;
}

.course-name {
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--text);
}

.course-note {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

/* À La Carte Grid */
.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 60px);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.alacarte-heading {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.dish-list { display: flex; flex-direction: column; }

.dish-item {
  padding-block: 16px;
  border-bottom: 1px solid var(--line-dim);
  transition: background-color 0.15s;
}

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

.dish-item-inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.dish-name {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  transition: color 0.2s;
}

.dish-item:hover .dish-name { color: var(--text); }

.dish-price {
  font-family: var(--ff-display);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  color: var(--accent);
  flex-shrink: 0;
}

/* Menu Note */
.menu-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.7;
  padding: 20px 24px;
  border: 1px solid var(--line-dim);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
}

.menu-note svg { flex-shrink: 0; margin-top: 1px; }


/* ═══════════════════════════════════════════════════════════
   CHEF / KITCHEN
═══════════════════════════════════════════════════════════ */
.chef-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 14vw, 180px);
}

.chef-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.chef-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,17,14,.82);
}

.chef-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.chef-quote-attr {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: -8px;
  margin-bottom: 24px;
}

.chef-accolades {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 32px);
}

.accolade {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

.accolade:hover { color: var(--text); }

.accolade svg { flex-shrink: 0; }

.chef-image-wrap { display: flex; justify-content: flex-end; }

.chef-bezel {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
}

.chef-img {
  width: 100%;
  height: clamp(380px, 50vw, 580px);
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease-out-expo);
}


/* ═══════════════════════════════════════════════════════════
   PRIVATE DINING
═══════════════════════════════════════════════════════════ */
.private-section { border-top: 1px solid var(--line-dim); }

.private-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.private-img-stack {
  display: grid;
  gap: 16px;
}

.private-img-main {
  border-radius: 24px;
  overflow: hidden;
  height: clamp(300px, 38vw, 480px);
}

.private-img-side {
  border-radius: 20px;
  overflow: hidden;
  height: clamp(180px, 22vw, 260px);
  width: 70%;
}

.private-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.private-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-block: clamp(24px, 4vw, 40px);
}

.private-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--muted);
}

.private-feature svg { flex-shrink: 0; margin-top: 2px; }


/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery-section { overflow: hidden; }

.gallery-header-wrap { margin-bottom: clamp(40px, 6vw, 72px); }

.gallery-masonry {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.gallery-item { overflow: hidden; }

.gallery-item--tall { grid-row: span 2; }

.gallery-bezel {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-bezel > img {
  border-radius: 12px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-expo);
}

.gallery-item--tall .gallery-img { min-height: 460px; }


/* ═══════════════════════════════════════════════════════════
   RESERVATIONS
═══════════════════════════════════════════════════════════ */
.reservations-section { border-top: 1px solid var(--line-dim); }

.res-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.res-hours {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--line-dim);
}

.res-hours-heading {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
}

.hours-list { display: flex; flex-direction: column; gap: 0; }

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line-dim);
  font-size: 13px;
}

.hours-row:last-child { border-bottom: none; }

.hours-row dt { color: var(--muted); }
.hours-row dd { color: var(--text); font-weight: 400; }

.res-address {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.res-address svg { flex-shrink: 0; margin-top: 3px; }

/* Form */
.form-bezel {
  border-radius: 28px;
  background: var(--surface);
  border-color: var(--line-dim);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.res-form {
  padding: clamp(24px, 4vw, 48px);
}

.form-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.form-fields { display: flex; flex-direction: column; gap: 0; }

.form-row { margin-bottom: 18px; }

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dim);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  width: 100%;
  transition: border-color 0.25s var(--ease-out-expo),
              background-color 0.25s,
              box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(237,230,216,.3); }

.form-input:hover {
  border-color: var(--line);
  background: rgba(255,255,255,.06);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(194,112,61,.12);
}

.form-input.has-error { border-color: #d9534f; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23B6A892' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

.form-error {
  font-size: 11px;
  color: #d9534f;
  min-height: 16px;
  display: block;
}

.form-submit {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

/* Spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spin {
  animation: spin 0.8s linear infinite;
}

/* Success state */
.form-success {
  text-align: center;
  padding: clamp(32px, 5vw, 60px) 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--text);
}

.success-body {
  font-size: 14px;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--line-dim);
  background: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding-block: clamp(48px, 7vw, 80px);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  transition: opacity 0.2s;
}

.footer-logo:hover { opacity: 0.7; }

.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.04em;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid var(--line-dim);
  padding-block: 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(237,230,216,.3);
}

.footer-credit {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(237,230,216,.3);
}

.footer-credit-link {
  color: var(--accent);
  transition: opacity 0.2s;
}

.footer-credit-link:hover { opacity: 0.7; }

/* ─── Built-by pill ──────────────────────────────────────── */
.built-by-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(28,24,19,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: var(--ff-body);
  transition: background-color 0.25s, color 0.25s, transform 0.25s var(--ease-spring),
              box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.built-by-pill:hover {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194,112,61,.35);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .experience-grid { gap: 40px; }
  .chef-content { gap: 48px; }
  .private-grid { gap: 40px; }
  .res-container { gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-masonry { grid-template-columns: 1.5fr 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* Nav */
  .nav-links,
  .nav-cta { display: none; }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  /* Hero */
  .hero-title { font-size: clamp(52px, 14vw, 80px); }
  .hero-meta { display: none; }
  .hero-scroll-hint { display: none; }

  /* Experience */
  .experience-grid { grid-template-columns: 1fr; }
  .experience-images { order: -1; }
  .exp-image-secondary { width: 60%; }
  .experience-stats { gap: 20px; }

  /* Menu */
  .alacarte-grid { grid-template-columns: 1fr; gap: 32px; }
  .menu-block-header { flex-direction: column; }
  .menu-block-meta { align-items: flex-start; }

  /* Chef */
  .chef-content { grid-template-columns: 1fr; gap: 40px; }
  .chef-image-wrap { justify-content: center; }
  .chef-bezel { max-width: 100%; }
  .chef-img { height: clamp(280px, 70vw, 400px); }

  /* Private */
  .private-grid { grid-template-columns: 1fr; }
  .private-images { order: -1; }
  .private-img-side { width: 60%; }

  /* Gallery */
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--tall { grid-row: auto; }
  .gallery-img { min-height: 180px; }
  .gallery-item--tall .gallery-img { min-height: 180px; }

  /* Reservations */
  .res-container { grid-template-columns: 1fr; }
  .form-bezel { position: static; }
  .form-row--half { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 375px
═══════════════════════════════════════════════════════════ */
@media (max-width: 375px) {
  .hero-title { font-size: 48px; }
  .display-heading { font-size: 34px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .experience-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
}
