:root {
  --ink: #050403;
  --coal: #0b0907;
  --panel: #12100c;
  --panel-soft: #19140f;
  --gold: #f5aa13;
  --gold-bright: #ffd66b;
  --cream: #fff4d7;
  --paper: #ede0c2;
  --muted: #b6aa91;
  --red: #8f261c;
  --olive: #52603a;
  --line: rgba(245, 170, 19, 0.3);
  --white-line: rgba(255, 244, 215, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 8px;
  --site-pad: clamp(18px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--ink);
  color: var(--cream);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.11;
  mix-blend-mode: screen;
  background-image:
    repeating-radial-gradient(circle at 19% 23%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 9px);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 3px;
  background: rgba(255, 244, 215, 0.08);
}

.progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--red));
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  top: 16px;
  left: var(--site-pad);
  right: var(--site-pad);
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 244, 215, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 4, 3, 0.56);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition:
    transform 280ms ease,
    background 280ms ease,
    border-color 280ms ease;
}

.site-header.is-scrolled {
  transform: translateY(-4px);
  background: rgba(5, 4, 3, 0.82);
  border-color: rgba(245, 170, 19, 0.4);
}

.brand,
.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img,
.site-footer .footer-brand img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 16px rgba(245, 170, 19, 0.35));
}

.brand span,
.site-footer .footer-brand span {
  letter-spacing: 0;
}

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

.site-header nav a,
.nav-cta {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  right: 14px;
  bottom: 9px;
  left: 14px;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-cta {
  justify-self: end;
  border: 1px solid var(--line);
  background: rgba(245, 170, 19, 0.1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.header-actions .nav-cta {
  justify-self: unset;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(255, 244, 215, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 244, 215, 0.06);
}

.language-switch button {
  display: inline-flex;
  min-width: 34px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 1000;
}

.language-switch button.is-active {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px var(--site-pad) 92px;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-scrim,
.visit-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.visit-media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.08);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.72) 38%, rgba(5, 4, 3, 0.28)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.98), rgba(5, 4, 3, 0.18) 42%, rgba(5, 4, 3, 0.7));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 980px;
}

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

.hero-title,
.section-heading h2,
.combo-copy h2,
.gallery-copy h2,
.visit h2,
.statement p {
  margin: 0;
  font-family:
    "Bebas Neue",
    Impact,
    "Arial Black",
    sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(72px, 14vw, 190px);
  line-height: 0.78;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.7);
}

.hero-title span:last-child {
  color: var(--gold);
  text-shadow:
    0 2px 0 rgba(255, 244, 215, 0.08),
    0 22px 70px rgba(245, 170, 19, 0.22);
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--paper);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 0 22px;
  border: 1px solid rgba(255, 244, 215, 0.18);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transform: translate3d(0, 0, 0);
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.button::after {
  margin-left: 12px;
  content: ">";
  transition: transform 220ms ease;
}

.button:hover::after {
  transform: translateX(4px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(245, 170, 19, 0.24);
}

.button-ghost {
  background: rgba(255, 244, 215, 0.06);
  color: var(--cream);
}

.button-ghost:hover {
  border-color: var(--gold);
}

.hero-logo {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 82px);
  bottom: clamp(78px, 8vw, 130px);
  width: clamp(150px, 26vw, 360px);
  max-height: 46svh;
  border-radius: 50%;
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.6));
  opacity: 0.95;
  animation: badgeFloat 6s ease-in-out infinite;
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid rgba(255, 244, 215, 0.14);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  background: var(--gold);
  color: var(--ink);
}

.hero-ticker div {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: marquee 22s linear infinite;
}

.hero-ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 43px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.statement {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 5vw, 70px);
  align-items: center;
  padding: clamp(30px, 6vw, 78px) var(--site-pad);
  background:
    linear-gradient(90deg, rgba(143, 38, 28, 0.18), transparent 34%),
    var(--coal);
  border-bottom: 1px solid var(--white-line);
}

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

.statement p {
  max-width: 980px;
  color: var(--cream);
  font-size: clamp(38px, 7vw, 110px);
  line-height: 0.9;
}

