:root {
  --blue: #0b43c7;
  --blue-dark: #07369f;
  --ink: #17202b;
  --muted: #5d6670;
  --paper: #f7f8f3;
  --surface: #ffffff;
  --line: #d8dce1;
  --focus: #ffcf3f;
  --radius: 0px;
  --header-height: 72px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.lucide-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
blockquote {
  text-wrap: pretty;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.section-shell {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(16px, 3vw, 48px);
  background: rgb(11 67 199 / 0.96);
  color: #ffffff;
  box-shadow: 0 8px 30px rgb(7 54 159 / 0.2);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgb(7 54 159 / 0.985);
  box-shadow: 0 10px 34px rgb(7 25 76 / 0.3);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--focus);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.brand-link {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.brand-link img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  flex: 0 0 auto;
}

.header-social {
  display: none;
}

.header-social a {
  color: #ffffff;
  text-decoration: none;
}

.header-social svg {
  width: 20px;
  height: 20px;
}

.header-social svg rect,
.header-social svg circle:not(.social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.header-social .social-dot,
.header-social path {
  fill: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a,
.footer-links > a:not([aria-label]) {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav > a::after,
.footer-links > a:not([aria-label])::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:focus-visible::after,
.footer-links > a:not([aria-label]):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a,
.footer-links a[aria-label] {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.45);
  color: #ffffff;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:focus-visible,
.footer-links a[aria-label]:focus-visible {
  background: #ffffff;
  color: var(--blue);
  transform: translateY(-2px);
}

.social-links svg,
.footer-links svg {
  width: 20px;
  height: 20px;
}

.social-links svg rect,
.social-links svg circle:not(.social-dot),
.footer-links svg rect,
.footer-links svg circle:not(.social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links .social-dot,
.footer-links .social-dot,
.social-links path,
.footer-links path {
  fill: currentColor;
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgb(255 255 255 / 0.45);
  background: transparent;
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #30343a;
  color: #ffffff;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: none;
  animation: hero-camera 18s var(--ease-in-out) infinite alternate paused;
  will-change: filter;
}

.hero-scrim {
  z-index: -1;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.28) 0%, rgb(0 0 0 / 0.1) 58%, rgb(0 0 0 / 0.08) 100%);
}

.hero-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: clamp(280px, 34vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 207 63 / 0.3) 0%, rgb(255 207 63 / 0) 69%);
  mix-blend-mode: screen;
  opacity: 0.8;
  filter: blur(2px);
  animation: hero-glow-drift 11s var(--ease-in-out) infinite alternate paused;
  will-change: transform, opacity;
}

.hero-glow-one {
  top: 8%;
  right: -8%;
}

.hero-glow-two {
  bottom: -18%;
  left: 24%;
  width: clamp(260px, 30vw, 520px);
  animation-delay: -5.5s;
  animation-direction: alternate-reverse;
}

.hero-sweep {
  position: absolute;
  inset: -55% auto -55% -28%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.11), transparent);
  transform: rotate(12deg) translateX(-160%);
  animation: hero-sweep 9s linear infinite paused;
  will-change: transform;
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 76px);
  bottom: clamp(30px, 7vh, 82px);
  width: clamp(112px, 11vw, 154px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  pointer-events: none;
  will-change: transform;
}

.hero-stamp-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: stamp-spin 15s linear infinite paused;
  will-change: transform;
}

.hero-stamp-ring circle {
  fill: rgb(11 67 199 / 0.82);
  stroke: rgb(255 255 255 / 0.78);
  stroke-width: 1;
}

.hero-stamp-ring path {
  fill: none;
}

.hero-stamp-ring text {
  fill: #ffffff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.105em;
}

.hero-stamp strong {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero.is-in-view .hero-media img,
.hero.is-in-view .hero-glow,
.hero.is-in-view .hero-sweep,
.hero.is-in-view .hero-stamp-ring {
  animation-play-state: running;
}

.hero-content {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
  padding: calc(var(--header-height) + 44px) 0 clamp(38px, 8vh, 90px);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-mobile,
.mobile-break {
  display: none;
}

.hero h1,
.section-heading h2,
.story h2,
.reviews-summary h2,
.visit-details h2,
.dialog-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(66px, 9vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 480px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  font-weight: 700;
}

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

.button-arrow {
  display: inline-flex;
  width: 1.1em;
  height: 1.1em;
  margin-left: 16px;
  transition: transform 180ms var(--ease-out);
}

.button-icon {
  width: 1.05em;
  height: 1.05em;
  margin-left: 10px;
}

.button,
.text-button,
.dialog-close,
.lightbox button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 140ms var(--ease-out);
}

.lightbox button:disabled {
  cursor: progress;
  opacity: 0.55;
}

.button::after,
.text-button::after,
.dialog-close::after,
.lightbox button::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80%;
  bottom: -80%;
  left: -38%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.28), transparent);
  transform: translateX(-220%) rotate(14deg);
  transition: transform 260ms var(--ease-out);
  pointer-events: none;
}

