:root {
  --paper: #f5ead2;
  --paper-deep: #e8d3a8;
  --ink: #1f2421;
  --muted: #6e6252;
  --line: rgba(31, 36, 33, 0.32);
  --olive: #53664a;
  --wine: #8b2f2f;
  --terracotta: #b8673d;
  --cream: #fff8e9;
  --shadow: 0 24px 80px rgba(36, 28, 18, 0.2);
  --serif: Georgia, "Palatino Linotype", "Book Antiqua", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  background:
    radial-gradient(circle at 20% 0%, rgba(184, 103, 61, 0.16), transparent 32rem),
    radial-gradient(circle at 85% 20%, rgba(83, 102, 74, 0.14), transparent 30rem),
    linear-gradient(135deg, rgba(255, 248, 233, 0.92), rgba(232, 211, 168, 0.78)),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(31, 36, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 36, 33, 0.025) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px;
}

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

a {
  color: inherit;
}

button,
a.button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 76px;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 248, 233, 0.22);
  color: var(--cream);
  background: linear-gradient(90deg, rgba(19, 24, 21, 0.92), rgba(52, 43, 33, 0.76));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  text-decoration: none;
}

.brand__mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand small {
  color: rgba(255, 248, 233, 0.82);
  font-family: var(--serif);
  font-size: 0.82rem;
}

.top-nav {
  justify-self: center;
  display: flex;
  gap: clamp(0.75rem, 2vw, 2rem);
  align-items: center;
}

.top-nav a {
  position: relative;
  color: rgba(255, 248, 233, 0.88);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  text-transform: uppercase;
}

.top-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: var(--paper-deep);
  transition: transform 160ms ease;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.28rem;
  border: 1px solid rgba(255, 248, 233, 0.28);
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.08);
}

.language-switcher__button {
  min-width: 2.45rem;
  min-height: 2.15rem;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 248, 233, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

.language-switcher__button.is-active {
  color: var(--ink);
  background: var(--paper-deep);
}

.hero {
  position: relative;
  min-height: min(86vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 20, 18, 0.86), rgba(20, 20, 18, 0.5) 48%, rgba(20, 20, 18, 0.16)),
    linear-gradient(0deg, rgba(19, 24, 21, 0.7), transparent 45%);
}

.hero__content {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 clamp(4rem, 9vh, 7rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--paper-deep);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.25rem, 12vw, 9.8rem);
  font-weight: 500;
  line-height: 0.86;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
  margin: 0.9rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.4vw, 2.6rem);
}

.hero__claim {
  max-width: 650px;
  margin: 1rem 0 0;
  color: rgba(255, 248, 233, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  min-width: 9.5rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(20, 20, 18, 0.18);
}

.button--light {
  color: var(--ink);
  background: var(--cream);
}

.button--outline {
  color: var(--cream);
  border-color: rgba(255, 248, 233, 0.65);
  background: rgba(255, 248, 233, 0.08);
}

.button--review {
  color: var(--cream);
  background: var(--wine);
}

.button--dark {
  color: var(--cream);
  background: var(--ink);
}

.menu-section,
.contact-section {
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 2rem;
}

.section-heading--center {
  text-align: center;
}

.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.06;
}

