:root {
  --ink: #111110;
  --soft-ink: #5b5a55;
  --paper: #f4f3ed;
  --paper-2: #e8e5dc;
  --line: rgba(17, 17, 16, 0.18);
  --yellow: #f4c84c;
  --white: #fff;
  --page: min(1180px, calc(100vw - 40px));
  --header-height: 72px;
  --ease: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Segoe UI Variable Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

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

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

address {
  font-style: normal;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

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

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

.site-header {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: rgba(12, 12, 11, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), backdrop-filter 220ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(12, 12, 11, .94);
  border-bottom-color: rgba(255, 255, 255, .16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  overflow: hidden;
  background: #050504;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  box-shadow: 0 3px 16px rgba(0, 0, 0, .2);
  mix-blend-mode: screen;
}

.brand > span {
  font-size: .88rem;
  letter-spacing: .055em;
  white-space: nowrap;
}

.brand > span > br,
.brand-kind {
  display: none;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 6px;
}

.header-social a {
  width: 40px;
  height: 44px;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
  transition: color 140ms var(--ease), opacity 140ms var(--ease), transform 140ms var(--ease);
}

.header-social svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.header-social .solid {
  fill: currentColor;
  stroke: none;
}

.header-social path {
  fill: currentColor;
  stroke: none;
}

.header-social a:active {
  transform: scale(.94);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

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

.menu-toggle {
  width: 44px;
  height: 46px;
  display: grid;
  place-content: center;
  gap: 7px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: color 140ms var(--ease), background-color 140ms var(--ease), border-color 140ms var(--ease), transform 140ms var(--ease);
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.menu-panel {
  position: fixed;
  z-index: 150;
  inset: 0;
  min-height: 100dvh;
  padding: 88px 24px 28px;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity 260ms var(--ease), clip-path 320ms var(--ease-drawer);
}

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

.menu-panel[data-open="true"] {
  opacity: 1;
  clip-path: inset(0);
}

.menu-panel.is-closing {
  transition-duration: 160ms, 190ms;
}

.menu-panel.is-instant {
  transition: none;
}

.menu-panel nav {
  display: grid;
  align-content: center;
  min-height: calc(100dvh - 180px);
}

.menu-panel nav a {
  padding: 10px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
  text-decoration: none;
  font-size: clamp(2.7rem, 13vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.055em;
  opacity: .35;
  transform: translateX(-18px);
  transition: color 160ms var(--ease), opacity 260ms var(--ease), transform 300ms var(--ease);
}

.menu-panel[data-open="true"] nav a {
  opacity: 1;
  transform: none;
}

.menu-panel[data-open="true"] nav a:nth-child(2) { transition-delay: 35ms; }
.menu-panel[data-open="true"] nav a:nth-child(3) { transition-delay: 70ms; }
.menu-panel[data-open="true"] nav a:nth-child(4) { transition-delay: 105ms; }
.menu-panel[data-open="true"] nav a:nth-child(5) { transition-delay: 140ms; }

.menu-panel nav a[aria-current="location"] {
  color: var(--yellow);
}

.menu-panel p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.icon-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(17,17,16,.7);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 2px;
  cursor: pointer;
  transition: color 140ms var(--ease), background-color 140ms var(--ease), border-color 140ms var(--ease), transform 140ms var(--ease);
}

.menu-toggle:active,
.icon-button:active {
  transform: scale(.97);
}

.icon-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 20px;
}

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

.hero-media,
.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .1), rgba(8, 8, 8, .28));
}

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

.hero-ambient span {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.hero-ambient span:first-child {
  top: 12%;
  right: -18%;
  width: min(88vw, 660px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(circle at 36% 38%, rgba(255,255,255,.08), rgba(255,255,255,0) 61%);
  animation: hero-orbit 13s var(--ease-in-out) infinite alternate;
}

.hero-ambient span:last-child {
  left: -24%;
  bottom: -14%;
  width: min(72vw, 540px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,.06), rgba(255,255,255,0) 68%);
  animation: hero-glow 9s var(--ease-in-out) infinite alternate;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-height) + 42px);
  right: 20px;
  width: clamp(138px, 36vw, 154px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, .88);
  background: rgba(0, 0, 0, .1);
  border: 1px solid currentColor;
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: seal-spin 20s linear infinite;
}

