:root {
  --paper: #f7f8f7;
  --white: #ffffff;
  --ink: #111517;
  --muted: #5d666b;
  --line: #d8dddf;
  --ice: #eaf3f7;
  --accent: #2b729d;
  --accent-deep: #1d5577;
  --radius: 2px;
  --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);
  --content: min(1200px, calc(100vw - 40px));
  --header-height: 76px;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; background: var(--paper); color: var(--ink); line-height: 1.5; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; transform: translateY(-150%); background: var(--white); padding: 10px 14px; }
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: var(--white);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { color: var(--ink); background: rgba(247, 248, 247, 0.96); border-color: var(--line); backdrop-filter: blur(14px); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--white); transition: transform 220ms var(--ease-out); }
.brand-name { font-size: 1.55rem; font-weight: 750; letter-spacing: -0.015em; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.social-link { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; text-decoration: none; transition: transform 180ms var(--ease-out), color 180ms ease, background 180ms ease; }
.social-link svg { width: 17px; height: 17px; fill: currentColor; transition: transform 220ms var(--ease-out); }
.social-link:hover, .social-link:focus-visible { background: var(--white); color: var(--ink); }
.site-header.is-scrolled .social-link:hover, .site-header.is-scrolled .social-link:focus-visible { background: var(--ink); color: var(--white); }
.menu-toggle { min-height: 44px; border: 1px solid currentColor; background: transparent; padding: 0 16px; display: flex; align-items: center; gap: 14px; cursor: pointer; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.76rem; transition: transform 160ms var(--ease-out), color 180ms ease, background 180ms ease; }
.menu-lines, .menu-lines::before { display: block; width: 16px; height: 1px; background: currentColor; content: ""; }
.menu-lines::before { transform: translateY(5px); }

.site-menu {
  position: fixed;
  z-index: 60;
  inset: 0;
  color: var(--ink);
  background: var(--ice);
  padding: 26px max(20px, calc((100vw - 1200px) / 2));
  overflow: auto;
}
.site-menu[hidden] { display: none; }
.menu-close, .modal-close, .lightbox-close { position: absolute; top: 24px; right: 24px; border: 0; background: none; padding: 10px 0; cursor: pointer; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; }
.menu-panel { min-height: calc(100svh - 130px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; max-width: 860px; }
.menu-panel > a, .menu-panel .text-button { font-size: clamp(2.8rem, 9vw, 7rem); line-height: 0.96; letter-spacing: -0.055em; text-decoration: none; color: var(--ink); }
.menu-panel > a:hover, .menu-panel > a:focus-visible, .menu-panel .text-button:hover, .menu-panel .text-button:focus-visible { color: var(--accent); }
.text-button { border: 0; padding: 0; background: none; cursor: pointer; }
.menu-meta { display: flex; flex-wrap: wrap; gap: 18px 30px; border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted); }

.hero { position: relative; min-height: 100svh; height: 100svh; overflow: hidden; color: var(--white); background: #202325; }
.hero-media { position: absolute; inset: -2%; width: 104%; height: 104%; max-width: none; object-fit: cover; object-position: 50% 48%; animation: hero-breathe 18s var(--ease-in-out) infinite alternate; will-change: transform; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 10, 0.10) 0%, rgba(10, 10, 10, 0.20) 44%, rgba(10, 10, 10, 0.30) 100%); }
.hero-ambient { position: absolute; z-index: 0; inset: 0; pointer-events: none; will-change: transform; }
.hero-ambient span { position: absolute; width: min(52vw, 760px); aspect-ratio: 1; right: -13%; top: 8%; border-radius: 50%; background: radial-gradient(circle, rgba(137, 211, 247, 0.18) 0%, rgba(104, 183, 220, 0.08) 34%, transparent 70%); mix-blend-mode: screen; animation: ambient-orbit 14s var(--ease-in-out) infinite alternate; }
.hero-content { position: relative; z-index: 1; width: var(--content); height: 100%; margin: 0 auto; padding: calc(var(--header-height) + 72px) 0 76px; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; }
.hero-kicker, .eyebrow { margin: 0 0 18px; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; font-weight: 700; }
.hero h1 { max-width: 900px; margin: 0; font-size: clamp(3.55rem, 17vw, 5.35rem); font-weight: 560; line-height: 0.88; letter-spacing: -0.04em; }
.hero-copy { margin: 26px 0 0; font-size: clamp(1rem, 2vw, 1.35rem); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 18px 34px; margin: 24px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.52); }
.hero-facts div { display: grid; gap: 2px; }
.hero-facts dt { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.72); }
.hero-facts dd { margin: 0; font-size: 0.78rem; font-weight: 650; }
.hero-scroll { position: absolute; z-index: 1; right: 20px; bottom: 28px; color: var(--white); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; text-decoration: none; writing-mode: vertical-rl; }
.hero-scroll::after { display: inline-block; width: 1px; height: 44px; margin-top: 12px; background: currentColor; content: ""; animation: scroll-pulse 1.8s var(--ease-in-out) infinite; transform-origin: top; }