.button:active:not(:focus-visible),
.text-button:active:not(:focus-visible),
.dialog-close:active:not(:focus-visible),
.lightbox button:active:not(:focus-visible),
.gallery-item:active:not(:focus-visible) {
  transform: scale(0.97);
}

.button-primary {
  background: var(--blue);
  color: #ffffff;
}

.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-ghost {
  border-color: rgb(255 255 255 / 0.8);
  background: rgb(20 20 20 / 0.12);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.button-ghost:focus-visible {
  background: #ffffff;
  color: var(--ink);
}

.button-outline {
  border-color: var(--blue);
  background: transparent;
  color: var(--blue-dark);
}

.button-outline:focus-visible {
  background: var(--blue);
  color: #ffffff;
}

.button-light {
  background: #ffffff;
  color: var(--ink);
}

.button-light:focus-visible {
  background: var(--focus);
}

.button-outline-light {
  border-color: rgb(255 255 255 / 0.72);
  background: transparent;
  color: #ffffff;
}

.button-outline-light:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--blue);
  color: #ffffff;
}

.quick-facts > * {
  min-width: 0;
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  padding: 22px clamp(20px, 4vw, 60px);
  border-right: 1px solid rgb(255 255 255 / 0.3);
  text-decoration: none;
}

.quick-facts > *:last-child {
  border-right: 0;
}

.quick-facts a {
  transition: background-color 180ms ease;
}

.quick-facts a:focus-visible {
  background: var(--blue-dark);
}

.motion-marquee {
  overflow: hidden;
  border-block: 1px solid rgb(255 255 255 / 0.24);
  background: var(--ink);
  color: #ffffff;
}

.motion-marquee-track {
  width: max-content;
  display: flex;
  animation: marquee-flow 24s linear infinite paused;
  will-change: transform;
}

.motion-marquee-track span {
  flex: none;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-marquee-track i {
  display: inline-block;
  margin-inline: 0.34em;
  color: var(--focus);
  font-family: var(--font-body);
  font-size: 0.48em;
  font-style: normal;
  vertical-align: 0.18em;
  animation: spark-turn 3s linear infinite paused;
}

.motion-marquee.is-in-view .motion-marquee-track,
.motion-marquee.is-in-view .motion-marquee-track i {
  animation-play-state: running;
}

.quick-facts strong {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.85;
  text-transform: uppercase;
}

.fact-icon {
  width: clamp(24px, 2.2vw, 32px);
  height: clamp(24px, 2.2vw, 32px);
  color: var(--focus);
}

.quick-facts span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: center;
  padding-block: clamp(86px, 11vw, 150px);
}

.story::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: clamp(-90px, -4vw, -24px);
  bottom: clamp(36px, 6vw, 90px);
  width: clamp(150px, 20vw, 310px);
  aspect-ratio: 1;
  border: clamp(22px, 3.4vw, 54px) solid rgb(11 67 199 / 0.08);
  border-radius: 50%;
  animation: story-orbit 14s var(--ease-in-out) infinite alternate paused;
  pointer-events: none;
}

.story.is-in-view::before {
  animation-play-state: running;
}

.story-copy {
  padding-left: clamp(0px, 4vw, 56px);
}

.story h2,
.section-heading h2,
.reviews-summary h2,
.visit-details h2 {
  margin: 0;
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.story-copy > p {
  max-width: 64ch;
  margin: 28px 0 0;
  color: #3e4853;
  font-size: 18px;
  line-height: 1.7;
}

.story-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 38px 0 0;
  border-top: 2px solid var(--ink);
}

.story-facts div {
  min-width: 0;
  padding: 18px 16px 0 0;
}

.story-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-facts dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.portrait-frame,
.menu-image,
.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
  background: #e2e5e8;
}

.portrait-frame img,
.menu-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.portrait-frame img {
  object-position: center;
  transition: filter 600ms var(--ease-out);
}

.kitchen-story {
  overflow: hidden;
  padding-block: clamp(92px, 10vw, 144px) clamp(118px, 13vw, 184px);
  background: var(--ink);
  color: #ffffff;
}

.kitchen-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.kitchen-heading h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.kitchen-heading p {
  max-width: 42ch;
  margin: 0 0 5px;
  color: rgb(255 255 255 / 0.76);
  font-size: 17px;
  line-height: 1.6;
}

