:root {
  --ink: #0b2239;
  --ink-soft: #33495f;
  --paper: #f6f5f0;
  --paper-blue: #e9eff4;
  --line: rgba(11, 34, 57, 0.18);
  --accent: #dfff58;
  --white: #fbfcfa;
  --header-height: 72px;
  --section-pad: clamp(4.75rem, 10vw, 9rem);
  --page-pad: clamp(1rem, 4vw, 4.5rem);
  --content-max: 1440px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0.5rem var(--page-pad);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--white);
  transition: background-color 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: var(--ink);
  box-shadow: 0 4px 8px rgba(4, 15, 25, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 52px;
  gap: 0.7rem;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
}

.brand-name {
  display: grid;
  line-height: 1;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.brand-name small {
  margin-top: 0.28rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.1rem, 2.6vw, 2.75rem);
  padding-inline: 1.5rem;
}

.desktop-nav a,
.footer-links a {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dialog nav a[aria-current="location"] {
  color: var(--accent);
}

.header-actions,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: currentColor;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: var(--ink);
}

.social-link svg {
  width: 21px;
  height: 21px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link .icon-fill,
.social-link .facebook-icon path {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

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

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

.hero-image {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: 50% 48%;
  animation: hero-settle 1.2s var(--ease) both, hero-breathe 18s 1.2s var(--ease-in-out) infinite alternate;
}

.hero-scrim {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.23) 55%, rgba(0, 0, 0, 0.30) 100%);
}

.hero-light {
  position: absolute;
  z-index: -1;
  top: -30%;
  left: -18%;
  width: min(72vw, 980px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 255, 88, 0.15) 0%, rgba(223, 255, 88, 0.04) 38%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform, opacity;
  animation: hero-light-drift 12s var(--ease-in-out) infinite alternate;
}

