:root {
  --navy: #062c5d;
  --navy-soft: #0b3b75;
  --navy-rgb: 6 44 93;
  --yellow: #f3d417;
  --yellow-dark: #d1b400;
  --ink: #15203a;
  --muted: #5c6475;
  --paper: #f6f5ef;
  --white: #fffef9;
  --line: #ccd0d8;
  --error: #a12323;
  --radius: 14px;
  --header-height: 72px;
  --shadow: 0 22px 60px rgb(var(--navy-rgb) / 0.14);
  --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);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin-top: 0;
}

figure {
  margin-inline: 0;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 10px clamp(18px, 3.5vw, 54px);
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.site-header.is-scrolled {
  background: var(--navy);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 28px rgba(5, 10, 25, 0.18);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.brand-link img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
}

.brand-link span {
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}

.desktop-nav a,
.footer-links a {
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.social-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: currentColor;
  border-radius: 10px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out);
}

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

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: inherit;
  background: transparent;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -7px;
}

.menu-lines::after {
  top: 7px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 20px;
  color: var(--white);
  background: var(--navy);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-3%);
  transition: opacity 240ms var(--ease-out), transform 320ms var(--ease-drawer), visibility 240ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 800;
}

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

.mobile-menu nav a {
  padding-block: 6px;
  font-size: clamp(2.4rem, 13vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms var(--ease-out), transform 240ms var(--ease-out), color 160ms ease;
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 45ms; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 90ms; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 135ms; }
.mobile-menu.is-open nav a:nth-child(5) { transition-delay: 180ms; }

.icon-button {
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 10px;
  cursor: pointer;
}

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

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 48%;
  transform: scale(1.035);
  animation: hero-breathe 16s var(--ease-in-out) infinite alternate;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 13, 27, 0.14) 0%, rgba(8, 13, 27, 0.18) 46%, rgba(8, 13, 27, 0.30) 100%);
}

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

.hero-orbit {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgb(243 212 23 / 0.5);
  border-radius: 50%;
  box-shadow: 0 0 50px rgb(243 212 23 / 0.11), inset 0 0 42px rgb(243 212 23 / 0.08);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 24px rgb(243 212 23 / 0.85);
  content: "";
}

.hero-orbit::before { top: 12%; left: 12%; }
.hero-orbit::after { right: 8%; bottom: 20%; width: 7px; height: 7px; }

.hero-orbit-one {
  top: -19vw;
  right: -9vw;
  width: min(62vw, 840px);
  animation: orbit-turn 24s linear infinite;
}

.hero-orbit-two {
  top: 22%;
  right: 8%;
  width: min(24vw, 330px);
  border-style: dashed;
  opacity: 0.7;
  animation: orbit-turn-reverse 18s linear infinite;
}

.hero-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 22px 8px rgb(243 212 23 / 0.38);
  animation: spark-float 6s var(--ease-in-out) infinite alternate;
}

.hero-spark-one { top: 36%; left: 8%; }
.hero-spark-two { top: 20%; left: 42%; animation-delay: -3s; animation-duration: 8s; }

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100% - 40px, 1240px);
  min-height: 100svh;
  margin-inline: auto;
  padding: 88px 0 clamp(46px, 7vw, 88px);
}

.hero-kicker,
.section-kicker {
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--yellow);
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 17px;
  font-size: clamp(3rem, 7.3vw, 6rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .hero-kicker {
    margin-bottom: 8px;
    font-size: 0.62rem;
  }

  .hero-copy {
    max-width: 420px;
    margin-bottom: 18px;
    font-size: clamp(0.92rem, 1.22vw, 1.02rem);
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 9px 15px;
  }
}

.hero-copy {
  max-width: 460px;
  margin-bottom: 26px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.4;
}

.hero-actions,
.menu-links,
.visit-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-facts {
  position: relative;
  overflow: hidden;
  color: var(--navy);
  background: var(--yellow);
}

.quick-facts::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgb(255 255 255 / 0.36) 49%, transparent 63%);
  content: "";
  transform: translateX(-100%);
  animation: band-shine 6.5s var(--ease-in-out) infinite;
  pointer-events: none;
}

