:root {
  --black: #191a18;
  --black-2: #20211f;
  --black-3: #292a27;
  --sand: #d2ae8b;
  --sand-2: #ead6bf;
  --cable: #c7cfcd;
  --cream: #f6f1e8;
  --paper: #fffaf1;
  --muted: #8c8378;
  --line: rgba(25, 26, 24, 0.14);
  --line-dark: rgba(255, 250, 241, 0.16);
  --shadow: 0 28px 90px rgba(25, 26, 24, 0.18);
  --radius: 8px;
  --page: min(1180px, calc(100vw - 40px));
  --anchor-offset: 126px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  overflow-x: clip;
}

main[id],
main section[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--black);
  background:
    linear-gradient(180deg, rgba(210, 174, 139, 0.16), transparent 360px),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(25, 26, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 26, 24, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0, transparent 720px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 104px;
  margin: 0;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(25, 26, 24, 0.08);
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 44px rgba(25, 26, 24, 0.08);
}

.brand {
  display: inline-flex;
  width: 204px;
  height: 80px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 16px;
  border: 1px solid rgba(25, 26, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: inline-flex;
  justify-self: end;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(25, 26, 24, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 44px rgba(25, 26, 24, 0.08);
}

.site-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--black-3);
  font-size: 13px;
  font-weight: 780;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--black);
  color: var(--paper);
}

.language-switcher {
  display: inline-flex;
  justify-self: end;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(25, 26, 24, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 44px rgba(25, 26, 24, 0.06);
}

.language-switcher a {
  display: inline-grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a[aria-current="page"] {
  background: var(--black);
  color: var(--paper);
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  padding: 0;
  border: 1px solid rgba(25, 26, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--black);
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(25, 26, 24, 0.08);
}

.mobile-menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  min-height: clamp(640px, calc(100vh - 104px), 720px);
  width: var(--page);
  margin: 0 auto 26px;
  border: 1px solid rgba(25, 26, 24, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 0;
  background: var(--black);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.7) contrast(1.08) brightness(0.56);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-media::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(25, 26, 24, 0.12), rgba(25, 26, 24, 0.18) 48%, rgba(25, 26, 24, 0.34) 72%, rgba(25, 26, 24, 0.46)),
    linear-gradient(180deg, rgba(25, 26, 24, 0.08), rgba(25, 26, 24, 0.54));
  opacity: 1;
}

.hero-media::after {
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(210, 174, 139, 0.18), transparent 28%),
    linear-gradient(90deg, transparent 0 63%, rgba(25, 26, 24, 0.24));
}

.eyebrow,
.panel-kicker,
.trip-type {
  color: var(--sand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  display: grid;
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 1;
  align-content: start;
  gap: 20px;
  padding: clamp(64px, 7vh, 86px) 34px 48px;
  background:
    linear-gradient(90deg, rgba(25, 26, 24, 0.44), rgba(25, 26, 24, 0.66) 28%, rgba(25, 26, 24, 0.76)),
    radial-gradient(circle at 100% 10%, rgba(210, 174, 139, 0.18), transparent 30%),
    rgba(25, 26, 24, 0.66);
  backdrop-filter: blur(2px);
  box-shadow: inset 1px 0 rgba(255, 250, 241, 0.06);
}

.eyebrow,
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 58px);
}

.hero-copy p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 18px;
  margin-top: 8px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--sand);
  color: var(--black);
}

.button-ghost {
  border: 1px solid rgba(255, 250, 241, 0.2);
  color: var(--paper);
}

.live-panel {
  position: absolute;
  z-index: 4;
  right: calc(390px + 28px);
  bottom: 20px;
  left: 28px;
  display: grid;
  width: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.live-card {
  display: block;
  min-height: 96px;
  padding: 14px 16px;
  color: var(--paper);
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: var(--radius);
  background: rgba(25, 26, 24, 0.78);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px) saturate(1.1);
}

.live-link {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.live-link:hover,
.live-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(210, 174, 139, 0.48);
  background: rgba(25, 26, 24, 0.88);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.42);
}

.live-panel strong,
.live-panel small {
  display: block;
}

.live-panel strong {
  margin-top: 0;
  font-size: 15px;
}

.live-panel small {
  color: rgba(255, 250, 241, 0.64);
}

.live-panel .panel-kicker {
  color: var(--sand);
}

