:root {
  --page: #e8e3dc;
  --surface: #f7f3ec;
  --surface-menu: #fffdf9;
  --surface-soft: #d9d4cc;
  --surface-wash: #eeeae3;
  --surface-teal-wash: #d8edf3;
  --surface-teal-tint: #edf3ef;
  --ink: #272523;
  --muted: #5c554e;
  --line: #c2bbb2;
  --accent: #66c7e7;
  --accent-deep: #123f49;
  --accent-rose: #d88eae;
  --rose-deep: #783e59;
  --radius: 2px;
  --header-height: 72px;
  --shell: min(1180px, calc(100% - 40px));
  --font-display: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  --font-body: Aptos, "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid #f2bf45;
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 7vw, 5rem);
}

h3 {
  font-size: 1.55rem;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--accent-deep);
  transform: translateY(-160%);
}

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

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

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

.section-kicker,
.hero-kicker {
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 9px max(20px, calc((100vw - 1180px) / 2));
  color: var(--surface);
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transition: color 240ms var(--ease-out), background 240ms var(--ease-out), border-color 240ms var(--ease-out);
}

.site-header.is-solid {
  color: var(--ink);
  border-bottom-color: var(--accent-rose);
  background: var(--accent-rose);
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.brand img {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: var(--radius);
  object-fit: cover;
}

.site-header.is-solid .brand img {
  border-color: rgb(39 37 35 / 0.32);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav > a:not(.social-link) {
  text-decoration: none;
}

.desktop-nav > a:not(.social-link)::after,
.footer-nav a::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

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

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

.menu-toggle {
  display: none;
  min-width: 62px;
  min-height: 42px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 750;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  color: var(--ink);
  background: var(--accent);
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  display: flex;
  min-height: 100svh;
  padding: 24px;
  flex-direction: column;
  transform: translateY(14px);
  transition: transform 320ms var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu-inner {
  transform: translateY(0);
}

.mobile-menu-close {
  align-self: flex-end;
  padding: 10px 0;
  color: inherit;
  border: 0;
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}

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

.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 13vw, 4.2rem);
  font-weight: 760;
  line-height: 1.05;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 280ms var(--ease-out), transform 360ms var(--ease-out);
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateX(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; }

.mobile-menu-contact {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 280ms var(--ease-out) 180ms, transform 360ms var(--ease-out) 180ms;
}

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

.mobile-menu-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

.mobile-social {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--surface);
  place-items: end start;
}

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

.hero-image {
  object-fit: cover;
  object-position: 50% 58%;
  animation: hero-breathe 18s var(--ease-in-out) infinite alternate;
}

.hero-scrim {
  background: linear-gradient(90deg, rgb(0 0 0 / 0.28) 0%, rgb(0 0 0 / 0.14) 48%, rgb(0 0 0 / 0.08) 100%);
}

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

.hero-atmosphere::before {
  position: absolute;
  inset: -35% -20%;
  content: "";
  background: linear-gradient(110deg, transparent 38%, rgb(255 255 255 / 0.12) 49%, transparent 60%);
  transform: translateX(-38%);
  animation: hero-light-sweep 13s var(--ease-in-out) infinite;
}

.hero-orbit {
  position: absolute;
  display: block;
  border: 1px solid rgb(255 255 255 / 0.48);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgb(102 199 231 / 0.08), 0 0 42px rgb(102 199 231 / 0.12);
}

.hero-orbit::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-rose);
  box-shadow: 0 0 20px rgb(216 142 174 / 0.8);
  content: "";
}

.hero-orbit-one {
  top: 14%;
  right: 7%;
  width: clamp(150px, 18vw, 270px);
  aspect-ratio: 1;
  animation: orbit-spin 22s linear infinite;
}

.hero-orbit-two {
  right: 27%;
  bottom: 10%;
  width: clamp(72px, 8vw, 120px);
  aspect-ratio: 1;
  border-color: rgb(102 199 231 / 0.65);
  animation: orbit-spin-reverse 15s linear infinite;
}

.hero-spark {
  position: absolute;
  top: 22%;
  right: 22%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 10px rgb(102 199 231 / 0.12), 0 0 36px rgb(102 199 231 / 0.9);
  animation: spark-float 6s var(--ease-in-out) infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto clamp(52px, 9vh, 92px) max(20px, calc((100vw - 1180px) / 2));
  animation: hero-enter 800ms var(--ease-out) both;
}

