:root {
  --cream: #f5efe2;
  --cream-2: #efe6d3;
  --paper: #faf6ec;
  --ink: #0c141a;
  --ink-2: #101d26;
  --ink-3: #16262f;
  --ink-on-cream: #211d17;
  --muted-cream: rgba(245, 239, 226, 0.7);
  --muted-ink: rgba(33, 29, 23, 0.66);
  --red: #b0212a;
  --red-bright: #cf2f39;
  --red-deep: #8a1a22;
  --gold: #c6a35a;
  --gold-soft: #d8bd86;
  --glacier: #a9d0dd;
  --glacier-deep: #6f9fae;
  --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.6);
  --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 {
  background: var(--ink);
  color: var(--cream);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 8% 8%, rgba(169, 208, 221, 0.08), transparent 30rem),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink) 100%);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.075rem);
  line-height: 1.65;
  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;
  left: 1rem;
  top: 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;
  background: var(--ink);
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

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

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

.preloader__mark span {
  font-family: var(--font-sc);
  font-size: clamp(2rem, 7vw, 4.6rem);
  line-height: 0.95;
}

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

.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;
  animation: loadLine 1.25s var(--ease-out) forwards;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  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.84);
  border-bottom-color: rgba(245, 239, 226, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand span {
  font-family: var(--font-sc);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400;
}

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

.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.72);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.28s var(--ease);
}

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

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

.header-actions .nav-directions-mobile {
  display: none;
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0.25rem auto;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  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;
  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 {
  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);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  padding: clamp(5.25rem, 7vw, 6.5rem) var(--gut) clamp(1.8rem, 3vw, 2.5rem);
  isolation: isolate;
  overflow: hidden;
}

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

.hero__media {
  z-index: -4;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.04);
  animation: heroDrift 16s ease-out forwards;
}

.hero__scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(12, 20, 26, 0.94) 0%, rgba(12, 20, 26, 0.72) 34%, rgba(12, 20, 26, 0.28) 72%, rgba(12, 20, 26, 0.68) 100%),
    linear-gradient(180deg, rgba(12, 20, 26, 0.46) 0%, rgba(12, 20, 26, 0.08) 48%, rgba(12, 20, 26, 0.88) 100%);
}

.hero__grain {
  z-index: -2;
  pointer-events: none;
  opacity: 0.15;
  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, black, transparent 75%);
}

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

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

.hero__title {
  margin: 0;
  font-family: var(--font-sc);
  font-size: clamp(4.4rem, 13vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  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: clamp(1.45rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero__copy {
  width: min(610px, 100%);
  margin: 1.1rem 0 0;
  color: rgba(245, 239, 226, 0.83);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.hero-call-mobile {
  display: none;
}

.status-pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 239, 226, 0.72);
  font-size: 0.82rem;
  font-weight: 400;
}

.open-dot {
  width: 0.58rem;
  height: 0.58rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #57c46a;
  box-shadow: 0 0 0 0 rgba(87, 196, 106, 0.38);
  animation: pulse 2.4s infinite;
}

[data-open-state="closed"] .open-dot,
.open-dot.is-closed {
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(207, 47, 57, 0.34);
  animation-name: pulseClosed;
}

.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.58);
  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 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
}

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

.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 239, 226, 0.64);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1px;
  height: 42px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(var(--gold), transparent);
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  background: var(--cream);
  animation: scrollDrop 2s infinite var(--ease);
}

.marquee {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--red);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

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

.marquee span {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  text-transform: none;
  white-space: nowrap;
}

.marquee span::after {
  content: "✦";
  position: absolute;
  top: 50%;
  right: -1.65rem;
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1;
  transform: translateY(-42%);
}

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

.section--night {
  color: var(--cream);
  background: var(--ink-2);
}

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

.section-title {
  margin: 0;
  max-width: 850px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

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

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

.flow p,
.menu__intro p,
.reviews__head p,
.visit__copy {
  margin: 0;
  max-width: 650px;
}

.story {
  overflow: hidden;
}

.story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(198, 163, 90, 0.12), transparent 24%),
    linear-gradient(180deg, transparent, rgba(16, 29, 38, 0.42));
}

.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(198, 163, 90, 0.18);
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.8;
}

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

.chips span {
  padding: 0.55rem 0.82rem;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 226, 0.18);
  border-radius: 999px;
  background: rgba(245, 239, 226, 0.05);
  font-size: 0.82rem;
  font-weight: 700;
}

.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;
  transform: translateY(var(--story-shift, -6%)) scale(1.04);
  will-change: transform;
}

.story__badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 108px;
  height: 108px;
  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.55);
  backdrop-filter: blur(4px);
}

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

.story__badge span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.54rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

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

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

.specialties {
  overflow: hidden;
}

