:root {
  --bg: #11100e;
  --ink: #ede8df;
  --muted: #9a9488;
  --accent: #c9a96e;
  --accent-ink: #11100e;
  --panel: #1a1815;
  --line: #2e2b26;
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Figtree", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
a:hover { color: #dfc07a; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; background: var(--panel); padding: 8px 12px; z-index: 20; color: var(--ink); }
.wrap { width: min(1220px, calc(100% - 8vw)); margin: 0 auto; }

.site-header {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 16px 6vw; position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.4rem; font-weight: 700; text-decoration: none;
  letter-spacing: -0.04em; color: var(--ink);
}
nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
nav a {
  color: var(--muted); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
}
nav a:hover { color: var(--ink); }
.nav-toggle {
  display: none; background: var(--panel); border: 1px solid var(--line);
  color: var(--ink); padding: 8px 12px; border-radius: 999px;
}
.search-wrap { position: relative; }
.search-wrap input {
  width: 160px; border: 1px solid var(--line); background: var(--panel);
  color: var(--ink); padding: 8px 12px; border-radius: 999px; font: inherit; font-size: 0.85rem;
}
.search-wrap input::placeholder { color: var(--muted); }
.search-results {
  display: none; position: absolute; top: calc(100% + 8px); right: 0; min-width: 260px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45); overflow: hidden; z-index: 15;
}
.search-results.open { display: block; }
.search-results a {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 16px; text-decoration: none; border-bottom: 1px solid var(--line);
  font-size: 0.92rem; color: var(--ink);
}
.search-results a:last-child { border-bottom: 0; }
.search-results a:hover { background: color-mix(in srgb, var(--accent) 10%, var(--panel)); }
.search-results .tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); white-space: nowrap; }
.search-empty { padding: 16px; margin: 0; font-size: 0.88rem; color: var(--muted); }

.hero-full {
  min-height: 92vh; display: grid; align-items: end; padding: 10vh 6vw 8vh;
  position: relative; background-color: #0a0908; color: #f7f3ec; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; max-width: none;
}
.hero-full::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,8,6,.35), rgba(10,8,6,.78));
}
.hero-full .wrap { position: relative; z-index: 2; }
.hero-full h1, .hero-split h1, .hero-stack h1 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(46px, 9vw, 108px); line-height: .92;
  max-width: 13ch; margin: 0 0 20px; letter-spacing: -0.045em; font-weight: 600;
}
.lede { font-size: 1.18rem; max-width: 42ch; }
.hero-full .lede { color: #d9d0c4; }
.hero-split {
  display: grid; grid-template-columns: 1.08fr .92fr; min-height: 88vh;
  background: var(--bg);
}
.hero-copy { padding: 12vh 6vw 8vh; display: flex; flex-direction: column; justify-content: end; }
.hero-photo { min-height: 480px; background-color: #0a0908; overflow: hidden; }
.hero-photo img, .hero-stack .bleed img { width: 100%; height: 100%; object-fit: cover; }
.hero-stack { padding: 12vh 6vw 0; background: var(--bg); }
.hero-stack .bleed {
  margin: 48px 0 0; height: min(72vh, 720px); overflow: hidden; position: relative;
}
.hero-stack .bleed::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg));
  pointer-events: none;
}
.kicker {
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.7rem; margin: 0 0 16px; color: var(--accent);
}
.btn {
  display: inline-flex; align-items: center; margin-top: 28px;
  background: var(--accent); color: var(--accent-ink); text-decoration: none;
  padding: 14px 24px; border-radius: 999px; font-weight: 650; border: 0; cursor: pointer;
}
.btn:hover { background: #dfc07a; color: var(--accent-ink); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--ink) 30%, transparent);
}
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.btn-row .btn { margin-top: 0; }

.section { padding: 96px 0; }
.section-alt { background: var(--panel); }
.section h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 4.4vw, 58px); line-height: 1.02;
  margin: 0 0 32px; letter-spacing: -0.035em;
}
.section-intro { max-width: 52ch; margin-bottom: 48px; }
.menu-section { margin-bottom: 64px; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section h3 { font-family: "Newsreader", Georgia, serif; font-size: 1.6rem; margin: 0 0 8px; letter-spacing: -0.02em; }

.offer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.offer {
  display: grid; grid-template-columns: 4.5rem 1fr auto; gap: 18px;
  padding: 22px 0; border-top: 1px solid var(--line); align-items: start;
}
.offer:last-child { border-bottom: 1px solid var(--line); }
.offer .num { font-family: "Newsreader", Georgia, serif; font-size: 1.4rem; color: var(--accent); }
.offer h3 { margin: 0 0 6px; font-size: 1.35rem; }
.offer .price {
  font-family: "Newsreader", Georgia, serif; font-size: 1.15rem;
  color: var(--accent); white-space: nowrap; padding-top: 2px;
}
.muted { color: var(--muted); }

.band { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.band.reverse { grid-template-columns: .95fr 1.05fr; }
.band.reverse img { order: 2; }
.band img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
}

.mosaic {
  display: grid; grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 280px 280px; gap: 10px;
}
.mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: calc(var(--radius) / 2); border: 1px solid var(--line);
}
.mosaic .span-2 { grid-row: 1 / span 2; height: 100%; }

