:root {
  --ink: #12201f;
  --muted: #60706c;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #dfe6df;
  --red: #d64231;
  --red-dark: #9f281f;
  --green: #23745d;
  --mint: #dff2df;
  --aqua: #d5eef2;
  --plum: #6f2444;
  --gold: #f2b950;
  --shadow: 0 24px 80px rgba(18, 32, 31, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213, 238, 242, 0.7), transparent 32rem),
    linear-gradient(180deg, #fbfaf6 0%, #f6faf7 48%, #f8f4ef 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(18, 32, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(35, 116, 93, 0.09);
}

.site-nav .nav-action {
  color: #fff;
  background: var(--red);
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
  color: #fff;
  background: var(--red-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(18, 32, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.lang-switch button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.lang-switch button:hover,
.lang-switch button:focus-visible,
.lang-switch button.is-active {
  color: #fff;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  min-height: min(760px, calc(100svh - 128px));
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px) 34px;
}

.hero-copy,
.hero-visual,
.visit-copy,
.map-placeholder,
.section-heading,
.menu-section,
.split-section,
.visit-section {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.96;
}

h1 {
  max-width: 680px;
  font-size: clamp(72px, 16vw, 168px);
}

h2 {
  max-width: 840px;
  font-size: clamp(38px, 7vw, 82px);
}

.hero-subtitle {
  max-width: 620px;
  margin: 24px 0 0;
  color: #334440;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
}

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(214, 66, 49, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  border-color: rgba(18, 32, 31, 0.18);
  background: rgba(255, 255, 255, 0.66);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(18, 32, 31, 0.28);
  background: #fff;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.photo-frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 32, 31, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(35, 116, 93, 0.18), transparent 35%),
    linear-gradient(315deg, rgba(214, 66, 49, 0.18), transparent 42%),
    #eef6ee;
  box-shadow: var(--shadow);
}

.photo-frame-large {
  min-height: 520px;
  aspect-ratio: 4 / 3;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: -26px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  width: min(270px, 72%);
  padding: 18px;
  border: 1px solid rgba(18, 32, 31, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 32, 31, 0.15);
}

.hero-note strong {
  font-size: 24px;
}

.hero-note span {
  color: var(--muted);
  font-weight: 800;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px) 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.quick-info div {
  min-height: 132px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  margin-bottom: 9px;
  font-size: 19px;
}

.quick-info span {
  color: var(--muted);
  line-height: 1.45;
}

.menu-section,
.gallery-section,
.split-section,
.reviews-section,
.visit-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.section-heading-left p:not(.eyebrow) {
  margin-left: 0;
}

.menu-tools {
  position: sticky;
  top: 76px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(18, 32, 31, 0.08);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tabs button {
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(18, 32, 31, 0.12);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.category-tabs button:hover,
.category-tabs button:focus-visible,
.category-tabs button.is-active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.search-box {
  display: grid;
  gap: 6px;
}

.search-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(18, 32, 31, 0.16);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

.search-box input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(35, 116, 93, 0.17);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.menu-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(18, 32, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 14px 40px rgba(18, 32, 31, 0.06);
}

.menu-card.is-featured {
  border-color: rgba(214, 66, 49, 0.35);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 240, 221, 0.84) 100%);
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.menu-card h3 {
  font-size: 24px;
  line-height: 1.05;
}

.menu-card .price {
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--red-dark);
  background: rgba(214, 66, 49, 0.1);
  font-size: 14px;
  font-weight: 900;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.menu-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(18, 32, 31, 0.1);
  border-radius: 8px;
  object-fit: cover;
  object-position: center 42%;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 8px;
  padding: 6px 9px;
  color: #31514b;
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.tag.alt {
  color: #374a64;
  background: var(--aqua);
}

.tag.spicy {
  color: #7a1d15;
  background: #ffd9cf;
}

.empty-state {
  margin: 24px 0 0;
  padding: 24px;
  border: 1px dashed rgba(18, 32, 31, 0.2);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.gallery-section {
  background:
    linear-gradient(135deg, rgba(213, 238, 242, 0.38), transparent 34%),
    #fff;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 32, 31, 0.1);
  border-radius: 8px;
  background: #eef6ee;
  box-shadow: 0 14px 40px rgba(18, 32, 31, 0.07);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item.tall img {
  aspect-ratio: 3 / 4;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background: #13201f;
  color: #fff;
}

.split-section .eyebrow {
  color: var(--gold);
}

.split-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.hours-list {
  display: grid;
  gap: 12px;
}

.hours-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hours-list span {
  color: rgba(255, 255, 255, 0.72);
}

.hours-list strong {
  font-size: 19px;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.52fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(35, 116, 93, 0.09), transparent 34%),
    #fff;
}

.reviews-summary {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: clamp(0px, 3vw, 44px);
}

.reviews-summary h2 {
  max-width: 680px;
}

.reviews-summary p:not(.eyebrow) {
  max-width: 580px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.rating-panel,
.review-card {
  border: 1px solid rgba(18, 32, 31, 0.1);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.88);
  box-shadow: 0 18px 54px rgba(18, 32, 31, 0.08);
}

.rating-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 34px);
}

.rating-topline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-mark,
.review-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.google-mark {
  background: conic-gradient(from 40deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.rating-topline strong,
.rating-topline small,
.review-card strong,
.review-card span {
  display: block;
}

.rating-topline small,
.review-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.rating-score {
  margin-top: 24px;
  font-size: clamp(64px, 9vw, 108px);
  font-weight: 900;
  line-height: 0.9;
}

.stars {
  margin-top: 12px;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
}

.rating-panel p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.review-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
}

.review-card p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.visit-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.map-placeholder {
  display: grid;
  align-content: end;
  min-height: 380px;
  padding: 28px;
  border: 1px solid rgba(18, 32, 31, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 32, 31, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 32, 31, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(111, 36, 68, 0.18), transparent 34%),
    #eaf4f1;
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.map-placeholder span {
  width: max-content;
  max-width: 100%;
  margin-bottom: auto;
  border-radius: 8px;
  padding: 8px 10px;
  color: #fff;
  background: var(--plum);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-placeholder strong {
  margin-top: 180px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.92;
}

.map-placeholder small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(18, 32, 31, 0.1);
  color: var(--muted);
  background: #fff;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1050px) {
  .hero,
  .visit-section,
  .split-section,
  .reviews-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .photo-frame-large {
    min-height: 420px;
  }

  .hero-note {
    left: 18px;
  }

  .menu-tools {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 740px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(18, 32, 31, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-copy,
  .hero-subtitle,
  .hero-actions,
  .contact-actions {
    max-width: 100%;
  }

  .hero-actions,
  .contact-actions {
    width: min(100%, 360px);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .quick-info,
  .menu-grid,
  .gallery-grid,
  .review-cards {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item {
    min-height: 0;
  }

  .quick-info {
    margin-bottom: 0;
  }

  .menu-tools {
    top: 68px;
    margin-inline: -8px;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .category-tabs button {
    flex: 0 0 auto;
  }

  .menu-card-header,
  .hours-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-placeholder {
    min-height: 320px;
  }
}

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