.scene-rail {
  width: min(100% - 32px, 1440px);
  display: grid;
  grid-template-columns: 1.05fr 0.86fr 1.18fr 0.86fr 1fr;
  gap: clamp(12px, 1.6vw, 24px);
  align-items: start;
  margin-inline: auto;
}

.scene-frame {
  min-width: 0;
  margin: 0;
}

.scene-frame:nth-child(even) {
  transform: translateY(54px);
}

.scene-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transform: none;
  animation: scene-breathe 8s var(--ease-in-out) infinite alternate paused;
  will-change: filter;
}

.scene-frame:nth-child(2) img,
.scene-frame:nth-child(5) img {
  animation-delay: -2.8s;
  animation-direction: alternate-reverse;
}

.scene-frame:nth-child(3) img {
  animation-delay: -5.2s;
}

.kitchen-story.is-in-view .scene-frame img {
  animation-play-state: running;
}

.scene-frame figcaption {
  margin-top: 12px;
  color: rgb(255 255 255 / 0.72);
  font-size: 13px;
  font-weight: 700;
}

.menu-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(84px, 11vw, 148px);
  background: var(--surface);
}

.menu-section > .section-shell {
  position: relative;
  z-index: 1;
}

.menu-orbit {
  position: absolute;
  z-index: -1;
  top: clamp(28px, 5vw, 76px);
  right: clamp(-86px, -3vw, -32px);
  width: clamp(170px, 22vw, 330px);
  aspect-ratio: 1;
  border: 2px solid rgb(11 67 199 / 0.12);
  border-radius: 50%;
  animation: menu-orbit-spin 18s linear infinite paused;
  will-change: transform;
}

.menu-orbit::before,
.menu-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgb(11 67 199 / 0.14);
  border-radius: 50%;
}

.menu-orbit::before {
  inset: 15%;
}

.menu-orbit::after {
  inset: 34%;
  background: rgb(255 207 63 / 0.24);
}

.menu-orbit span,
.menu-orbit i {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--blue);
}

.menu-orbit span {
  top: 7%;
  left: 46%;
  width: 8%;
  aspect-ratio: 1;
}

.menu-orbit i {
  right: 13%;
  bottom: 18%;
  width: 5%;
  aspect-ratio: 1;
  background: var(--focus);
}

.menu-section.is-in-view .menu-orbit {
  animation-play-state: running;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-heading > p {
  max-width: 52ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(24px, 5vw, 76px);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.menu-intro .section-heading {
  max-width: 620px;
  margin-bottom: 0;
}

.menu-intro .section-heading h2 {
  font-family: var(--font-body);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: none;
}

.menu-intro .section-heading > p {
  max-width: 43ch;
  margin-top: 12px;
}

.menu-intro-action {
  padding-bottom: 6px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 42px);
  align-items: start;
}

.menu-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: transparent;
  transition: transform 260ms var(--ease-out);
}

.menu-image img {
  transition: filter 620ms var(--ease-out);
}

.menu-card-copy {
  padding: 20px 0 0;
}

.menu-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-transform: none;
}

.menu-card-copy > p {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.menu-list {
  margin: 0;
}

.menu-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.menu-list dt,
.menu-list dd {
  margin: 0;
}

.menu-list dt {
  font-weight: 700;
}

.menu-list dd {
  color: var(--blue-dark);
  font-weight: 900;
  text-align: right;
}

.text-button {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.text-button:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.amenities-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(46px, 8vw, 118px);
  padding: clamp(32px, 5vw, 74px) max(16px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: #ffffff;
}

.amenities-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -42%;
  right: -16%;
  width: min(64vw, 860px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(11 67 199 / 0.52) 0%, rgb(11 67 199 / 0) 68%);
  opacity: 0.68;
  transform: translate3d(0, 0, 0) scale(0.9);
  animation: amenities-glow 10s var(--ease-in-out) infinite alternate paused;
  will-change: transform, opacity;
}

.amenities-section.is-in-view::before {
  animation-play-state: running;
}

.amenities-photo {
  margin: 0;
}

.amenities-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.amenities-copy {
  padding-block: 38px;
}

.amenities-copy h2 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.amenities-copy > p {
  margin: 20px 0 34px;
  color: rgb(255 255 255 / 0.76);
  font-size: 18px;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 0.32);
  list-style: none;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 10px 15px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.32);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.amenity-icon {
  width: clamp(19px, 2vw, 26px);
  height: clamp(19px, 2vw, 26px);
  color: var(--focus);
}

.amenities-list li span {
  min-width: 0;
}

