:root {
  --canvas: #f5f5f1;
  --surface: #e8eae3;
  --ink: #161714;
  --ink-soft: #363933;
  --muted: #565b54;
  --line: #cdd1c8;
  --accent: #b83822;
  --accent-deep: #902b1a;
  --leaf: #4c654d;
  --leaf-deep: #354737;
  --white: #fffdfa;
  --header-height: 72px;
  --shell: min(100% - 40px, 1280px);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --z-menu: 35;
  --z-header: 40;
  --z-dialog: 80;
  --font-display: "Franklin Gothic Heavy", "Avenir Next Heavy", "Segoe UI Black", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
  font: inherit;
}

button:not(:disabled),
a[href] {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: clamp(88px, 10vw, 152px) 0;
}

.section h2,
.menu-dialog h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 max(20px, calc((100vw - 1280px) / 2));
  color: var(--white);
  background: rgb(16 17 15 / 0.12);
  border-bottom: 1px solid rgb(255 255 255 / 0.2);
  backdrop-filter: blur(14px);
  transition: background-color 260ms ease, color 260ms ease, border-color 260ms ease;
}

.site-header.is-solid,
.site-header.menu-open {
  color: var(--ink);
  background: rgb(245 245 241 / 0.96);
  border-color: var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.brand-badge {
  display: block;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid rgb(255 253 250 / 0.62);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgb(13 14 12 / 0.18);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.11em;
}

.brand-subname {
  font-size: 0.72rem;
  font-weight: 600;
}

.mobile-wordmark {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer nav a,
.review a {
  position: relative;
}

.desktop-nav a::after,
.site-footer nav a::after,
.review a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

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

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transition: opacity 160ms ease, transform 160ms var(--ease-out);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:active {
  transform: scale(0.92);
}

.nav-toggle {
  display: none;
  min-width: 56px;
  min-height: 44px;
  padding: 0 0 0 12px;
  border: 0;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle-icon {
  width: 1.55rem;
  height: 1.55rem;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  display: grid;
  align-content: center;
  padding: calc(var(--header-height) + 36px) 24px 36px;
  background: var(--canvas);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
}

.mobile-menu nav a {
  padding: 8px 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 13vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 48px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.mobile-phone .icon {
  width: 1rem;
  height: 1rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 52% 48%;
  animation: hero-breathe 18s var(--ease-in-out) infinite alternate;
  animation-play-state: paused;
  will-change: transform;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.1) 0%, rgb(0 0 0 / 0.08) 38%, rgb(0 0 0 / 0.3) 100%);
}

.hero.is-ambient .hero-image {
  animation-play-state: running;
}

.hero-seal {
  position: absolute;
  top: clamp(94px, 12vh, 140px);
  right: max(24px, calc((100vw - 1280px) / 2));
  z-index: 2;
  display: grid;
  width: clamp(92px, 9vw, 126px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: 50%;
  background: rgb(13 14 12 / 0.16);
  backdrop-filter: blur(7px);
  box-shadow: 0 0 0 8px rgb(255 255 255 / 0.07);
}

.hero-seal svg {
  position: absolute;
  inset: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  overflow: visible;
  fill: currentColor;
  animation: seal-spin 15s linear infinite;
  animation-play-state: paused;
}

.hero.is-ambient .hero-seal svg {
  animation-play-state: running;
}

.hero-seal text {
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.45px;
}

.hero-seal span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: -0.035em;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: var(--shell);
  min-height: 100svh;
  margin-inline: auto;
  padding: calc(var(--header-height) + 36px) 0 clamp(50px, 9vh, 96px);
}

.hero-kicker {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 9vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
}

.js .hero h1 span {
  animation: hero-line-in 720ms var(--ease-out) both;
}

.js .hero h1 span + span {
  animation-delay: 90ms;
}

.hero-copy {
  max-width: 42ch;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.5;
}

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

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

.hero-scroll {
  position: absolute;
  right: max(20px, calc((100vw - 1280px) / 2));
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll span {
  display: inline-flex;
  align-items: center;
}

.hero-scroll .icon {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 220ms var(--ease-out);
}

@keyframes hero-line-in {
  from {
    opacity: 0.72;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button .icon {
  width: 1.05rem;
  height: 1.05rem;
}

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

.button:active {
  transform: scale(0.97);
}

.button-primary {
  color: var(--white);
  background: var(--accent);
}

.button-glass {
  color: var(--white);
  background: rgb(15 16 14 / 0.22);
  border-color: rgb(255 255 255 / 0.72);
  backdrop-filter: blur(10px);
}

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

.daypart-rail {
  overflow: hidden;
  color: var(--white);
  background: var(--accent);
}

.daypart-track {
  --daypart-gap: clamp(32px, 4.5vw, 72px);
  display: flex;
  width: max-content;
  min-height: 72px;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  letter-spacing: -0.01em;
  animation: daypart-flow 24s linear infinite;
  animation-play-state: running;
  will-change: transform;
}

.daypart-rail.is-ambient .daypart-track {
  animation-play-state: running;
}

.daypart-sequence {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--daypart-gap);
  padding: 0 var(--daypart-gap) 0 0;
}

.daypart-sequence span {
  display: inline-flex;
  align-items: center;
  gap: var(--daypart-gap);
  white-space: nowrap;
}

.daypart-sequence span::after {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.72;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--canvas);
  isolation: isolate;
}

.about-ribbon {
  position: absolute;
  top: 11%;
  left: -8%;
  z-index: 0;
  display: flex;
  width: max-content;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 12vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.8;
  opacity: 0.075;
  transform: rotate(-4deg) translate3d(-3%, 0, 0);
  -webkit-text-stroke: 1.5px var(--ink);
  animation: ribbon-drift 16s var(--ease-in-out) infinite alternate;
  animation-play-state: paused;
  will-change: transform;
}

.about.is-ambient .about-ribbon {
  animation-play-state: running;
}

.hero-seal,
.about-ribbon,
.story-orbit,
.feature-halo,
.good-orbit,
.footer-runner {
  pointer-events: none;
  user-select: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(52px, 9vw, 130px);
  align-items: center;
}

.location-line,
.section-intro,
.good-lead {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
}

.location-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.location-line .icon {
  width: 1rem;
  height: 1rem;
}

.about-copy h2 {
  max-width: 12ch;
}

.about-copy > p:not(.location-line) {
  max-width: 64ch;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.media-portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.about-image {
  margin: 0;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 52px 0 0;
  border-top: 1px solid var(--line);
}

.fact-row > div {
  padding: 18px 20px 0 0;
}

.fact-row dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.fact-row dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.story {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

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

.story-orbit {
  position: absolute;
  top: clamp(38px, 5vw, 76px);
  right: -90px;
  z-index: 0;
  display: grid;
  width: clamp(260px, 31vw, 480px);
  aspect-ratio: 1;
  place-items: center;
  color: rgb(255 253 250 / 0.22);
  border: 1px solid currentColor;
  border-radius: 50%;
  animation: orbit-spin 22s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.story.is-ambient .story-orbit {
  animation-play-state: running;
}

.story-orbit::before,
.story-orbit::after,
.story-orbit i {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.story-orbit::before {
  inset: 14%;
}

.story-orbit::after {
  inset: 31%;
}

.story-orbit i:first-child {
  top: -8px;
  left: 50%;
  width: 16px;
  aspect-ratio: 1;
  background: var(--accent);
  border-color: var(--accent);
}

.story-orbit i:nth-child(2) {
  right: 13%;
  bottom: 13%;
  width: 9px;
  aspect-ratio: 1;
  background: var(--white);
}

.story-orbit span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.story-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.story-heading h2 {
  max-width: 10ch;
}

.story-heading p {
  max-width: 42ch;
  margin: 0 0 6px;
  color: rgb(255 253 250 / 0.76);
}

.story-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.story-scene {
  min-width: 0;
  margin: 0;
  transition: transform 220ms var(--ease-out);
}

.story-media {
  display: block;
  overflow: hidden;
  background: #262823;
}

.story-scene img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: filter 220ms ease;
  animation: scene-breathe 10s var(--ease-in-out) infinite alternate;
  animation-play-state: paused;
  will-change: transform;
}

.story-scene:nth-child(2) img {
  animation-delay: -3.3s;
}

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

.story.is-ambient .story-scene img {
  animation-play-state: running;
}

.story-scene figcaption {
  display: grid;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 0.22);
}

.story-scene strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.025em;
}

.story-scene span {
  color: rgb(255 253 250 / 0.7);
  font-size: 0.9rem;
}

.menu {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 24px clamp(48px, 9vw, 130px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.section-heading .section-intro {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  max-width: 11ch;
}

.section-heading > p:last-child {
  max-width: 48ch;
  margin: 0 0 6px;
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.3vw, 36px);
}

.menu-image {
  background: #d9ddd3;
}

.menu-image img {
  transition: transform 240ms var(--ease-out), filter 200ms ease;
}

.menu-column h3 {
  margin: 24px 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1;
}

.menu-note {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
}

.dish-list {
  padding: 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.dish-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.35;
}

.dish-list strong {
  font-size: 0.9rem;
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 2px solid currentColor;
  color: var(--accent);
  background: transparent;
  font-weight: 900;
}

.text-link .icon {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 180ms var(--ease-out);
}

.menu-link {
  margin-top: 42px;
}

.feature {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--accent);
  isolation: isolate;
}

.feature-halo {
  position: absolute;
  top: -24%;
  right: -10%;
  z-index: 0;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border: clamp(46px, 7vw, 96px) solid rgb(255 253 250 / 0.1);
  border-radius: 50%;
  animation: halo-float 9s var(--ease-in-out) infinite alternate;
  animation-play-state: paused;
  will-change: transform, opacity;
}

.feature-halo::before,
.feature-halo::after,
.feature-halo span {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.feature-halo::before {
  inset: 20%;
  border: 2px solid rgb(255 253 250 / 0.18);
}

.feature-halo::after {
  right: 3%;
  bottom: 11%;
  width: 13%;
  aspect-ratio: 1;
  background: var(--leaf);
}

.feature-halo span {
  top: 4%;
  left: 18%;
  width: 7%;
  aspect-ratio: 1;
  background: var(--white);
  opacity: 0.65;
}

.feature.is-ambient .feature-halo {
  animation-play-state: running;
}

.feature-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  min-height: min(860px, 92svh);
  padding-block: clamp(70px, 8vw, 110px);
}

.feature-layout > img {
  width: 100%;
  max-height: 720px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  animation: feature-float 8s var(--ease-in-out) infinite alternate;
  animation-play-state: paused;
  will-change: transform;
}

.feature.is-ambient .feature-layout > img {
  animation-play-state: running;
}

.feature-copy > p:first-child {
  margin: 0 0 22px;
  color: rgb(255 253 250 / 0.78);
  font-weight: 800;
}

.feature-copy h2 {
  max-width: 9ch;
}

.feature-copy p:not(:first-child) {
  max-width: 34ch;
  margin: 26px 0;
}

.feature-copy .text-link {
  color: var(--white);
}

.gallery {
  background: var(--canvas);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #dfe1dc;
  cursor: zoom-in;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.gallery-item img {
  transition: filter 200ms ease;
  animation: gallery-drift 12s var(--ease-in-out) infinite alternate;
  animation-play-state: paused;
  will-change: transform;
}

.gallery-item:nth-child(2n) img {
  animation-direction: alternate-reverse;
  animation-delay: -4s;
}

.gallery-item:nth-child(3n) img {
  animation-delay: -8s;
}

.gallery.is-ambient .gallery-item img {
  animation-play-state: running;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 2px;
  padding: 60px 18px 18px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgb(10 11 9 / 0.78));
  text-align: left;
}

.gallery-caption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.gallery-caption small {
  font-size: 0.76rem;
}

.reviews {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.reviews::before {
  position: absolute;
  right: -10%;
  bottom: -58%;
  z-index: 0;
  width: min(70vw, 900px);
  aspect-ratio: 1;
  border: 1px dashed rgb(255 255 255 / 0.09);
  border-radius: 50%;
  box-shadow: inset 0 0 0 80px rgb(255 255 255 / 0.025), inset 0 0 0 160px rgb(255 255 255 / 0.02);
  content: "";
  animation: review-orbit 18s linear infinite;
  animation-play-state: paused;
}

.reviews.is-ambient::before {
  animation-play-state: running;
}

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

.review-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
}

.review-heading h2 {
  max-width: none;
}

.review-heading p {
  margin: 0 0 8px;
  color: rgb(255 253 250 / 0.68);
}

.review-heading strong {
  color: var(--white);
  font-size: 1.55rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 0.22);
}

.review {
  padding: 36px 34px 0 0;
}

.review + .review {
  padding-left: 34px;
  border-left: 1px solid rgb(255 255 255 / 0.22);
}

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

.review-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  animation: avatar-float 5.5s var(--ease-in-out) infinite alternate;
  animation-play-state: paused;
  will-change: transform;
}

.review:nth-child(2) .review-author img {
  animation-delay: -1.8s;
}

.review:nth-child(3) .review-author img {
  animation-delay: -3.6s;
}

.reviews.is-ambient .review-author img {
  animation-play-state: running;
}

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

.review-author h3 {
  font-size: 0.95rem;
}

.review-author p {
  color: #ff7257;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  animation: stars-glow 4.8s var(--ease-in-out) infinite;
  animation-play-state: paused;
}

.reviews.is-ambient .review-author p {
  animation-play-state: running;
}

.review blockquote {
  min-height: 142px;
  margin: 30px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.review a {
  display: inline-block;
  color: rgb(255 253 250 / 0.7);
  font-size: 0.8rem;
  font-weight: 800;
}

.good-to-know {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--leaf);
  isolation: isolate;
}

.good-to-know > .section-shell {
  position: relative;
  z-index: 1;
}

.good-orbit {
  position: absolute;
  bottom: -46%;
  left: -13%;
  z-index: 0;
  display: grid;
  width: min(62vw, 760px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px dashed rgb(255 253 250 / 0.22);
  border-radius: 50%;
  animation: orbit-spin 26s linear infinite reverse;
  animation-play-state: paused;
  will-change: transform;
}

.good-orbit::before,
.good-orbit::after {
  position: absolute;
  border: 1px solid rgb(255 253 250 / 0.14);
  border-radius: 50%;
  content: "";
}

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

.good-orbit::after {
  inset: 32%;
}

.good-orbit span {
  color: rgb(255 253 250 / 0.22);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.6rem);
  letter-spacing: 0.14em;
}

.good-to-know.is-ambient .good-orbit {
  animation-play-state: running;
}

.good-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(58px, 10vw, 150px);
  align-items: start;
}

.good-lead {
  color: rgb(255 253 250 / 0.72);
}

.good-grid h2 {
  max-width: 10ch;
}

.service-list {
  margin: 0;
  border-top: 1px solid rgb(255 255 255 / 0.28);
}

.service-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.28);
}

