﻿:root {
  --paper: #faf5eb;
  --paper-2: #fffcf4;
  --cream: #f2ead6;
  --panel: #ffffff;
  --ink: #1d1915;
  --ink-2: #2a2620;
  --soft: #6d6357;
  --line: rgba(29, 25, 21, 0.10);
  --line-warm: #ebe0ca;
  --gold: #a4864f;
  --gold-soft: #c8a86b;

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
section[id] { scroll-margin-top: 80px; }

/* Typography */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}
h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}
p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.eyebrow .line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}
.eyebrow.dark { color: var(--gold); }
.eyebrow.gold { color: var(--gold-soft); }

/* Top bar */
.topbar {
  position: fixed;
  z-index: 40;
  top: 0; left: 0; right: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(20, 17, 14, 0.55), rgba(20, 17, 14, 0));
  transition: background 0.4s ease, color 0.4s ease, min-height 0.3s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.topbar.scrolled {
  min-height: 64px;
  color: var(--ink);
  background: rgba(250, 245, 235, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.seal {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.94;
}
.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-text strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.brand-sub {
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.85;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav a { text-decoration: none; transition: opacity 0.2s, color 0.2s; }
.nav a:not(.pill) { opacity: 0.88; }
.nav a:not(.pill):hover { opacity: 1; }
.nav .pill {
  padding: 11px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.topbar.scrolled .nav .pill {
  background: var(--ink);
  color: var(--paper-2);
  border-color: var(--ink);
}
.topbar.scrolled .nav .pill:hover { background: var(--ink-2); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 130px clamp(24px, 6vw, 80px) 100px;
  color: #fff;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 12, 9, 0.35) 0%, rgba(15, 12, 9, 0) 42%),
    linear-gradient(180deg, rgba(15, 12, 9, 0) 40%, rgba(15, 12, 9, 0.7) 100%);
}
.hero-copy { max-width: 620px; }
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}
.hero .eyebrow .line { background: rgba(255, 255, 255, 0.75); }
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero p {
  max-width: 480px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-2);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { background: var(--ink-2); }
.btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}
.btn.ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn.light {
  background: var(--paper-2);
  color: var(--ink);
  border-color: var(--paper-2);
}
.btn.light:hover { background: #fff; }
.btn.outline-light {
  background: transparent;
  color: var(--paper-2);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn.outline-light:hover { background: rgba(255, 255, 255, 0.08); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  opacity: 0.75;
}
.scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  width: 2px; height: 6px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { transform: translate(-50%, 0); opacity: 0; }
  35% { opacity: 1; }
  80%, 100% { transform: translate(-50%, 12px); opacity: 0; }
}

/* Sections */
section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 80px);
}
.section-plain { background: var(--paper); }
.section-cream {
  background: var(--paper-2);
  border-top: 1px solid var(--line-warm);
  border-bottom: 1px solid var(--line-warm);
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }

.lead {
  max-width: 640px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.7;
}
.lead.center { text-align: center; margin-inline: auto; }

/* Chef / Story */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.col-text .eyebrow { margin-bottom: 18px; }
.col-text h2 { margin-bottom: 20px; max-width: 460px; }
.col-text .lead { max-width: 480px; }
.portrait-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--cream);
  aspect-ratio: 4 / 5;
  box-shadow: 0 28px 60px -32px rgba(29, 25, 21, 0.4);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.portrait-frame:hover img { transform: scale(1.03); }

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-warm);
  border: 1px solid var(--line-warm);
  border-radius: 3px;
  overflow: hidden;
}
.menu-card {
  padding: 38px 28px;
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 210px;
  transition: background 0.35s;
}
.menu-card:hover { background: #fff; }
.menu-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.menu-card strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}
.menu-card p {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

/* Booking */
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  padding: clamp(40px, 6vw, 68px);
  background: var(--ink-2);
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 30px 80px -50px rgba(29, 25, 21, 0.6);
}
.booking .eyebrow { color: var(--gold-soft); margin-bottom: 16px; }
.booking .eyebrow .line { background: var(--gold-soft); }
.booking h2 { color: #fff; margin-bottom: 14px; max-width: 460px; }
.booking p { color: rgba(255, 255, 255, 0.78); font-size: 16px; max-width: 460px; }
.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.booking-actions .btn { min-width: 220px; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
}
.gallery-main,
.gallery-side {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--cream);
  box-shadow: 0 30px 60px -40px rgba(29, 25, 21, 0.45);
}
.gallery-main { aspect-ratio: 4 / 3; }
.gallery-side {
  aspect-ratio: 3 / 4;
  position: relative;
}
.gallery-main img,
.gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.gallery-main:hover img,
.gallery-side:hover img { transform: scale(1.03); }
.gallery-side figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  background: rgba(255, 252, 244, 0.94);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px;
  min-height: 130px;
  background: var(--paper);
  border: 1px solid var(--line-warm);
  border-radius: 3px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.3s, border-color 0.3s;
}
.contact-card:hover {
  background: #fff;
  border-color: var(--gold-soft);
}
.contact-card .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-card strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