.hero-badge text {
  fill: currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.hero-badge-mark {
  width: 56%;
  aspect-ratio: 1;
  overflow: hidden;
  background: url("assets/baby-afro-logo.webp") center / cover no-repeat;
  border-radius: 50%;
  mix-blend-mode: screen;
}

@keyframes hero-orbit {
  to { transform: translate3d(-8%, 7%, 0) rotate(12deg) scale(1.08); }
}

@keyframes hero-glow {
  to { transform: translate3d(16%, -11%, 0) scale(.88); opacity: .55; }
}

.hero-content {
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: clamp(44px, 7svh, 64px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--yellow);
}

.eyebrow.dark {
  color: var(--soft-ink);
}

.section-tag {
  margin: 0 0 18px;
  color: var(--soft-ink);
  font-size: .9rem;
  font-weight: 750;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  margin: 0 10px 3px 0;
  background: var(--yellow);
}

.section-tag.inverse {
  color: rgba(255,255,255,.72);
}

.hero h1,
.section h2,
.feature-section h2,
.visit-section h2,
.reviews-section h2 {
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 6rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero h1 {
  max-width: none;
  font-family: "Bodoni MT", Didot, "Times New Roman", Georgia, serif;
  font-size: clamp(3rem, 15.3vw, 4.55rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.048em;
  text-transform: uppercase;
  text-wrap: nowrap;
  white-space: nowrap;
}

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

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

.hero-intro {
  max-width: 370px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 4.3vw, 1.12rem);
  line-height: 1.48;
}

.hero .eyebrow,
.hero h1,
.hero-intro,
.hero-actions {
  animation: hero-enter .7s var(--ease) both;
}

.hero h1 {
  animation-delay: .08s;
}

.hero-intro {
  animation-delay: .16s;
}

.hero-actions {
  animation-delay: .24s;
}

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

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

.hero-actions .button {
  min-width: 0;
  min-height: 58px;
  flex: 1 1 0;
  padding-inline: 12px;
}

.hero-actions .button span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  white-space: nowrap;
}

.hero-actions .button span::after {
  display: none;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color 160ms var(--ease), background-color 160ms var(--ease), border-color 160ms var(--ease), transform 140ms var(--ease);
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(255,255,255,.30);
  transform: translateX(-102%);
  transition: transform 260ms var(--ease);
}

.button > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.button .button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 160ms var(--ease);
}

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

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

.button-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,.8);
}

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

.button-dark::before {
  background: var(--yellow);
}

.hero-scroll {
  position: absolute;
  right: 18px;
  bottom: 28px;
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  animation: scroll-cue 1.65s var(--ease-in-out) infinite;
}

@keyframes scroll-cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

.proof-strip {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border-bottom: 1px solid rgba(17,17,16,.35);
}

.proof-strip::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 28%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg);
  animation: proof-shine 5.8s linear infinite;
  pointer-events: none;
}

@keyframes proof-shine {
  0%, 18% { transform: translateX(0) skewX(-18deg); }
  58%, 100% { transform: translateX(560%) skewX(-18deg); }
}

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

.proof-grid > * {
  min-width: 0;
  display: grid;
  align-content: center;
  min-height: 100px;
  padding: 18px;
  border-right: 1px solid rgba(17,17,16,.25);
  border-bottom: 1px solid rgba(17,17,16,.25);
  transition: background-color 160ms var(--ease), transform 160ms var(--ease);
}

.proof-grid > :nth-child(2n) {
  border-right: 0;
}

.proof-grid > :nth-child(n + 3) {
  border-bottom: 0;
}

.proof-grid a {
  text-decoration: none;
}

.proof-grid strong {
  font-size: clamp(1.45rem, 5vw, 2.1rem);
  line-height: 1;
  letter-spacing: -.025em;
}

.proof-grid .proof-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 12px;
  color: rgba(17,17,16,.72);
}

.proof-grid span {
  margin-top: 7px;
  color: rgba(17,17,16,.7);
  font-size: .76rem;
  font-weight: 700;
}