.hero-orbit {
  position: absolute;
  right: clamp(1rem, 4vw, 4.5rem);
  bottom: clamp(3rem, 8vh, 6rem);
  z-index: 2;
  width: clamp(124px, 13vw, 180px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 34, 57, 0.48);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 18px 50px rgba(5, 10, 16, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  will-change: transform;
}

.hero-orbit svg {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  overflow: visible;
  animation: orbit-spin 18s linear infinite;
}

.hero-orbit text {
  fill: currentColor;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.1px;
}

.hero-orbit > span {
  display: grid;
  width: 42%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: clamp(0.85rem, 1.5vw, 1.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  animation: orbit-core 3.4s var(--ease-in-out) infinite alternate;
}

.hero-content {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding: calc(var(--header-height) + 2rem) var(--page-pad) clamp(3rem, 9vh, 7rem);
}

.hero-kicker,
.section-kicker {
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.85rem, 6.3vw, 5.9rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.hero-line {
  display: block;
  animation: hero-line-in 900ms var(--ease) both;
}

.hero-line:nth-child(2) {
  animation-delay: 90ms;
}

.hero-kicker {
  font-size: 0.72rem;
  margin-bottom: 1rem;
}

.hero-content > p:not(.hero-kicker) {
  max-width: 470px;
  margin: 1.15rem 0 0;
  font-size: clamp(0.98rem, 1.65vw, 1.18rem);
  line-height: 1.4;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.45rem;
}

.hero-ctas .button {
  min-height: 46px;
  padding: 0.7rem 1.15rem;
  font-size: 0.72rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1.25rem var(--page-pad);
  background: var(--ink);
  color: var(--white);
}

.quick-facts p {
  display: grid;
  gap: 0.1rem;
  margin: 0;
  padding: 0.15rem clamp(1rem, 2.4vw, 2.5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-facts p:first-child {
  padding-left: 0;
}

.quick-facts p:last-child {
  padding-right: 0;
  border-right: 0;
}

.quick-facts strong {
  color: var(--accent);
  font-size: clamp(0.92rem, 1.25vw, 1.12rem);
  line-height: 1.2;
}

.quick-facts span {
  color: rgba(251, 252, 250, 0.7);
  font-size: 0.78rem;
}

.motion-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--accent);
  color: var(--ink);
  white-space: nowrap;
}

.motion-marquee-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: max-content;
  padding-block: 0.78rem;
  animation: marquee-flow 24s linear infinite;
}

.motion-marquee span {
  padding-inline: clamp(1.15rem, 3vw, 3rem);
  font-size: clamp(0.78rem, 1.2vw, 0.98rem);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.motion-marquee i {
  display: inline-block;
  font-style: normal;
  animation: sparkle-turn 4s linear infinite;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

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

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(8, 12, 16, 0.22);
  color: var(--white);
}

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

.button-dark {
  border: 0;
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--accent);
  color: var(--ink);
}

.section {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding: var(--section-pad) var(--page-pad);
}

h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  align-items: center;
}

.about-copy {
  max-width: 760px;
}

.about-copy > p:not(.section-kicker) {
  max-width: 65ch;
  margin: 2rem 0 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.about-tags li {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--paper-blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.text-link {
  display: inline-block;
  font-weight: 900;
  text-decoration-color: var(--ink);
}

.portrait-media,
.menu-media,
.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.portrait-media {
  position: relative;
  width: min(100%, 520px);
  margin: 0 0 0 auto;
}

.portrait-stamp {
  position: absolute;
  right: -0.15rem;
  bottom: 1.25rem;
  display: grid;
  min-width: 148px;
  padding: 0.9rem 1.05rem;
  transform: rotate(-3deg);
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(11, 34, 57, 0.18);
  animation: stamp-float 4.8s var(--ease-in-out) infinite alternate;
}

.portrait-stamp strong {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.portrait-stamp span {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.portrait-media img {
  object-position: 50% 50%;
}

.menu-section {
  border-top: 1px solid var(--line);
  background: var(--paper-blue);
  box-shadow: 0 0 0 100vmax var(--paper-blue);
  clip-path: inset(0 -100vmax);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(2.5rem, 5vw, 4.75rem);
}

.section-heading p,
.gallery-heading p,
.reviews-intro p {
  max-width: 52ch;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
}

.menu-card {
  min-width: 0;
}

.menu-card:nth-child(2) {
  margin-top: clamp(0rem, 3.5vw, 3.25rem);
}

.menu-card:nth-child(3) {
  margin-top: clamp(0rem, 7vw, 6.5rem);
}

.menu-media img {
  object-position: 50% 50%;
  animation: menu-image-drift 14s var(--ease-in-out) infinite alternate;
}

.menu-card:nth-child(2) .menu-media img {
  animation-delay: -4s;
}

.menu-card:nth-child(3) .menu-media img {
  animation-delay: -8s;
}

.menu-card-copy {
  padding: 1.25rem 0 0;
}

.menu-time {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-card-copy > p {
  min-height: 3.2em;
  margin: 0.55rem 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.menu-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.menu-card strong {
  font-variant-numeric: tabular-nums;
}

.menu-action {
  display: flex;
  justify-content: center;
  margin-top: 3.25rem;
}

.not-typical-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.not-typical-strip::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -18vw;
  bottom: -26vw;
  width: min(72vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(223, 255, 88, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 110px rgba(223, 255, 88, 0.09), inset 0 0 90px rgba(223, 255, 88, 0.04);
  animation: ambient-orbit 16s var(--ease-in-out) infinite alternate;
}

.not-typical-photo {
  min-height: 720px;
  margin: 0;
  overflow: hidden;
}

.not-typical-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  animation: strip-image-breathe 16s var(--ease-in-out) infinite alternate;
}

.not-typical-copy {
  width: min(100%, 860px);
  align-self: center;
  padding: clamp(4rem, 8vw, 8rem) var(--page-pad);
}

.not-typical-copy .section-kicker {
  color: var(--accent);
}

.not-typical-copy h2 {
  max-width: 720px;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.experience-list article {
  position: relative;
  padding: 1.4rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.experience-list article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 34%;
  height: 1px;
  transform: scaleX(0.18);
  transform-origin: left;
  background: var(--accent);
  opacity: 0.75;
  animation: line-pulse 4.5s var(--ease-in-out) infinite alternate;
}

.experience-list article:nth-child(2)::before { animation-delay: -1.1s; }
.experience-list article:nth-child(3)::before { animation-delay: -2.2s; }
.experience-list article:nth-child(4)::before { animation-delay: -3.3s; }

.experience-list h3 {
  color: var(--accent);
  font-size: 1.05rem;
}

.experience-list p {
  max-width: 28ch;
  margin: 0.65rem 0 0;
  color: rgba(251, 252, 250, 0.72);
  font-size: 0.92rem;
}

.gallery-section {
  border-top: 1px solid var(--line);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

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

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--paper-blue);
  cursor: zoom-in;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  margin-top: 2.5rem;
}

.gallery-item img {
  transition: transform 520ms var(--ease), filter 520ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.gallery-caption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 0.8rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: left;
  transition: transform 240ms var(--ease), background-color 240ms ease, color 240ms ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  transform: translateY(-0.2rem);
  background: var(--accent);
  color: var(--ink);
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(210px, 0.35fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}

.review-score {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.review-score::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -34%;
  bottom: -48%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(223, 255, 88, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 36px rgba(223, 255, 88, 0.14);
  animation: score-orbit 9s linear infinite;
}

.review-score span {
  display: block;
}

.review-score .score {
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.stars {
  margin-top: 1.4rem;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.review-score span:last-child {
  margin-top: 0.45rem;
  color: rgba(251, 252, 250, 0.72);
}

.reviews-intro {
  max-width: 680px;
  margin-bottom: 3rem;
}

.review-list {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1.3rem;
  align-items: flex-start;
  padding: clamp(1.4rem, 2.5vw, 2.25rem);
  background: var(--white);
}

.review:first-child {
  grid-row: 1 / 3;
  justify-content: space-between;
  background: var(--paper-blue);
}

.review-author {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

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

.review-author strong,
.review-author span {
  display: block;
}

.review-author span {
  margin-top: 0.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.review blockquote {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

.review:first-child blockquote {
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.18;
}

.review > a {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.mobile-action-bar {
  display: none;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  min-height: 760px;
  background: var(--paper-blue);
}

.visit-info {
  width: 100%;
  max-width: 720px;
  margin: 0 0 0 auto;
}

.visit-info h2 {
  max-width: 620px;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.visit-details h3 {
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-details address,
.footer-address address {
  font-style: normal;
}

.visit-details p {
  margin: 0 0 1rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.2rem;
  margin-bottom: 2.3rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.feature-strip span::before {
  content: "+";
  margin-right: 0.45rem;
  font-weight: 900;
}

.map-preload-shell {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  pointer-events: none;
}

.map-wrap {
  position: relative;
  min-height: 100%;
  background: #d9e2e9;
  overflow: hidden;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: end;
  padding: 4rem var(--page-pad);
  background: var(--ink);
  color: var(--white);
}

.footer-brand img {
  width: 84px;
  height: 84px;
  display: block;
  object-fit: cover;
}

.footer-brand p {
  margin: 0.85rem 0 0;
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-address {
  justify-self: end;
  text-align: right;
}

.footer-socials {
  justify-content: flex-end;
  margin-top: 0.85rem;
}

dialog {
  padding: 0;
  border: 0;
}

dialog::backdrop {
  background: rgba(5, 10, 16, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: calc(var(--header-height) + 2rem) var(--page-pad) 2.5rem;
  background: var(--ink);
  color: var(--white);
}

.nav-dialog nav {
  display: grid;
}

.nav-dialog nav a {
  padding: 0.35rem 0;
  font-size: clamp(2.6rem, 13vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
}

.nav-close {
  position: absolute;
  top: 1rem;
  right: var(--page-pad);
}

.nav-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.72);
}

.dialog-close,
.lightbox-nav,
.lightbox-close {
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms var(--ease), background-color 180ms ease, color 180ms ease;
}

.dialog-close:active,
.lightbox-nav:active,
.lightbox-close:active,
.menu-toggle:active,
.social-link:active,
.gallery-item:active {
  transform: scale(0.97);
}

dialog[open] {
  animation: dialog-enter 260ms var(--ease) both;
}

dialog[open]::backdrop {
  animation: backdrop-enter 220ms ease-out both;
}

.nav-dialog[open] nav a {
  animation: nav-link-enter 420ms var(--ease-drawer) both;
}

.nav-dialog[open] nav a:nth-child(2) { animation-delay: 40ms; }
.nav-dialog[open] nav a:nth-child(3) { animation-delay: 80ms; }
.nav-dialog[open] nav a:nth-child(4) { animation-delay: 120ms; }
.nav-dialog[open] nav a:nth-child(5) { animation-delay: 160ms; }

.menu-dialog {
  width: min(94vw, 1320px);
  max-width: 1320px;
  max-height: 92svh;
  padding: 1.25rem;
  background: var(--paper);
  color: var(--ink);
}

.dialog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

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

.full-menu-images img {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  overflow: hidden;
  background: rgba(5, 10, 16, 0.96);
  color: var(--white);
}

.lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  place-items: center;
  padding: 5.5rem 4.5rem 3rem;
}

.lightbox figure img {
  width: auto;
  max-width: min(90vw, 1100px);
  height: auto;
  max-height: calc(100svh - 9rem);
  display: block;
  object-fit: contain;
  will-change: transform, opacity, filter;
}

.lightbox figcaption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  width: min(80vw, 760px);
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
}

.lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.menu-grid .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2),
.review-list .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.menu-grid .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3),
.review-list .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.gallery-grid .reveal:nth-child(4) { transition-delay: 50ms; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 120ms; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 190ms; }

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

@keyframes hero-settle {
  from { opacity: 0.72; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.028); }
}

@keyframes hero-light-drift {
  from { transform: translate3d(-3%, -2%, 0) scale(0.92); opacity: 0.65; }
  to { transform: translate3d(24%, 16%, 0) scale(1.12); opacity: 1; }
}

@keyframes hero-line-in {
  from { opacity: 0; transform: translateY(32px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

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

@keyframes orbit-core {
  from { transform: scale(0.94) rotate(-3deg); }
  to { transform: scale(1.06) rotate(3deg); }
}

@keyframes marquee-flow {
  to { transform: translateX(-100%); }
}

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

@keyframes stamp-float {
  from { transform: translate3d(0, 0, 0) rotate(-3deg); }
  to { transform: translate3d(-5px, -12px, 0) rotate(1deg); }
}

@keyframes menu-image-drift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(0, -1.4%, 0); }
}

@keyframes ambient-orbit {
  from { transform: translate3d(-6%, 5%, 0) rotate(-8deg) scale(0.9); }
  to { transform: translate3d(5%, -4%, 0) rotate(12deg) scale(1.1); }
}

@keyframes strip-image-breathe {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(1.2%, -1%, 0); }
}

@keyframes line-pulse {
  from { transform: scaleX(0.18); opacity: 0.55; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes score-orbit {
  to { transform: rotate(360deg) scale(1.08); }
}

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

@keyframes backdrop-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes nav-link-enter {
  from { opacity: 0; transform: translateX(-4%); }
  to { opacity: 1; transform: translateX(0); }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-3px);
  }

  .social-link:hover {
    transform: translateY(-2px) rotate(4deg);
  }

  .dialog-close:hover,
  .lightbox-nav:hover,
  .lightbox-close:hover {
    transform: translateY(-2px);
    background: var(--accent);
    color: var(--ink);
  }

  .menu-card .menu-media,
  .gallery-item,
  .review {
    transition: transform 240ms var(--ease), box-shadow 240ms ease;
  }

  .menu-card:hover .menu-media,
  .review:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 44px rgba(11, 34, 57, 0.13);
  }

  .gallery-item:hover {
    transform: translateY(-6px) rotate(-0.35deg);
    box-shadow: 0 22px 46px rgba(11, 34, 57, 0.16);
  }

  .gallery-item:nth-child(even):hover {
    transform: translateY(-6px) rotate(0.35deg);
  }

  .about-tags li {
    transition: transform 180ms var(--ease), background-color 180ms ease;
  }

  .about-tags li:hover {
    transform: translateY(-3px) rotate(-1deg);
    background: var(--accent);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-block;
  }

  .about {
    grid-template-columns: 1fr 0.68fr;
    gap: 3rem;
  }

  .not-typical-strip {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  }

  .not-typical-photo {
    min-height: 620px;
  }

  .visit-section {
    grid-template-columns: 1fr;
  }

  .visit-info {
    max-width: none;
    margin: 0;
  }

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

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

  .footer-address {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

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

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --section-pad: 4.75rem;
  }

  body {
    font-size: 16px;
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .site-header {
    padding-block: 0.35rem;
  }

  .brand {
    height: 48px;
    gap: 0.55rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .brand-name small {
    font-size: 0.5rem;
  }

  .header-actions > .social-link {
    display: none;
  }

  .hero-image {
    object-position: 68% 50%;
  }

  .hero-content {
    padding-bottom: clamp(2rem, 6svh, 4rem);
  }

  .hero-orbit {
    top: 16%;
    right: -1.4rem;
    bottom: auto;
    width: 118px;
    opacity: 0.88;
  }

  .hero-light {
    top: -12%;
    left: -55%;
    width: 130vw;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 11.5vw, 3.7rem);
    line-height: 0.92;
  }

  .hero-content > p:not(.hero-kicker) {
    max-width: 30ch;
  }

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

  .button {
    width: 100%;
    padding-inline: 0.8rem;
  }

  .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 1rem;
  }

  .quick-facts p {
    min-width: 0;
    padding: 0.7rem 0.8rem;
  }

  .quick-facts p:first-child {
    padding-left: 0.8rem;
  }

  .quick-facts p:nth-child(2) {
    border-right: 0;
  }

  .quick-facts p:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .motion-marquee-track {
    padding-block: 0.68rem;
    animation-duration: 19s;
  }

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

  .about-copy > p:not(.section-kicker) {
    margin-top: 1.5rem;
  }

  .portrait-media {
    width: 100%;
    margin: 0;
  }

  .portrait-stamp {
    right: 0.85rem;
    bottom: 0.85rem;
    min-width: 134px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .menu-card:nth-child(2) {
    margin-top: 0;
  }

  .menu-card:nth-child(3) {
    margin-top: 0;
  }

  .menu-card-copy > p {
    min-height: 0;
  }

  .not-typical-strip {
    grid-template-columns: 1fr;
  }

  .not-typical-photo {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .not-typical-copy {
    padding-block: 4.75rem;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) {
    margin-top: 0;
  }

  .reviews-section {
    grid-template-columns: 1fr;
  }

  .review-score {
    position: static;
  }

  .review-score .score {
    font-size: 6rem;
  }

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

  .review:first-child {
    grid-row: auto;
  }

  .review {
    gap: 1.2rem;
  }

  .review:first-child blockquote {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .visit-details {
    grid-template-columns: 1fr;
  }

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

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


  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

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

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
    transform: translateY(105%);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms var(--ease), opacity 180ms ease;
  }

  .mobile-action-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-action-bar a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-action-bar a:first-child {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
  }

  body.modal-open .mobile-action-bar {
    display: none;
  }

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

  .menu-dialog {
    width: 100%;
    max-height: 100svh;
    margin: 0;
    padding: 1rem;
  }

  .lightbox figure {
    padding: 5rem 1rem 6rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .lightbox figcaption {
    bottom: 4.5rem;
  }
}

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

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

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

  .hero-image,
  .hero-light,
  .hero-line,
  .hero-orbit svg,
  .hero-orbit > span,
  .motion-marquee-track,
  .motion-marquee i,
  .portrait-stamp,
  .menu-media img,
  .not-typical-strip::after,
  .not-typical-photo img,
  .experience-list article::before,
  .review-score::after,
  dialog[open],
  dialog[open]::backdrop,
  .nav-dialog[open] nav a {
    animation: none !important;
    transform: none;
    filter: none;
  }

  .motion-marquee {
    overflow-x: auto;
  }

  .motion-marquee-track[aria-hidden="true"] {
    display: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled {
    background: var(--ink);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