.hero-rail {
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 26px;
  z-index: 2;
  display: flex;
  width: min(42vw, 520px);
  overflow: hidden;
  color: rgb(255 255 255 / 0.82);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.hero-rail span {
  flex: 0 0 auto;
  padding-right: 1.1em;
  animation: rail-flow 18s linear infinite;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.88;
  text-wrap: balance;
}

.hero-content > p:not(.hero-kicker) {
  max-width: 520px;
  margin-bottom: 32px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.45;
  text-shadow: 0 1px 18px rgb(0 0 0 / 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out), transform 180ms var(--ease-spring), box-shadow 180ms var(--ease-out);
}

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

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

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

.about-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-teal-wash);
}

.about-section::before,
.gallery-section::before,
.reviews-section::before {
  position: absolute;
  width: clamp(180px, 30vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgb(18 63 73 / 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: ambient-orbit 16s var(--ease-in-out) infinite;
}

.about-section::before {
  top: -14%;
  left: -8%;
  box-shadow: inset 0 0 0 34px rgb(216 142 174 / 0.09);
}

.ambient-words {
  position: absolute;
  right: 0;
  bottom: 3%;
  left: 0;
  display: flex;
  overflow: hidden;
  color: rgb(18 63 73 / 0.055);
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 10vw, 9rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.ambient-words span {
  flex: 0 0 auto;
  padding-right: 0.18em;
  animation: ambient-word-flow 36s linear infinite;
}

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

.about-copy > p:last-child {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.ratio-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.about-image {
  margin: 0;
}

.about-image img {
  object-position: 52% 48%;
  animation: about-image-breathe 11s var(--ease-in-out) infinite alternate;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(42px, 7vw, 72px);
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.menu-panel {
  position: relative;
  min-width: 0;
}

.menu-panel::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-rose));
  content: "";
  transform: scaleX(0.12);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}

.menu-image img {
  object-position: 50% 50%;
  transition: transform 560ms var(--ease-out), filter 300ms var(--ease-out);
}

.menu-copy {
  padding: 28px 2px 0;
}

.menu-copy h3 {
  margin-bottom: 12px;
  color: var(--accent-deep);
}

.menu-copy p {
  min-height: 3.2em;
  margin-bottom: 22px;
  color: var(--muted);
}

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

.menu-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 9px;
  border-bottom: 1px solid var(--line);
}

.menu-copy li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent-rose);
  content: "";
}

.menu-copy li:last-child {
  border-bottom: 0;
}

.service-strip {
  padding-block: 26px;
  color: var(--ink);
  background: var(--accent);
  overflow: hidden;
}

.service-marquee {
  width: 100%;
  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-track {
  display: flex;
  width: max-content;
  animation: service-flow 26s linear infinite;
}

.service-list {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  padding-right: clamp(20px, 4vw, 58px);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 760;
}

.service-list span:not(:last-child)::after {
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-left: clamp(20px, 4vw, 58px);
  vertical-align: middle;
  content: "";
  background: rgb(255 255 255 / 0.55);
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-teal-wash);
}

.gallery-section::before {
  right: -7%;
  bottom: 5%;
  border-color: rgb(216 142 174 / 0.25);
  box-shadow: inset 0 0 0 20px rgb(102 199 231 / 0.12);
  animation-delay: -7s;
}

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

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

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  transition: box-shadow 240ms var(--ease-out), transform 240ms var(--ease-spring);
}

.gallery-item::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--accent-rose);
  content: "+";
  font-size: 1.35rem;
  font-weight: 500;
  opacity: 0;
  place-items: center;
  transform: translateY(8px) rotate(-18deg);
  transition: opacity 220ms var(--ease-out), transform 300ms var(--ease-spring);
}

.gallery-item img {
  object-position: 50% 50%;
  transition: transform 560ms var(--ease-out), filter 360ms var(--ease-out);
}

.gallery-item:nth-child(1) img {
  object-position: 56% 48%;
}

.gallery-item:nth-child(2) img {
  object-position: 50% 42%;
}

.gallery-item:nth-child(5) img {
  object-position: 50% 58%;
}

.gallery-item:nth-child(6) img {
  object-position: 50% 45%;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background: var(--accent);
}

.reviews-section::before {
  top: -30%;
  right: 18%;
  border-color: rgb(255 255 255 / 0.38);
  box-shadow: inset 0 0 0 36px rgb(216 142 174 / 0.15);
  animation-delay: -10s;
}

.reviews-layout {
  position: relative;
  z-index: 1;
}

.reviews-section .rating {
  color: var(--ink);
}

.reviews-section .review {
  border-top-color: rgb(18 63 73 / 0.28);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.15fr 0.95fr;
  gap: clamp(28px, 5vw, 72px);
}

.reviews-heading h2 {
  margin-bottom: 22px;
}

.rating {
  color: var(--muted);
}

.rating strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-deep);
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 1;
  animation: rating-pulse 5.5s var(--ease-in-out) infinite;
}

.review {
  display: flex;
  min-width: 0;
  padding-block: 28px;
  border-top: 1px solid var(--line);
  flex-direction: column;
}