.section {
  padding: clamp(78px, 10vw, 148px) var(--site-pad);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.section-heading h2,
.combo-copy h2,
.gallery-copy h2,
.visit h2 {
  max-width: 980px;
  font-size: clamp(44px, 8vw, 118px);
  line-height: 0.9;
}

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

.feature-card,
.menu-card,
.combo-card,
.gallery-item,
.menu-poster,
.kitchen-hero,
.kitchen-note,
.food-shot,
.crew-card,
.menu-product,
.product-card {
  position: relative;
  margin: 0;
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 244, 215, 0.08), rgba(255, 244, 215, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.feature-card {
  min-height: 300px;
  padding: clamp(22px, 3vw, 34px);
}

.feature-card::before,
.menu-card::before,
.combo-card::before,
.kitchen-note::before,
.crew-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
  opacity: 0.86;
}

.feature-number {
  display: inline-block;
  margin-bottom: 86px;
  color: var(--gold);
  font-family:
    "Bebas Neue",
    Impact,
    sans-serif;
  font-size: 46px;
}

.feature-card h3,
.menu-card h3 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 0.94;
  text-transform: uppercase;
}

.feature-card p,
.menu-card p,
.visit p,
.menu-poster figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.menu-section {
  background:
    linear-gradient(180deg, transparent, rgba(245, 170, 19, 0.055) 34%, transparent),
    var(--ink);
}

.menu-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
}

.menu-poster {
  position: sticky;
  top: 110px;
  overflow: hidden;
  padding: 10px;
}

.menu-poster img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  border-radius: 6px;
}

.menu-poster figcaption {
  padding: 14px 4px 2px;
  font-size: 12px;
  text-transform: uppercase;
}

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

.menu-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  min-height: 154px;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
}

.menu-card:hover,
.feature-card:hover,
.combo-card:hover,
.kitchen-note:hover,
.crew-card:hover,
.menu-product:hover,
.product-card:hover,
.food-shot:hover {
  border-color: rgba(245, 170, 19, 0.48);
}

.menu-type {
  margin: 0 0 11px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card strong,
.combo-card strong {
  color: var(--gold);
  font-family:
    "Bebas Neue",
    Impact,
    sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 0.9;
  white-space: nowrap;
}

.menu-card-gold {
  background:
    linear-gradient(135deg, rgba(245, 170, 19, 0.22), rgba(143, 38, 28, 0.16)),
    var(--panel);
}

.kitchen-section {
  background:
    linear-gradient(180deg, rgba(245, 170, 19, 0.08), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(143, 38, 28, 0.22), transparent 32%),
    var(--coal);
  border-block: 1px solid var(--white-line);
}

.kitchen-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 14px;
  align-items: stretch;
}

.kitchen-hero {
  height: 680px;
  overflow: hidden;
}

.kitchen-hero img,
.food-shot img,
.crew-card img,
.menu-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kitchen-hero figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 244, 215, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 4, 3, 0.68);
  backdrop-filter: blur(14px);
}

.kitchen-hero figcaption span,
.menu-product figcaption {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.kitchen-hero figcaption strong {
  max-width: 620px;
  color: var(--cream);
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.08;
  text-transform: uppercase;
}

.kitchen-notes {
  display: grid;
  gap: 12px;
}

.kitchen-note {
  display: grid;
  min-height: 218px;
  align-content: end;
  gap: 12px;
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
}

.kitchen-note span {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(255, 244, 215, 0.13);
  font-family:
    "Bebas Neue",
    Impact,
    sans-serif;
  font-size: 76px;
  line-height: 1;
}

.kitchen-note h3,
.crew-card h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.9;
  text-transform: uppercase;
}

.kitchen-note p,
.crew-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.food-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.food-shot {
  display: grid;
  place-items: center;
  height: 360px;
  overflow: hidden;
  padding: clamp(14px, 2vw, 26px);
}

.food-shot:nth-child(2) {
  height: 360px;
}

.crew-section {
  background:
    linear-gradient(90deg, rgba(82, 96, 58, 0.12), transparent 42%),
    var(--ink);
}

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

.crew-card {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  overflow: hidden;
}

.crew-card img {
  aspect-ratio: 1;
}

.crew-card div {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
}

