:root {
  --cream: #f5efe2;
  --cream-2: #efe4cf;
  --paper: #faf6ec;
  --ink: #0c141a;
  --ink-2: #101d26;
  --ink-3: #16262f;
  --ink-on-cream: #211d17;
  --muted-cream: rgba(245, 239, 226, 0.72);
  --muted-ink: rgba(33, 29, 23, 0.68);
  --gold: #c6a35a;
  --gold-soft: #d8bd86;
  --saffron: #d97822;
  --red: #b4282e;
  --teal: #78b8ba;
  --line-light: rgba(245, 239, 226, 0.18);
  --line-dark: rgba(33, 29, 23, 0.16);
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sc: "Playfair Display SC", Georgia, "Times New Roman", serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 22px 70px -32px rgba(0, 0, 0, 0.66);
  --shadow-gold: 0 20px 48px -26px rgba(198, 163, 90, 0.7);
  --radius: 4px;
  --maxw: 1240px;
  --gut: clamp(1.1rem, 4vw, 2.75rem);
  --section-y: clamp(4.6rem, 10vw, 8rem);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--cream);
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(12, 20, 26, 0.98) 0%, rgba(16, 29, 38, 0.98) 52%, rgba(12, 20, 26, 1) 100%),
    var(--ink);
  font-family: var(--font-body);
  font-size: 1.075rem;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--cream);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 0.25s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--maxw), calc(100% - (var(--gut) * 2)));
  margin-inline: auto;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

.preloader.is-done {
  visibility: hidden;
  opacity: 0;
}

.preloader__mark {
  display: grid;
  gap: 0.35rem;
  text-align: center;
}

.preloader__mark span {
  font-family: var(--font-sc);
  font-size: 4.4rem;
  line-height: 0.95;
}

.preloader__mark small {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.preloader__bar {
  position: absolute;
  bottom: clamp(2rem, 7vh, 4rem);
  width: min(18rem, 70vw);
  height: 1px;
  overflow: hidden;
  background: rgba(245, 239, 226, 0.2);
}

.preloader__bar i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform-origin: left center;
  animation: loadLine 1.25s var(--ease-out) forwards;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1.05rem var(--gut);
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}

.site-header.is-stuck,
.site-header.nav-open {
  padding-block: 0.72rem;
  background: rgba(12, 20, 26, 0.86);
  border-bottom-color: rgba(245, 239, 226, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0.12rem;
  line-height: 1;
}

.brand span {
  font-family: var(--font-sc);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
}

.brand small {
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.7rem);
}

.site-nav a,
.phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(245, 239, 226, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: color 0.28s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.phone:hover,
.phone:focus-visible {
  color: var(--cream);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: var(--cream);
  background: rgba(245, 239, 226, 0.08);
  border: 1px solid rgba(245, 239, 226, 0.18);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.84rem 1.2rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(245, 239, 226, 0.35);
  border-radius: 999px;
  box-shadow: 0 18px 42px -26px rgba(245, 239, 226, 0.9);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.button:hover,
.button:focus-visible,
.order-link:hover,
.order-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -30px rgba(245, 239, 226, 0.95);
}

.button--gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: rgba(198, 163, 90, 0.75);
  box-shadow: var(--shadow-gold);
}

.button--glass {
  color: var(--cream);
  background: rgba(245, 239, 226, 0.08);
  border-color: rgba(245, 239, 226, 0.26);
  backdrop-filter: blur(16px);
}

.icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  padding: 6.4rem var(--gut) 2.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__slide,
.hero__slide img,
.hero__scrim,
.hero__grain {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -4;
}

.hero__slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1.45s var(--ease);
}

.hero__slide.is-current {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.08) contrast(1.08) brightness(0.92);
  transform: scale(1.05);
  animation: heroDrift 11s ease-out forwards;
}

.hero__slide--two img {
  object-position: 62% 44%;
  filter: saturate(1.02) contrast(1.14) brightness(0.84);
}

.hero__slide--three img {
  object-position: 38% 45%;
  filter: saturate(1.12) contrast(1.05) brightness(0.88);
}

.hero__slide.is-current img {
  animation: heroDrift 11s ease-out forwards;
}

.hero__scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(12, 20, 26, 0.96) 0%, rgba(12, 20, 26, 0.78) 34%, rgba(12, 20, 26, 0.32) 72%, rgba(12, 20, 26, 0.72) 100%),
    linear-gradient(180deg, rgba(12, 20, 26, 0.48) 0%, rgba(12, 20, 26, 0.08) 48%, rgba(12, 20, 26, 0.9) 100%);
}

