:root {
  --night: #101820;
  --night-2: #18222c;
  --ink: #1b1a17;
  --gold: #c9b27a;
  --gold-2: #e4d3a0;
  --cream: #f6f0e6;
  --paper: #fbf7f0;
  --sand: #e8dfd0;
  --sage: #5d735c;
  --muted: #6b645c;
  --line: rgba(201, 178, 122, 0.35);
  --shadow: 0 28px 70px rgba(16, 24, 32, 0.16);
  --max: 1180px;
  --sans: "Outfit", "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Cormorant Garamond", "Iowan Old Style", Palatino, Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: #fff;
  padding: 0.6rem 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 500; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  color: #f4eee4;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(16, 24, 32, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.header-inner {
  width: min(1220px, calc(100% - 1.6rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}
.brand-logo {
  width: auto;
  height: 58px;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4cdc0;
  white-space: nowrap;
}
.footer-logo {
  width: auto;
  height: 72px;
  margin-bottom: 0.7rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}
.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  opacity: 0.88;
}
.nav a:hover,
.nav a.is-active { opacity: 1; color: var(--gold-2); }

.header-cta {
  margin-left: 0.4rem;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.header-cta:hover { background: var(--gold); color: var(--night); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(228, 211, 160, 0.45);
  background: transparent;
  color: inherit;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  position: absolute;
  left: 12px;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #f7f1e6;
  background: var(--night);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 24, 32, 0.42) 0%, rgba(16, 24, 32, 0.12) 34%, rgba(16, 24, 32, 0.9) 78%),
    linear-gradient(90deg, rgba(16, 24, 32, 0.4), transparent 58%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto 3.4rem;
}
.hero-card {
  max-width: 36rem;
  padding: 1.5rem 1.6rem 1.4rem;
  background: rgba(16, 24, 32, 0.72);
  border: 1px solid rgba(201, 178, 122, 0.28);
  backdrop-filter: blur(14px);
}
.hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}
.hero .lead {
  max-width: 34rem;
  margin: 0 0 1.6rem;
  font-size: 1.12rem;
  color: #e8e0d2;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-top: 2.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(228, 211, 160, 0.28);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d9d1c3;
}
.hero-meta b { display: block; color: #fff; font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 1rem; margin-top: 0.15rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--night);
  font-weight: 600;
}
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost {
  border-color: rgba(247, 241, 230, 0.45);
  color: #f7f1e6;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }
.btn-line {
  border-color: var(--ink);
  background: transparent;
}
.btn-line:hover { background: var(--ink); color: var(--cream); }
.btn-dark {
  background: var(--night);
  color: var(--cream);
}
.btn-dark:hover { background: #24303b; }

section[id] { scroll-margin-top: 5.4rem; }
.section { padding: 5.5rem 0; }
.section-head {
  max-width: 38rem;
  margin-bottom: 2.4rem;
}
.section-head h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
}
.muted { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split img { width: 100%; height: 34rem; object-fit: cover; }
.split-copy p { margin-top: 0; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand);
  margin-top: 2.4rem;
}
.fact {
  background: var(--paper);
  padding: 1.2rem 1rem 1.1rem;
}
.fact b {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.fact span { color: var(--muted); font-size: 0.92rem; }

.specials { background: var(--night); color: #f3ece1; }
.special-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1rem;
}
.special {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.special img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,24,32,0.05), rgba(16,24,32,0.82));
}
.special-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}
.special .day {
  display: inline-block;
  margin-bottom: 0.45rem;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.special h3 {
  margin: 0 0 0.35rem;
  font-size: 2.15rem;
  line-height: 0.95;
}
.special p { margin: 0; color: #e4dccf; }
.special .price {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold-2);
}
.special.is-today { outline: 1px solid var(--gold); }

.menu-section { background: var(--cream); }
.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.6rem;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tab {
  border: 1px solid var(--sand);
  background: transparent;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}
.tab[aria-selected="true"] {
  background: var(--night);
  color: var(--cream);
  border-color: var(--night);
}
.menu-panel[hidden] { display: none; }
.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.4rem;
}
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand);
}
.dish h3 {
  margin: 0;
  font-size: 1.35rem;
  grid-column: 1;
}
.dish .price {
  font-family: var(--serif);
  font-size: 1.25rem;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}