.amenities-list li:nth-child(odd) {
  border-right: 1px solid rgb(255 255 255 / 0.32);
}

.amenities-list li:nth-child(even) {
  padding-left: 20px;
}

.amenities-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.gallery-section {
  padding-block: clamp(84px, 11vw, 148px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 56px;
}

.gallery-item:nth-child(3n + 2) {
  transform: translateY(56px);
}

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: rgb(255 255 255 / 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item img {
  transition: filter 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:focus-visible img {
  filter: saturate(1.06) brightness(1.04);
}

.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(84px, 10vw, 136px);
  background: var(--blue);
  color: #ffffff;
}

.reviews-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -40% -15%;
  background:
    radial-gradient(circle at 30% 50%, rgb(255 207 63 / 0.22), transparent 28%),
    radial-gradient(circle at 78% 35%, rgb(255 255 255 / 0.14), transparent 25%);
  opacity: 0.62;
  transform: translate3d(-4%, 0, 0);
  animation: review-light-flow 12s var(--ease-in-out) infinite alternate paused;
  will-change: transform, opacity;
}

.reviews-section::after {
  content: "4.6";
  position: absolute;
  z-index: -1;
  right: -0.03em;
  bottom: -0.26em;
  color: rgb(255 255 255 / 0.055);
  font-family: var(--font-display);
  font-size: clamp(240px, 38vw, 570px);
  line-height: 1;
  letter-spacing: -0.08em;
  transform: translate3d(0, 2%, 0);
  animation: review-number-float 8s var(--ease-in-out) infinite alternate paused;
  will-change: transform;
  pointer-events: none;
}

.reviews-section.is-in-view::before,
.reviews-section.is-in-view::after {
  animation-play-state: running;
}

.reviews-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.6fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.reviews-summary {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.rating-number {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(86px, 12vw, 150px);
  line-height: 0.82;
}

.stars {
  margin: 14px 0 22px;
  color: #ffcf3f;
  font-size: 18px;
  letter-spacing: 0.14em;
}

.reviews-summary h2 {
  font-size: clamp(45px, 5vw, 72px);
}

.reviews-summary > p:last-child {
  margin: 10px 0 0;
  font-weight: 700;
}

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

.review-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgb(255 255 255 / 0.42);
  background: rgb(255 255 255 / 0.08);
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms var(--ease-out);
}

.review-featured {
  grid-column: 1 / -1;
  min-height: 330px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.review-author h3,
.review-author p {
  margin: 0;
}

.review-author h3 {
  font-size: 15px;
}

.review-author p {
  color: #ffcf3f;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: 26px 0 30px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.38;
}

.review-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  width: fit-content;
  font-size: 14px;
  font-weight: 900;
}

.link-icon {
  width: 14px;
  height: 14px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.45fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: stretch;
  padding-block: clamp(84px, 11vw, 148px);
}

.visit-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
}

.visit-details address {
  margin-top: 0;
  font-size: 18px;
  font-style: normal;
  line-height: 1.65;
}

.visit-icon {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.visit-address .visit-icon {
  margin-top: 4px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.hours-block {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}

.hours-block p {
  margin: 0;
}

.hours-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-label .visit-icon {
  width: 19px;
  height: 19px;
}

.visit-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.visit-notes li {
  position: relative;
  padding-left: 14px;
}

.visit-notes li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--blue);
}

.map-frame {
  min-height: 620px;
  overflow: hidden;
  background: #d8dde3;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  border: 0;
}

.closing-cta {
  position: relative;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #322b25;
  color: #ffffff;
}

.closing-media,
.closing-media img,
.closing-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-media {
  z-index: -2;
}

.closing-media img {
  object-fit: cover;
  object-position: center;
  transform: none;
  animation: closing-camera 16s var(--ease-in-out) infinite alternate paused;
  will-change: filter;
}

.closing-scrim {
  z-index: -1;
  background: linear-gradient(0deg, rgb(0 0 0 / 0.42) 0%, rgb(0 0 0 / 0.12) 66%, rgb(0 0 0 / 0.08) 100%);
}

.closing-shine {
  position: absolute;
  z-index: -1;
  inset: -50% auto -50% -34%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.16), transparent);
  transform: rotate(14deg) translateX(-180%);
  animation: closing-shine 8.5s linear infinite paused;
  will-change: transform;
  pointer-events: none;
}

.closing-status {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-height) + clamp(22px, 4vw, 54px));
  right: clamp(16px, 4vw, 58px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgb(255 255 255 / 0.48);
  background: rgb(12 18 26 / 0.26);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: status-float 5s var(--ease-in-out) infinite alternate paused;
  will-change: transform;
}

