:root {
  --surface: #f4f4f1;
  --ink: #111111;
  --accent: #111111;
  --muted: color-mix(in srgb, var(--ink) 62%, transparent);
  --card: color-mix(in srgb, var(--surface) 94%, white);
  --soft: color-mix(in srgb, var(--surface) 88%, var(--ink));
  --line: color-mix(in srgb, var(--ink) 16%, transparent);
  --button-ink: var(--surface);
  --radius: 14px;
  --container: 1180px;
  --shadow: 0 20px 60px color-mix(in srgb, var(--ink) 10%, transparent);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.theme-one {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
body.font-editorial {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}
body.font-rounded {
  font-family: ui-rounded, "SF Pro Rounded", "Nunito Sans", system-ui, sans-serif;
}
body.palette-midnight { --button-ink: #171717; }

a { color: inherit; }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); }
.muted { color: var(--muted); }
.center { text-align: center; }
.hidden { display: none !important; }

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { letter-spacing: -.045em; line-height: .98; }
h1 { font-size: clamp(3rem, 8vw, 7.4rem); margin: 0; font-weight: 650; }
h2 { font-size: clamp(2rem, 4vw, 4rem); margin: 0; font-weight: 620; }
h3 { font-size: 1.15rem; margin: 0; }
.font-editorial h1,
.font-editorial h2,
.font-editorial h3 { font-weight: 500; letter-spacing: -.035em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: .83rem;
  font-weight: 750;
  letter-spacing: -.025em;
}
.brand-logo { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 230px; }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .74rem;
  font-weight: 650;
  white-space: nowrap;
}
.nav a.active, .nav a:hover { color: var(--ink); }
.nav-toggle {
  display: none;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .72rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--button-ink);
  text-decoration: none;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 720;
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); opacity: .88; }
.btn-sm { min-height: 34px; padding: 0 14px; font-size: .7rem; }
.btn-block { width: 100%; }
.btn-outline { background: transparent; color: var(--ink); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 680;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.arrow-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .62rem;
  font-weight: 760;
  color: var(--muted);
}
.lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.32rem);
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 34px; }

.home-shell { overflow: hidden; }
.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  min-height: 620px;
  padding-top: 28px;
  padding-bottom: 28px;
  gap: 28px;
}
.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 88px) clamp(10px, 3vw, 48px) clamp(32px, 6vw, 88px) 0;
}
.hero-visual { min-height: 520px; overflow: hidden; border-radius: var(--radius); }
.hero-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 32px;
  background:
    radial-gradient(circle at 70% 22%, color-mix(in srgb, var(--accent) 45%, transparent), transparent 30%),
    linear-gradient(145deg, var(--soft), color-mix(in srgb, var(--surface) 65%, var(--accent)));
}
.image-placeholder span { font-size: 1.4rem; font-weight: 720; }
.image-placeholder small { color: var(--muted); }

.layout-split .editorial-hero { grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr); }
.layout-split .hero-visual { border-radius: 220px 16px 16px 16px; }
.layout-split .hero-copy h1 { font-size: clamp(3rem, 6vw, 6rem); }
.layout-immersive .editorial-hero {
  width: min(1400px, calc(100% - 28px));
  min-height: 720px;
  grid-template-columns: .8fr 1.2fr;
  margin-top: 14px;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: color-mix(in srgb, var(--ink) 92%, var(--accent));
  color: var(--surface);
}
.layout-immersive .hero-copy { padding: clamp(42px, 6vw, 92px); }
.layout-immersive .hero-copy .eyebrow,
.layout-immersive .hero-copy .lead { color: color-mix(in srgb, var(--surface) 70%, transparent); }
.layout-immersive .hero-copy .text-link { color: var(--surface); }
.layout-immersive .hero-visual { min-height: 720px; border-radius: 0; }

