:root {
  --peach: #f4d7b8;
  --peach-soft: #f8e6d0;
  --cream: #fbf4ea;
  --paper: #fff8f1;
  --sand: #ead8c2;
  --terracotta: #c24a32;
  --terracotta-deep: #9b3422;
  --navy: #1a2744;
  --navy-soft: #243456;
  --crimson: #8b1e2d;
  --gold: #c4a46a;
  --gold-soft: #d8c08a;
  --ink: #231910;
  --muted: #6a584c;
  --line: rgba(26, 39, 68, 0.12);
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(26, 39, 68, 0.12);
  --radius: 18px;
  --nav-h: 76px;
  --bar-h: 72px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --step-0: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.15rem, 1.02rem + 0.6vw, 1.35rem);
  --step-2: clamp(1.5rem, 1.15rem + 1.4vw, 2.1rem);
  --step-3: clamp(2.1rem, 1.4rem + 2.8vw, 3.4rem);
  --step-4: clamp(2.8rem, 1.7rem + 4.6vw, 5.4rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  padding-bottom: var(--bar-h);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--navy);
  color: var(--white);
  padding: 0.7rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 0.55rem;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 253, 248, 0.12);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-soft);
}

.btn-line {
  background: transparent;
  color: var(--navy);
  border-color: rgba(26, 39, 68, 0.22);
}

.btn-line:hover {
  border-color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  background: rgba(251, 244, 234, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.06);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-fallback {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--navy);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle .bars::before {
  top: -6px;
}

.nav-toggle .bars::after {
  top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-cta {
  display: flex;
  gap: 0.55rem;
}

.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 39, 68, 0.28) 0%, rgba(26, 39, 68, 0.16) 30%, rgba(26, 39, 68, 0.62) 66%, rgba(26, 39, 68, 0.9) 100%),
    linear-gradient(90deg, rgba(26, 39, 68, 0.58) 0%, rgba(26, 39, 68, 0.22) 46%, transparent 72%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.2rem;
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero-copy .kicker {
  color: var(--gold-soft);
}

.hero h1 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 600;
  line-height: 0.95;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  max-width: 38rem;
  margin: 0 0 1.3rem;
  font-size: var(--step-1);
  color: rgba(255, 253, 248, 0.9);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  border: 1px solid rgba(255, 253, 248, 0.2);
  font-size: 0.86rem;
}

.chip[data-open="true"] {
  background: rgba(61, 122, 74, 0.28);
}

.chip[data-open="false"] {
  background: rgba(139, 30, 45, 0.32);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.highlights {
  background: var(--paper);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.highlight {
  grid-column: span 2;
  padding: 1.35rem 1.3rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.highlight p {
  margin: 0;
  color: var(--muted);
}

.highlight-wide {
  grid-column: span 3;
}

.dishes {
  background:
    radial-gradient(circle at top left, rgba(194, 74, 50, 0.08), transparent 32%),
    var(--cream);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.dish-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  min-height: 280px;
}

.dish-card figure {
  margin: 0;
  height: 100%;
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.dish-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(26, 39, 68, 0.88));
}

.dish-card h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.dish-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.92rem;
}

.menu {
  background: var(--paper);
}

.menu-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.menu-tabs {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  margin-bottom: 1.5rem;
  scrollbar-width: thin;
}

.menu-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 550;
  cursor: pointer;
}

.menu-tab[aria-selected="true"] {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.menu-panel[hidden] {
  display: none;
}

.menu-note {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.dish-list {
  display: grid;
  gap: 0.15rem;
}

.dish-row {
  display: grid;
  grid-template-columns: 2.6rem 1fr auto;
  gap: 0.85rem;
  padding: 0.95rem 0;
  border-bottom: 1px dashed rgba(26, 39, 68, 0.16);
}

.dish-no {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.dish-row h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.dish-row p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.allergens {
  margin-left: 0.25rem;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  vertical-align: super;
}

.price {
  font-weight: 650;
  white-space: nowrap;
  color: var(--navy);
}

.drink-group + .drink-group {
  margin-top: 2rem;
}

.drink-group h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.price-table th {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-table td:not(:first-child),
.price-table th:not(:first-child) {
  text-align: right;
  white-space: nowrap;
}

.legend {
  margin-top: 2rem;
  padding: 1.1rem 1.2rem;
  background: var(--peach-soft);
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
}

.about-copy p + p {
  margin-top: 0.9rem;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.about-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  min-height: 220px;
}

.about-photos img:first-child {
  grid-row: span 2;
  min-height: 460px;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.facts li {
  padding: 0.85rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.gallery {
  padding-top: 0;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.gallery-strip img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-strip img:nth-child(1),
.gallery-strip img:nth-child(4) {
  height: 280px;
}

.reviews {
  background: var(--navy);
  color: var(--white);
}

.reviews .kicker {
  color: var(--gold-soft);
}

.reviews .lede,
.reviews .section-title {
  color: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review {
  padding: 1.3rem 1.25rem;
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 16px;
}

.review q {
  display: block;
  quotes: "„" "“";
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
}

.review footer {
  margin-top: 1rem;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.88rem;
}

.review-note {
  margin: 1.4rem 0 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.92rem;
}

.location {
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.3rem;
}

.hours th,
.hours td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.hours td:last-child,
.hours th:last-child {
  text-align: right;
}

.closed {
  color: var(--crimson);
  font-weight: 600;
}

.map-frame {
  min-height: 360px;
  border: 0;
  border-radius: 18px;
  width: 100%;
  height: 100%;
  background: var(--sand);
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 253, 248, 0.78);
  padding: 2.4rem 0 6.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer a {
  color: var(--white);
}

.site-footer .logo img {
  filter: brightness(0) invert(1);
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(251, 244, 234, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.legal-page {
  padding-top: 2rem;
}

.legal-card {
  width: min(760px, calc(100% - 2rem));
  margin: 2rem auto 4rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: var(--step-3);
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

@media (max-width: 980px) {
  .highlight-grid,
  .review-grid,
  .about-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .highlight,
  .highlight-wide,
  .dish-card {
    grid-column: span 6;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-photos img:first-child {
    min-height: 280px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    padding: 1rem 1.1rem 1.2rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .dish-card,
  .highlight,
  .highlight-wide {
    grid-column: span 12;
  }

  .dish-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 821px) {
  .mobile-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .site-footer {
    padding-bottom: 2.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}