.closing-status span {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7df285;
}

.closing-status span::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid rgb(125 242 133 / 0.7);
  border-radius: 50%;
  animation: status-pulse 2.4s var(--ease-out) infinite paused;
  will-change: transform, opacity;
}

.closing-cta.is-in-view .closing-media img,
.closing-cta.is-in-view .closing-shine,
.closing-cta.is-in-view .closing-status,
.closing-cta.is-in-view .closing-status span::after {
  animation-play-state: running;
}

.closing-content {
  padding-block: clamp(72px, 10vw, 126px);
}

.closing-content > p {
  margin: 0 0 15px;
  font-size: 15px;
  font-weight: 800;
}

.closing-content h2 {
  max-width: 790px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(62px, 8vw, 96px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  background: var(--blue);
  color: #ffffff;
}

.footer-inner {
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
  align-items: center;
  padding-block: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
}

.footer-brand p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
}

.footer-contact p,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  font-style: normal;
}

.footer-contact a {
  margin-top: 8px;
}

.footer-icon {
  width: 15px;
  height: 15px;
  color: var(--focus);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
  font-size: 14px;
  font-weight: 800;
}

dialog {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

dialog::backdrop {
  background: rgb(13 19 28 / 0.82);
}

.dialog-panel {
  width: min(100% - 24px, 1180px);
  margin: 18px auto;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 80px rgb(0 0 0 / 0.3);
  transform-origin: center;
}

.menu-dialog-panel {
  min-height: calc(100% - 36px);
  padding: clamp(20px, 4vw, 52px);
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
}

.dialog-header p,
.dialog-header h2 {
  margin: 0;
}

.dialog-header p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dialog-header h2 {
  margin-top: 6px;
  color: var(--blue);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.95;
}

.dialog-close,
.lightbox button {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.dialog-close:focus-visible {
  background: var(--blue);
  color: #ffffff;
}

.menu-pages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 32px;
}

.menu-pages img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgb(23 32 43 / 0.14);
}

.lightbox-panel {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 18px;
  background: #111821;
  color: #ffffff;
}

.lightbox-close {
  justify-self: end;
}

.lightbox figure {
  min-height: 0;
  display: grid;
  place-items: center;
  margin: 16px 0;
}

.lightbox figure img {
  width: auto;
  height: auto;
  max-width: min(100%, 1400px);
  max-height: calc(100svh - 160px);
  object-fit: contain;
}

.lightbox-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.lightbox-controls p {
  margin: 0;
  text-align: center;
  font-weight: 800;
}

@keyframes hero-camera {
  from {
    filter: brightness(0.98) saturate(1);
  }
  to {
    filter: brightness(1.04) saturate(1.05);
  }
}

@keyframes hero-glow-drift {
  from {
    opacity: 0.48;
    transform: translate3d(-7%, -5%, 0) scale(0.86);
  }
  to {
    opacity: 0.94;
    transform: translate3d(9%, 8%, 0) scale(1.14);
  }
}

@keyframes hero-sweep {
  from {
    transform: rotate(12deg) translateX(-180%);
  }
  to {
    transform: rotate(12deg) translateX(720%);
  }
}