.crew-card a {
  width: fit-content;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.crew-card a:hover {
  color: var(--cream);
}

.menu-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin-top: clamp(26px, 4vw, 54px);
}

.menu-product {
  display: grid;
  place-items: center;
  height: 390px;
  overflow: hidden;
  padding: 18px 18px 76px;
}

.food-shot img,
.menu-product img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.food-shot img {
  max-height: 100%;
}

.menu-product img {
  position: absolute;
  inset: 18px 18px 78px;
  width: calc(100% - 36px);
  height: calc(100% - 96px);
  max-width: none;
  max-height: none;
}

.menu-product figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 170, 19, 0.34);
  border-radius: var(--radius);
  background: rgba(5, 4, 3, 0.72);
  backdrop-filter: blur(12px);
}

.product-catalog {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
  margin-top: clamp(34px, 5vw, 66px);
}

.product-group {
  display: grid;
  gap: 18px;
}

.product-group-head {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.product-group-head .eyebrow {
  margin: 0;
}

.product-group-head h3 {
  max-width: 520px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(24px, 3vw, 42px);
  text-align: right;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.product-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.product-card {
  display: grid;
  min-height: 520px;
  grid-template-rows: 310px 1fr;
  overflow: hidden;
}

.product-card::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: auto 18px 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 170, 19, 0.42), transparent);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  padding: clamp(16px, 2vw, 26px);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.52));
}

.product-card div {
  display: grid;
  gap: 9px;
  min-height: 190px;
  padding: 18px;
  border-top: 1px solid rgba(245, 170, 19, 0.16);
  background: linear-gradient(180deg, rgba(10, 8, 5, 0.58), rgba(4, 4, 3, 0.9));
}

.product-card h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 0.95;
}

.product-card p {
  margin: 0;
  color: rgba(255, 247, 219, 0.72);
}

.product-card strong {
  align-self: end;
  justify-self: start;
  border: 1px solid rgba(245, 170, 19, 0.42);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(245, 170, 19, 0.1);
  color: var(--gold-bright);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

.product-card-drink {
  min-height: 560px;
  grid-template-rows: 360px 1fr;
}

.product-card-drink img {
  min-height: 0;
  padding: 20px 30px 10px;
}

.combo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: center;
  padding: clamp(62px, 8vw, 112px) var(--site-pad);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(245, 170, 19, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(82, 96, 58, 0.17), transparent),
    var(--panel-soft);
}

.combo-grid {
  display: grid;
  gap: 12px;
}

.combo-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
}

.combo-card span {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 1000;
  text-transform: uppercase;
}

.gallery-section {
  padding-bottom: clamp(60px, 9vw, 120px);
}

.gallery-copy {
  max-width: 920px;
  margin-bottom: clamp(30px, 5vw, 60px);
}

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

.gallery-item {
  grid-column: span 5;
  height: 560px;
  overflow: hidden;
  margin: 0;
}

.gallery-wide {
  grid-column: span 7;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.visit {
  position: relative;
  display: grid;
  min-height: 78svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) var(--site-pad);
  border-top: 1px solid var(--line);
}

.visit::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.68)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.98), rgba(5, 4, 3, 0.08));
  content: "";
}

.visit-content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  justify-self: start;
}

.visit p {
  max-width: 640px;
  margin-top: 22px;
  color: var(--paper);
  font-size: clamp(17px, 2vw, 22px);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}

.contact-item {
  display: grid;
  gap: 7px;
  min-height: 94px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 244, 215, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 4, 3, 0.54);
  backdrop-filter: blur(12px);
}

.contact-item span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  color: var(--cream);
  font-size: 14px;
  line-height: 1.3;
}

.contact-item[href]:hover {
  border-color: rgba(245, 170, 19, 0.55);
  background: rgba(245, 170, 19, 0.1);
}

.site-footer {
  padding: clamp(42px, 6vw, 78px) var(--site-pad) 24px;
  border-top: 1px solid var(--white-line);
  background:
    linear-gradient(90deg, rgba(245, 170, 19, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 244, 215, 0.04), transparent),
    #030302;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(180px, 0.85fr));
  gap: clamp(28px, 5vw, 70px);
}

.footer-about {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 380px;
}