.service-list dt {
  color: rgb(255 253 250 / 0.7);
}

.service-list dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.visit {
  background: var(--canvas);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: stretch;
}

.visit-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.visit-details h2 {
  max-width: 8ch;
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
}

.visit-details address {
  margin: 34px 0 0;
  color: var(--muted);
  font-style: normal;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 900;
}

.phone-link .icon,
.footer-phone .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hours {
  width: 100%;
  margin: 36px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hours h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.8rem;
}

.hours h3 .icon {
  width: 1rem;
  height: 1rem;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 6px 0;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.map-wrap {
  min-height: 680px;
  overflow: hidden;
  background: var(--surface);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 680px;
  border: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 132px) 0 66px;
  color: var(--white);
  background: #0d0e0c;
}

.footer-callout {
  display: block;
  max-width: 12ch;
  padding-bottom: clamp(58px, 7vw, 92px);
  margin-bottom: 48px;
  border-bottom: 1px solid rgb(255 255 255 / 0.25);
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.footer-callout span {
  color: #ff7257;
  animation: footer-pulse 5s var(--ease-in-out) infinite;
  animation-play-state: paused;
}

.site-footer.is-ambient .footer-callout span {
  animation-play-state: running;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 44px;
  align-items: end;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

.footer-brand span {
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
}

.site-footer p {
  margin: 0;
  color: rgb(255 253 250 / 0.66);
}

.site-footer a[href^="tel"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 800;
}

.footer-hours {
  display: grid;
  gap: 7px;
}

.footer-hours p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-hours strong {
  color: var(--white);
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 20px;
}

.site-footer nav {
  display: flex;
  gap: 28px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
}

.footer-runner {
  display: flex;
  width: max-content;
  margin-top: clamp(58px, 7vw, 90px);
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 0.16);
  color: rgb(255 253 250 / 0.24);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.7vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  animation: footer-flow 28s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.footer-runner span {
  padding-right: 0.45em;
}

.site-footer.is-ambient .footer-runner {
  animation-play-state: running;
}

.menu-dialog {
  width: min(1180px, calc(100% - 32px));
  height: auto;
  max-width: none;
  max-height: min(92svh, 900px);
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--canvas);
}

.menu-dialog[open] {
  display: grid;
  grid-template-rows: auto auto auto;
}

.menu-dialog::backdrop {
  background: rgb(9 10 8 / 0.9);
}

.menu-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.menu-dialog-head p {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.menu-dialog h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.dialog-close,
.menu-zoom button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  font-weight: 800;
}

.dialog-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 18px;
}