@keyframes stamp-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee-flow {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes spark-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes story-orbit {
  from {
    transform: translate3d(-8%, 6%, 0) scale(0.9);
  }
  to {
    transform: translate3d(9%, -7%, 0) scale(1.08);
  }
}

@keyframes scene-breathe {
  from {
    filter: brightness(0.98) saturate(1);
  }
  to {
    filter: brightness(1.035) saturate(1.045);
  }
}

@keyframes menu-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes amenities-glow {
  from {
    opacity: 0.45;
    transform: translate3d(-8%, -5%, 0) scale(0.84);
  }
  to {
    opacity: 0.82;
    transform: translate3d(8%, 9%, 0) scale(1.08);
  }
}

@keyframes review-light-flow {
  from {
    opacity: 0.42;
    transform: translate3d(-5%, 0, 0) scale(0.96);
  }
  to {
    opacity: 0.78;
    transform: translate3d(5%, 3%, 0) scale(1.04);
  }
}

@keyframes review-number-float {
  from {
    transform: translate3d(0, 3%, 0);
  }
  to {
    transform: translate3d(-2%, -2%, 0);
  }
}

@keyframes closing-camera {
  from {
    filter: brightness(0.98) saturate(1);
  }
  to {
    filter: brightness(1.04) saturate(1.05);
  }
}

@keyframes closing-shine {
  from {
    transform: rotate(14deg) translateX(-180%);
  }
  to {
    transform: rotate(14deg) translateX(680%);
  }
}

@keyframes status-float {
  from {
    transform: translate3d(0, -5px, 0) rotate(-0.8deg);
  }
  to {
    transform: translate3d(0, 7px, 0) rotate(0.8deg);
  }
}

@keyframes status-pulse {
  0% {
    opacity: 0.62;
    transform: scale(1);
  }
  72%, 100% {
    opacity: 0;
    transform: scale(2.6);
  }
}

@media (hover: hover) and (pointer: fine) {
  .site-nav > a:hover::after,
  .footer-links > a:not([aria-label]):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .social-links a:hover,
  .footer-links a[aria-label]:hover {
    background: #ffffff;
    color: var(--blue);
    transform: translateY(-2px);
  }

  .button:hover::after,
  .text-button:hover::after,
  .dialog-close:hover::after,
  .lightbox button:hover::after {
    transform: translateX(620%) rotate(14deg);
  }

  .button-primary:hover {
    background: var(--blue-dark);
  }

  .button-ghost:hover {
    background: #ffffff;
    color: var(--ink);
  }

  .button-outline:hover {
    background: var(--blue);
    color: #ffffff;
  }

  .button-light:hover {
    background: var(--focus);
  }

  .button-outline-light:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--ink);
  }

  .quick-facts a:hover {
    background: var(--blue-dark);
  }

  .portrait-frame:hover img {
    filter: saturate(1.06) brightness(1.04);
  }

  .menu-card:hover {
    transform: translateY(-6px);
  }

  .menu-card:hover .menu-image img {
    filter: saturate(1.06) brightness(1.04);
  }

  .text-button:hover {
    border-color: var(--blue-dark);
    background: var(--blue-dark);
  }

  .gallery-item:hover img {
    filter: saturate(1.06) brightness(1.04);
  }

  .gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
  }

  .review-card:hover {
    border-color: rgb(255 255 255 / 0.72);
    background: rgb(255 255 255 / 0.14);
    transform: translateY(-7px);
  }

  .dialog-close:hover {
    background: var(--blue);
    color: #ffffff;
  }
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