.footer-about p,
.footer-column p {
  margin: 0;
  color: var(--paper);
  font-size: 15px;
  line-height: 1.55;
  text-transform: none;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  width: fit-content;
  color: var(--paper);
  overflow-wrap: anywhere;
}

.footer-column a::before {
  margin-right: 10px;
  color: var(--gold);
  content: ">";
}

.footer-column a:hover {
  color: var(--gold-bright);
}

.route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.route-links a,
.route-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 244, 215, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 244, 215, 0.06);
}

.route-links a {
  min-height: 48px;
  padding: 6px 12px 6px 6px;
}

.footer-column .route-links a::before,
.route-card::before {
  content: none;
}

.route-links a:hover,
.route-card:hover {
  border-color: rgba(245, 170, 19, 0.55);
  background: rgba(245, 170, 19, 0.1);
}

.route-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
}

.route-google {
  background: linear-gradient(135deg, #4285f4, #34a853 48%, #fbbc05 49%, #ea4335);
}

.route-waze {
  background: linear-gradient(135deg, #40c8f4, #1675a8);
}

.route-moovit {
  background: linear-gradient(135deg, #ff7a18, #e94c1b);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 62px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 244, 215, 0.1);
}

.contact-page {
  background:
    radial-gradient(circle at 82% 16%, rgba(245, 170, 19, 0.13), transparent 30%),
    var(--ink);
}

.contact-hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  place-items: end start;
  overflow: hidden;
  padding: 150px var(--site-pad) clamp(62px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}

.contact-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.96), rgba(5, 4, 3, 0.64) 48%, rgba(5, 4, 3, 0.24)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.98), rgba(5, 4, 3, 0.14) 56%);
  content: "";
}

.contact-hero-media {
  position: absolute;
  inset: 0;
}

.contact-hero-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.08);
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.contact-hero h1,
.contact-form h2,
.contact-card h2,
.route-card h3 {
  margin: 0;
  font-family:
    "Bebas Neue",
    Impact,
    "Arial Black",
    sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 960px;
  font-size: clamp(60px, 11vw, 150px);
  line-height: 0.86;
}

.contact-hero-copy > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--paper);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(245, 170, 19, 0.08), transparent 36%),
    var(--coal);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 14px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 12px;
}

.contact-card,
.contact-form,
.route-card,
.legal-card,
.legal-copy {
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 244, 215, 0.08), rgba(255, 244, 215, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  gap: 12px;
  min-height: 180px;
  align-content: end;
  padding: clamp(20px, 3vw, 30px);
}

.contact-card span,
.contact-form label span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card h2,
.contact-form h2 {
  color: var(--cream);
  font-size: clamp(30px, 5vw, 60px);
  line-height: 0.92;
}

.contact-card p {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-card a {
  width: fit-content;
  color: var(--paper);
}

.contact-card a:hover {
  color: var(--gold-bright);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 42px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 244, 215, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 4, 3, 0.52);
  color: var(--cream);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  outline: none;
  padding: 15px 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(245, 170, 19, 0.65);
  box-shadow: 0 0 0 3px rgba(245, 170, 19, 0.12);
}

.route-section {
  background:
    linear-gradient(90deg, rgba(143, 38, 28, 0.15), transparent 42%),
    var(--ink);
}

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

.route-card {
  min-height: 190px;
  padding: clamp(20px, 3vw, 28px);
}

.route-card .route-icon {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
  font-size: 20px;
}

.route-card h3 {
  color: var(--cream);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.9;
}

.route-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: none;
}

.contact-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  min-height: 86svh;
  overflow: hidden;
  padding: 156px var(--site-pad) clamp(58px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 170, 19, 0.18), transparent 30%),
    radial-gradient(circle at 12% 68%, rgba(143, 38, 28, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 244, 215, 0.035), transparent 38%),
    var(--ink);
}

.contact-top::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 244, 215, 0.03) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(255, 244, 215, 0.026) 1px, transparent 1px) 0 0 / 72px 72px;
  content: "";
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.contact-top-copy,
.contact-top-card,
.contact-info-panel,
.contact-form-panel,
.contact-method,
.contact-photo-card,
.contact-strip-copy {
  position: relative;
  z-index: 1;
}