.brand-marquee {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.brand-marquee-track {
  width: max-content;
  display: flex;
  animation: marquee-flow 18s linear infinite;
}

.brand-marquee-track span {
  flex: 0 0 auto;
  padding: 14px 0;
  font-size: clamp(.82rem, 2.7vw, 1rem);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-marquee-track b {
  display: inline-block;
  margin: 0 1.1rem;
  color: var(--yellow);
  font-weight: inherit;
}

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

.section {
  padding: 92px 0;
}

.story-grid {
  position: relative;
  display: grid;
  gap: 46px;
}

.rotating-seal {
  position: absolute;
  z-index: 4;
  top: -38px;
  right: -10px;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  pointer-events: none;
}

.rotating-seal svg {
  width: 100%;
  height: 100%;
  animation: seal-spin 15s linear infinite;
}

.rotating-seal text {
  fill: currentColor;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.rotating-seal circle {
  fill: currentColor;
}

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

.portrait-frame,
.ratio-frame,
.gallery-media,
.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-2);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 4px;
  background: var(--yellow);
}

.photo-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  font-size: .72rem;
  font-weight: 800;
}

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

.story-copy {
  align-self: center;
}

.section h2,
.feature-section h2,
.visit-section h2,
.reviews-section h2 {
  max-width: 10ch;
  font-size: clamp(2.9rem, 8vw, 6rem);
}

.story-copy .lede {
  margin: 30px 0 18px;
  font-size: clamp(1.18rem, 3vw, 1.55rem);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -.025em;
}

.story-copy > p:not(.section-tag):not(.lede) {
  margin: 0;
  color: var(--soft-ink);
}

.story-callout {
  display: grid;
  gap: 3px;
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-callout strong {
  font-size: 1.15rem;
}

.story-callout span {
  color: var(--soft-ink);
  font-size: .92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color 150ms var(--ease), border-color 150ms var(--ease), transform 150ms var(--ease);
}

.text-link span {
  transition: transform 160ms var(--ease);
}

.text-link:active {
  transform: scale(.97);
}

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

.feature-section {
  position: relative;
  min-height: min(78svh, 720px);
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.feature-media,
.feature-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature-media {
  overflow: hidden;
}

.feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  animation: feature-breathe 14s var(--ease-in-out) infinite alternate;
}

.feature-shade {
  z-index: -1;
  background: rgba(8,8,8,.26);
}

.feature-content {
  position: relative;
  z-index: 1;
  padding-top: 78px;
  padding-bottom: 58px;
}

.feature-content p:last-child {
  max-width: 500px;
  margin: 26px 0 0;
  font-size: 1.1rem;
}

.feature-loop {
  position: absolute;
  z-index: 0;
  inset: 18% 0 auto;
  overflow: hidden;
  color: rgba(255,255,255,.20);
  pointer-events: none;
}

.feature-loop > div {
  width: max-content;
  display: flex;
  animation: feature-loop 22s linear infinite;
}

.feature-loop span {
  flex: 0 0 auto;
  padding-right: .28em;
  font-size: clamp(4.8rem, 16vw, 13rem);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -.065em;
  white-space: nowrap;
}

@keyframes feature-loop {
  to { transform: translateX(-50%); }
}

@keyframes feature-breathe {
  from { filter: saturate(.98) brightness(.98); }
  to { filter: saturate(1.06) brightness(1.03); }
}

.experience-section {
  padding: 92px 0 0;
  overflow: hidden;
  background: var(--paper);
}

.experience-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.experience-heading .section-tag {
  margin-bottom: 0;
}

.experience-heading h2,
.locals-section h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.9rem, 8vw, 6rem);
  line-height: .9;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.experience-heading > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--soft-ink);
}

.experience-strip {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) var(--ink);
  background: var(--ink);
}

.experience-item {
  position: relative;
  min-width: 84vw;
  height: min(72svh, 660px);
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border-right: 1px solid rgba(255,255,255,.28);
}

.experience-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.experience-item:nth-child(1) img {
  animation: experience-pan-one 12s var(--ease-in-out) infinite alternate;
}

.experience-item:nth-child(2) img {
  animation: experience-pan-two 15s var(--ease-in-out) infinite alternate;
}

.experience-item:nth-child(3) img {
  animation: experience-pan-three 13s var(--ease-in-out) infinite alternate;
}

@keyframes experience-pan-one {
  from { filter: saturate(.97) brightness(.98); }
  to { filter: saturate(1.05) brightness(1.025); }
}