.section-copy {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading--center .section-copy {
  margin-right: auto;
  margin-left: auto;
}

.menu-section {
  background:
    linear-gradient(rgba(255, 248, 233, 0.72), rgba(255, 248, 233, 0.9)),
    var(--paper);
}

.menu-frame {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem);
  border: 2px solid rgba(31, 36, 33, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(31, 36, 33, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(31, 36, 33, 0.035) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(184, 103, 61, 0.14), transparent 24rem),
    radial-gradient(circle at bottom right, rgba(83, 102, 74, 0.16), transparent 22rem),
    var(--paper);
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
  box-shadow: var(--shadow);
}

.menu-frame::before,
.menu-frame::after {
  position: absolute;
  width: 38px;
  height: 38px;
  content: "";
  border-color: var(--ink);
  opacity: 0.58;
}

.menu-frame::before {
  top: 12px;
  left: 12px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.menu-frame::after {
  right: 12px;
  bottom: 12px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.menu-frame__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.menu-frame__top span {
  height: 1px;
  background: var(--line);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 2.3vw, 1.6rem);
}

.menu-category {
  padding: 1rem;
  border: 1px solid rgba(31, 36, 33, 0.28);
  border-radius: 8px;
  background: rgba(255, 248, 233, 0.46);
}

.menu-category--wide {
  grid-column: 1 / -1;
}

.menu-category__title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  text-transform: uppercase;
}

.menu-category__title::before,
.menu-category__title::after {
  flex: 1;
  height: 1px;
  min-width: 22px;
  content: "";
  background: rgba(31, 36, 33, 0.32);
}

.menu-category__note {
  margin: -0.25rem 0 0.75rem;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
}

.menu-items {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.65rem;
}

.menu-item__main {
  min-width: 0;
}

.menu-item__line {
  display: flex;
  align-items: end;
  gap: 0.45rem;
}

.menu-item__name {
  min-width: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.menu-item__dots {
  flex: 1 0 1.5rem;
  min-width: 1rem;
  height: 1px;
  border-bottom: 1px dotted rgba(31, 36, 33, 0.42);
  transform: translateY(-0.28rem);
}

.menu-item__description {
  margin: 0.05rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
}

.menu-item__price {
  min-width: 4.7rem;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(31, 36, 33, 0.96), rgba(83, 102, 74, 0.9)),
    var(--ink);
  color: var(--cream);
}

.contact-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.contact-panel .section-copy {
  color: rgba(255, 248, 233, 0.75);
}

.contact-actions {
  justify-content: flex-end;
}

.contact-actions .button--dark {
  border-color: rgba(255, 248, 233, 0.32);
  background: rgba(255, 248, 233, 0.1);
}

.fixed-review {
  position: fixed;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  color: var(--cream);
  font-weight: 900;
  text-decoration: none;
  background: var(--wine);
  box-shadow: 0 18px 48px rgba(31, 36, 33, 0.24);
}

.mobile-action-bar {
  display: none;
}

.site-footer {
  padding: 2.2rem 1rem 6rem;
  color: rgba(255, 248, 233, 0.76);
  text-align: center;
  background: var(--ink);
}

.site-footer p {
  margin: 0.25rem 0;
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 1.3rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .menu-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .menu-category--wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 66px;
    gap: 0.75rem;
    padding: 0.55rem 0.85rem;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.3rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .language-switcher__button {
    min-width: 2.05rem;
    min-height: 1.9rem;
    font-size: 0.7rem;
  }

  .hero {
    min-height: max(620px, 100svh);
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(20, 20, 18, 0.82), rgba(20, 20, 18, 0.42)),
      linear-gradient(90deg, rgba(20, 20, 18, 0.74), rgba(20, 20, 18, 0.34));
  }

  .hero__content {
    width: min(100% - 1.5rem, 1120px);
    padding-top: 7.75rem;
    padding-bottom: 3.2rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.6rem);
  }

  .hero__actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .menu-section,
  .contact-section {
    padding: 3.25rem 0.85rem;
  }

  .menu-frame {
    padding: 0.85rem;
    border-width: 1px;
    box-shadow: 0 18px 46px rgba(36, 28, 18, 0.14);
  }

  .menu-frame__top {
    gap: 0.7rem;
  }

  .menu-category {
    padding: 0.85rem;
    border-radius: 6px;
  }

  .menu-category__title {
    font-size: 1.18rem;
  }

  .menu-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem;
  }

  .menu-item__price {
    min-width: 4.1rem;
  }

  .fixed-review {
    right: 0.85rem;
    bottom: calc(84px + env(safe-area-inset-bottom));
    min-height: 2.9rem;
    padding-inline: 1rem;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    padding: 0.45rem 0.45rem calc(0.45rem + env(safe-area-inset-bottom));
    background: rgba(31, 36, 33, 0.96);
    box-shadow: 0 -16px 38px rgba(31, 36, 33, 0.22);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    color: var(--cream);
    font-size: 0.78rem;
    font-weight: 850;
    text-decoration: none;
    background: rgba(255, 248, 233, 0.1);
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 0.5rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .brand small {
    display: none;
  }

  .language-switcher {
    gap: 0.18rem;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 0.18rem;
  }

  .menu-item__price {
    text-align: left;
  }

  .menu-item__dots {
    display: none;
  }
}