.contact-top-copy {
  max-width: 940px;
}

.contact-top h1,
.contact-top-card h2,
.contact-info-panel h2,
.contact-method h3,
.contact-strip-copy h2 {
  margin: 0;
  font-family:
    "Bebas Neue",
    Impact,
    "Arial Black",
    sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-top h1 {
  max-width: 960px;
  font-size: clamp(68px, 13vw, 174px);
  line-height: 0.78;
}

.contact-top-copy > p:last-of-type,
.contact-info-panel > p:not(.eyebrow),
.contact-strip-copy p {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--paper);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

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

.contact-top-card,
.contact-info-panel,
.contact-method,
.contact-photo-card {
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 244, 215, 0.08), rgba(255, 244, 215, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
}

.contact-top-card {
  min-height: 560px;
}

.contact-top-card::before,
.contact-photo-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(5, 4, 3, 0.96), rgba(5, 4, 3, 0.1) 62%),
    linear-gradient(90deg, rgba(5, 4, 3, 0.52), transparent);
  content: "";
}

.contact-top-card img,
.contact-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-top-card img {
  position: absolute;
  inset: 0;
}

.contact-top-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-top-card span,
.contact-facts span,
.contact-method span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-top-card h2 {
  color: var(--cream);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.9;
}

.contact-top-card p {
  margin: 0;
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  text-transform: uppercase;
}

.contact-command-section {
  background:
    linear-gradient(180deg, rgba(245, 170, 19, 0.08), transparent 34%),
    var(--coal);
}

.contact-command-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: 14px;
  align-items: stretch;
}

.contact-info-panel {
  display: grid;
  min-height: 690px;
  align-content: end;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(0deg, rgba(5, 4, 3, 0.82), rgba(5, 4, 3, 0.3)),
    linear-gradient(135deg, rgba(245, 170, 19, 0.18), rgba(143, 38, 28, 0.14)),
    var(--panel);
}

.contact-info-panel::before,
.contact-method::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
  opacity: 0.86;
}

.contact-info-panel h2 {
  max-width: 680px;
  color: var(--cream);
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.86;
}

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

.contact-facts div {
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: center;
  border: 1px solid rgba(255, 244, 215, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 4, 3, 0.44);
  padding: 18px;
}

.contact-facts strong {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-route-links {
  margin-top: 18px;
}

.contact-route-links a {
  flex: 1 1 150px;
  min-height: 58px;
}

.contact-form-panel {
  min-height: 690px;
}

.contact-methods-section {
  background:
    linear-gradient(90deg, rgba(82, 96, 58, 0.12), transparent 38%),
    var(--ink);
}

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

.contact-method {
  display: grid;
  min-height: 280px;
  align-content: end;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
}

.contact-method:hover,
.contact-photo-card:hover,
.contact-top-card:hover,
.contact-info-panel:hover {
  border-color: rgba(245, 170, 19, 0.48);
}

.contact-method h3 {
  color: var(--cream);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 0.9;
}

.contact-method p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-method[href]:hover p {
  color: var(--gold-bright);
}

.contact-food-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.74fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 0 var(--site-pad) clamp(78px, 10vw, 148px);
  background:
    linear-gradient(180deg, transparent, rgba(245, 170, 19, 0.055)),
    var(--ink);
}

.contact-photo-card {
  height: 560px;
  margin: 0;
}

.contact-strip-copy {
  max-width: 560px;
}

.contact-strip-copy h2 {
  color: var(--cream);
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.86;
}

.contact-strip-copy .button {
  margin-top: 28px;
}

.contact-reference {
  background: #08090d;
}

.contact-talk-section {
  position: relative;
  overflow: hidden;
  padding: 136px var(--site-pad) 74px;
  border-bottom: 1px solid rgba(255, 244, 215, 0.08);
  background:
    radial-gradient(circle at 70% 22%, rgba(245, 170, 19, 0.12), transparent 26%),
    linear-gradient(180deg, #0d0e13 0%, #050506 100%);
}

.contact-talk-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 72px 72px;
  content: "";
  opacity: 0.42;
}

.contact-talk-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 384px) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 98px);
  width: min(100%, 1120px);
  margin: 0 auto;
  align-items: center;
}