@keyframes experience-pan-two {
  from { filter: saturate(1.04) brightness(1.02); }
  to { filter: saturate(.98) brightness(.975); }
}

@keyframes experience-pan-three {
  from { filter: saturate(.99) brightness(.98); }
  to { filter: saturate(1.055) brightness(1.025); }
}

.experience-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(8,8,8,.52));
}

.experience-item figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 7px;
  color: var(--white);
}

.experience-item .experience-icon {
  width: 22px;
  height: 22px;
  color: var(--yellow);
}

.experience-item figcaption strong {
  font-size: 1.65rem;
  letter-spacing: -.025em;
}

.experience-item figcaption span {
  color: rgba(255,255,255,.76);
  font-size: .86rem;
}

.menu-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--yellow);
}

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

.menu-orbit {
  position: absolute;
  z-index: 0;
  top: -86px;
  right: -86px;
  width: min(72vw, 560px);
  aspect-ratio: 1;
  border: 2px solid rgba(17,17,16,.18);
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(17,17,16,.13) 0 4deg, transparent 4deg 14deg);
  -webkit-mask: radial-gradient(circle, transparent 0 34%, #000 35% 66%, transparent 67%);
  mask: radial-gradient(circle, transparent 0 34%, #000 35% 66%, transparent 67%);
  animation: menu-orbit 18s linear infinite;
  pointer-events: none;
}

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

.section-heading {
  display: grid;
  gap: 24px;
  margin-bottom: 42px;
}

.section-heading > p {
  max-width: 490px;
  margin: 0;
  align-self: end;
  color: rgba(17,17,16,.72);
}

.gallery-section .section-heading h2 {
  max-width: none;
  font-size: clamp(2.35rem, 6vw, 4rem);
  line-height: .95;
  text-wrap: balance;
}

.menu-grid {
  display: flex;
  gap: 14px;
  margin-inline: -20px;
  padding: 0 20px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) transparent;
}

.menu-card {
  flex: 0 0 min(82vw, 350px);
  display: grid;
  grid-template-rows: auto 1fr;
  scroll-snap-align: center;
  background: var(--paper);
  border: 1px solid rgba(17,17,16,.25);
  box-shadow: 0 0 0 rgba(17,17,16,0);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 160ms var(--ease);
}

.menu-card .ratio-frame img {
  transition: transform 500ms var(--ease), filter 220ms var(--ease);
}

.menu-card-copy {
  padding: 22px;
}

.menu-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-card-title .lucide-icon {
  width: 23px;
  height: 23px;
  color: var(--yellow);
}

.menu-card-copy p {
  margin: 9px 0 0;
  color: var(--soft-ink);
  font-size: .88rem;
  line-height: 1.45;
}

.menu-card h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -.035em;
}

.menu-note {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(17,17,16,.28);
  color: rgba(17,17,16,.7);
  font-size: .82rem;
}

.locals-section {
  display: grid;
  background: var(--ink);
}

.locals-photo {
  min-height: 58svh;
  overflow: hidden;
}

.locals-photo picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 58svh;
}

.locals-photo img {
  width: 100%;
  height: 100%;
  min-height: 58svh;
  object-fit: cover;
  animation: locals-drift 16s var(--ease-in-out) infinite alternate;
}

@keyframes locals-drift {
  from { filter: saturate(.98) brightness(.985); }
  to { filter: saturate(1.05) brightness(1.025); }
}

.locals-copy {
  display: flex;
  align-items: center;
  padding: 84px 20px;
  color: var(--white);
}

.locals-inner {
  width: min(100%, 560px);
  margin-inline: auto;
}