.live-card-head {
  display: flex;
  min-height: 33px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.live-card-head .panel-kicker {
  line-height: 1;
}

.live-status {
  display: inline-grid;
  flex: 0 0 33px;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  background: rgba(120, 212, 127, 0.14);
}

.live-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #78d47f;
  box-shadow: 0 0 0 0 rgba(120, 212, 127, 0.5);
  animation: live-pulse 2.2s ease-out infinite;
}

.opening-card.is-closed .live-dot {
  background: #f06455;
  box-shadow: 0 0 0 0 rgba(240, 100, 85, 0.45);
  animation-name: closed-pulse;
}

.live-icon,
.weather-icon {
  display: inline-grid;
  flex: 0 0 33px;
  width: 33px;
  height: 33px;
  place-items: center;
  margin-bottom: 0;
  color: var(--sand);
}

.live-icon svg,
.weather-icon svg {
  width: 24px;
  height: 24px;
}

.weather-card .weather-icon {
  width: 33px;
  height: 33px;
}

.weather-card .weather-icon svg {
  width: 29px;
  height: 29px;
}

.weather-card strong {
  font-size: 19px;
  line-height: 1.05;
}

.weather-card small {
  margin-top: 5px;
}

.opening-card small {
  margin-top: 5px;
  color: rgba(255, 250, 241, 0.74);
  font-weight: 720;
}

.menu-category,
.gallery-card,
.trip-card,
.trip-grid article,
.contact-copy,
.contact-map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 16px 50px rgba(25, 26, 24, 0.08);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 96px 0 0;
}

.menu-section {
  padding-top: 44px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(290px, 0.84fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
}

.section-head p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

.menu-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 14px;
  align-items: start;
}

.menu-note {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.menu-note img {
  width: 100%;
  aspect-ratio: 1.68;
  border-radius: 6px;
  object-fit: cover;
}

.menu-note strong,
.menu-note span {
  display: block;
}

.menu-note strong {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  max-width: 16ch;
  margin-left: 18px;
  font-size: 19px;
  font-style: italic;
  line-height: 1.16;
}

.menu-note span {
  margin-top: 8px;
  color: rgba(255, 250, 241, 0.64);
  font-size: 13px;
}

.menu-category {
  position: relative;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 18px 20px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-category-large {
  min-height: 0;
}

.menu-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.menu-column {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.menu-category::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid transparent;
  background: linear-gradient(90deg, var(--sand), var(--cable)) top left / 0 3px no-repeat;
  transition: background-size 220ms ease;
  pointer-events: none;
}

.menu-category:hover {
  transform: translateY(-3px);
  border-color: rgba(210, 174, 139, 0.46);
  box-shadow: 0 24px 70px rgba(25, 26, 24, 0.14);
}

.menu-category:hover::before {
  background-size: 100% 3px;
}

.menu-featured {
  background:
    linear-gradient(145deg, rgba(210, 174, 139, 0.16), transparent 42%),
    var(--paper);
}

.category-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.category-title span {
  color: var(--black);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
}

.category-title small {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  white-space: nowrap;
  border: 1px solid rgba(210, 174, 139, 0.38);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.menu-list {
  display: grid;
  min-width: 0;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  min-width: 0;
  gap: 10px;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(25, 26, 24, 0.09);
}

.menu-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-unit,
.menu-item-name {
  color: var(--black-2);
}

.menu-unit {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
}

.menu-item {
  display: block;
  min-width: 0;
}

.menu-item-name {
  font-weight: 760;
  line-height: 1.18;
}

.menu-list strong {
  color: var(--black);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.food-gallery-section {
  padding-top: 82px;
}

.gallery-head {
  align-items: start;
}

.food-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.9fr));
  gap: 14px;
  align-items: stretch;
}

.gallery-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(210, 174, 139, 0.46);
  box-shadow: 0 24px 70px rgba(25, 26, 24, 0.14);
}

.gallery-featured {
  grid-row: span 2;
  min-height: 654px;
}

.gallery-photo {
  position: relative;
  display: grid;
  min-height: 222px;
  flex: 1;
  place-items: end start;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(25, 26, 24, 0.04), rgba(25, 26, 24, 0.62)),
    var(--black);
  color: var(--paper);
  isolation: isolate;
}

.gallery-featured .gallery-photo {
  min-height: 520px;
}