.review-featured {
  position: relative;
  min-height: 390px;
  padding: 36px;
  border: 0;
  color: var(--ink);
  background: var(--accent-rose);
  overflow: hidden;
  isolation: isolate;
}

.review-featured::before {
  position: absolute;
  inset: -70% -30%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 43%, rgb(255 255 255 / 0.22) 50%, transparent 57%);
  content: "";
  transform: translateX(-38%) rotate(8deg);
  animation: review-glint 9s var(--ease-in-out) infinite;
}

.review-featured .stars {
  color: var(--ink);
}

.stars {
  margin-bottom: 24px;
  color: var(--rose-deep);
  font-size: 1.02rem;
  letter-spacing: 0.12em;
  animation: stars-glow 4.6s var(--ease-in-out) infinite;
}

.review blockquote {
  margin: 0 0 30px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  font-weight: 690;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.review:not(.review-featured) blockquote {
  font-size: 1.22rem;
}

.review footer {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.88rem;
}

.review-author {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.review-featured .review-avatar {
  width: 38px;
  height: 38px;
}

.review footer span {
  font-weight: 750;
}

.review footer a {
  white-space: nowrap;
}

.review-stack {
  display: grid;
  align-content: start;
  gap: 18px;
}

.visit-section {
  background: var(--surface-teal-wash);
}

.visit-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.84fr) minmax(380px, 1.16fr);
  gap: clamp(44px, 7vw, 96px);
}

.visit-copy h2 {
  max-width: 640px;
}

.visit-details {
  display: grid;
  margin-block: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.visit-details h3,
.hours h3 {
  margin-bottom: 16px;
  color: var(--accent-deep);
  font-size: 1rem;
  letter-spacing: 0;
}

.visit-details address {
  margin-bottom: 12px;
  font-style: normal;
}

.visit-details a,
.footer-nav a,
.review:not(.review-featured) footer a {
  color: var(--accent-deep);
}

.visit-details div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hours dl {
  max-width: 520px;
  margin: 0;
}

.hours dl div {
  display: grid;
  padding-block: 9px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dd {
  font-weight: 700;
  color: var(--accent-deep);
  text-align: right;
}

.map-frame {
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-wash);
}

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

.site-footer {
  padding-block: 38px;
  color: var(--ink);
  border-top: 1px solid var(--accent);
  background: var(--accent);
}

.site-footer .footer-brand strong,
.site-footer .footer-brand p,
.site-footer .footer-nav a,
.site-footer .footer-social {
  color: var(--ink);
}

.site-footer .footer-brand p {
  opacity: 0.82;
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) auto 44px;
  gap: 42px;
}

.footer-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.88rem;
  font-weight: 680;
}

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

.footer-social {
  color: var(--accent-deep);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  padding: clamp(16px, 3vw, 36px);
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgb(15 18 17 / 0.93);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1100px, 100%);
  height: min(860px, calc(100svh - 32px));
  align-items: center;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.97) translateY(8px);
  transition: opacity 220ms var(--ease-out), transform 280ms var(--ease-out);
}

.lightbox.is-open .lightbox-backdrop,
.lightbox.is-open .lightbox-panel {
  opacity: 1;
}

.lightbox.is-open .lightbox-panel {
  transform: scale(1) translateY(0);
}

.lightbox-panel button,
.lightbox-panel figure {
  pointer-events: auto;
}

.lightbox-close,
.lightbox-nav {
  color: var(--surface);
  border: 1px solid rgb(255 255 255 / 0.46);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.08);
  cursor: pointer;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out), transform 180ms var(--ease-spring);
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 42px;
  padding: 8px 14px;
}

.lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 1.5rem;
}

.lightbox figure {
  display: grid;
  width: 100%;
  height: calc(100% - 56px);
  margin: 56px 0 0;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 24px;
  color: var(--surface);
  font-size: 0.88rem;
  text-align: center;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 22px), 0) scale(var(--reveal-scale, 1));
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 680ms var(--ease-out), transform 760ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .about-copy.reveal,
.js .visit-copy.reveal { --reveal-x: -24px; --reveal-y: 0; }
.js .about-image.reveal,
.js .map-frame.reveal { --reveal-x: 24px; --reveal-y: 0; }
.js .gallery-item.reveal { --reveal-y: 28px; --reveal-scale: 0.98; }

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

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

  .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgb(0 0 0 / 0.18);
  }

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

  .button-secondary:hover {
    border-color: #efb3cc;
    background: #efb3cc;
  }

  .menu-panel:hover::after {
    transform: scaleX(1);
  }

  .menu-panel:hover .menu-image img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.04);
  }

  .gallery-item:hover {
    box-shadow: 0 18px 42px rgb(18 63 73 / 0.2);
    transform: translateY(-5px);
  }

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

  .gallery-item:hover img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.045);
  }

  .lightbox-close:hover,
  .lightbox-nav:hover {
    color: var(--ink);
    border-color: var(--accent);
    background: var(--accent);
    transform: scale(1.06);
  }

  .service-marquee:hover .service-track,
  .hero-rail:hover span {
    animation-play-state: paused;
  }
}

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