.hero__grain {
  z-index: -2;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.hero__content {
  width: min(760px, 100%);
  padding-top: 1rem;
}

.eyebrow,
.section-kicker,
.footer__eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero__title {
  margin: 0;
  font-family: var(--font-sc);
  font-size: 9.8rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.82;
}

.hero__title span {
  display: block;
  transform: translateY(1.15em);
  transition: transform 1.15s var(--ease-out);
}

body.is-loaded .hero__title span {
  transform: translateY(0);
}

.hero__title span:nth-child(2) {
  transition-delay: 0.12s;
}

.hero__tagline {
  width: min(640px, 100%);
  margin: 1.25rem 0 0;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero__copy {
  width: min(620px, 100%);
  margin: 1.1rem 0 0;
  color: rgba(245, 239, 226, 0.84);
  font-size: 1.14rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-card {
  position: absolute;
  right: var(--gut);
  bottom: clamp(2.5rem, 7vw, 5.5rem);
  width: min(330px, calc(100vw - (var(--gut) * 2)));
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 226, 0.22);
  border-radius: var(--radius);
  background: rgba(12, 20, 26, 0.6);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.hero-card div {
  display: grid;
  gap: 0.08rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(245, 239, 226, 0.12);
}

.hero-card div:last-child {
  border-bottom: 0;
}

.hero-card strong {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.1;
}

.hero-card span,
.story__badge span {
  color: var(--muted-cream);
  font-size: 0.86rem;
}

.open-dot {
  width: 0.55rem;
  height: 0.55rem;
  display: inline-block;
  border-radius: 50%;
  background: #8be67a;
  box-shadow: 0 0 0 0 rgba(139, 230, 122, 0.7);
  animation: pulse 2.4s infinite;
}

.marquee {
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #8f1720, var(--red), #c42b32);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.7rem;
  width: max-content;
  padding: 1rem 1.2rem;
  animation: marquee 28s linear infinite;
}

.marquee span {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}

.marquee span::after {
  content: "★";
  margin-left: 2.7rem;
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1;
}

.section {
  position: relative;
  padding: var(--section-y) 0;
}

.section--night {
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
}

.section--cream {
  color: var(--ink-on-cream);
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

.section-title {
  max-width: 920px;
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: 5.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.section--cream .section-title,
.section--cream .section-kicker {
  color: var(--ink-on-cream);
}

.order-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 29, 38, 0.98), rgba(12, 20, 26, 1)),
    var(--ink);
}

.order-section::before,
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(198, 163, 90, 0.12), transparent 28%),
    linear-gradient(180deg, transparent, rgba(180, 40, 46, 0.08));
}

.order-head,
.reviews__head,
.menu__intro,
.visit__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.56fr);
  gap: clamp(1.6rem, 6vw, 5rem);
  align-items: end;
}

.order-head p,
.reviews__head p,
.menu__intro p,
.visit__copy {
  margin: 0;
  color: var(--muted-cream);
  font-size: 1.1rem;
}

.section--cream .menu__intro p {
  color: var(--muted-ink);
}

.order-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.order-card {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem;
  color: var(--cream);
  background: linear-gradient(160deg, rgba(22, 38, 47, 0.92), rgba(16, 29, 38, 0.94));
  border: 1px solid rgba(245, 239, 226, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px -44px rgba(0, 0, 0, 0.78);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}

.order-card:hover {
  transform: translateY(-7px);
  border-color: rgba(198, 163, 90, 0.7);
}

.order-card--delivery {
  border-color: rgba(120, 184, 186, 0.24);
}

.order-card__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.order-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.1;
}

.order-card p {
  margin: 0;
  color: var(--muted-cream);
}

.app-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.85);
}

.app-icon--direct {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.app-icon--dash {
  background: #eb1700;
}

.app-icon--uber {
  background: #06c167;
}

.order-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 0.76rem 1rem;
  color: var(--cream);
  background: rgba(245, 239, 226, 0.08);
  border: 1px solid rgba(245, 239, 226, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.story {
  overflow: hidden;
}

.story__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.story__copy {
  display: grid;
  gap: 1.1rem;
}

.year {
  color: rgba(245, 239, 226, 0.12);
  font-family: var(--font-display);
  font-size: 8rem;
  font-style: italic;
  font-weight: 500;
  line-height: 0.8;
}

.story-title span,
.title-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.flow {
  display: grid;
  gap: 1rem;
  color: var(--muted-cream);
}

.flow p {
  margin: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chips span {
  padding: 0.62rem 0.82rem;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 226, 0.16);
  border-radius: 999px;
  background: rgba(245, 239, 226, 0.06);
  font-size: 0.88rem;
  font-weight: 600;
}

.photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 226, 0.18);
  border-radius: var(--radius);
  background: rgba(245, 239, 226, 0.05);
  box-shadow: var(--shadow-soft);
}