.gallery-photo img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-photo span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 999px;
  background: rgba(25, 26, 24, 0.48);
  color: rgba(255, 250, 241, 0.78);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.gallery-photo-burger::before {
  background:
    linear-gradient(142deg, rgba(210, 174, 139, 0.44), transparent 48%),
    linear-gradient(24deg, transparent 44%, rgba(199, 207, 205, 0.16) 44% 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.08), transparent 68%);
}

.gallery-photo-hotdog::before {
  background:
    linear-gradient(148deg, rgba(199, 207, 205, 0.26), transparent 42%),
    linear-gradient(38deg, transparent 40%, rgba(210, 174, 139, 0.3) 40% 48%, transparent 48%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.08), transparent 70%);
}

.gallery-photo-menu::before {
  background:
    linear-gradient(160deg, rgba(199, 207, 205, 0.28), transparent 42%),
    linear-gradient(18deg, transparent 48%, rgba(210, 174, 139, 0.34) 48% 56%, transparent 56%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.08), transparent 70%);
}

.gallery-photo-sweet::before {
  background:
    linear-gradient(146deg, rgba(234, 214, 191, 0.28), transparent 44%),
    linear-gradient(34deg, transparent 42%, rgba(210, 174, 139, 0.34) 42% 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.08), transparent 70%);
}

.gallery-photo-drinks::before {
  background:
    linear-gradient(138deg, rgba(199, 207, 205, 0.3), transparent 42%),
    linear-gradient(26deg, transparent 46%, rgba(210, 174, 139, 0.28) 46% 54%, transparent 54%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.08), transparent 70%);
}

.gallery-card figcaption {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.gallery-card figcaption strong {
  color: var(--black);
  font-size: 19px;
  line-height: 1.1;
}

.gallery-card figcaption small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.chef-section {
  display: grid;
  width: var(--page);
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 46px;
  align-items: center;
  margin: 78px auto 0;
  padding: 34px 42px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 12%, rgba(210, 174, 139, 0.18), transparent 32%),
    var(--black);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.chef-portrait {
  margin: 0;
  aspect-ratio: 500 / 717;
  max-height: 680px;
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
}

.chef-portrait picture {
  display: block;
  width: 100%;
  height: 100%;
}

.chef-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.chef-copy h2 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(32px, 3.1vw, 46px);
}

.chef-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.68);
  font-size: 16px;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0;
}

.principles span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 999px;
  color: var(--cable);
  font-size: 13px;
  font-weight: 850;
}

.signature {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  line-height: 1;
}

.trips-head {
  display: block;
  max-width: 780px;
  margin-bottom: 24px;
}

.trips-head h2 {
  max-width: 780px;
}

.trips-section {
  padding-bottom: 78px;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trip-card,
.trip-grid article {
  display: block;
  min-height: 270px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trip-card:focus-visible,
.trip-grid article:hover {
  border-color: rgba(210, 174, 139, 0.66);
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(25, 26, 24, 0.14);
}

.trip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(25, 26, 24, 0.14);
}

.trip-grid h3 {
  min-height: 64px;
  margin: 30px 0 12px;
  font-size: 25px;
}

.trip-grid p {
  color: var(--muted);
}

.trip-grid small {
  display: inline-flex;
  margin-top: 14px;
  color: var(--black);
  font-weight: 900;
}

.trip-detail-page .site-header {
  position: sticky;
}

.trip-hero,
.trip-detail-layout,
.route-map-section,
.trip-photo-strip {
  width: var(--page);
  margin: 0 auto;
}

.trip-hero {
  padding: 78px 0 38px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trip-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.92;
}

.trip-hero > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
}

.trip-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.trip-facts span {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.82);
  color: var(--muted);
  box-shadow: 0 16px 50px rgba(25, 26, 24, 0.08);
}

.trip-facts strong {
  display: block;
  color: var(--black);
  font-size: 26px;
  line-height: 1;
}

.trip-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 14px;
  align-items: start;
  padding-top: 34px;
}

.route-copy,
.route-panel,
.route-map,
.trip-photos figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 16px 50px rgba(25, 26, 24, 0.08);
}

.route-copy {
  padding: 34px;
}

.route-copy h2,
.route-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
}

.route-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.route-panel {
  padding: 28px;
}