.specialties::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(169, 208, 221, 0.07), transparent 40%),
    linear-gradient(90deg, transparent, rgba(176, 33, 42, 0.12), transparent);
}

.specialty-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.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: clamp(1.2rem, 3vw, 1.65rem);
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border-color: rgba(245, 239, 226, 0.14);
  transition: transform 0.5s var(--ease), border-color 0.5s;
}

.specialty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(198, 163, 90, 0.14), transparent 55%);
  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: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  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: min(74svh, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.scenic-quote picture {
  z-index: -3;
}

.scenic-quote img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  transform: translateY(var(--quote-shift, -4%)) scale(1.05);
  filter: saturate(0.92) contrast(1.05);
  will-change: transform;
}

.scenic-quote__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 20, 26, 0.88), rgba(12, 20, 26, 0.18), rgba(12, 20, 26, 0.88)),
    linear-gradient(180deg, rgba(12, 20, 26, 0.68), rgba(12, 20, 26, 0.14), rgba(12, 20, 26, 0.78));
}

.scenic-quote blockquote {
  width: min(900px, calc(100% - (var(--gut) * 2)));
  margin: 0;
  text-align: center;
}

.scenic-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.6rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

.menu__intro,
.reviews__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.menu__intro p,
.reviews__head p {
  color: var(--muted-ink);
  align-self: end;
}

.reviews__head p,
.visit__copy {
  color: var(--muted-cream);
}

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

.menu-tabs {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.7rem;
  border-bottom: 1px solid rgba(33, 29, 23, 0.12);
  scrollbar-width: thin;
}

.menu-tab {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0.72rem 0.95rem;
  color: rgba(33, 29, 23, 0.7);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  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: var(--ink);
  background: var(--cream);
  border-color: rgba(33, 29, 23, 0.14);
}

.menu-panel {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

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

.menu-panel.is-switching .menu-item {
  animation: menuItemPullUp 0.48s var(--ease-out) both;
}

.menu-panel.is-switching .menu-item:nth-child(2) {
  animation-delay: 45ms;
}

.menu-panel.is-switching .menu-item:nth-child(3) {
  animation-delay: 90ms;
}

.menu-panel.is-switching .menu-item:nth-child(4) {
  animation-delay: 135ms;
}

.menu-panel.is-switching .menu-item:nth-child(n + 5) {
  animation-delay: 180ms;
}

.menu-panel h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  line-height: 1.1;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.menu-item {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  padding: 1rem;
  border: 1px solid rgba(33, 29, 23, 0.12);
  border-radius: var(--radius);
  background: rgba(250, 246, 236, 0.82);
}

.menu-item strong {
  font-size: 1rem;
  line-height: 1.25;
}

.menu-item span {
  color: var(--red);
  font-weight: 700;
}

.menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.menu-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem clamp(1.2rem, 3vw, 2rem);
  color: rgba(33, 29, 23, 0.76);
  border-top: 1px solid rgba(33, 29, 23, 0.12);
  font-size: 0.9rem;
}

.menu-note a {
  color: var(--red);
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.2rem);
}

.review-card {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.15rem, 3vw, 1.55rem);
  border-color: rgba(245, 239, 226, 0.13);
}

.review-card::before {
  content: "★★★★★";
  width: max-content;
  margin-bottom: 1.8rem;
  padding: 0;
  color: var(--gold-soft);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

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

.visit__head {
  max-width: 760px;
}

.visit__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  margin-top: clamp(2rem, 5vw, 3rem);
}

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

.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-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.95rem 0 0;
  color: var(--muted-cream);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.42rem 0.62rem;
  color: var(--muted-cream);
  border: 1px solid rgba(245, 239, 226, 0.14);
  border-radius: 999px;
  background: rgba(245, 239, 226, 0.05);
  font-size: 0.88rem;
}

.visit-map {
  position: relative;
  min-height: clamp(620px, 58vw, 860px);
  height: 100%;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 226, 0.16);
  border-radius: var(--radius);
  background: rgba(245, 239, 226, 0.055);
  box-shadow: var(--shadow-soft);
}