.dish p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  grid-column: 1;
}
.menu-note {
  margin: 1.4rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.sig-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2.6rem;
}
.sig {
  background: #fff;
  box-shadow: var(--shadow);
}
.sig img { width: 100%; height: 16rem; object-fit: cover; }
.sig-body { padding: 1.1rem 1.15rem 1.25rem; }
.sig h3 { margin: 0 0 0.25rem; font-size: 1.55rem; }
.sig p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 15rem;
  gap: 0.7rem;
}
.gallery-grid a:first-child { grid-row: 1 / span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-grid a {
  overflow: hidden;
  background: var(--night);
}
.gallery-grid a:hover img { transform: scale(1.04); }
.gallery-grid img { transition: transform 0.5s ease; }

.house { background: var(--night); color: #f3ece1; }
.house-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}
.house-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
}
.house-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.house-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(16,24,32,0.82));
}
.house-card div {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.house-card h3 { margin: 0 0 0.3rem; font-size: 2rem; }
.house-card p { margin: 0; color: #ddd4c6; }
.house-side { display: grid; gap: 1rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}
.hours {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.4rem;
}
.hours th,
.hours td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--sand);
  font-weight: 400;
}
.hours tr.is-today td { color: var(--sage); font-weight: 600; }
.hours .closed { color: #9a3b2f; }

.form {
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.field { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.8rem; }
.field span { font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.field input,
.field textarea,
.field select {
  border: 1px solid var(--sand);
  background: var(--paper);
  padding: 0.7rem 0.75rem;
  width: 100%;
}
.field textarea { min-height: 8rem; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  margin: 0.4rem 0 1rem;
}
.form-ok, .form-err {
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
}
.form-ok { background: #e6efe4; }
.form-err { background: #f7e4e1; }

.site-footer {
  background: var(--night);
  color: #d8d0c4;
  padding: 3.4rem 0 1.4rem;
  border-top: 1px solid rgba(201, 178, 122, 0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(228, 211, 160, 0.16);
}
.site-footer h2 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 2rem;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--gold-2); }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  font-size: 0.88rem;
}
.legal nav { display: flex; gap: 1rem; }

.page-hero {
  background: var(--night);
  color: #f4eee4;
  padding: 9rem 0 3.4rem;
}
.prose { max-width: 46rem; }
.prose h2 { font-size: 2rem; margin: 2rem 0 0.6rem; }
.prose p, .prose li { color: #3b3833; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 18, 0.92);
  display: grid;
  place-items: center;
  z-index: 70;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; }
.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .brand-logo { height: 40px; }
  .brand-sub { font-size: 0.62rem; letter-spacing: 0.1em; }
  .nav-toggle { display: block; background: rgba(16, 24, 32, 0.45); }
  .nav {
    display: none;
    position: absolute;
    inset: 78px 0 auto;
    background: rgba(16, 24, 32, 0.97);
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem 1.2rem 1.2rem;
    gap: 0;
  }
  .nav.is-open { display: flex; }
  .nav a, .header-cta {
    display: block;
    margin: 0;
    padding: 0.85rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .split,
  .facts,
  .special-grid,
  .menu-list,
  .sig-grid,
  .gallery-grid,
  .house-grid,
  .contact-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-rows: none; }
  .gallery-grid a:first-child { grid-row: auto; }
  .gallery-grid img,
  .split img { height: 16rem; }
  .special { min-height: 22rem; }
  .hero-inner { margin-bottom: 2.4rem; }
  .hero-media img { object-position: center 28%; }
  .hero-meta { gap: 0.9rem 1.2rem; }
}

html.is-preview .hero { min-height: 760px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