.quick-facts-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-facts p {
  display: grid;
  gap: 2px;
  min-width: 0;
  margin: 0;
  padding: 24px clamp(16px, 2.5vw, 34px);
  border-left: 1px solid rgb(var(--navy-rgb) / 0.25);
}

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

.quick-facts strong {
  font-size: 0.95rem;
  line-height: 1.25;
}

.quick-facts span {
  color: rgb(var(--navy-rgb) / 0.78);
  font-size: 0.82rem;
  line-height: 1.4;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgb(255 255 255 / 0.34) 48%, transparent 72%);
  content: "";
  transform: translateX(-115%);
  transition: transform 420ms var(--ease-out);
  pointer-events: none;
}

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

.button-accent {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button-accent:focus-visible {
  background: #ffe632;
  border-color: #ffe632;
}

.button-ghost {
  color: var(--white);
  background: rgb(var(--navy-rgb) / 0.62);
  border-color: rgba(255, 255, 255, 0.76);
}

.button-ghost:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

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

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

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

.button-outline:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding-block: clamp(88px, 12vw, 160px);
}

.story-copy p {
  max-width: 66ch;
  color: #3f485c;
  font-size: 1.07rem;
}

.story-facts {
  margin: 34px 0 18px;
}

.story-facts div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.story-facts dt {
  color: var(--navy);
  font-weight: 850;
}

.story-facts dd {
  margin: 0;
  color: #3f485c;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-block: 6px;
  color: var(--navy);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.ratio-card {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe2e6;
}

.ratio-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-image {
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow);
  animation: story-float 7s var(--ease-in-out) infinite alternate;
}

.story-image img {
  object-position: 50% 50%;
  overflow: hidden;
  border-radius: inherit;
}

.story-stamp {
  position: absolute;
  right: -38px;
  bottom: 42px;
  display: grid;
  place-content: center;
  width: 118px;
  height: 118px;
  padding: 14px;
  color: var(--navy);
  background: var(--yellow);
  border: 7px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgb(var(--navy-rgb) / 0.2);
  text-align: center;
  text-transform: uppercase;
  animation: stamp-turn 18s linear infinite;
}

.story-stamp strong { font-size: 1rem; line-height: 1; }
.story-stamp small { margin-top: 7px; font-size: 0.52rem; font-weight: 900; letter-spacing: 0.08em; line-height: 1.3; }

.menu-preview {
  padding-block: clamp(82px, 10vw, 136px);
  background: #e9ebee;
}

.menu-heading {
  margin-bottom: 50px;
}

.menu-heading h2,
.menu-heading p {
  max-width: 800px;
}

.menu-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-kicker {
  color: var(--navy);
}

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

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

.menu-card-image {
  position: relative;
  box-shadow: 0 18px 44px rgb(var(--navy-rgb) / 0.12);
  transition: transform 320ms var(--ease-out), box-shadow 320ms ease;
}