.brand-marquee { overflow: hidden; border-block: 1px solid var(--ink); background: var(--white); }
.brand-marquee-track { width: max-content; display: flex; align-items: center; gap: 26px; padding: 15px 0; animation: marquee-flow 24s linear infinite; }
.brand-marquee span { font-size: clamp(0.82rem, 1.25vw, 1rem); font-weight: 720; letter-spacing: 0.08em; text-transform: uppercase; }
.brand-marquee i { color: var(--accent); font-style: normal; }

@media (min-width: 681px) {
  .hero-shade { background: linear-gradient(180deg, rgba(8, 9, 9, 0.24) 0%, rgba(8, 9, 9, 0.38) 48%, rgba(8, 9, 9, 0.54) 100%); }
  .hero-kicker { margin-bottom: 14px; font-size: 0.76rem; }
  .hero h1 { max-width: 840px; font-size: clamp(4.15rem, 6.4vw, 6rem); line-height: 0.9; }
  .hero-copy { margin-top: 21px; font-size: clamp(1.08rem, 1.45vw, 1.28rem); max-width: 580px; }
  .hero-actions { gap: 10px; margin-top: 24px; }
  .hero-actions .button { min-height: 51px; padding-inline: 21px; font-size: 0.76rem; }
  .hero-facts { gap: 22px 44px; margin-top: 24px; padding-top: 17px; }
  .hero-facts dt { font-size: 0.7rem; }
  .hero-facts dd { font-size: 0.9rem; }
}