.photo-card picture {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translateY(var(--story-shift, -6%)) scale(1.04);
  will-change: transform;
}

.photo-card figcaption {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
}

.photo-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.photo-card figcaption span {
  color: var(--muted-cream);
}

.story__badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 112px;
  height: 112px;
  display: grid;
  place-content: center;
  color: var(--cream);
  text-align: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(12, 20, 26, 0.62);
  backdrop-filter: blur(4px);
}

.story__badge b {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
}

.story__badge span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.specialty-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.specialty-card,
.review-card,
.visit-card,
.menu-shell {
  border: 1px solid rgba(245, 239, 226, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 239, 226, 0.055);
  box-shadow: 0 24px 70px -44px rgba(0, 0, 0, 0.72);
}

.specialty-card {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.6rem;
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}

.specialty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(198, 163, 90, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.specialty-card > * {
  position: relative;
  z-index: 1;
}

.specialty-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.specialty-card:hover::after {
  opacity: 1;
}

.specialty-card span {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  color: rgba(245, 239, 226, 0.16);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
}

.specialty-card h3,
.review-card strong,
.visit-card h3 {
  margin: auto 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 500;
  line-height: 1.1;
}

.specialty-card p,
.review-card p,
.visit-card p {
  margin: 0;
  color: var(--muted-cream);
}

.scenic-quote {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.scenic-quote img,
.scenic-quote__overlay {
  position: absolute;
  inset: 0;
}

.scenic-quote img {
  z-index: -2;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--quote-shift, -5%)) scale(1.04);
  filter: saturate(1.05) contrast(1.08) brightness(0.76);
}

.scenic-quote__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 20, 26, 0.9), rgba(12, 20, 26, 0.2), rgba(12, 20, 26, 0.9)),
    linear-gradient(180deg, rgba(12, 20, 26, 0.76), rgba(12, 20, 26, 0.18), rgba(12, 20, 26, 0.82));
}

.scenic-quote blockquote {
  width: min(900px, calc(100% - (var(--gut) * 2)));
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 4.9rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.02;
  text-align: center;
}

.scenic-quote cite {
  display: block;
  margin-top: 1.2rem;
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.menu-shell {
  margin-top: 3.2rem;
  overflow: hidden;
  color: var(--ink-on-cream);
  border-color: rgba(33, 29, 23, 0.14);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 28px 80px -54px rgba(33, 29, 23, 0.72);
  backdrop-filter: blur(18px);
}

.menu-tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0.65rem;
  overflow-x: auto;
  border-bottom: 1px solid rgba(33, 29, 23, 0.1);
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0.72rem 0.95rem;
  color: rgba(33, 29, 23, 0.7);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.menu-tab:hover,
.menu-tab:focus-visible,
.menu-tab.is-active {
  color: rgba(19, 23, 25, 0.92);
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(33, 29, 23, 0.1);
}

.menu-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-height: 470px;
  padding: 1.1rem;
}

.menu-panel.is-switching {
  animation: menuPullUp 0.55s var(--ease-out);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  align-content: start;
  padding: 1.1rem;
  border-bottom: 1px solid rgba(33, 29, 23, 0.1);
  animation: menuItemPullUp 0.48s var(--ease-out) both;
}

.menu-item:nth-child(odd) {
  border-right: 1px solid rgba(33, 29, 23, 0.1);
}

.menu-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.1;
}

.menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-ink);
}

.menu-item strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.15rem;
  white-space: nowrap;
}

.review-card {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
}

.review-card::before {
  content: "★★★★★";
  width: max-content;
  margin-bottom: 1.8rem;
  padding: 0;
  color: var(--gold-soft);
  background: transparent;
  border-radius: 0;
  font-size: 0.98rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.review-card span {
  display: block;
  margin-top: 1.4rem;
  color: var(--gold-soft);
  font-weight: 700;
}

.visit {
  padding-bottom: 0;
}

.visit__grid {
  align-items: start;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.visit-stack {
  display: grid;
  gap: 1rem;
}

.visit-card {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.visit-card > div {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(245, 239, 226, 0.13);
}

.visit-card > div:last-child {
  border-bottom: 0;
}

.visit-card h3 {
  margin-top: 0;
}

.visit-card a {
  color: var(--gold-soft);
  font-weight: 700;
}

.visit-card dl {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.visit-card dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-cream);
}

.visit-card dt,
.visit-card dd {
  margin: 0;
}

.visit-card dt {
  font-weight: 600;
}

.visit-map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 226, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 239, 226, 0.055);
  box-shadow: var(--shadow-soft);
}

.visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.78) contrast(0.98);
}