.route-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.route-panel dl > div {
  padding-top: 14px;
  border-top: 1px solid rgba(25, 26, 24, 0.1);
}

.route-map-section,
.trip-photo-strip {
  padding-top: 74px;
}

.route-map {
  overflow: hidden;
}

.route-map iframe {
  display: block;
  width: 100%;
  height: min(620px, 62vw);
  min-height: 360px;
  border: 0;
}

.trip-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 78px;
}

.trip-photos figure {
  overflow: hidden;
  margin: 0;
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.2), rgba(25, 26, 24, 0.42)),
    repeating-linear-gradient(135deg, rgba(25, 26, 24, 0.18) 0 18px, rgba(25, 26, 24, 0.08) 18px 36px),
    var(--muted);
}

.trip-photos figcaption {
  padding: 14px 16px 16px;
  color: var(--black);
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 14px;
  padding-bottom: 96px;
}

.contact-map {
  min-height: 440px;
  display: grid;
  align-content: end;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(25, 26, 24, 0.08), rgba(25, 26, 24, 0.72)),
    repeating-linear-gradient(135deg, #d7d0c4 0 16px, #c9c0b2 16px 32px);
  color: var(--paper);
}

.contact-map span {
  color: var(--sand-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-map strong {
  max-width: 360px;
  margin-top: 10px;
  font-size: 42px;
  line-height: 1;
}

.contact-copy {
  padding: 32px;
}

.contact-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(34px, 4vw, 58px);
}

dl,
dd {
  margin: 0;
}

dl {
  display: grid;
  gap: 16px;
}

dl div {
  padding-top: 16px;
  border-top: 1px solid rgba(25, 26, 24, 0.1);
}

dt {
  margin-bottom: 4px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  color: var(--black-2);
  font-weight: 740;
}

.site-footer {
  display: grid;
  width: var(--page);
  grid-template-columns: minmax(210px, 0.8fr) minmax(280px, 1.15fr) auto;
  gap: 22px;
  align-items: end;
  margin: 0 auto 32px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--paper);
}

.footer-brand img {
  width: 182px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-brand p {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.66);
}

.footer-contact {
  max-width: 560px;
}

.footer-contact-label {
  margin-bottom: 8px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact address {
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 17px;
  font-style: normal;
  font-weight: 840;
  line-height: 1.35;
}

.footer-gps {
  margin-bottom: 8px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.footer-contact p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 250, 241, 0.7);
  font-size: 13px;
  font-weight: 820;
}

@keyframes media-sweep {
  0%, 42% {
    transform: translateX(-120%);
  }
  70%, 100% {
    transform: translateX(120%);
  }
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(120, 212, 127, 0.5);
  }
  70%, 100% {
    box-shadow: 0 0 0 12px rgba(120, 212, 127, 0);
  }
}

