:root {
  --ink: #12201d;
  --muted: #5d6964;
  --cream: #f8f3ea;
  --paper: #fffaf1;
  --olive: #5d6835;
  --tomato: #b94632;
  --blue: #286b73;
  --line: rgba(18, 32, 29, .14);
  --shadow: 0 24px 70px rgba(18, 32, 29, .2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 250, 241, .94);
  box-shadow: 0 10px 32px rgba(18, 32, 29, .12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

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

.brand small {
  opacity: .75;
  font-size: .78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: .92rem;
}

.nav a {
  text-decoration: none;
}

.language-switch {
  display: inline-flex;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 3px;
}

.language-switch button {
  min-width: 36px;
  border: 0;
  border-radius: 999px;
  padding: 7px 9px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
}

.language-switch button.active {
  color: var(--ink);
  background: #fff;
}

.site-header.scrolled .language-switch button.active {
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 116px clamp(18px, 5vw, 72px) 56px;
  color: #fff;
  overflow: hidden;
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 25, 24, .86) 0%, rgba(9, 25, 24, .55) 42%, rgba(9, 25, 24, .18) 100%),
    linear-gradient(0deg, rgba(9, 25, 24, .72) 0%, rgba(9, 25, 24, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd7b5;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: .9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions,
.visit-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
}

.btn.primary {
  color: #fff;
  background: var(--tomato);
}

.btn.secondary {
  color: var(--ink);
  background: #fff;
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}

.quick-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 56px;
  z-index: 3;
  width: min(300px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  background: rgba(10, 30, 29, .68);
  backdrop-filter: blur(14px);
}

.quick-card span,
.info-strip span,
.location-card span,
.hours-list span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-card span,
.quick-card p {
  color: rgba(255, 255, 255, .74);
}

.quick-card strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.quick-card p {
  margin: 8px 0 0;
  font-size: .9rem;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.info-strip div {
  min-width: 0;
  padding: 20px clamp(16px, 4vw, 48px);
  background: var(--paper);
}

.info-strip strong {
  display: block;
  margin-top: 4px;
}

.section {
  padding: clamp(68px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr);
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: 42px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.intro-grid article,
.note-card,
.location-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(18, 32, 29, .08);
}

.intro-grid article {
  padding: 24px;
}

.intro-grid p,
.menu-row p,
.note-card p,
.visit-copy p,
.reviews-section p,
.footer p {
  color: var(--muted);
}

.menu-section {
  background: #edf2ec;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
  gap: 24px;
  align-items: start;
}

.menu-panel {
  border-top: 1px solid rgba(18, 32, 29, .2);
}

.menu-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(18, 32, 29, .2);
}

.menu-row > span {
  color: var(--blue);
  font-weight: 900;
}

.note-card {
  padding: 24px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
  padding: clamp(68px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.visit-copy {
  max-width: 760px;
}

.visit-copy p {
  color: rgba(255, 255, 255, .72);
}

.visit-section .eyebrow {
  color: #ffd7b5;
}

.location-card {
  padding: 28px;
  color: var(--ink);
}

.location-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.7rem;
  line-height: 1.05;
}

.location-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.hours-list div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hours-list strong {
  font-size: 1rem;
}

.review-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
}

.score-block {
  display: grid;
  min-height: 220px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.score-block span {
  display: block;
  font-size: 5rem;
  font-weight: 900;
  line-height: .9;
}

.score-block p {
  max-width: 14ch;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, .82);
}

.reviews-section .review-grid > p {
  max-width: 760px;
  font-size: 1.12rem;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta .btn.secondary,
.visit-section .btn.secondary {
  border-color: var(--line);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 72px) 96px;
  color: var(--muted);
  background: #e8dfd1;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
}

.sticky-actions {
  position: fixed;
  z-index: 30;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  background: rgba(18, 32, 29, .92);
  box-shadow: 0 18px 50px rgba(18, 32, 29, .35);
  backdrop-filter: blur(14px);
}

.sticky-actions a {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.sticky-actions a:first-child {
  background: var(--tomato);
}

.sticky-actions.visible {
  display: grid;
}

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

  .nav {
    display: none;
  }

  .language-switch {
    justify-self: end;
  }

  .hero {
    min-height: 88svh;
  }

  h1 {
    max-width: 10ch;
  }

  .quick-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .info-strip,
  .section-heading,
  .intro-grid,
  .menu-layout,
  .visit-section,
  .review-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-actions {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: .82rem;
  }

  .brand small {
    display: none;
  }

  .language-switch button {
    min-width: 32px;
    padding: 6px 8px;
  }

  .hero {
    padding: 96px 16px 34px;
    min-height: 86svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 25, 24, .86) 0%, rgba(9, 25, 24, .56) 72%, rgba(9, 25, 24, .35) 100%),
      linear-gradient(0deg, rgba(9, 25, 24, .78) 0%, rgba(9, 25, 24, .04) 58%);
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-actions .btn,
  .visit-actions .btn,
  .final-actions .btn {
    flex: 1 1 140px;
  }

  .info-strip div,
  .section,
  .visit-section,
  .final-cta,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .menu-row {
    grid-template-columns: 38px 1fr;
  }

  .score-block {
    min-height: 180px;
  }
}