.reference-form {
  display: grid;
  gap: 13px;
  min-height: 616px;
  padding: 24px 30px 26px;
  border-radius: var(--radius);
  background: #fbfbfb;
  color: #050506;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.reference-form img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.reference-form h1 {
  margin: -4px 0 4px;
  color: #050506;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: 0;
}

.reference-form label {
  display: grid;
  gap: 6px;
  margin: 0;
}

.reference-form label span {
  color: #050506;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
}

.reference-form input,
.reference-form textarea {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: #ececec;
  color: #050506;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  outline: none;
  padding: 13px 14px;
}

.reference-form textarea {
  min-height: 86px;
  resize: vertical;
}

.reference-form input:focus,
.reference-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(245, 170, 19, 0.52);
}

.reference-form .form-check {
  grid-template-columns: 14px 1fr;
  gap: 8px;
  align-items: start;
}

.reference-form .form-check input {
  width: 12px;
  height: 12px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--gold);
}

.reference-form .form-check span {
  max-width: 220px;
  font-size: 8px;
  line-height: 1.3;
}

.reference-form .form-check a {
  color: #000;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.reference-form button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 1000;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.reference-form button:hover {
  background: #2a1b04;
  transform: translateY(-1px);
}

.talk-content {
  display: grid;
  gap: 36px;
  color: #fff;
}

.talk-copy h2,
.directions-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(70px, 9vw, 112px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.9;
}

.talk-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #f5f3eb;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.05;
}

.talk-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.talk-steps article {
  display: grid;
  gap: 8px;
}

.talk-steps span {
  color: var(--gold-bright);
  font-size: 16px;
  font-weight: 1000;
}

.talk-steps h3 {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 1000;
}

.talk-steps p {
  max-width: 260px;
  margin: 0;
  color: #d8d4ca;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
}

.crew-slider {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.talk-contacts {
  display: flex;
  gap: 18px;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.talk-contacts::-webkit-scrollbar {
  display: none;
}

.talk-contacts a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 13px;
  align-items: center;
  flex: 0 0 calc((100% - 18px) / 2);
  min-height: 96px;
  padding: 12px;
  border-radius: var(--radius);
  background: #fbfbfb;
  color: #09090a;
  box-shadow: 0 18px 46px rgba(255, 244, 215, 0.11);
  scroll-snap-align: start;
}

.talk-contacts a:hover {
  transform: translateY(-2px);
}

.talk-contacts img {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(245, 170, 19, 0.72);
  border-radius: var(--radius);
  object-fit: cover;
}

.talk-contacts span {
  display: grid;
  min-width: 0;
}

.talk-contacts small {
  color: #6b6354;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.talk-contacts strong {
  color: #050506;
  font-size: 17px;
  font-weight: 1000;
  line-height: 1.1;
}

.talk-contacts em {
  color: #312b20;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.crew-slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.crew-slider-controls button,
.crew-slider-controls span {
  display: inline-flex;
  min-width: 36px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 244, 215, 0.18);
  border-radius: 999px;
  background: rgba(255, 244, 215, 0.06);
  color: var(--cream);
  font-size: 11px;
  font-weight: 1000;
}

.crew-slider-controls button {
  cursor: pointer;
}

.crew-slider-controls button:hover {
  border-color: rgba(245, 170, 19, 0.7);
  background: rgba(245, 170, 19, 0.14);
}

.reference-directions {
  display: grid;
  justify-items: center;
  padding: 42px var(--site-pad) 90px;
  border-top: 1px solid rgba(245, 170, 19, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 170, 19, 0.09), transparent 32%),
    #0b0d14;
}

.directions-head {
  display: grid;
  justify-items: center;
  text-align: center;
}

.directions-head p {
  margin: 0 0 12px;
  padding: 4px 9px;
  border: 1px solid rgba(245, 170, 19, 0.42);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
}

.directions-head h2 {
  font-size: clamp(38px, 5vw, 52px);
  line-height: 1;
}

.directions-head span {
  max-width: 690px;
  margin-top: 18px;
  color: #d8d4ca;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.address-badge {
  display: inline-flex;
  width: min(100%, 730px);
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  border: 1px solid rgba(245, 170, 19, 0.58);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 244, 215, 0.08), rgba(245, 170, 19, 0.08));
}