.dialog-close .icon,
.lightbox-close .icon {
  width: 1rem;
  height: 1rem;
}

.lightbox-close {
  gap: 8px;
}

.menu-viewer {
  overflow: auto;
  max-height: min(calc(92svh - 174px), 730px);
  padding: 28px;
  background: var(--surface);
}

.menu-viewer img {
  width: calc(var(--menu-zoom, 1) * 100%);
  max-width: none;
  height: auto;
  margin-inline: auto;
  background: var(--white);
}

.menu-zoom {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 20px;
  border-top: 1px solid var(--line);
  background: var(--canvas);
}

.menu-zoom span {
  min-width: 54px;
  font-weight: 800;
  text-align: center;
}

.menu-zoom button .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-dialog);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 78px 24px 24px;
  color: var(--white);
  background: rgb(13 14 12 / 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu.no-motion,
.lightbox.no-motion {
  transition: none;
}

.lightbox-top {
  position: absolute;
  top: 18px;
  right: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lightbox-top span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lightbox figure {
  display: grid;
  justify-items: center;
  max-width: 100%;
  max-height: calc(100svh - 110px);
  margin: 0;
}

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

.lightbox figcaption {
  margin-top: 12px;
  color: rgb(255 253 250 / 0.76);
  font-size: 0.85rem;
  text-align: center;
}

.lightbox button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgb(255 255 255 / 0.45);
  color: var(--white);
  background: rgb(255 255 255 / 0.08);
}

.lightbox-nav .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.text-link,
.dialog-close,
.menu-zoom button,
.lightbox button {
  transition: opacity 160ms ease, color 160ms ease, background-color 160ms ease, transform 160ms var(--ease-out);
}

.text-link:active,
.dialog-close:active,
.menu-zoom button:active,
.lightbox button:active {
  transform: scale(0.97);
}

.gallery-item:active {
  transform: scale(0.985);
}

@keyframes hero-breathe {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.075) translate3d(-0.8%, -0.6%, 0);
  }
}

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

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