.photo-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.photo-strip img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: calc(var(--radius) / 2); border: 1px solid var(--line);
}
.photo-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 48px;
}
.photo-band img {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.photo-band img:first-child { height: 320px; }
.photo-band img:last-child { height: 320px; }

.quote {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(26px, 3.4vw, 42px); line-height: 1.2;
  max-width: 22ch; margin: 0;
}
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.testimonial {
  border-left: 2px solid var(--accent); padding-left: 24px; margin: 0;
}
.testimonial cite { display: block; margin-top: 16px; font-style: normal; font-size: 0.88rem; }

.cta-band {
  margin: 0 4vw 80px; padding: 56px 6vw; border-radius: var(--radius);
  background: var(--panel); color: var(--ink);
  border: 1px solid var(--line);
}
.cta-band h2 { color: var(--ink); margin-bottom: 12px; }
.cta-band p { max-width: 48ch; color: var(--muted); }
.cta-band .btn { background: var(--accent); color: var(--accent-ink); }

.site-footer {
  border-top: 1px solid var(--line); padding: 40px 6vw;
  display: flex; justify-content: space-between; gap: 20px;
  color: var(--muted); font-size: 14px; background: var(--panel);
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer strong { color: var(--ink); }
.social-links { display: flex; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.social-links a { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }

.wa {
  position: fixed; right: 18px; bottom: 18px;
  background: #25d366; color: #073b1c; text-decoration: none;
  padding: 12px 16px; border-radius: 999px; font-weight: 700; z-index: 12;
}
.wa:hover { background: #1fb855; color: #073b1c; }

form { display: grid; gap: 12px; max-width: 520px; }
label { display: grid; gap: 6px; font-size: 0.88rem; }
input, textarea {
  width: 100%; border: 1px solid var(--line); background: var(--bg);
  color: var(--ink); padding: 12px 14px; border-radius: 12px; font: inherit;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 50%, transparent);
  border-color: var(--accent);
}

.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.gallery img:nth-child(1) { grid-column: span 2; height: 420px; }
.gallery img {
  height: 260px; width: 100%; object-fit: cover;
  border-radius: calc(var(--radius) / 2); border: 1px solid var(--line);
}
.gallery img:nth-child(4) { grid-row: span 2; height: 100%; }

.statrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.stat { border-top: 1px solid var(--line); padding-top: 16px; }
.stat b {
  display: block; font-family: "Newsreader", Georgia, serif;
  font-size: 1.25rem; letter-spacing: -0.03em; line-height: 1.3;
}

.hours { display: grid; gap: 4px; max-width: 420px; }
.hours div {
  display: flex; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid var(--line); padding: 8px 0; font-size: 0.95rem;
}
.hours div span:first-child { color: var(--muted); }

.map-embed {
  width: 100%; height: 420px; border: 0;
  border-radius: var(--radius); filter: invert(92%) hue-rotate(180deg) brightness(0.85) contrast(1.05);
}

.journal-list { display: grid; gap: 48px; }
.journal-list article {
  border-top: 1px solid var(--line); padding-top: 32px;
  display: grid; grid-template-columns: 1fr 280px; gap: 32px; align-items: start;
}
.journal-list article:first-child { border-top: 0; padding-top: 0; }
.journal-list article img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: calc(var(--radius) / 2); border: 1px solid var(--line);
}
.journal-list h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.8rem; margin: 0 0 8px; letter-spacing: -0.02em;
}
.journal-list time {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted);
}
.journal-list p { max-width: 58ch; }

.menu-photo {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 40px;
}

@media (max-width: 860px) {
  .hero-split, .band, .band.reverse, .mosaic, .gallery, .statrow,
  .site-footer, .offer, .testimonials, .photo-strip, .photo-band,
  .journal-list article { grid-template-columns: 1fr; }
  .offer { grid-template-columns: 3rem 1fr; }
  .offer .price { grid-column: 2; padding-top: 0; margin-top: -4px; }
  .mosaic { grid-template-rows: none; }
  .mosaic .span-2 { grid-row: auto; height: 240px; }
  .gallery img:nth-child(1) { grid-column: auto; height: 240px; }
  .gallery img:nth-child(4) { grid-row: auto; height: 240px; }
  .photo-strip img { height: 180px; }
  .nav-toggle { display: inline-flex; }
  nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; }
  nav.open { display: flex; }
  .site-header { flex-wrap: wrap; }
  .search-wrap { width: 100%; order: 3; }
  .search-wrap input { width: 100%; }
  .btn.ghost { margin-left: 0; margin-top: 12px; }
  .hero-full { min-height: 80vh; }
  .hero-full h1 { max-width: 100%; }
  .journal-list article img { height: 220px; }
}