.address-badge span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #050506;
  font-size: 10px;
  font-weight: 1000;
}

.address-badge strong {
  color: #fff4d7;
  font-size: 14px;
  line-height: 1.3;
}

.direction-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 940px);
  margin-top: 20px;
}

.direction-route-grid a {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-areas:
    "icon title"
    "icon desc";
  column-gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.direction-route-grid a:hover {
  border-color: rgba(245, 170, 19, 0.55);
  background: rgba(245, 170, 19, 0.1);
}

.direction-route-grid .route-icon {
  grid-area: icon;
}

.direction-route-grid strong {
  grid-area: title;
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
}

.direction-route-grid small {
  grid-area: desc;
  color: #d8d4ca;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.reference-map {
  position: relative;
  width: min(100%, 940px);
  height: 360px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #181a20;
}

.reference-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.82) brightness(0.72);
}

.reference-map a {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  background: #050506;
  color: #fff;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 1000;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.legal-hero .contact-hero-media img {
  object-position: center;
}

.legal-section {
  background:
    linear-gradient(180deg, rgba(245, 170, 19, 0.08), transparent 36%),
    var(--coal);
}

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

.legal-card {
  display: grid;
  gap: 12px;
  min-height: 280px;
  align-content: end;
  padding: clamp(20px, 3vw, 30px);
}