.menu-time {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 11px 13px;
  color: var(--yellow);
  background: rgb(var(--navy-rgb) / 0.94);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

@media (min-width: 981px) {
  .menu-card:nth-child(2) {
    margin-top: 48px;
  }

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

.menu-card:nth-child(1) img {
  object-position: 50% 50%;
}

.menu-card:nth-child(2) img {
  object-position: 50% 50%;
}

.menu-card:nth-child(3) img {
  object-position: 56% 50%;
}

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

.menu-card-copy p {
  max-width: 34ch;
  color: var(--muted);
}

.menu-links {
  margin-top: 44px;
}

.service-band {
  padding-block: 38px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.service-band-inner {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
}

.service-marquee {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.service-marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(20px, 3vw, 42px);
  will-change: transform;
  animation: service-flow 22s linear infinite;
}

.service-band p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--yellow);
  font-size: 1.05rem;
  font-weight: 850;
}

.service-band ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(20px, 3vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 0 0 auto;
}

.service-band li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.service-band li::before {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.gallery {
  padding-block: clamp(88px, 12vw, 160px);
}

.gallery-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

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

.gallery-item {
  display: block;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.gallery-item .ratio-card {
  position: relative;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.gallery-item .ratio-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 30%, rgb(255 255 255 / 0.22) 47%, transparent 64%);
  content: "";
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 180ms ease, transform 620ms var(--ease-out);
  pointer-events: none;
}

.gallery-item:focus-visible .ratio-card {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.gallery-item:nth-child(1) img { object-position: 50% 50%; }
.gallery-item:nth-child(2) img { object-position: 52% 50%; }
.gallery-item:nth-child(3) img { object-position: 35% 50%; }
.gallery-item:nth-child(4) img { object-position: 56% 50%; }
.gallery-item:nth-child(5) img { object-position: 50% 50%; }
.gallery-item:nth-child(6) img { object-position: 50% 50%; }

.reviews {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(88px, 11vw, 146px);
  color: var(--white);
  background: var(--navy);
}

.reviews::before,
.reviews::after {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
  opacity: 0.22;
  pointer-events: none;
}

.reviews::before {
  top: -250px;
  left: -140px;
  background: radial-gradient(circle, var(--yellow) 0 2%, transparent 3% 100%);
  border: 1px solid rgb(243 212 23 / 0.55);
  animation: review-orbit 17s linear infinite;
}

.reviews::after {
  right: -180px;
  bottom: -280px;
  background: radial-gradient(circle, rgb(243 212 23 / 0.5), transparent 68%);
  animation: review-glow 7s var(--ease-in-out) infinite alternate;
}

.reviews-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
}

.reviews-heading h2,
.reviews-heading p {
  margin-bottom: 0;
}

.rating-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--yellow);
}

.rating-line strong {
  font-size: 3.4rem;
}