.hero-title-block > *,
.hero-cta-block > * {
  animation: hero-enter 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title-block h1 {
  animation-delay: 80ms;
}

.hero-cta-block .hero-copy {
  animation-delay: 150ms;
}

.hero-cta-block .hero-actions {
  animation-delay: 220ms;
}

@media (min-width: 1024px) {
  .site-header:not(.is-scrolled) {
    background: linear-gradient(180deg, rgb(8 12 17 / 0.44), transparent);
    box-shadow: none;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgb(5 8 12 / 0.68) 0%, rgb(5 8 12 / 0.2) 38%, rgb(5 8 12 / 0.06) 70%),
      linear-gradient(90deg, rgb(5 8 12 / 0.14), transparent 62%);
  }

  .hero-content {
    width: min(calc(100% - clamp(48px, 8vw, 120px)), 1500px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(320px, 27vw, 390px);
    gap: clamp(30px, 3vw, 48px);
    align-items: end;
    padding: calc(var(--header-height) + 170px) 0 clamp(44px, 6vh, 68px);
  }

  .hero-title-block {
    min-width: 0;
  }

  .hero h1 {
    max-width: none;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(60px, 6.4vw, 112px);
    font-weight: 400;
    line-height: 0.83;
    letter-spacing: -0.065em;
    white-space: nowrap;
  }

  .hero .eyebrow {
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .hero-cta-block {
    width: 100%;
    justify-self: end;
    padding-bottom: 2px;
  }

  .hero-copy {
    max-width: 360px;
    margin: 0 0 0 auto;
    font-size: clamp(18px, 1.45vw, 22px);
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .hero-actions .button {
    min-width: 0;
    justify-content: space-between;
    padding-inline: 18px;
  }

  .hero-actions .button-primary {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--ink);
  }

  .hero-actions .button-primary:focus-visible {
    border-color: var(--focus);
    background: var(--focus);
    color: var(--ink);
  }

  .hero-actions .button-ghost {
    background: rgb(5 8 12 / 0.14);
  }

  .hero-stamp {
    top: calc(var(--header-height) + clamp(26px, 4vh, 48px));
    right: clamp(48px, 6vw, 94px);
    bottom: auto;
    width: clamp(144px, 12vw, 178px);
  }

  .hero-stamp-ring circle {
    fill: rgb(5 8 12 / 0.08);
    stroke: rgb(255 255 255 / 0.88);
  }

  .hero-stamp strong {
    font-size: clamp(31px, 3vw, 43px);
  }

  .hero-glow {
    opacity: 0.54;
  }
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .hero-actions .button-primary:hover {
    border-color: var(--focus);
    background: var(--focus);
    color: var(--ink);
  }

  .hero-actions .button:hover .button-arrow {
    transform: translate3d(3px, -3px, 0);
  }
}

@media (max-width: 1023px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 44px;
  }

  .story-copy {
    padding-left: 0;
  }

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

  .story-facts div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding-top: 12px;
  }

  .kitchen-heading {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }

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

  .scene-frame:nth-child(even) {
    transform: translateY(30px);
  }

  .amenities-section {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
  }

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

  .gallery-item:nth-child(3n + 2) {
    transform: none;
  }

  .gallery-item:nth-child(even) {
    transform: translateY(40px);
  }

  .reviews-shell {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
  }

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

  .review-featured {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-contact {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }

  .section-shell {
    width: min(100% - 28px, 1240px);
  }

  .site-header {
    min-height: var(--header-height);
    gap: 8px;
    padding: 8px 14px;
    background: linear-gradient(180deg, rgb(5 8 12 / 0.46), transparent);
    box-shadow: none;
  }

  .site-header.is-scrolled,
  .site-header.is-nav-open {
    background: rgb(7 54 159 / 0.985);
    box-shadow: 0 10px 34px rgb(7 25 76 / 0.3);
  }

  .scroll-progress {
    display: none;
  }

  .brand-link span {
    display: inline;
    overflow: hidden;
    max-width: 175px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.025em;
    text-overflow: clip;
    white-space: nowrap;
  }

  @media (max-width: 350px) {
    .brand-link span {
      font-size: 13px;
      letter-spacing: -0.02em;
    }
  }

  .brand-link img {
    width: 46px;
    height: 46px;
    border: 2px solid rgb(255 255 255 / 0.9);
    border-radius: 50%;
    background: var(--paper);
    box-shadow: 0 3px 18px rgb(0 0 0 / 0.2);
  }

  .brand-link {
    gap: 8px;
    flex: 1 1 auto;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    letter-spacing: 0;
  }

  .header-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
  }

  .header-social a {
    width: 22px;
    height: 40px;
    display: grid;
    place-items: center;
    transition: transform 160ms var(--ease-out), color 160ms ease;
  }

  .header-social a:active:not(:focus-visible) {
    transform: scale(0.94);
  }

  .header-social svg {
    width: 21px;
    height: 21px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    gap: 0;
    padding: 0;
    border-color: transparent;
    font-size: 0;
    font-weight: 800;
  }

  .menu-toggle-label {
    display: none;
  }

  .menu-toggle-lines {
    width: 27px;
    display: grid;
    gap: 7px;
  }

  .menu-toggle-lines i {
    width: 27px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: flex;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 14px 22px;
    background: var(--blue);
    border-top: 1px solid rgb(255 255 255 / 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transform-origin: top;
    transition: opacity 160ms ease, transform 220ms var(--ease-drawer), visibility 0s linear 220ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav > a {
    padding: 15px 4px;
    border-bottom: 1px solid rgb(255 255 255 / 0.22);
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 400;
    text-transform: uppercase;
  }

  .site-nav > a::after {
    display: none;
  }

  .social-links {
    padding-top: 18px;
  }

  .hero-media img {
    object-position: 35% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgb(5 8 12 / 0.7) 0%, rgb(5 8 12 / 0.18) 46%, rgb(5 8 12 / 0.08) 100%),
      linear-gradient(90deg, rgb(5 8 12 / 0.14), transparent 68%);
  }

  .hero-content {
    width: min(100% - 28px, 1240px);
    padding-bottom: 46px;
  }

  .hero-stamp {
    top: clamp(122px, 18vh, 178px);
    right: 14px;
    bottom: auto;
    width: clamp(132px, 35vw, 166px);
  }

  .hero-stamp-ring circle {
    fill: rgb(5 8 12 / 0.06);
    stroke: rgb(255 255 255 / 0.82);
  }

  .hero-stamp-ring text {
    font-size: 9px;
  }

  .hero h1 {
    max-width: 100%;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(50px, 14.7vw, 70px);
    font-weight: 400;
    line-height: 0.84;
    letter-spacing: -0.065em;
    white-space: normal;
  }

  .eyebrow-desktop {
    display: none;
  }

  .eyebrow-mobile,
  .mobile-break {
    display: inline;
  }

  .mobile-break {
    display: block;
  }

  .button-arrow {
    display: inline-flex;
    width: 1.15em;
    height: 1.15em;
    margin-left: 0;
  }

  .hero-copy {
    max-width: 340px;
    margin-top: 16px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 58px;
    justify-content: space-between;
    padding: 13px 16px;
  }

  .hero-actions .button-primary {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--ink);
  }

  .hero-actions .button-ghost {
    background: rgb(5 8 12 / 0.12);
  }

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

  .quick-facts > * {
    gap: 10px;
    min-height: 104px;
    padding: 18px 14px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.3);
  }

  .quick-facts > :last-child {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .quick-facts strong {
    font-size: 39px;
  }

  .quick-facts span {
    font-size: 13px;
  }

  .fact-icon {
    width: 22px;
    height: 22px;
  }

  .motion-marquee-track span {
    padding-block: 13px;
    font-size: 29px;
  }

  .story,
  .visit-section,
  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .story {
    gap: 38px;
    padding-block: 78px;
  }

  .kitchen-story {
    padding-block: 76px 92px;
  }

  .kitchen-heading {
    margin-bottom: 34px;
  }

  .kitchen-heading h2,
  .amenities-copy h2 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .kitchen-heading p {
    font-size: 16px;
  }

  .scene-rail {
    width: 100%;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 14px 18px;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .scene-frame,
  .scene-frame:nth-child(even) {
    width: min(72vw, 290px);
    flex: 0 0 min(72vw, 290px);
    transform: none;
    scroll-snap-align: start;
  }

  .story h2,
  .section-heading h2,
  .reviews-summary h2,
  .visit-details h2 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .story-copy > p {
    margin-top: 22px;
    font-size: 16px;
  }

  .story-facts div {
    grid-template-columns: 92px 1fr;
  }

  .menu-section,
  .gallery-section,
  .reviews-section,
  .visit-section {
    padding-block: 78px;
  }

  .menu-orbit {
    top: 30px;
    right: -72px;
    width: 190px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading > p {
    margin-top: 14px;
    font-size: 16px;
  }

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

  .menu-grid {
    gap: 48px;
  }

  .gallery-grid {
    gap: 16px;
  }

  .menu-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    margin-bottom: 40px;
  }

  .menu-intro-action {
    width: 100%;
    padding-bottom: 0;
  }

  .menu-intro-action .text-button {
    width: 100%;
    justify-content: space-between;
  }

  .amenities-section {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 14px 70px;
  }

  .amenities-copy {
    padding: 52px 0 0;
  }

  .amenities-copy > p {
    margin: 16px 0 28px;
    font-size: 16px;
  }

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

  .amenities-list li,
  .amenities-list li:nth-child(even),
  .amenities-list li:nth-child(odd) {
    padding: 14px 0;
    border-right: 0;
    font-size: 25px;
  }

  .amenity-icon {
    width: 20px;
    height: 20px;
  }

  .visit-address {
    gap: 10px;
  }

  .amenities-actions .button {
    flex: 1 1 145px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-bottom: 28px;
  }

  .gallery-item:nth-child(even) {
    transform: translateY(24px);
  }

  .gallery-item::after {
    opacity: 1;
    transform: none;
  }

  .reviews-summary {
    position: static;
  }

  .review-grid {
    gap: 14px;
  }

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

  .review-card blockquote {
    font-size: 19px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 460px;
  }

  .closing-cta {
    min-height: 0;
    aspect-ratio: 941 / 1672;
  }

  .closing-media img {
    object-position: center center;
  }

  .closing-status {
    top: calc(var(--header-height) + 18px);
    right: 14px;
    padding: 9px 11px;
    font-size: 10px;
  }

  .closing-content {
    padding-block: 72px 48px;
  }

  .closing-content h2 {
    max-width: 340px;
    font-size: clamp(56px, 18vw, 76px);
  }

  .closing-actions .button {
    flex: 1 1 160px;
  }

  .visit-actions .button {
    flex: 1 1 130px;
  }

  .footer-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 40px;
  }

  .footer-contact,
  .footer-links {
    grid-column: auto;
    grid-row: auto;
  }

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

  .dialog-panel {
    width: 100%;
    margin: 0;
  }

  .menu-dialog-panel {
    min-height: 100%;
    padding: 18px 14px 40px;
  }

  .dialog-header {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 12px 0 18px;
    background: var(--paper);
  }

  .dialog-header h2 {
    font-size: 38px;
  }

  .dialog-close {
    min-height: 44px;
    padding: 10px 14px;
  }

  .menu-pages {
    gap: 18px;
    padding-top: 20px;
  }

  .lightbox-panel {
    padding: 12px;
  }

  .lightbox figure img {
    max-height: calc(100svh - 150px);
  }

  .lightbox-controls {
    gap: 8px;
  }

  .lightbox-controls button {
    min-height: 44px;
    padding: 9px 12px;
    font-size: 13px;
  }
}

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

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

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