.visit-map iframe {
  width: 100%;
  min-height: inherit;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.visit-map__link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 226, 0.2);
  border-radius: 999px;
  background: rgba(12, 20, 26, 0.82);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.footer__wordmark {
  position: absolute;
  inset-inline: 0;
  bottom: 1.4rem;
  color: rgba(245, 239, 226, 0.035);
  font-family: var(--font-display);
  font-size: clamp(6rem, 19vw, 15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}

.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(160px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(2.5rem, 9vw, 8rem);
  align-items: start;
}

.footer__about {
  max-width: 470px;
}

.footer__brand {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.footer__subhead,
.footer__nav h2,
.footer__contact h2,
.footer__follow span {
  margin: 1.6rem 0 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.footer__about p:not(.footer__subhead) {
  max-width: 430px;
  margin: 2rem 0 0;
  color: rgba(245, 239, 226, 0.62);
  font-size: 1rem;
  line-height: 1.7;
}

.footer__nav,
.footer__contact {
  display: grid;
  justify-items: start;
  gap: 1.05rem;
}

.footer__nav h2,
.footer__contact h2 {
  margin: 0 0 1rem;
}

.footer__nav a,
.footer__contact p {
  margin: 0;
  color: rgba(245, 239, 226, 0.62);
  font-size: 1.02rem;
}

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

.footer__nav a:hover,
.footer__nav a:focus-visible {
  transform: translateX(4px);
}

.footer__follow {
  margin-top: 0.7rem;
}

.footer__follow span {
  display: block;
  margin: 0 0 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(198, 163, 90, 0.42);
  border-radius: 50%;
  background: rgba(245, 239, 226, 0.035);
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

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

.footer__social svg {
  width: 21px;
  height: 21px;
}

.footer__social svg path {
  fill: currentColor;
}

.footer__social svg rect,
.footer__social svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.footer__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(4rem, 9vw, 5.8rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(169, 208, 221, 0.22);
  color: rgba(245, 239, 226, 0.58);
  font-size: 0.9rem;
}

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

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

.footer__bottom p {
  margin: 0;
}

.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);
}

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes scrollDrop {
  0% {
    transform: translateY(-100%);
  }
  60%,
  100% {
    transform: translateY(300%);
  }
}

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

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(87, 196, 106, 0.38);
  }
  70% {
    box-shadow: 0 0 0 0.55rem rgba(87, 196, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(87, 196, 106, 0);
  }
}

@keyframes pulseClosed {
  0% {
    box-shadow: 0 0 0 0 rgba(207, 47, 57, 0.34);
  }
  70% {
    box-shadow: 0 0 0 0.55rem rgba(207, 47, 57, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(207, 47, 57, 0);
  }
}

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

@media (max-width: 1120px) {
  .phone {
    display: none;
  }

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

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

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-actions {
    position: fixed;
    left: var(--gut);
    right: var(--gut);
    display: grid;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
  }

  .site-nav {
    top: 5.8rem;
    gap: 0.1rem;
    padding: 1rem;
    border: 1px solid rgba(245, 239, 226, 0.16);
    border-radius: var(--radius);
    background: rgba(12, 20, 26, 0.94);
    backdrop-filter: blur(18px);
  }

  .site-nav a {
    justify-content: space-between;
    padding: 0.6rem 0.2rem;
    border-bottom: 1px solid rgba(245, 239, 226, 0.08);
    font-size: 1rem;
  }

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

  .header-actions {
    top: 22rem;
  }

  .nav-call {
    display: none;
  }

  .header-actions .nav-directions-mobile {
    display: inline-flex;
  }

  .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: 6rem;
    padding-bottom: 2.25rem;
  }

  .hero-directions-desktop {
    display: none;
  }

  .hero-call-mobile {
    display: inline-flex;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(12, 20, 26, 0.42) 0%, rgba(12, 20, 26, 0.68) 42%, rgba(12, 20, 26, 0.94) 100%),
      linear-gradient(90deg, rgba(12, 20, 26, 0.72), rgba(12, 20, 26, 0.3));
  }

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

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

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

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__about,
  .footer__nav,
  .footer__contact {
    justify-items: center;
  }

  .footer__about p:not(.footer__subhead) {
    margin-inline: auto;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 620px) {
  :root {
    --gut: 1rem;
  }

  body {
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

  .status-pill {
    width: 100%;
    justify-content: center;
  }

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

  .hero__title {
    font-size: clamp(3.7rem, 22vw, 6.4rem);
  }

  .hero__actions,
  .visit-actions {
    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;
  }

  .visit-map,
  .visit-map iframe {
    min-height: 430px;
    height: 430px;
  }

  .visit-map__link {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }

  .scroll-cue {
    position: relative;
    left: auto;
    bottom: auto;
    justify-self: center;
    margin-top: 1.25rem;
    transform: none;
  }

  .scroll-cue span {
    height: 34px;
  }

  .section {
    padding-block: clamp(3.6rem, 16vw, 5rem);
  }

  .year {
    font-size: clamp(4.4rem, 28vw, 7rem);
  }

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

  .specialty-card,
  .review-card {
    min-height: 210px;
  }

  .scenic-quote {
    min-height: 64svh;
  }

  .scenic-quote p {
    font-size: clamp(2.15rem, 12vw, 4.2rem);
  }

  .menu-note {
    display: grid;
  }
}

@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;
  }
}