@keyframes hero-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.065); }
}

@keyframes hero-light-sweep {
  0%, 22% { opacity: 0; transform: translateX(-38%); }
  40%, 54% { opacity: 1; }
  72%, 100% { opacity: 0; transform: translateX(38%); }
}

@keyframes orbit-spin {
  from { transform: rotate(0deg) translate3d(0, 0, 0); }
  50% { transform: rotate(180deg) translate3d(0, -8px, 0); }
  to { transform: rotate(360deg) translate3d(0, 0, 0); }
}

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

@keyframes spark-float {
  0%, 100% { opacity: 0.55; transform: translate3d(0, 0, 0) scale(0.9); }
  50% { opacity: 1; transform: translate3d(-14px, 18px, 0) scale(1.12); }
}

@keyframes rail-flow {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes ambient-word-flow {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

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

@keyframes ambient-orbit {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(18px, -14px, 0) rotate(12deg); }
}

@keyframes about-image-breathe {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-0.6%, -0.4%, 0); }
}

@keyframes rating-pulse {
  0%, 100% { opacity: 0.82; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

@keyframes review-glint {
  0%, 28% { opacity: 0; transform: translateX(-38%) rotate(8deg); }
  44%, 55% { opacity: 1; }
  72%, 100% { opacity: 0; transform: translateX(38%) rotate(8deg); }
}

@keyframes stars-glow {
  0%, 100% { opacity: 0.75; text-shadow: 0 0 0 transparent; }
  50% { opacity: 1; text-shadow: 0 0 18px rgb(216 142 174 / 0.6); }
}

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

  .hero-image {
    object-position: 73% 58%;
  }

  .desktop-nav {
    display: none;
  }

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

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

  .about-grid {
    gap: 46px;
  }

  .about-image {
    width: min(560px, 100%);
  }

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

  .menu-copy p {
    min-height: 4.8em;
  }

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

  .reviews-layout {
    grid-template-columns: 0.75fr 1.25fr;
  }

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

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

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

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

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

  .section {
    padding-block: 84px;
  }

  .js .about-copy.reveal,
  .js .visit-copy.reveal,
  .js .about-image.reveal,
  .js .map-frame.reveal {
    --reveal-x: 0;
    --reveal-y: 20px;
  }

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

  .brand {
    max-width: calc(100vw - 104px);
    gap: 9px;
    font-size: 0.78rem;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px max(42px, 7svh);
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(3.15rem, 15vw, 4.6rem);
    line-height: 0.9;
  }

  .hero-content > p:not(.hero-kicker) {
    max-width: 360px;
    font-size: 1rem;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgb(0 0 0 / 0.28) 0%, rgb(0 0 0 / 0.16) 44%, rgb(0 0 0 / 0.08) 100%);
  }

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

  .button {
    width: 100%;
    padding-inline: 14px;
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .about-grid,
  .menu-grid,
  .gallery-grid,
  .reviews-layout,
  .review-stack,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 38px;
  }

  .about-copy > p:last-child,
  .section-heading p {
    font-size: 1rem;
  }

  .menu-grid {
    gap: 58px;
  }

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

  .service-strip {
    padding-block: 20px;
    overflow: hidden;
  }

  .service-list {
    font-size: 1rem;
  }

  .service-list span:not(:last-child)::after {
    display: inline-block;
  }

  .hero-orbit-one {
    top: 11%;
    right: -13%;
  }

  .hero-orbit-two {
    right: 10%;
    bottom: 25%;
  }

  .hero-rail {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    font-size: 0.64rem;
  }

  .ambient-words {
    bottom: 1%;
    font-size: 4.7rem;
  }

  .gallery-grid {
    gap: 16px;
  }

  .review-featured {
    min-height: 360px;
    padding: 28px;
  }

  .review-stack {
    gap: 0;
  }

  .review footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .hours dl div {
    font-size: 0.92rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 44px;
    gap: 28px 18px;
  }

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

  .footer-brand p {
    font-size: 0.78rem;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
    gap: 12px 24px;
  }

  .lightbox-panel {
    height: calc(100svh - 28px);
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px;
  }

  .lightbox-nav {
    width: 42px;
    height: 48px;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .footer-brand strong {
    font-size: 0.92rem;
  }
}

@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 {
    opacity: 1;
    transform: none;
  }
}