@keyframes ribbon-drift {
  from {
    transform: rotate(-4deg) translate3d(-3%, 0, 0);
  }
  to {
    transform: rotate(-2.8deg) translate3d(-11%, 18px, 0);
  }
}

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

@keyframes scene-breathe {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(0.7%, -0.5%, 0);
  }
}

@keyframes halo-float {
  from {
    opacity: 0.72;
    transform: translate3d(-10px, 18px, 0) rotate(0deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(20px, -20px, 0) rotate(24deg) scale(1.06);
  }
}

@keyframes feature-float {
  from {
    transform: translate3d(0, -9px, 0) rotate(-0.25deg);
  }
  to {
    transform: translate3d(0, 9px, 0) rotate(0.25deg);
  }
}

@keyframes gallery-drift {
  from {
    transform: scale(1.02) translate3d(-0.4%, 0.25%, 0);
  }
  to {
    transform: scale(1.07) translate3d(0.55%, -0.55%, 0);
  }
}

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

@keyframes avatar-float {
  from {
    transform: translate3d(0, -3px, 0) rotate(-2deg);
  }
  to {
    transform: translate3d(0, 3px, 0) rotate(2deg);
  }
}

@keyframes stars-glow {
  0%, 100% {
    opacity: 0.58;
  }
  50% {
    opacity: 1;
  }
}

@keyframes footer-pulse {
  0%, 100% {
    opacity: 0.68;
  }
  50% {
    opacity: 1;
  }
}

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

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after,
  .site-footer nav a:hover::after,
  .review a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .social-link:hover {
    opacity: 0.72;
    transform: translateY(-2px);
  }

  .hero-scroll:hover .icon {
    transform: translateY(4px);
  }

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

  .button-primary:hover {
    background: var(--accent-deep);
  }

  .button-glass:hover {
    color: var(--ink);
    background: var(--white);
  }

  .button-outline:hover {
    color: var(--white);
    background: var(--ink);
  }

  .story-scene:hover {
    transform: translateY(-8px);
  }

  .story-scene:hover img,
  .menu-column:hover .menu-image img,
  .gallery-item:hover img {
    filter: saturate(1.08);
  }

  .menu-column:hover .menu-image img {
    transform: scale(1.025);
  }

  .gallery-item:hover {
    z-index: 2;
    box-shadow: 0 18px 44px rgb(21 23 20 / 0.18);
    transform: translateY(-8px) scale(1.01);
  }

  .text-link:hover {
    opacity: 0.7;
    transform: translateY(-2px);
  }

  .text-link:hover .icon {
    transform: translateX(3px);
  }

  .service-list > div:hover dd {
    transform: translateX(8px);
  }

  .button:hover:active,
  .text-link:hover:active,
  .dialog-close:hover:active,
  .menu-zoom button:hover:active,
  .lightbox button:hover:active {
    transform: scale(0.97);
  }

  .gallery-item:hover:active {
    transform: scale(0.985);
  }

  .social-link:hover:active {
    transform: scale(0.92);
  }
}