@keyframes closed-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 100, 85, 0.45);
  }
  70%, 100% {
    box-shadow: 0 0 0 12px rgba(240, 100, 85, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  :root {
    --page: min(calc(100vw - 28px), 720px);
    --anchor-offset: 96px;
  }

  .site-header {
    display: block;
    gap: 8px;
    min-height: 82px;
    padding-inline: 10px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(255, 250, 241, 0.96);
    box-shadow: 0 22px 70px rgba(25, 26, 24, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 46px;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 14px;
  }

  .language-switcher {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    width: auto;
    gap: 2px;
    padding: 4px;
  }

  .language-switcher a {
    min-width: 28px;
    height: 30px;
    font-size: 10px;
  }

  .mobile-menu-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    display: inline-grid;
    transform: translateY(-50%);
  }

  .brand {
    width: 134px;
    height: 58px;
    padding: 8px 12px;
  }

  .hero {
    display: block;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }

  .hero-copy {
    padding: 30px 22px 24px;
  }

  h1 {
    max-width: 340px;
    font-size: clamp(32px, 9vw, 36px);
    overflow-wrap: break-word;
  }

  .live-panel {
    position: static;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    grid-template-columns: 1fr;
    margin: 0 14px 14px;
  }

  .live-card {
    color: var(--paper);
    min-height: 82px;
    padding: 13px;
    border-color: rgba(255, 250, 241, 0.12);
    background: rgba(25, 26, 24, 0.74);
    box-shadow: none;
  }

  .live-link:hover,
  .live-link:focus-visible {
    border-color: rgba(210, 174, 139, 0.48);
    background: rgba(25, 26, 24, 0.86);
    box-shadow: none;
  }

  .live-panel small {
    color: rgba(255, 250, 241, 0.62);
  }

  .live-panel .panel-kicker {
    color: var(--sand);
  }

  .section-head,
  .menu-layout,
  .food-gallery,
  .chef-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 72px;
  }

  .menu-section {
    padding-top: 32px;
  }

  .section-head {
    gap: 18px;
  }

  .section-head h2 {
    font-size: clamp(34px, 12vw, 54px);
  }

  .menu-note {
    position: static;
    grid-template-columns: 120px 1fr;
    align-items: center;
  }

  .menu-board {
    display: grid;
    grid-template-columns: 1fr;
    column-count: auto;
    gap: 12px;
  }

  .menu-category {
    min-height: auto;
    margin: 0;
    padding: 18px;
  }

  .menu-list li {
    display: flex;
    width: min(100%, calc(100vw - 64px));
    max-width: 100%;
    gap: 8px;
    align-items: baseline;
  }

  .menu-unit {
    flex: 0 0 64px;
    font-size: 11px;
  }

  .menu-item {
    flex: 0 1 auto;
    min-width: 0;
  }

  .menu-list strong {
    flex: 0 0 auto;
    margin-left: 4px;
    font-size: 13px;
  }

  .food-gallery-section {
    padding-top: 72px;
  }

  .gallery-card,
  .gallery-featured {
    min-height: auto;
  }

  .gallery-featured {
    grid-row: auto;
  }

  .gallery-photo,
  .gallery-featured .gallery-photo {
    min-height: 236px;
  }

  .gallery-card figcaption {
    padding: 16px;
  }

  .category-title {
    display: grid;
  }

  .category-title small {
    justify-self: start;
  }

  .chef-section {
    margin-top: 80px;
    padding: 22px;
  }

  .chef-portrait {
    aspect-ratio: 2 / 1;
  }

  .trip-grid {
    grid-template-columns: 1fr;
  }

  .trip-card,
  .trip-grid article {
    min-height: 210px;
  }

  .trip-grid h3 {
    min-height: auto;
    margin-top: 28px;
  }

  .trip-hero {
    padding-top: 48px;
  }

  .trip-facts,
  .trip-detail-layout,
  .trip-photos {
    grid-template-columns: 1fr;
  }

  .route-copy,
  .route-panel {
    padding: 22px;
  }

  .route-map iframe {
    height: 460px;
  }

  .contact-section {
    padding-bottom: 72px;
  }

  .contact-map {
    min-height: 330px;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 520px) {
  :root {
    --page: calc(100vw - 20px);
  }

  .site-header {
    gap: 6px;
    min-height: 74px;
    padding-inline: 8px;
  }

  .site-nav {
    right: 8px;
    left: 8px;
  }

  .language-switcher {
    right: 52px;
    gap: 1px;
    padding: 3px;
  }

  .language-switcher a {
    min-width: 24px;
    height: 28px;
    font-size: 9px;
  }

  .brand {
    width: 124px;
    height: 52px;
    padding: 7px 9px;
  }

  .mobile-menu-toggle {
    right: 8px;
    width: 38px;
    height: 38px;
  }

  .hero {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .hero-media {
    min-height: auto;
  }

  .hero-copy p:not(.eyebrow) {
    display: block;
    min-width: 0;
    width: min(100%, 320px);
    max-width: 320px;
    font-size: 16px;
  }

  .hero-copy {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    justify-content: space-between;
  }

  .trip-hero h1 {
    font-size: clamp(42px, 16vw, 62px);
  }

  .trip-facts span {
    min-height: 86px;
    padding: 14px;
  }

  .route-map iframe {
    min-height: 320px;
    height: 360px;
  }

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

  .menu-category {
    padding: 14px;
  }

  .category-title {
    margin-bottom: 12px;
  }

  .menu-list {
    gap: 7px;
  }

  .menu-list li {
    width: calc(100vw - 48px);
    max-width: 100%;
    gap: 7px;
    padding-bottom: 7px;
  }

  .menu-unit {
    flex-basis: 56px;
    font-size: 10px;
  }

  .menu-item-name,
  .menu-list strong {
    font-size: 12px;
  }

  .contact-copy,
  .site-footer {
    padding: 22px;
  }
}
