:root {
  color-scheme: light;
  --ink: #14201f;
  --muted: #61706e;
  --line: rgba(20, 32, 31, 0.14);
  --paper: #f7f2e8;
  --paper-strong: #fffdf7;
  --pine: #173b35;
  --pine-soft: #2f645c;
  --sea: #1f6f87;
  --rose: #d85f82;
  --gold: #d9a441;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 32, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--pine);
  color: var(--white);
  padding: 0.7rem 0.9rem;
}

.skip-link:not(:focus) {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  transform: translateY(0);
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(247, 242, 232, 0.94);
  box-shadow: 0 10px 35px rgba(20, 32, 31, 0.1);
  backdrop-filter: blur(18px);
  padding-block: 0.65rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
}

.topbar.is-scrolled .brand,
.topbar.is-scrolled .nav-links,
.topbar.is-scrolled .icon-link {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 8px;
  background: var(--rose);
  color: var(--white);
  font-weight: 900;
}

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

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.language {
  display: inline-flex;
  gap: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  padding: 0.2rem;
}

.topbar.is-scrolled .language {
  border-color: var(--line);
  background: var(--white);
}

.language button {
  min-width: 2.2rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
  padding: 0.42rem 0.5rem;
}

.language button.is-active {
  background: var(--rose);
  color: var(--white);
}

.icon-link {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.topbar.is-scrolled .icon-link {
  background: rgba(23, 59, 53, 0.1);
}

.hero {
  position: relative;
  min-height: min(830px, 92vh);
  overflow: hidden;
  background: var(--pine);
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 32, 31, 0.9) 0%, rgba(23, 59, 53, 0.72) 44%, rgba(20, 32, 31, 0.18) 100%),
    linear-gradient(0deg, rgba(20, 32, 31, 0.7) 0%, rgba(20, 32, 31, 0.08) 45%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 4rem);
  width: min(1180px, calc(100% - 2rem));
  min-height: min(830px, 92vh);
  margin: 0 auto;
  padding: 8.5rem 0 5rem;
}

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

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 8vw, 7.25rem);
  font-weight: 900;
  line-height: 0.94;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.hero-copy > p:not(.eyebrow),
.footer p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero-actions,
.location-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  padding: 0.82rem 1rem;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-panel {
  display: grid;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(20, 32, 31, 0.66);
  box-shadow: var(--shadow);
  padding: 1rem;
  backdrop-filter: blur(18px);
}

.hero-panel div,
.signal-strip div,
.hours div {
  display: grid;
  gap: 0.25rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.95rem;
}

.hero-panel span,
.signal-strip span,
.hours span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-panel strong,
.signal-strip strong,
.hours strong {
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.12;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--pine);
  color: var(--white);
}

.signal-strip div {
  border-radius: 0;
  background: var(--pine);
  padding: clamp(1rem, 3vw, 1.8rem);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 1.6rem;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.4rem;
}

.section-head > p:not(.eyebrow),
.proof-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin: 0;
}

.section-head.compact {
  display: block;
  max-width: 760px;
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(250px, 0.34fr) minmax(320px, 0.58fr);
  gap: 1rem;
  align-items: stretch;
}

.menu-viewer,
.dish-cards article,
.visit-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 20px 55px rgba(20, 32, 31, 0.08);
}

.menu-viewer {
  margin: 0;
  overflow: hidden;
}

.menu-viewer img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.menu-viewer figcaption {
  color: var(--muted);
  font-weight: 850;
  padding: 0.85rem 1rem;
}

.menu-controls {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.menu-controls button,
.tab {
  min-height: 3.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  padding: 0.65rem 0.7rem;
}

.menu-controls button.is-active,
.tab.is-active {
  background: var(--pine);
  color: var(--white);
}

.dish-cards {
  display: grid;
  gap: 1rem;
}

.dish-cards article {
  overflow: hidden;
}

.dish-cards img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.dish-cards h3,
.dish-cards p {
  margin-inline: 1rem;
}

.dish-cards h3 {
  margin-top: 0.9rem;
}

.dish-cards p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1.5rem 0;
}

.stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.55fr);
  gap: 1rem;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 20px 55px rgba(20, 32, 31, 0.08);
  padding: clamp(1.15rem, 3vw, 2rem);
}

.panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.panel ul {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel li {
  border-left: 4px solid var(--rose);
  border-radius: 6px;
  background: rgba(216, 95, 130, 0.1);
  color: var(--ink);
  font-weight: 760;
  padding: 0.8rem;
}

.is-hidden {
  display: none !important;
}

.stage-photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(310px, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.proof-images {
  display: grid;
  grid-template-columns: 0.72fr 0.62fr;
  gap: 1rem;
  align-items: end;
}

.proof-images img {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proof-images img:last-child {
  height: 330px;
}

.rating {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.2rem 0.75rem;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0.9rem 1rem;
}

.rating strong {
  font-size: 2.2rem;
}

.rating span {
  color: var(--gold);
}

.rating small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 850;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visit-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem);
}

.visit-form fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0;
  border: 0;
  padding: 0;
}

.visit-form legend,
.visit-form > label > span {
  display: block;
  grid-column: 1 / -1;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visit-form label {
  min-width: 0;
}

.visit-form fieldset label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 3.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.72rem;
}

.visit-form input[type="text"] {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0.75rem 0.85rem;
}

.output {
  min-height: 4.6rem;
  border-left: 4px solid var(--sea);
  border-radius: 6px;
  background: rgba(31, 111, 135, 0.08);
  color: var(--sea);
  font-weight: 760;
  padding: 0.85rem 1rem;
}

.visit .btn-secondary,
.location .btn-secondary,
.form-actions .btn-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  gap: clamp(1.2rem, 4vw, 3rem);
}

.location-copy {
  align-self: center;
}

.hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.hours div {
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.hours span {
  color: var(--muted);
}

.hours strong {
  color: var(--ink);
}

.map {
  position: relative;
  min-height: 450px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

.map-link {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  border-radius: 8px;
  background: var(--pine);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  padding: 0.72rem 0.85rem;
  box-shadow: 0 14px 34px rgba(20, 32, 31, 0.2);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--pine);
  color: var(--white);
  padding: 1.4rem max(1rem, calc((100vw - 1180px) / 2));
}

.footer p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer a {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}

.mobile-cta {
  position: fixed;
  z-index: 30;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  transform: translateY(130%);
  transition: transform 180ms ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.2rem;
  border-radius: 8px;
  background: var(--pine);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(20, 32, 31, 0.22);
}

.mobile-cta a:first-child {
  background: var(--rose);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 7.2rem 0 2rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.6rem);
  }

  .signal-strip,
  .section-head,
  .menu-grid,
  .stage,
  .proof,
  .visit,
  .location {
    grid-template-columns: 1fr;
  }

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

  .panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .stage-photo {
    min-height: 270px;
  }

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

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

  .proof-images {
    grid-template-columns: 1fr 1fr;
  }

  .proof-images img,
  .proof-images img:last-child {
    height: 310px;
  }

  .footer {
    display: block;
    padding-bottom: 5rem;
  }

  .footer a {
    display: inline-block;
    margin-top: 1rem;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 0.75rem;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark,
  .icon-link {
    width: 2.4rem;
    height: 2.4rem;
  }

  .hero-grid,
  .section,
  .location {
    width: min(100% - 1rem, 1180px);
  }

  .hero-grid {
    padding-top: 6.4rem;
  }

  .language button {
    min-width: 2rem;
    padding-inline: 0.42rem;
  }

  h1 {
    font-size: clamp(2.65rem, 14.5vw, 4.5rem);
  }

  .hero-actions,
  .location-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .tabs,
  .menu-controls,
  .dish-cards,
  .proof-images,
  .visit-form fieldset,
  .hours {
    grid-template-columns: 1fr;
  }

  .menu-viewer img {
    height: 330px;
  }

  .dish-cards img,
  .proof-images img,
  .proof-images img:last-child {
    height: 260px;
  }
}