.locals-list {
  margin-top: 38px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.locals-list > div {
  display: grid;
  gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.locals-inner.will-reveal .locals-list > div {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 360ms var(--ease), transform 420ms var(--ease);
}

.locals-inner.will-reveal.is-visible .locals-list > div {
  opacity: 1;
  transform: none;
}

.locals-inner.will-reveal.is-visible .locals-list > div:nth-child(2) { transition-delay: 70ms; }
.locals-inner.will-reveal.is-visible .locals-list > div:nth-child(3) { transition-delay: 140ms; }
.locals-inner.will-reveal.is-visible .locals-list > div:nth-child(4) { transition-delay: 210ms; }

.locals-list strong {
  font-size: 1.05rem;
}

.locals-list span {
  color: rgba(255,255,255,.66);
  font-size: .88rem;
}

.gallery-section {
  background: var(--paper);
}

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

.gallery-item {
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  width: 100%;
  aspect-ratio: auto;
  overflow: visible;
  padding: 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: zoom-in;
  transition: transform 140ms var(--ease), box-shadow 220ms var(--ease);
}

.gallery-media {
  width: 100%;
  overflow: hidden;
  background: var(--paper-2);
}

.gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 58%, rgba(8,8,8,.28));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

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

.gallery-open {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  opacity: .96;
  pointer-events: none;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.gallery-open .lucide-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.gallery-caption {
  display: block;
  padding-top: 10px;
  color: var(--soft-ink);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.35;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.gallery-item:focus-visible .gallery-media img {
  transform: scale(1.025);
}

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

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

.reviews-heading {
  display: grid;
  gap: 34px;
  margin-bottom: 52px;
}

.rating-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0 16px;
}

.rating-summary strong {
  grid-row: 1 / span 2;
  font-size: 4.5rem;
  line-height: .86;
  letter-spacing: -.07em;
}

.rating-summary .stars {
  transform-origin: left center;
  animation: stars-glow 3.4s var(--ease-in-out) infinite;
}

@keyframes stars-glow {
  0%, 100% { opacity: .72; transform: scale(1); filter: drop-shadow(0 0 0 rgba(244,200,76,0)); }
  50% { opacity: 1; transform: scale(1.045); filter: drop-shadow(0 0 7px rgba(244,200,76,.34)); }
}

.rating-summary span:last-child {
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.stars {
  color: var(--yellow);
  font-size: 15px;
  letter-spacing: .1em;
}

.reviews-list {
  border-top: 1px solid rgba(255,255,255,.2);
}

.review {
  display: grid;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: border-color 180ms var(--ease);
}

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

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

.review h3 {
  margin: 0 0 2px;
  font-size: 1rem;
}

.review blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: -.02em;
}

.review .text-link {
  width: fit-content;
  margin-top: 0;
}

.review-featured blockquote {
  max-width: 760px;
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  line-height: 1.3;
}

.review-pair {
  display: grid;
}

.review-pair .review:last-child {
  border-bottom: 0;
}

.visit-section {
  display: grid;
  background: var(--paper);
}

.visit-info {
  padding: 88px 20px;
}

.visit-inner {
  max-width: 540px;
  margin-inline: auto;
}

.visit-inner address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 34px;
  color: var(--soft-ink);
  font-size: 1.15rem;
}

.visit-inner address .visit-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--yellow);
}

.hours {
  margin: 32px 0;
  border-top: 1px solid var(--line);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hours span {
  font-weight: 750;
}

.hours time {
  color: var(--soft-ink);
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--soft-ink);
  font-size: 13px;
}

.amenities li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.amenities .amenity-icon {
  width: 16px;
  height: 16px;
  color: var(--yellow);
  animation: amenity-pulse 3.2s var(--ease-in-out) infinite;
}

.amenities li:nth-child(2n) .amenity-icon {
  animation-delay: -1.6s;
}

@keyframes amenity-pulse {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(45deg) scale(1.2); }
}

.map-wrap {
  min-height: 500px;
  background: var(--paper-2);
}

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

.site-footer {
  padding: 68px 0 24px;
  color: var(--white);
  background: #090909;
}

.footer-grid {
  display: grid;
  gap: 44px;
}

.footer-logo {
  width: 116px;
  height: 116px;
  object-fit: cover;
}

.footer-grid p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.66);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-meta p {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 2px;
  transition: color 150ms var(--ease), background-color 150ms var(--ease), border-color 150ms var(--ease), transform 140ms var(--ease);
}

.social-links a:active {
  transform: scale(.97);
}

.social-links svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links svg .solid,
.social-links a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 20px;
  color: rgba(255,255,255,.48);
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

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

.lightbox {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  padding: 72px 12px 24px;
  color: var(--white);
  opacity: 0;
  transition: opacity 200ms var(--ease);
}

.lightbox[hidden] {
  display: none;
}

.lightbox[data-open="true"] {
  opacity: 1;
}

.lightbox.is-closing {
  transition-duration: 150ms;
}

.lightbox.is-instant {
  transition: none;
}