.home-utility {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  gap: 28px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.reservation-panel,
.today-menu {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: clamp(22px, 3vw, 36px);
}
.reservation-panel { display: flex; flex-direction: column; justify-content: space-between; gap: 34px; }
.reservation-panel h2, .today-menu h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.reservation-panel p:not(.eyebrow) { margin: 14px 0 0; color: var(--muted); font-size: .84rem; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-head.compact { margin-bottom: 20px; align-items: center; }
.menu-preview-list { display: grid; }
.menu-preview-list a {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: .85rem;
}
.menu-preview-list a span { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.menu-preview-list strong { font-size: .76rem; white-space: nowrap; }

.highlight-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.highlight-inner { display: flex; justify-content: space-between; gap: 24px; padding-top: 16px; padding-bottom: 16px; overflow-x: auto; }
.highlight-inner span { white-space: nowrap; color: var(--muted); font-size: .68rem; font-weight: 680; text-transform: uppercase; letter-spacing: .12em; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.alt { background: var(--soft); }
.specials-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.special-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.special-card > img { width: 100%; height: clamp(290px, 40vw, 520px); display: block; object-fit: cover; }
.special-meta { display: flex; justify-content: space-between; gap: 24px; padding: 20px; }
.special-meta h3 { font-size: 1.25rem; }
.special-meta p { max-width: 420px; margin: 8px 0 0; color: var(--muted); font-size: .8rem; }
.special-meta strong { white-space: nowrap; font-size: .8rem; }
.special-placeholder {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  background: linear-gradient(140deg, var(--soft), color-mix(in srgb, var(--accent) 38%, var(--surface)));
}
.special-placeholder.second { background: linear-gradient(220deg, var(--soft), color-mix(in srgb, var(--ink) 16%, var(--surface))); }
.special-placeholder span { max-width: 260px; font-size: 1.35rem; font-weight: 650; }

.review-ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 34px;
  padding-bottom: 34px;
}
.review-score { font-size: .8rem; font-weight: 720; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; }
.review-grid blockquote { margin: 0; padding-right: 28px; border-right: 1px solid var(--line); }
.review-grid blockquote:last-child { border: 0; }
.review-grid p { min-height: 48px; margin: 12px 0; font-size: .88rem; }
.review-grid cite { color: var(--muted); font-size: .7rem; font-style: normal; }
.stars { color: var(--accent); letter-spacing: .08em; font-size: .7rem; }

.visit-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 7vw, 92px); align-items: stretch; }
.visit-map { min-height: 480px; overflow: hidden; border-radius: var(--radius); background: var(--soft); }
.visit-map iframe, .visit-map img { width: 100%; height: 100%; min-height: 480px; display: block; border: 0; object-fit: cover; }
.map-placeholder { min-height: 480px; display: grid; place-items: center; color: var(--muted); text-transform: uppercase; letter-spacing: .2em; }
.visit-copy { display: flex; flex-direction: column; justify-content: center; }
.visit-copy > p:not(.eyebrow) { color: var(--muted); }
.compact-hours { margin: 24px 0 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.card img { width: 100%; height: 220px; display: block; object-fit: cover; }
.dish-body { padding: 20px; }
.dish-body h3, .card > h3 { margin: 0 0 10px; }
.dish-body p, .card > p { color: var(--muted); }
.card > h3, .card > p, .card > small, .card > .stars { margin-left: 20px; margin-right: 20px; }

.menu-category { padding: 34px 0; border-top: 1px solid var(--line); }
.menu-category > h2 { font-size: clamp(1.8rem, 3vw, 3.1rem); }
.menu-category > .muted { max-width: 600px; }
.menu-list, .cart-lines { display: grid; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item h3 { font-size: 1rem; letter-spacing: -.02em; }
.menu-item p { max-width: 640px; margin: 8px 0 0; color: var(--muted); font-size: .8rem; }
.menu-item > strong { font-size: .8rem; white-space: nowrap; }
.menu-item.sold-out { opacity: .45; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tags span, .chip-list li {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .64rem;
}
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.gallery-grid figure { grid-column: span 4; margin: 0; overflow: hidden; border-radius: var(--radius); }
.gallery-grid figure:nth-child(5n + 1) { grid-column: span 7; }
.gallery-grid figure:nth-child(5n + 2) { grid-column: span 5; }
.gallery-grid img { width: 100%; height: 360px; display: block; object-fit: cover; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }

.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(50px, 8vw, 110px); }
.hours { list-style: none; padding: 0; margin: 0; }
.hours li { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .76rem; }
.map { margin-top: 28px; }
.map iframe { width: 100%; min-height: 300px; border: 0; border-radius: var(--radius); }
.form { display: grid; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.form label { display: grid; gap: 7px; color: var(--muted); font-size: .7rem; font-weight: 650; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--accent); }
.success { padding: 12px 14px; color: #14532d; background: #dcfce7; border-radius: 10px; }
.prose { font-size: 1.05rem; line-height: 1.75; }
.prose p { color: var(--muted); }

.order-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; align-items: start; }
.order-cart { position: sticky; top: 94px; padding: 20px; }
.order-item-actions { display: grid; gap: 8px; justify-items: end; }

.badge { display: inline-flex; align-items: center; padding: 5px 9px; border-radius: 999px; font-size: .62rem; }
.badge.open { color: #166534; background: #dcfce7; }
.badge.closed { color: #991b1b; background: #fee2e2; }

.site-footer { border-top: 1px solid var(--line); padding: 48px 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .7fr; gap: 38px; }
.footer-brand strong { font-size: 1.4rem; letter-spacing: -.04em; }
.footer-brand p, .footer-contact p { color: var(--muted); font-size: .74rem; }
.footer-label { color: var(--muted); font-size: .6rem; font-weight: 750; text-transform: uppercase; letter-spacing: .16em; }
.social { display: flex; flex-direction: column; gap: 8px; }
.social a { color: var(--ink); text-decoration: none; font-size: .74rem; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    padding: 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open { display: grid; }
  .nav a { padding: 8px 0; font-size: .82rem; }
  .editorial-hero,
  .layout-split .editorial-hero,
  .layout-immersive .editorial-hero {
    width: min(var(--container), calc(100% - 40px));
    min-height: 0;
    grid-template-columns: 1fr;
    margin: 0 auto;
    padding-top: 24px;
    background: transparent;
    color: var(--ink);
    border-radius: 0;
  }
  .layout-immersive .hero-copy { padding: 48px 0; }
  .layout-immersive .hero-copy .eyebrow,
  .layout-immersive .hero-copy .lead { color: var(--muted); }
  .layout-immersive .hero-copy .text-link { color: var(--ink); }
  .hero-copy { padding: 58px 0 30px; }
  .hero-visual, .layout-immersive .hero-visual { min-height: 520px; border-radius: var(--radius); }
  .home-utility { grid-template-columns: 1fr; }
  .grid-3, .review-grid, .contact-grid, .order-layout, .footer-grid { grid-template-columns: 1fr; }
  .review-grid blockquote { padding: 0 0 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .visit-grid { grid-template-columns: 1fr; }
  .order-cart { position: static; }
  .gallery-grid figure,
  .gallery-grid figure:nth-child(5n + 1),
  .gallery-grid figure:nth-child(5n + 2) { grid-column: span 6; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 28px, var(--container)); }
  .header-inner { min-height: 62px; }
  h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .editorial-hero,
  .layout-split .editorial-hero,
  .layout-immersive .editorial-hero { width: calc(100% - 28px); }
  .hero-visual, .layout-immersive .hero-visual, .image-placeholder { min-height: 390px; }
  .home-utility { width: 100%; padding: 14px; gap: 14px; }
  .reservation-panel, .today-menu { border-radius: 10px; }
  .specials-grid { grid-template-columns: 1fr; }
  .special-card > img { height: 360px; }
  .highlight-inner { width: 100%; padding-left: 14px; padding-right: 14px; }
  .section-head { align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure,
  .gallery-grid figure:nth-child(5n + 1),
  .gallery-grid figure:nth-child(5n + 2) { grid-column: 1; }
  .gallery-grid img { height: 320px; }
  .visit-map, .visit-map iframe, .visit-map img, .map-placeholder { min-height: 340px; }
  .footer-grid { gap: 28px; }
}

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