/* Footer */
footer {
  padding: 40px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--line-warm);
  background: var(--paper);
  color: var(--soft);
  font-size: 13px;
}
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.foot-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.foot-brand span {
  font-size: 12px;
  letter-spacing: 0.02em;
}
.foot-links {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}
.foot-links a { text-decoration: none; color: var(--ink); transition: color 0.2s; }
.foot-links a:hover { color: var(--gold); }
.foot-links .dot { opacity: 0.5; }

/* Mobile floating action bar */
.mobile-actions {
  position: fixed;
  z-index: 30;
  display: none;
  left: 14px; right: 14px;
  bottom: 14px;
  gap: 6px;
  padding: 6px;
  background: rgba(29, 25, 21, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  box-shadow: 0 14px 34px -12px rgba(29, 25, 21, 0.55);
}
.mobile-actions a {
  flex: 1;
  padding: 12px 8px;
  border-radius: 999px;
  color: var(--paper-2);
  text-align: center;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.mobile-actions a:active { background: rgba(255, 255, 255, 0.1); }

/* Responsive */
@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .col-text h2, .col-text .lead { max-width: 100%; }
  .portrait-frame { aspect-ratio: 4 / 3; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .booking {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .booking-actions { align-items: stretch; }
  .booking-actions .btn { min-width: 0; width: 100%; }
  .gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-main, .gallery-side { aspect-ratio: 4 / 3; }
  .gallery-side { max-width: 82%; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topbar {
    min-height: 62px;
    padding: 12px 18px;
    background: linear-gradient(to bottom, rgba(20, 17, 14, 0.65), rgba(20, 17, 14, 0));
  }
  .seal { width: 38px; height: 38px; font-size: 13px; }
  .brand-text strong { font-size: 17px; }
  .brand-sub { font-size: 9px; letter-spacing: 0.22em; }
  .nav { gap: 0; }
  .nav a:not(.pill) { display: none; }
  .nav .pill { padding: 9px 14px; font-size: 10px; letter-spacing: 0.18em; }

  .hero {
    min-height: 92svh;
    padding: 104px 22px 104px;
  }
  .hero h1 {
    font-size: 29px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .hero p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 26px;
  }
  .hero .eyebrow { font-size: 10px; margin-bottom: 18px; }
  .actions { width: 100%; }
  .actions .btn { flex: 1; min-height: 46px; padding: 12px 18px; }
  .scroll-hint { display: none; }

  section { padding: 60px 20px; }
  h2 { font-size: 26px; }
  .lead { font-size: 15px; }
  .section-head { margin-bottom: 40px; }

  .menu-card { min-height: 160px; padding: 26px 22px; }
  .menu-card strong { font-size: 20px; }

  .booking { padding: 32px 26px; border-radius: 3px; }
  .booking h2 { font-size: 24px; }
  .gallery-side { max-width: 100%; }

  .contact-card { padding: 22px 22px; min-height: 100px; }
  .contact-card strong { font-size: 17px; }

  .footer-wrap { flex-direction: column; align-items: flex-start; }

  .mobile-actions { display: flex; }
  footer { padding-bottom: 92px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 28px; }
  h2 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-hint span { animation: none; }
  .portrait-frame img,
  .gallery-main img,
  .gallery-side img,
  .hero-media img { transition: none; transform: none; }
}

/* Bottom map */
.map-section {
  padding-top: 0;
}
.map-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel, #fffdf8);
  box-shadow: 0 24px 60px -46px rgba(29, 25, 21, 0.45);
}
.map-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(18px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
}
.map-copy h2 {
  margin: 0 0 6px;
}
.map-copy p {
  margin: 0;
  color: var(--muted);
}
.map-frame {
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  border: 0;
  display: block;
  background: #efe4d2;
}
@media (max-width: 720px) {
  .map-copy {
    display: block;
    padding: 22px 18px;
  }
  .map-copy .btn {
    width: 100%;
    margin-top: 16px;
  }
  .map-frame {
    height: 340px;
  }
}
/* Bottom map end */