.button { min-height: 50px; display: inline-flex; justify-content: center; align-items: center; border: 1px solid transparent; padding: 0 20px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; font-weight: 700; cursor: pointer; transition: transform 180ms var(--ease-out), background 180ms ease, color 180ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:active, .menu-toggle:active, .social-link:active, .gallery-item:active { transform: scale(0.97); }
.button-primary { background: var(--white); color: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { background: var(--ice); }
.button-ghost { border-color: rgba(255, 255, 255, 0.78); color: var(--white); }
.button-ghost:hover, .button-ghost:focus-visible { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover, .button-dark:focus-visible { background: var(--accent-deep); }

.section { padding: clamp(90px, 11vw, 160px) 0; }
.section-grid, .section-heading, .menu-grid, .menu-footer, .gallery-grid, .reviews-section, .visit-details, .site-footer { width: var(--content); margin-inline: auto; }
.section h2, .visit-details h2, .reviews-intro h2, .experience-heading h2 { margin: 0; font-size: clamp(2.7rem, 6vw, 5.4rem); line-height: 0.98; letter-spacing: -0.04em; font-weight: 570; text-wrap: balance; }
.eyebrow { color: var(--accent-deep); }
.about-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr); gap: clamp(50px, 9vw, 132px); align-items: center; }
.section-copy > p:not(.eyebrow) { max-width: 650px; margin: 30px 0 0; font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--muted); line-height: 1.75; }
.section-copy > p + p { margin-top: 16px !important; }
.about-highlights { list-style: none; margin: 30px 0 0; padding: 0; border-top: 1px solid var(--line); }
.about-highlights li { display: grid; grid-template-columns: minmax(120px, 0.7fr) 1fr; gap: 22px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.about-highlights strong { font-size: 0.84rem; }
.about-highlights span { color: var(--muted); font-size: 0.84rem; }
.inline-link { display: inline-block; margin-top: 26px; color: var(--accent-deep); font-weight: 700; }
.ratio-frame { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #d9dee0; }
.ratio-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-image { max-width: 570px; justify-self: end; box-shadow: 24px 24px 0 var(--ice); }
.about-image img { object-position: 48% center; }
.about-seal { position: absolute; right: 18px; bottom: 18px; width: 116px; height: 116px; border-radius: 50%; display: grid; place-content: center; gap: 3px; text-align: center; color: var(--white); background: rgba(17,21,23,0.86); border: 1px solid rgba(255,255,255,0.6); animation: seal-rotate 16s linear infinite; }
.about-seal b { font-size: 1rem; letter-spacing: 0.16em; }
.about-seal small { max-width: 80px; font-size: 0.48rem; line-height: 1.45; letter-spacing: 0.13em; }

.experience-band { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--white); padding: clamp(74px, 9vw, 124px) max(20px, calc((100vw - 1200px) / 2)); }
.experience-band::before { position: absolute; z-index: -1; width: 58vw; aspect-ratio: 1; left: -24vw; top: -70%; border-radius: 50%; background: radial-gradient(circle, rgba(43,114,157,0.38), transparent 66%); content: ""; animation: experience-glow 11s var(--ease-in-out) infinite alternate; }
.experience-band::after { position: absolute; z-index: -1; inset: 0 auto 0 -28%; width: 22%; background: linear-gradient(90deg, transparent, rgba(143,215,250,0.07), transparent); transform: skewX(-18deg); content: ""; animation: experience-sweep 9s linear infinite; }
.experience-heading { display: grid; grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr); gap: clamp(36px, 9vw, 130px); align-items: start; }
.experience-heading .eyebrow { color: #9bc7df; }
.experience-heading h2 { max-width: 860px; }
.experience-list { list-style: none; margin: clamp(50px, 8vw, 92px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-top: 1px solid #41474a; }
.experience-list li { min-height: 170px; padding: 18px 14px 18px 0; border-bottom: 1px solid #41474a; display: flex; flex-direction: column; align-items: flex-start; }
.experience-list span { color: #81bad9; font-size: 0.7rem; letter-spacing: 0.15em; }
.experience-list strong { margin-top: auto; font-size: clamp(1.1rem, 1.7vw, 1.45rem); }
.experience-list small { margin-top: 5px; color: #aeb7bb; font-size: 0.76rem; }

.menu-section { background: var(--white); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.section-heading > p { max-width: 330px; margin: 0; color: var(--muted); }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.menu-card { border-top: 1px solid var(--ink); padding-top: 12px; transition: transform 260ms var(--ease-out); }
.menu-image { margin: 0; }
.menu-image img { transition: transform 650ms var(--ease-out), filter 300ms ease; }
.menu-card-copy { padding: 22px 4px 0; }
.menu-number { color: var(--accent); font-size: 0.74rem; letter-spacing: 0.15em; margin: 0; }
.menu-card h3 { margin: 8px 0 22px; font-size: clamp(1.55rem, 2.4vw, 2.2rem); line-height: 1; letter-spacing: -0.035em; }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li { display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); padding: 13px 0; }
.price-list strong { font-weight: 700; white-space: nowrap; }
.menu-footer { margin-top: 42px; display: flex; align-items: center; gap: 22px; }
.menu-footer p { margin: 0; max-width: 420px; color: var(--muted); font-size: 0.88rem; }

.gallery-section { background: var(--ice); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.gallery-item { position: relative; aspect-ratio: 3 / 4; border: 0; padding: 0; overflow: hidden; background: #ccd7dc; cursor: zoom-in; transition: transform 180ms var(--ease-out); }
.gallery-item::after { position: absolute; inset: -20% auto -20% -70%; width: 42%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent); transform: skewX(-18deg); content: ""; pointer-events: none; animation: gallery-shine 8s linear infinite; animation-delay: calc(var(--gallery-index, 0) * -1.1s); }
.gallery-item:nth-child(1) { --gallery-index: 1; }
.gallery-item:nth-child(2) { --gallery-index: 2; }
.gallery-item:nth-child(3) { --gallery-index: 3; }
.gallery-item:nth-child(4) { --gallery-index: 4; }
.gallery-item:nth-child(5) { --gallery-index: 5; }
.gallery-item:nth-child(6) { --gallery-index: 6; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms var(--ease-out), filter 300ms ease; }

.reviews-section { display: grid; grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.3fr); gap: clamp(48px, 10vw, 140px); }
.reviews-intro { position: sticky; top: 120px; align-self: start; }
.rating-line { margin: 28px 0 0; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 2px 14px; }
.rating-line strong { font-size: 3rem; line-height: 1; }
.rating-line span, .review-person p { color: var(--accent); letter-spacing: 0.08em; }
.rating-line span { display: inline-block; animation: star-breathe 2.8s var(--ease-in-out) infinite; transform-origin: left center; }
.rating-line small { grid-column: 2; color: var(--muted); }
.reviews-list { border-top: 1px solid var(--line); }
.review-card { padding: 28px 0 34px; border-bottom: 1px solid var(--line); }
.review-card:first-child { margin: 0 0 16px; padding: 32px; border-bottom: 0; background: var(--ice); }
.review-person { display: flex; align-items: center; gap: 14px; }
.review-person img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.review-person h3, .review-person p { margin: 0; }
.review-person h3 { font-size: 1rem; }
.review-person p { font-size: 0.8rem; }
.review-card blockquote { margin: 24px 0; padding: 0; font-size: clamp(1.35rem, 2.6vw, 2.15rem); line-height: 1.3; letter-spacing: -0.025em; }
.review-card > a { color: var(--accent-deep); font-size: 0.86rem; font-weight: 700; }

.visit-section { background: var(--ink); color: var(--white); display: grid; grid-template-columns: 1fr 1fr; }
.visit-details { width: min(600px, calc(100% - 40px)); padding: clamp(80px, 10vw, 140px) 0; }
.visit-details .eyebrow { color: #9bc7df; }
.visit-facts { display: grid; gap: 28px; margin: 44px 0; }
.visit-facts > div { padding-top: 18px; border-top: 1px solid #3a3f42; }
.visit-facts h3 { margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; color: #aeb7bb; }
.visit-facts p, .visit-facts a { margin: 0; }
.hours-list { margin: 0; }
.hours-list div { display: grid; grid-template-columns: 150px 1fr; gap: 18px; }
.hours-list dt, .hours-list dd { margin: 0; }
.map-wrap { min-height: 700px; }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 700px; border: 0; filter: grayscale(0.25) contrast(1.02); }
.visit-details .button-dark { background: var(--white); color: var(--ink); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.button-outline-light { border-color: #667075; color: var(--white); }
.button-outline-light:hover, .button-outline-light:focus-visible { border-color: var(--white); background: var(--white); color: var(--ink); }

.site-footer { padding: 70px 0 30px; display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 36px; }
.footer-brand img { width: 86px; height: 86px; border-radius: 50%; object-fit: cover; }
.footer-brand p { max-width: 260px; color: var(--muted); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-column h2 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; margin: 0 0 12px; }
.footer-column p { margin: 0 0 6px; color: var(--muted); }
.footer-icon-row { display: flex; gap: 8px; }
.footer-note { grid-column: 1 / -1; margin: 32px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.78rem; }

.modal { width: min(880px, calc(100% - 24px)); max-height: calc(100svh - 24px); border: 0; padding: 0; background: var(--paper); color: var(--ink); overflow: auto; opacity: 0; transform: translateY(16px) scale(0.98); transition: opacity 240ms var(--ease-out), transform 320ms var(--ease-drawer), overlay 240ms ease allow-discrete, display 240ms ease allow-discrete; }
.modal[open] { opacity: 1; transform: none; }
.modal[open]::backdrop { opacity: 1; }
.modal::backdrop { opacity: 0; transition: opacity 240ms ease, overlay 240ms ease allow-discrete, display 240ms ease allow-discrete; }
@starting-style { .modal[open] { opacity: 0; transform: translateY(16px) scale(0.98); } .modal[open]::backdrop { opacity: 0; } }
.modal::backdrop { background: rgba(12, 15, 17, 0.66); backdrop-filter: blur(5px); }
.modal-shell { padding: clamp(28px, 6vw, 70px); position: relative; }
.modal-heading { max-width: 620px; }
.modal-heading h2 { margin: 0; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 0.95; letter-spacing: -0.05em; }
.modal-heading > p:last-child { color: var(--muted); }
.booking-modal form { margin-top: 36px; }
.form-note { font-size: 0.78rem; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid label { display: grid; gap: 7px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid #bec6ca; border-radius: 0; background: var(--white); padding: 12px 13px; color: var(--ink); text-transform: none; letter-spacing: 0; min-height: 48px; }
.form-grid textarea { resize: vertical; }
.field-wide { grid-column: 1 / -1; }
.form-actions { display: flex; align-items: center; gap: 24px; margin-top: 24px; }
.form-status { min-height: 24px; color: var(--accent-deep); font-weight: 700; }

.lightbox { width: 100vw; max-width: none; height: 100svh; max-height: none; border: 0; padding: 66px 70px 30px; background: rgba(10, 12, 13, 0.97); color: var(--white); overflow: hidden; }
.lightbox::backdrop { background: #0a0c0d; }
.lightbox figure { width: 100%; height: calc(100% - 30px); margin: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 12px; justify-items: center; }
.lightbox figure img { max-width: 100%; max-height: 100%; height: 100%; object-fit: contain; }
.lightbox figcaption { color: #c6cdd0; font-size: 0.8rem; }
.lightbox-close { color: var(--white); }
.lightbox-control { position: absolute; top: 50%; transform: translateY(-50%); border: 1px solid #8b9498; background: rgba(10, 12, 13, 0.72); color: var(--white); min-width: 46px; height: 46px; padding: 0 12px; cursor: pointer; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 620ms var(--ease-out), transform 760ms var(--ease-out), clip-path 900ms var(--ease-in-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.ratio-frame.reveal { clip-path: inset(0 0 16% 0); }
.ratio-frame.reveal.is-visible { clip-path: inset(0); }
.experience-list .reveal:nth-child(2), .menu-grid .reveal:nth-child(2), .gallery-grid .reveal:nth-child(2) { transition-delay: 60ms; }
.experience-list .reveal:nth-child(3), .menu-grid .reveal:nth-child(3), .gallery-grid .reveal:nth-child(3) { transition-delay: 120ms; }
.experience-list .reveal:nth-child(4), .gallery-grid .reveal:nth-child(4) { transition-delay: 180ms; }
.experience-list .reveal:nth-child(5), .gallery-grid .reveal:nth-child(5) { transition-delay: 240ms; }
.experience-list .reveal:nth-child(6), .gallery-grid .reveal:nth-child(6) { transition-delay: 300ms; }
.reveal-group > * { opacity: 0; transform: translateY(18px); animation: hero-in 700ms cubic-bezier(.2,.8,.2,1) forwards; }
.reveal-group > *:nth-child(1) { animation-delay: 80ms; }
.reveal-group > *:nth-child(2) { animation-delay: 170ms; }
.reveal-group > *:nth-child(3) { animation-delay: 260ms; }
.reveal-group > *:nth-child(4) { animation-delay: 350ms; }
@keyframes hero-in { to { opacity: 1; transform: none; } }
@keyframes hero-breathe { from { transform: scale(1.01) translate3d(-0.3%, -0.2%, 0); } to { transform: scale(1.075) translate3d(0.8%, 0.6%, 0); } }
@keyframes ambient-orbit { from { transform: translate3d(-4%, -3%, 0) scale(0.92); opacity: 0.45; } to { transform: translate3d(5%, 6%, 0) scale(1.08); opacity: 0.95; } }
@keyframes scroll-pulse { 0%, 100% { transform: scaleY(0.35); opacity: 0.35; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes marquee-flow { to { transform: translate3d(-50%, 0, 0); } }
@keyframes seal-rotate { to { transform: rotate(360deg); } }
@keyframes experience-glow { to { transform: translate3d(20vw, 12%, 0) scale(1.18); opacity: 0.76; } }
@keyframes experience-sweep { to { transform: translate3d(620%, 0, 0) skewX(-18deg); } }
@keyframes gallery-shine { 0%, 64% { transform: translate3d(0, 0, 0) skewX(-18deg); opacity: 0; } 72% { opacity: 1; } 88%, 100% { transform: translate3d(430%, 0, 0) skewX(-18deg); opacity: 0; } }
@keyframes star-breathe { 0%, 100% { transform: scale(1); filter: brightness(1); } 50% { transform: scale(1.07); filter: brightness(1.22); } }

:focus-visible { outline: 3px solid #86c8ea; outline-offset: 3px; }

@media (max-width: 900px) {
  :root { --content: min(100% - 32px, 720px); }
  .about-grid, .reviews-section, .visit-section { grid-template-columns: 1fr; }
  .about-image { width: min(100%, 520px); justify-self: start; }
  .experience-heading { grid-template-columns: 1fr; gap: 12px; }
  .experience-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .menu-grid { gap: 12px; }
  .reviews-intro { position: static; }
  .map-wrap, .map-wrap iframe { min-height: 500px; }
  .site-footer { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-socials { grid-column: 2; }
}

@media (max-width: 680px) {
  :root { --header-height: 68px; --content: calc(100% - 30px); }
  .site-header { padding-inline: 15px; }
  .brand { gap: 8px; }
  .brand img { width: 42px; height: 42px; }
  .brand-name { font-size: 1.35rem; }
  .social-link { width: 40px; height: 40px; }
  .menu-toggle { padding-inline: 12px; }
  .menu-toggle > span:first-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .hero-content { padding-bottom: 56px; }
  .hero-copy { max-width: 310px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1 1 145px; }
  .hero-facts { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .hero-facts dd { font-size: 0.7rem; }
  .hero-scroll { display: none; }
  .section { padding-block: 88px; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading > p { margin-top: 18px; }
  .about-grid { gap: 50px; }
  .about-image { box-shadow: none; width: 100%; }
  .about-seal { width: 92px; height: 92px; right: 12px; bottom: 12px; }
  .about-seal b { font-size: 0.8rem; }
  .about-seal small { max-width: 68px; font-size: 0.42rem; }
  .about-highlights li { grid-template-columns: 1fr; gap: 3px; }
  .experience-band { padding-inline: 15px; }
  .experience-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-list li { min-height: 142px; }
  .menu-grid { grid-template-columns: 1fr; gap: 58px; }
  .menu-footer { align-items: stretch; flex-direction: column; }
  .menu-footer .button { width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .reviews-section { gap: 42px; }
  .review-card blockquote { font-size: 1.45rem; }
  .visit-details { width: calc(100% - 30px); }
  .hours-list div { grid-template-columns: 120px 1fr; }
  .visit-actions { display: grid; grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 420px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-top: 54px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-socials { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; gap: 4px; }
  .form-actions .inline-link { text-align: center; padding: 12px; margin-top: 0; }
  .lightbox { padding: 68px 12px 76px; }
  .lightbox-control { top: auto; bottom: 18px; transform: none; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .menu-panel > a, .menu-panel .text-button { font-size: clamp(2.8rem, 14vw, 4.8rem); }
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover img { transform: rotate(-7deg) scale(1.06); }
  .social-link:hover svg, .social-link:focus-visible svg { transform: rotate(8deg) scale(1.08); }
  .menu-toggle:hover { transform: translateY(-2px); }
  .menu-card:hover { transform: translateY(-8px); }
  .menu-card:hover .menu-image img { transform: scale(1.045); filter: saturate(1.08); }
  .gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.055); filter: saturate(1.08); }
  .review-card { transition: transform 260ms var(--ease-out), background 220ms ease; }
  .review-card:hover { transform: translateX(8px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-group > * { opacity: 1; transform: none; }
  .ratio-frame.reveal { clip-path: inset(0); }
  .hero-media { transform: scale(1.02); }
  .hero-ambient { display: none; }
  .brand-marquee-track { transform: none; }
}