.lightbox-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(8,8,8,.92);
  cursor: zoom-out;
}

.lightbox figure {
  min-width: 0;
  margin: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(12px) scale(.97);
  transition: opacity 220ms var(--ease), transform 240ms var(--ease);
}

.lightbox[data-open="true"] figure {
  opacity: 1;
  transform: none;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(100dvh - 130px);
  margin-inline: auto;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.lightbox-prev,
.lightbox-next {
  position: relative;
}

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

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

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .62s var(--ease), transform .62s var(--ease);
}

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

.reveal-clip.will-reveal {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 14% 0);
  transition: clip-path .85s var(--ease);
}

.reveal-clip.will-reveal.is-visible {
  clip-path: inset(0);
}

.menu-card.will-reveal:nth-child(2),
.experience-item.will-reveal:nth-child(2),
.gallery-item.will-reveal:nth-child(2),
.review-pair .review.will-reveal:nth-child(2) {
  transition-delay: 80ms;
}

.menu-card.will-reveal:nth-child(3),
.experience-item.will-reveal:nth-child(3),
.gallery-item.will-reveal:nth-child(3) {
  transition-delay: 160ms;
}

.gallery-item.will-reveal:nth-child(4) { transition-delay: 40ms; }
.gallery-item.will-reveal:nth-child(5) { transition-delay: 120ms; }
.gallery-item.will-reveal:nth-child(6) { transition-delay: 200ms; }

@media (hover: hover) and (pointer: fine) {
  .header-social a:hover {
    color: var(--yellow);
    transform: translateY(-2px);
  }

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

  .menu-toggle:hover,
  .icon-button:hover {
    color: var(--ink);
    background: var(--yellow);
    border-color: var(--yellow);
  }

  .menu-panel nav a:hover {
    color: var(--yellow);
    transform: translateX(10px);
  }

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

  .button:hover::before {
    transform: translateX(0);
  }

  .button-light:hover,
  .button-dark:hover {
    color: var(--ink);
  }

  .button-dark:hover {
    border-color: var(--yellow);
  }

  .proof-grid > *:hover {
    background: rgba(255,255,255,.22);
    transform: translateY(-3px);
  }

  .text-link:hover span {
    transform: translate(3px, -3px);
  }

  .menu-card:hover {
    z-index: 2;
    border-color: rgba(17,17,16,.65);
    box-shadow: 10px 10px 0 rgba(17,17,16,.88);
    transform: translateY(-8px);
  }

  .menu-card:hover .ratio-frame img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.03);
  }

  .gallery-item:hover {
    z-index: 2;
    transform: translateY(-4px);
  }

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

  .gallery-item:hover .gallery-media::after,
  .gallery-item:focus-visible .gallery-media::after {
    opacity: 1;
  }

  .gallery-item:hover .gallery-open,
  .gallery-item:focus-visible .gallery-open {
    color: var(--ink);
    background: var(--yellow);
    transform: translate(2px, -2px);
  }

  .gallery-item:hover .gallery-caption,
  .gallery-item:focus-visible .gallery-caption {
    color: var(--ink);
    transform: translateY(-2px);
  }

  .review:hover {
    border-color: rgba(244,200,76,.72);
  }

  .social-links a:hover {
    color: var(--ink);
    background: var(--yellow);
    border-color: var(--yellow);
    transform: translateY(-3px) rotate(-3deg);
  }

  .menu-toggle:hover:active,
  .icon-button:hover:active,
  .button:hover:active,
  .gallery-item:hover:active,
  .social-links a:hover:active {
    transform: scale(.97);
  }
}