.visit-map__link {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  padding: 0.72rem 0.95rem;
  color: var(--gold-soft);
  background: rgba(12, 20, 26, 0.84);
  border: 1px solid rgba(245, 239, 226, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.visit-map__link:hover,
.visit-map__link:focus-visible {
  color: var(--cream);
  background: rgba(12, 20, 26, 0.96);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  padding: 6.5rem 0 2rem;
  overflow: hidden;
  color: var(--muted-cream);
  background: #080d11;
  border-top: 1px solid rgba(245, 239, 226, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.5fr) minmax(240px, 0.6fr);
  gap: clamp(2rem, 7vw, 5rem);
}

.footer__brand {
  display: block;
  color: var(--cream);
  font-family: var(--font-sc);
  font-size: 2.35rem;
  line-height: 1;
}

.footer__grid p {
  max-width: 520px;
  margin: 1rem 0 0;
}

.footer__nav,
.footer__contact {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer__nav strong,
.footer__contact strong {
  color: var(--cream);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-footer a {
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cream);
}

.footer__social {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.footer__social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 226, 0.16);
  border-radius: 50%;
  background: rgba(245, 239, 226, 0.06);
}

.footer__social a:hover,
.footer__social a:focus-visible {
  color: var(--ink);
  background: var(--gold-soft);
  transform: translateY(-3px);
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__bottom {
  width: min(var(--maxw), calc(100% - (var(--gut) * 2)));
  margin: 4rem auto 0;
  padding-top: 1.5rem;
  color: rgba(245, 239, 226, 0.5);
  border-top: 1px solid rgba(245, 239, 226, 0.1);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 1s var(--ease-out);
}

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

@keyframes loadLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(139, 230, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139, 230, 122, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes menuPullUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuItemPullUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav,
  .header-actions {
    position: fixed;
    right: 1rem;
    left: 1rem;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s var(--ease);
  }

  .site-nav {
    top: 72px;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: rgba(12, 20, 26, 0.94);
    border: 1px solid rgba(245, 239, 226, 0.14);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
  }

  .site-nav a {
    justify-content: center;
    border-bottom: 1px solid rgba(245, 239, 226, 0.1);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    top: 418px;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(12, 20, 26, 0.94);
    border: 1px solid rgba(245, 239, 226, 0.14);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    align-items: end;
    padding-top: 6.2rem;
    padding-bottom: 2.25rem;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(520px, 100%);
    margin-top: 2rem;
  }

  .hero__content {
    width: min(720px, 100%);
  }

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

  .story__grid,
  .order-head,
  .menu__intro,
  .reviews__head,
  .visit__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 1rem;
  }

  .preloader__mark span {
    font-size: 3rem;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand span {
    font-size: 1.24rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 6.25rem;
    padding-bottom: 2rem;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(12, 20, 26, 0.48) 0%, rgba(12, 20, 26, 0.7) 42%, rgba(12, 20, 26, 0.95) 100%),
      linear-gradient(90deg, rgba(12, 20, 26, 0.78), rgba(12, 20, 26, 0.32));
  }

  .hero__title {
    font-size: 4.5rem;
  }

  .hero__tagline {
    font-size: 1.85rem;
  }

  .hero__copy {
    font-size: 1.02rem;
  }

  .hero__actions,
  .visit-actions {
    width: 100%;
  }

  .button,
  .order-link {
    width: 100%;
  }

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

  .hero-card div {
    min-width: 0;
    padding: 0.82rem 0.62rem;
    border-right: 1px solid rgba(245, 239, 226, 0.12);
    border-bottom: 0;
  }

  .hero-card div:last-child {
    border-right: 0;
  }

  .hero-card strong {
    font-size: 1rem;
  }

  .hero-card span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .marquee span {
    min-height: 62px;
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 3.3rem;
  }

  .year {
    font-size: 5rem;
  }

  .order-grid,
  .specialty-grid,
  .review-grid,
  .menu-panel {
    grid-template-columns: 1fr;
  }

  .order-card {
    min-height: 220px;
  }

  .menu-item:nth-child(odd) {
    border-right: 0;
  }

  .photo-card picture {
    aspect-ratio: 16 / 12;
  }

  .scenic-quote {
    min-height: 430px;
  }

  .scenic-quote blockquote {
    font-size: 3rem;
  }

  .footer__brand {
    font-size: 1.9rem;
  }
}

@media (max-width: 440px) {
  .hero__title {
    font-size: 3.65rem;
  }

  .hero__tagline {
    font-size: 1.55rem;
  }

  .section-title {
    font-size: 2.65rem;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-card div {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 239, 226, 0.12);
  }

  .hero-card div:last-child {
    border-bottom: 0;
  }

  .order-card__top {
    grid-template-columns: 1fr;
  }
}

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

  .reveal,
  .hero__title span,
  .photo-card img,
  .scenic-quote img {
    opacity: 1;
    transform: none;
  }
}