.service-list dd {
  transition: transform 200ms var(--ease-out);
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .about-grid,
  .feature-layout,
  .visit-grid,
  .good-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-copy {
    order: 1;
  }

  .about-image {
    order: 2;
    width: 100%;
    max-width: 520px;
    min-width: 0;
    justify-self: end;
  }

  .story-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

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

  .menu-grid {
    gap: 16px;
  }

  .dish-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .feature-layout {
    min-height: 0;
  }

  .feature-layout > img {
    width: min(88%, 620px);
  }

  .feature-copy {
    width: min(92%, 560px);
    margin: -110px 0 0 auto;
    padding: 34px 30px 38px;
    color: var(--white);
    background: var(--accent-deep);
  }

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

  .review {
    padding-right: 20px;
  }

  .review + .review {
    padding-left: 20px;
  }

  .good-grid {
    gap: 54px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 520px;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .footer-socials {
    margin-left: -12px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 78px;
    --shell: calc(100% - 28px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 7px 14px;
    border-bottom-color: rgb(255 255 255 / 0.28);
    background: linear-gradient(180deg, rgb(13 14 12 / 0.42), rgb(13 14 12 / 0.06));
  }

  .site-header.is-solid,
  .site-header.menu-open {
    background: rgb(245 245 241 / 0.96);
    border-bottom-color: var(--line);
  }

  .brand {
    position: relative;
    z-index: 2;
    display: flex;
    width: auto;
    height: 62px;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-align: left;
  }

  .brand-badge {
    width: 60px;
    height: 60px;
    border-color: rgb(22 23 20 / 0.18);
    box-shadow: 0 0 0 5px rgb(255 253 250 / 0.25), 0 7px 18px rgb(13 14 12 / 0.18);
  }

  .brand-name {
    font-family: "Baskerville", "Times New Roman", serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .brand-subname {
    display: block;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .mobile-wordmark {
    display: none;
  }

  .site-header.is-solid .brand,
  .site-header.menu-open .brand {
    color: var(--ink);
  }

  .header-actions {
    position: relative;
    z-index: 2;
    gap: 0;
  }

  .header-actions .social-link {
    display: grid;
    width: 36px;
    height: 44px;
  }

  .header-actions .social-link svg {
    width: 19px;
    height: 19px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 42px;
    min-width: 42px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .nav-toggle-icon {
    width: 1.6rem;
    height: 1.6rem;
  }

  .section {
    padding: 88px 0;
  }

  .section h2 {
    font-size: clamp(2.75rem, 12.3vw, 3.45rem);
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 58px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgb(0 0 0 / 0.2) 0%, rgb(0 0 0 / 0.06) 40%, rgb(0 0 0 / 0.48) 100%);
  }

  .hero-seal {
    top: 118px;
    right: 20px;
    width: 110px;
    background: rgb(13 14 12 / 0.08);
    box-shadow: 0 0 0 7px rgb(255 255 255 / 0.08);
  }

  .hero-seal span {
    font-size: 1.65rem;
  }

  .hero-kicker {
    margin-bottom: 20px;
    font-size: 0.7rem;
    letter-spacing: 0.19em;
  }

  .hero h1 {
    max-width: none;
    font-family: "Didot", "Bodoni MT", "Baskerville", "Times New Roman", serif;
    font-size: clamp(2.7rem, 12.3vw, 4.15rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 0.9;
    text-shadow: 0 2px 18px rgb(13 14 12 / 0.24);
  }

  .hero-copy {
    max-width: 31ch;
    margin-top: 24px;
    font-size: clamp(1rem, 4.2vw, 1.1rem);
    line-height: 1.45;
  }

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

  .hero-copy-mobile {
    display: inline;
  }

  .hero-actions {
    width: 100%;
    gap: 14px;
    margin-top: 34px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    padding-inline: 16px;
    border-width: 1px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
  }

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

  .hero-actions .button-glass {
    color: var(--white);
    border-color: rgb(255 255 255 / 0.78);
    background: rgb(13 14 12 / 0.08);
    backdrop-filter: blur(4px);
  }

  .hero-actions .hero-icon-desktop {
    display: none;
  }

  .hero-actions .hero-icon-mobile {
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    order: 2;
    margin-left: auto;
  }

  .hero-scroll {
    display: none;
  }

  .hero-seal {
    top: 88px;
    right: 18px;
    width: 84px;
  }

  .hero-seal text {
    font-size: 7.2px;
    letter-spacing: 1.25px;
  }

  .daypart-track {
    width: max-content;
    padding: 0;
    overflow: visible;
  }

  .daypart-sequence {
    --daypart-gap: 28px;
  }

  .daypart-sequence span {
    gap: var(--daypart-gap);
  }

  .about-ribbon {
    top: 7%;
    font-size: 6.3rem;
  }

  .about-grid {
    gap: 42px;
  }

  .about-image {
    width: auto;
    max-width: none;
    justify-self: stretch;
  }

  .about-copy > p:not(.location-line) {
    margin-top: 26px;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 38px;
  }

  .fact-row > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 0 0 12px;
    border-bottom: 1px solid var(--line);
  }

  .fact-row dd {
    text-align: right;
  }

  .story-heading {
    margin-bottom: 38px;
  }

  .story-orbit {
    top: 100px;
    right: -122px;
    width: 250px;
  }

  .story-track {
    display: flex;
    width: auto;
    margin-left: 14px;
    padding-right: 14px;
    gap: 14px;
    overflow-x: auto;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .story-track::-webkit-scrollbar {
    display: none;
  }

  .story-scene {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .section-heading .section-intro {
    margin-bottom: 2px;
  }

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

  .menu-grid {
    gap: 58px;
  }

  .menu-note {
    min-height: 0;
  }

  .dish-list li {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .feature-layout {
    gap: 0;
    padding-block: 68px;
  }

  .feature-halo {
    top: 2%;
    right: -42%;
    width: 420px;
  }

  .feature-layout > img {
    width: 100%;
  }

  .feature-copy {
    width: calc(100% - 18px);
    margin: -56px 0 0 auto;
    padding: 28px 24px 32px;
  }

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

  .review-heading {
    display: block;
    margin-bottom: 36px;
  }

  .review-heading p {
    margin-top: 16px;
  }

  .review,
  .review + .review {
    padding: 30px 0;
    border-left: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.22);
  }

  .review blockquote {
    min-height: 0;
  }

  .good-grid {
    gap: 46px;
  }

  .good-orbit {
    bottom: -6%;
    left: -54%;
    width: 430px;
  }

  .service-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 16px 0;
  }

  .visit-grid {
    gap: 48px;
  }

  .visit-details h2 {
    font-size: clamp(2.8rem, 13vw, 3.6rem);
  }

  .visit-actions {
    width: 100%;
  }

  .visit-actions .button {
    flex: 1 1 0;
    padding-inline: 12px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 440px;
  }

  .footer-callout {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .footer-runner {
    font-size: 1.65rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .footer-hours p {
    justify-content: flex-start;
  }

  .footer-links {
    grid-column: auto;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .menu-dialog {
    width: calc(100% - 16px);
    max-height: 94svh;
  }

  .menu-dialog-head {
    padding: 16px;
  }

  .menu-viewer {
    max-height: calc(94svh - 158px);
    padding: 12px;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 12px;
    padding: 72px 14px 14px;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }
}

@media (min-width: 901px) {
  .desktop-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgb(0 0 0 / 0.14) 0%, rgb(0 0 0 / 0.1) 40%, rgb(0 0 0 / 0.42) 100%);
  }

  .hero-seal {
    top: clamp(92px, 9vh, 126px);
    width: clamp(142px, 12vw, 188px);
  }

  .hero-seal span {
    font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.65fr);
    grid-template-rows: auto auto;
    column-gap: clamp(48px, 7vw, 120px);
    align-content: end;
    align-items: end;
    padding-bottom: clamp(58px, 8vh, 92px);
  }

  .hero-kicker {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 20px;
    letter-spacing: 0.18em;
  }

  .hero h1 {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    font-family: "Didot", "Bodoni MT", "Baskerville", "Times New Roman", serif;
    font-size: clamp(4.7rem, 7.4vw, 7.4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.86;
    text-shadow: 0 3px 24px rgb(13 14 12 / 0.24);
    white-space: normal;
  }

  .hero h1 span {
    display: block;
  }

  .hero h1 span + span {
    margin-left: 0;
  }

  .hero-copy {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    max-width: 38ch;
    margin: 0 0 28px;
    justify-self: end;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.45;
    text-align: right;
    transform: translateY(clamp(48px, 6vw, 86px));
  }

  .hero-actions {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    max-width: 390px;
    margin: 0;
    justify-self: end;
    gap: 14px;
  }

  .hero-actions .button {
    min-height: 60px;
    justify-content: space-between;
    padding-inline: 22px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
  }

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

  .hero-actions .button-glass {
    color: var(--white);
    border-color: rgb(255 255 255 / 0.78);
    background: rgb(13 14 12 / 0.08);
    backdrop-filter: blur(4px);
  }

  .hero-actions .hero-icon-desktop {
    display: none;
  }

  .hero-actions .hero-icon-mobile {
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    order: 2;
    margin-left: auto;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 360px) {
  .header-actions .social-link:nth-child(2) {
    display: none;
  }

  .mobile-wordmark {
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .hero-actions .button {
    padding-inline: 13px;
    font-size: 0.82rem;
  }
}

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

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

  .hero-image,
  .hero-seal svg,
  .about-ribbon,
  .story-orbit,
  .story-scene img,
  .feature-halo,
  .feature-layout > img,
  .gallery-item img,
  .reviews::before,
  .review-author img,
  .review-author p,
  .good-orbit,
  .footer-callout span,
  .footer-runner {
    animation: none !important;
    transform: none !important;
  }

  .daypart-track {
    width: 100%;
    animation: none !important;
    transform: none !important;
  }

  .daypart-sequence:first-child {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .daypart-sequence[aria-hidden="true"] {
    display: none;
  }

  .button:hover,
  .social-link:hover,
  .story-scene:hover,
  .gallery-item:hover,
  .text-link:hover,
  .service-list > div:hover dd {
    transform: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .button-glass,
  .hero-seal {
    backdrop-filter: none;
  }

  .hero-seal {
    background: rgb(13 14 12 / 0.56);
  }

  .site-header {
    background: rgb(22 23 20 / 0.84);
  }

  .site-header.is-solid,
  .site-header.menu-open {
    background: var(--canvas);
  }
}