@media (min-width: 680px) {
  :root {
    --page: min(1180px, calc(100vw - 72px));
  }

  .hero-content {
    padding-bottom: 76px;
  }

  .hero-scroll {
    display: flex;
  }

  .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-grid > *,
  .proof-grid > :nth-child(2n),
  .proof-grid > :nth-child(n + 3) {
    min-height: 112px;
    padding: 20px 24px;
    border-right: 1px solid rgba(17,17,16,.25);
    border-bottom: 0;
  }

  .proof-grid > :last-child {
    border-right: 0;
  }

  .story-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 8vw, 110px);
  }

  .rotating-seal {
    top: -46px;
    right: auto;
    left: calc(45% - 52px);
    width: 132px;
  }

  .section-heading,
  .reviews-heading,
  .experience-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: end;
  }

  .experience-heading .section-tag {
    grid-column: 1 / -1;
  }

  .experience-strip {
    overflow: hidden;
  }

  .experience-item {
    min-width: 33.333%;
    height: min(70svh, 680px);
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }

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

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

  .review-featured {
    grid-template-columns: 200px minmax(0, 1fr) 150px;
    align-items: start;
  }

  .review-featured .text-link {
    justify-self: end;
  }

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

  .review-pair .review {
    align-content: start;
    padding-right: 36px;
  }

  .review-pair .review + .review {
    padding-right: 0;
    padding-left: 36px;
    border-left: 1px solid rgba(255,255,255,.2);
  }

  .review-pair .review .text-link {
    margin-top: auto;
  }

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

  .footer-meta {
    align-items: flex-end;
    text-align: right;
  }
}

@media (min-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    background: rgba(12, 12, 11, .9);
    border-bottom-color: rgba(255, 255, 255, .16);
    backdrop-filter: blur(12px);
  }

  .desktop-nav {
    display: flex;
  }

  .header-social {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

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

  .section {
    padding: 132px 0;
  }

  .feature-content {
    padding-bottom: 76px;
  }

  .experience-section {
    padding-top: 126px;
  }

  .locals-section {
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  }

  .locals-photo,
  .locals-photo picture,
  .locals-photo img {
    min-height: 780px;
  }

  .locals-copy {
    padding: 100px clamp(44px, 5vw, 86px);
  }

  .locals-inner {
    margin: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(14px, 1.6vw, 24px);
    row-gap: clamp(28px, 3vw, 40px);
    align-items: start;
  }

  .visit-section {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

  .visit-info {
    padding: 110px max(48px, calc((100vw - 1180px) / 2));
  }

  .visit-inner {
    margin: 0;
  }
}

@media (min-width: 1000px) {
  .site-header {
    padding-inline: max(40px, calc((100vw - 1320px) / 2));
  }

  .site-header .brand span {
    display: none;
  }

  .site-header .brand img {
    width: 52px;
    height: 52px;
    mix-blend-mode: screen;
  }

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

  .hero-title-desktop {
    display: inline;
  }

  .hero-content {
    width: min(1320px, calc(100vw - 80px));
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(290px, .7fr);
    align-items: end;
    gap: clamp(48px, 6vw, 92px);
    padding-bottom: clamp(72px, 9vh, 108px);
  }

  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    max-width: none;
    font-family: Impact, "Bahnschrift Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(5.25rem, 9vw, 8.75rem);
    font-stretch: condensed;
    font-weight: 400;
    line-height: .83;
    letter-spacing: -.055em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .hero-side {
    width: 100%;
    max-width: 380px;
    justify-self: end;
    padding-bottom: 5px;
  }

  .hero-intro {
    margin: 0;
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.48;
    text-wrap: balance;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button {
    padding-inline: 16px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-badge {
    top: calc(var(--header-height) + 46px);
    right: max(40px, calc((100vw - 1320px) / 2));
    width: clamp(156px, 14vw, 210px);
    color: var(--yellow);
    background: #000;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero-actions .button:hover .button-icon {
    transform: translate(3px, -3px);
  }
}

@media (max-width: 479px) {
  .gallery-grid {
    gap: 16px 8px;
  }

  .gallery-caption {
    padding-top: 8px;
    font-size: .7rem;
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding-inline: 6px;
  }

  .lightbox .icon-button {
    width: 44px;
    height: 44px;
  }
}

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

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

  .reveal,
  .reveal.will-reveal,
  .reveal-clip.will-reveal,
  .reveal-clip.will-reveal.is-visible {
    opacity: 1;
    transform: none;
    clip-path: inset(0);
  }

  .hero .eyebrow,
  .hero h1,
  .hero-intro,
  .hero-actions {
    animation: none;
  }

  .hero-ambient span,
  .hero-scroll svg,
  .proof-strip::after,
  .brand-marquee-track,
  .hero-badge svg,
  .rotating-seal svg,
  .feature-media img,
  .feature-loop > div,
  .experience-item img,
  .menu-orbit,
  .locals-photo img,
  .rating-summary .stars,
  .amenities .amenity-icon {
    animation: none !important;
  }
}