.legal-card span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-card h2,
.legal-copy h2 {
  margin: 0;
  color: var(--cream);
  font-family:
    "Bebas Neue",
    Impact,
    "Arial Black",
    sans-serif;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.legal-card p,
.legal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.legal-card a,
.legal-copy a {
  color: var(--gold-bright);
}

.legal-copy {
  display: grid;
  gap: 18px;
  margin-top: 14px;
  padding: clamp(22px, 4vw, 42px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay, 0ms),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.magnetic {
  will-change: transform;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

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

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-actions,
  .nav-cta {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 2px;
    scrollbar-width: none;
  }

  .site-header nav::-webkit-scrollbar {
    display: none;
  }

  .site-header nav a {
    min-height: 34px;
    flex: 0 0 auto;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 132px;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(5, 4, 3, 0.98), rgba(5, 4, 3, 0.28) 52%, rgba(5, 4, 3, 0.74)),
      linear-gradient(90deg, rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.42));
  }

  .hero-logo {
    right: 18px;
    bottom: 90px;
    width: min(34vw, 210px);
    opacity: 0.7;
  }

  .statement,
  .section-heading,
  .menu-stage,
  .combo-band,
  .gallery,
  .kitchen-showcase,
  .food-rail,
  .crew-grid,
  .menu-products,
  .footer-grid,
  .contact-top,
  .contact-layout,
  .contact-command-grid,
  .contact-method-grid,
  .contact-food-strip,
  .contact-talk-wrap,
  .talk-steps,
  .talk-contacts,
  .direction-route-grid,
  .route-card-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-wide {
    grid-column: 1;
  }

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

  .feature-card {
    min-height: 230px;
  }

  .feature-number {
    margin-bottom: 42px;
  }

  .menu-poster {
    position: relative;
    top: auto;
  }

  .menu-poster img {
    height: 640px;
  }

  .kitchen-hero {
    height: 560px;
  }

  .food-shot,
  .food-shot:nth-child(2),
  .menu-product {
    height: 420px;
  }

  .gallery-item,
  .gallery-item:not(.gallery-wide) {
    height: 430px;
  }

  .contact-top {
    min-height: auto;
  }

  .contact-top-card,
  .contact-photo-card {
    min-height: 520px;
  }

  .contact-info-panel,
  .contact-form-panel {
    min-height: auto;
  }

  .contact-talk-section {
    padding-top: 154px;
  }

  .contact-talk-wrap {
    width: min(100%, 720px);
    gap: 42px;
  }

  .reference-form {
    min-height: auto;
    order: 1;
  }

  .talk-content {
    order: 2;
  }

  .talk-copy h2 {
    font-size: clamp(64px, 16vw, 104px);
  }

  .talk-contacts a {
    flex-basis: min(420px, 86%);
    width: min(100%, 420px);
  }

  .direction-route-grid {
    width: min(100%, 620px);
  }

  .product-group-head {
    align-items: start;
    flex-direction: column;
  }

  .product-group-head h3 {
    max-width: none;
    text-align: left;
  }

  .product-card {
    min-height: 500px;
    grid-template-rows: 295px 1fr;
  }

  .product-card-drink {
    min-height: 540px;
    grid-template-rows: 350px 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --site-pad: 16px;
  }

  .site-header {
    top: 10px;
    min-height: 58px;
    gap: 10px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-switch {
    min-height: 36px;
    padding: 3px;
  }

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

  .site-header nav {
    gap: 4px;
  }

  .site-header nav a {
    min-height: 30px;
    padding: 0 5px;
    font-size: 10px;
  }

  .hero {
    min-height: 88svh;
    padding: 154px var(--site-pad) 82px;
  }

  .hero-media img {
    object-position: 58% top;
  }

  .hero-title {
    font-size: clamp(68px, 21vw, 104px);
  }

  .hero-logo {
    top: 86px;
    right: 16px;
    bottom: auto;
    width: 118px;
    opacity: 0.92;
  }

  .hero-copy {
    max-width: 88%;
  }

  .button {
    width: 100%;
  }

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

  .statement p {
    font-size: clamp(40px, 15vw, 74px);
  }

  .section {
    padding-block: 68px;
  }

  .menu-card,
  .combo-card {
    grid-template-columns: 1fr;
  }

  .menu-poster img {
    height: 520px;
  }

  .kitchen-hero {
    height: 460px;
  }

  .kitchen-hero figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .kitchen-note {
    min-height: 190px;
  }

  .food-shot,
  .food-shot:nth-child(2),
  .menu-product {
    height: 340px;
  }

  .crew-card {
    grid-template-rows: auto auto;
  }

  .crew-card img {
    aspect-ratio: 1;
  }

  .gallery-item,
  .gallery-item:not(.gallery-wide) {
    height: 360px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-links,
  .route-links a {
    width: 100%;
  }

  .contact-hero {
    min-height: 82svh;
    padding: 154px var(--site-pad) 58px;
  }

  .contact-top {
    padding: 154px var(--site-pad) 58px;
  }

  .contact-talk-section {
    padding: 142px var(--site-pad) 52px;
  }

  .reference-form {
    padding: 20px;
  }

  .talk-content {
    gap: 28px;
  }

  .talk-copy h2 {
    font-size: clamp(62px, 19vw, 82px);
  }

  .talk-copy p {
    font-size: 18px;
    line-height: 1.12;
  }

  .talk-steps {
    gap: 18px;
    padding-top: 24px;
  }

  .talk-contacts a {
    grid-template-columns: 58px 1fr;
    flex-basis: 100%;
  }

  .talk-contacts img {
    width: 58px;
    height: 58px;
  }

  .reference-directions {
    padding: 36px var(--site-pad) 68px;
  }

  .address-badge {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
    padding: 14px;
  }

  .direction-route-grid a {
    min-height: 62px;
  }

  .reference-map {
    height: 330px;
  }

  .contact-top h1 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .contact-top-card,
  .contact-photo-card {
    min-height: 380px;
  }

  .contact-facts {
    grid-template-columns: 1fr;
  }

  .contact-method {
    min-height: 220px;
  }

  .contact-food-strip {
    padding-bottom: 68px;
  }

  .contact-hero h1 {
    font-size: clamp(58px, 17vw, 82px);
  }

  .contact-form .button {
    width: 100%;
  }

  .route-card {
    align-items: flex-start;
  }

  .product-catalog {
    gap: 38px;
  }

  .product-grid,
  .product-grid-compact,
  .product-grid-drinks {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 460px;
    grid-template-rows: 235px 1fr;
  }

  .product-card img {
    min-height: 0;
    padding: 14px;
  }

  .product-card div {
    min-height: 178px;
    padding: 16px;
  }

  .product-card-drink {
    min-height: 530px;
    grid-template-rows: 330px 1fr;
  }

  .product-card-drink img {
    min-height: 0;
    padding: 16px 28px 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