.rating-line span {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

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

.review {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 30px 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  transition: transform 240ms var(--ease-out), border-color 240ms ease;
}

.review:first-child {
  padding-left: 0;
  border-left: 0;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

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

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

.review-person h3 {
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.review-person p {
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.review blockquote {
  max-width: 38ch;
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
}

.review a {
  width: max-content;
  margin-top: auto;
  color: var(--yellow);
  font-weight: 800;
  text-underline-offset: 5px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: stretch;
  gap: clamp(40px, 7vw, 96px);
  padding-block: clamp(88px, 12vw, 156px);
}

.visit-info {
  align-self: center;
}

.visit address {
  margin-bottom: 22px;
  font-size: 1.08rem;
  font-style: normal;
}

.phone-link {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 850;
  text-underline-offset: 5px;
}

.hours {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hours div {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 18px;
}

.hours span:first-child {
  font-weight: 850;
}

.visit-features {
  display: grid;
  gap: 10px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.visit-features li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
  color: #3f485c;
}

.visit-features li::before {
  width: 7px;
  height: 7px;
  background: var(--yellow-dark);
  border-radius: 50%;
  content: "";
}

.map-wrap {
  min-height: 660px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dfe2e6;
}

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

.map-frame.is-preloading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: min(100vw, 700px);
  height: min(100vh, 700px);
  min-height: 0;
  opacity: 0.001;
  pointer-events: none;
}

.site-footer {
  padding-block: 52px;
  color: var(--white);
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 1fr;
  align-items: start;
  gap: 50px;
}

.footer-brand img {
  width: 84px;
  height: 84px;
  margin-bottom: 16px;
  border-radius: 12px;
}

.footer-brand p {
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 850;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:focus-visible,
.footer-address a:focus-visible {
  color: var(--yellow);
}

.footer-address p {
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 6px;
}

.mobile-actions {
  display: none;
}

.booking-dialog,
.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.booking-dialog::backdrop,
.lightbox::backdrop {
  background: rgba(5, 10, 25, 0.76);
  backdrop-filter: blur(6px);
}

.dialog-shell {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 720px);
  min-height: 100%;
  padding: clamp(24px, 5vw, 64px);
  overflow-y: auto;
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(5, 10, 25, 0.24);
}

.dialog-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.dialog-heading p {
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 800;
}

.dialog-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 7vw, 4.4rem);
}

.booking-form,
.booking-form label {
  display: grid;
  gap: 9px;
}

.booking-form {
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking-form label {
  color: #29334a;
  font-size: 0.93rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #7b8496;
  border-radius: 8px;
}

.booking-form textarea {
  min-height: 90px;
  resize: vertical;
}

.booking-form [aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 1px var(--error);
}

.field-error {
  min-height: 1.2em;
  color: var(--error);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-note {
  margin-bottom: 0;
  color: #4b5568;
  font-size: 0.92rem;
}

.form-result {
  padding: 20px;
  background: #e0e4ea;
  border-radius: 10px;
}

.form-result p {
  margin-bottom: 14px;
  font-weight: 800;
}

.lightbox-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 64px clamp(16px, 4vw, 54px) 28px;
  color: var(--white);
  background: rgba(5, 10, 25, 0.96);
}

.lightbox figure {
  display: grid;
  place-items: center;
  margin-bottom: 0;
}

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

.lightbox figcaption {
  margin-top: 12px;
  color: #e3e5eb;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  min-width: 48px;
  min-height: 48px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  padding: 9px 14px;
}

.lightbox-nav {
  padding: 10px 14px;
}

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

.js .reveal-ready {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 640ms var(--ease-out), transform 760ms var(--ease-out);
}

.js .reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.menu-card-image img,
.gallery-item .ratio-card img {
  transform: scale(1.025);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card.is-visible .menu-card-image img,
.gallery-item.is-visible .ratio-card img {
  transform: scale(1);
}

.menu-card.is-visible .menu-card-image img {
  animation: menu-image-drift 9s var(--ease-in-out) infinite alternate;
}

.menu-card:nth-child(2).is-visible .menu-card-image img {
  animation-delay: -3s;
  animation-duration: 11s;
}

.menu-card:nth-child(3).is-visible .menu-card-image img {
  animation-delay: -6s;
  animation-duration: 10s;
}

.gallery-item.is-visible .ratio-card img {
  animation: gallery-image-drift 12s var(--ease-in-out) infinite alternate;
}

.gallery-item:nth-child(2n).is-visible .ratio-card img {
  animation-delay: -6s;
  animation-direction: alternate-reverse;
}

.gallery-item:nth-child(3n).is-visible .ratio-card img {
  animation-duration: 15s;
}

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

  .social-link:hover {
    color: var(--navy);
    background: var(--yellow);
    transform: translateY(-2px) rotate(-4deg);
  }

  .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgb(var(--navy-rgb) / 0.18);
  }

  .button:hover::after {
    transform: translateX(115%);
  }

  .button:hover:active {
    transform: scale(0.97);
    box-shadow: none;
  }

  .button-accent:hover {
    background: #ffe632;
    border-color: #ffe632;
  }

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

  .button-dark:hover {
    background: var(--navy-soft);
    border-color: var(--navy-soft);
  }

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

  .footer-links a:hover,
  .footer-address a:hover {
    color: var(--yellow);
  }

  .menu-card:hover .menu-card-image {
    transform: translateY(-10px) rotate(-0.8deg);
    box-shadow: 0 28px 56px rgb(var(--navy-rgb) / 0.2);
  }

  .menu-card:nth-child(even):hover .menu-card-image {
    transform: translateY(-10px) rotate(0.8deg);
  }

  .gallery-item:hover .ratio-card {
    transform: translateY(-9px) rotate(-1deg);
    box-shadow: var(--shadow);
  }

  .gallery-item:nth-child(even):hover .ratio-card {
    transform: translateY(-9px) rotate(1deg);
  }

  .gallery-item:hover .ratio-card::after,
  .gallery-item:focus-visible .ratio-card::after {
    opacity: 1;
    transform: translateX(80%);
  }

  .review:hover {
    border-left-color: rgb(243 212 23 / 0.7);
    transform: translateY(-6px);
  }
}

@keyframes hero-breathe {
  0% { transform: scale(1.035) translate3d(0, 0, 0); }
  100% { transform: scale(1.095) translate3d(-0.8%, -0.5%, 0); }
}

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

@keyframes spark-float {
  0% { opacity: 0.4; transform: translate3d(0, 0, 0) scale(0.85); }
  100% { opacity: 1; transform: translate3d(18px, -26px, 0) scale(1.2); }
}

@keyframes band-shine {
  0%, 15% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@keyframes story-float {
  0% { transform: translate3d(0, 0, 0) rotate(-0.35deg); }
  100% { transform: translate3d(0, -14px, 0) rotate(0.35deg); }
}

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

@keyframes menu-image-drift {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.09) translate3d(-1.5%, -1%, 0); }
}

@keyframes service-flow {
  to { transform: translate3d(calc(-50% - clamp(10px, 1.5vw, 21px)), 0, 0); }
}

@keyframes gallery-image-drift {
  0% { transform: scale(1.025) translate3d(0, 0, 0); }
  100% { transform: scale(1.09) translate3d(1.5%, -1%, 0); }
}

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

@keyframes review-glow {
  0% { opacity: 0.14; transform: translate3d(0, 0, 0) scale(0.9); }
  100% { opacity: 0.34; transform: translate3d(-34px, -22px, 0) scale(1.12); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

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

  .story,
  .visit {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .menu-grid {
    gap: 16px;
  }

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

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

  .review,
  .review:first-child {
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .review blockquote {
    max-width: 62ch;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-address {
    grid-column: 1 / -1;
  }
}

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

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

  .site-header {
    padding-inline: 16px;
  }

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

  .hero-content {
    padding-top: 82px;
    padding-bottom: 34px;
  }

  .hero-orbit-one {
    top: -12vh;
    right: -42vw;
    width: 118vw;
  }

  .hero-orbit-two {
    top: 28%;
    right: -16vw;
    width: 58vw;
  }

  .hero-spark-two {
    left: 68%;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 11px;
    font-size: clamp(3.5rem, 15.7vw, 4.55rem);
  }

  .hero-copy {
    max-width: 29ch;
    margin-bottom: 16px;
    font-size: 0.9rem;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    min-height: 46px;
    padding: 9px 12px;
  }

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

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

  .story-copy p {
    font-size: 1rem;
  }

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

  .quick-facts p {
    padding: 18px 16px;
    border-top: 1px solid rgb(var(--navy-rgb) / 0.25);
  }

  .quick-facts p:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

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

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

  .service-band-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .service-marquee {
    width: 100vw;
    margin-left: -20px;
  }

  .service-marquee-track {
    animation-duration: 18s;
  }

  .service-band ul {
    padding-inline: 20px;
  }

  .story-image {
    width: 100%;
  }

  .story-stamp {
    right: 8px;
    bottom: -18px;
    width: 100px;
    height: 100px;
    border-width: 5px;
  }

  .menu-preview,
  .gallery,
  .reviews,
  .visit {
    padding-block: 80px;
  }

  .menu-heading,
  .gallery-heading {
    margin-bottom: 34px;
  }

  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .menu-card-copy {
    padding-top: 18px;
  }

  .menu-links,
  .visit-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .menu-links .button,
  .visit-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .reviews-heading h2 {
    order: -1;
  }

  .review blockquote {
    min-height: 0;
  }

  .visit {
    gap: 50px;
  }

  .hours div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer {
    padding-bottom: 126px;
  }

  .mobile-actions {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 35;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 6px;
    color: var(--white);
    background: var(--navy);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(5, 10, 25, 0.24);
    opacity: 0;
    transform: translateY(calc(100% + 20px));
    transition: opacity 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }

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

  .mobile-actions a,
  .mobile-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 8px 6px;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions button {
    color: var(--navy);
    background: var(--yellow);
  }

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

  .dialog-shell {
    padding: 22px 18px 36px;
  }

  .dialog-heading {
    align-items: center;
  }

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

  .lightbox-shell {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image image" "prev next";
    align-content: center;
    gap: 14px;
    padding: 70px 16px 22px;
  }

  .lightbox figure {
    grid-area: image;
  }

  .lightbox-prev {
    grid-area: prev;
  }

  .lightbox-next {
    grid-area: next;
  }
}

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

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

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