:root {
  --ink: #201d35;
  --muted: #666277;
  --paper: #f7f7fb;
  --surface: #ffffff;
  --violet: #26204d;
  --accent: #b3364c;
  --accent-dark: #8e263c;
  --line: #d9d7e3;
  --radius: 14px;
  --header-height: 72px;
  --shell: min(1180px, calc(100vw - 40px));
  color-scheme: light;
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

:focus-visible {
  outline: 3px solid #e65c74;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #fff;
  background: var(--violet);
  border-radius: 8px;
}

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

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

.section-pad {
  padding-block: clamp(72px, 9vw, 128px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgb(247 247 251 / 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgb(32 29 53 / 0.12);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.desktop-nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 4px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

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

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

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

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  padding: calc(var(--header-height) + 36px) 24px 32px;
  color: #fff;
  background: var(--violet);
}

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

.mobile-menu nav {
  display: grid;
  gap: 10px;
}

.mobile-menu nav a {
  padding-block: 4px;
  font-size: clamp(2.35rem, 12vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.mobile-call {
  position: absolute;
  right: 24px;
  bottom: max(32px, env(safe-area-inset-bottom));
  left: 24px;
  display: grid;
  min-height: 52px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #24222d;
}

.hero-picture {
  display: contents;
}

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

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: 50% 48%;
}

.hero-shade {
  z-index: -2;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.10) 0%, rgb(0 0 0 / 0.12) 48%, rgb(0 0 0 / 0.29) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  column-gap: clamp(40px, 9vw, 160px);
  padding-block: calc(var(--header-height) + 28px) clamp(42px, 7vw, 82px);
}

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

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 7.2rem);
  font-weight: 850;
  line-height: 0.93;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero-action-group {
  justify-self: end;
  width: min(100%, 340px);
  padding-bottom: 6px;
}

.hero-action-group > p {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 1px 8px rgb(0 0 0 / 0.35);
}

.hero-ctas,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

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

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

.hero .button-primary {
  color: var(--violet);
  background: #fff;
}

.hero .button-primary:hover {
  background: rgb(255 255 255 / 0.88);
}

.button-ghost {
  color: #fff;
  border-color: rgb(255 255 255 / 0.72);
  background: rgb(32 29 53 / 0.22);
  backdrop-filter: blur(8px);
}

.button-outline {
  color: var(--violet);
  border-color: var(--violet);
}

.intro {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(44px, 8vw, 112px);
}

.intro-copy {
  padding-left: clamp(0px, 6vw, 76px);
}

.intro-copy h2,
.section-heading h2,
.reviews-score h2,
.visit-copy h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5.5vw, 5.4rem);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.intro-copy > p:not(.section-kicker) {
  max-width: 62ch;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.portrait-media {
  margin: 0;
  border-radius: var(--radius);
}

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

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

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

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(36px, 6vw, 68px);
}

.section-heading p {
  max-width: 48ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.menu-panel {
  min-width: 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgb(38 32 77 / 0.07);
}

.menu-panel:nth-child(2) {
  margin-top: 42px;
}

.menu-image img {
  object-position: 50% 52%;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.menu-panel:nth-child(3) .menu-image img {
  object-position: 50% 58%;
}

.menu-panel:hover .menu-image img {
  transform: scale(1.025);
}

.menu-panel-body {
  padding: 26px 24px 28px;
}

.menu-panel h3 {
  margin: 0;
  color: var(--violet);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.menu-panel-body > p {
  min-height: 3em;
  margin: 8px 0 22px;
  color: var(--muted);
}

.menu-panel dl,
.hours dl {
  margin: 0;
}

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

.menu-panel dl div:last-child {
  border-bottom: 0;
}

.menu-panel dt,
.menu-panel dd {
  margin: 0;
}

.menu-panel dd {
  color: var(--accent-dark);
  font-weight: 800;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

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

.text-link {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-weight: 800;
}

.gallery-section {
  color: #f7f7fb;
  background: var(--violet);
}

.gallery-section .section-heading p {
  color: #cbc7df;
}

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

.gallery-item {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #17142f;
  cursor: zoom-in;
}

.gallery-item img {
  object-position: 50% 50%;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 250ms ease;
}

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

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

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

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

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

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(42px, 8vw, 110px);
}

.reviews-score {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.reviews-score h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.reviews-score strong {
  display: block;
  margin-top: 34px;
  color: var(--violet);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 850;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.stars,
.review-author span {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.reviews-score .stars {
  display: block;
  margin-top: 20px;
}

.reviews-score p {
  margin: 8px 0 0;
  color: var(--muted);
}

.review-list {
  display: grid;
}

.review {
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.review:first-child {
  padding-top: 0;
}

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

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

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

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

.review-author span {
  font-size: 0.78rem;
}

.review blockquote {
  max-width: 720px;
  margin: 24px 0 20px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 620;
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.review > a {
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.visit-section {
  background: #ececf4;
}

.visit-info {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(48px, 9vw, 130px);
}

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

.visit-copy address {
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.08rem;
  font-style: normal;
}

.phone-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--violet);
  font-size: 1.35rem;
  font-weight: 800;
}

.hours {
  padding: 30px;
  align-self: start;
  background: var(--surface);
  border-radius: var(--radius);
}

.hours h3 {
  margin: 0 0 18px;
  font-size: 1.25rem;
}

.hours dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding-block: 7px;
}

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

.hours dd {
  color: var(--muted);
  text-align: right;
}

.map-wrap {
  width: 100%;
  height: clamp(420px, 56vw, 680px);
  background: #d7d7df;
}

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

.site-footer {
  padding-top: clamp(60px, 8vw, 100px);
  color: #f7f7fb;
  background: #17142f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.footer-brand p {
  margin: 14px 0 0;
  color: #cbc7df;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #cbc7df;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0 0 10px;
}

.footer-grid > div:not(.footer-brand) > a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-block: 22px max(22px, env(safe-area-inset-bottom));
  color: #9d98b6;
  border-top: 1px solid rgb(255 255 255 / 0.14);
  font-size: 0.84rem;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 48px 70px;
  color: #fff;
  background: rgb(15 13 28 / 0.96);
  border: 0;
}

.lightbox::backdrop {
  background: rgb(15 13 28 / 0.72);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 20px;
}

.lightbox figure {
  min-width: 0;
  height: min(82vh, 920px);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
}

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

.lightbox figcaption {
  text-align: center;
  color: #d4d1e3;
  font-size: 0.9rem;
}

.lightbox button {
  width: 48px;
  height: 48px;
  padding: 0;
  color: #fff;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.26);
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  font-size: 2.2rem;
}

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

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

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

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

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

  .menu-toggle {
    display: block;
  }

  .intro-grid,
  .reviews-layout,
  .visit-info {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-left: 0;
  }

  .portrait-media {
    width: min(100%, 560px);
    justify-self: center;
  }

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

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

  .menu-panel-body {
    padding: 20px 16px 22px;
  }

  .menu-panel h3 {
    font-size: 1.08rem;
  }

  .menu-panel-body > p {
    min-height: 4.5em;
    font-size: 0.88rem;
  }

  .menu-panel dl div {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .reviews-score {
    position: static;
  }

  .review-list {
    margin-top: 8px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .footer-socials {
    grid-column: 2;
  }
}

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

  .section-pad {
    padding-block: 72px;
  }

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

  .brand {
    width: 46px;
    height: 46px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: max(34px, env(safe-area-inset-bottom));
  }

  .hero-media {
    object-position: 32% 48%;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15.2vw, 4.35rem);
    line-height: 0.94;
  }

  .hero-action-group {
    justify-self: start;
    width: min(100%, 340px);
    padding-bottom: 0;
  }

  .hero-action-group > p {
    max-width: 340px;
  }

  .hero-ctas {
    margin-top: 24px;
  }

  .hero-ctas .button {
    flex: 1 1 0;
    padding-inline: 18px;
  }

  .intro-copy h2,
  .section-heading h2,
  .reviews-score h2,
  .visit-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .intro-grid {
    gap: 44px;
  }

  .fact-row {
    gap: 8px 16px;
  }

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

  .menu-panel-body {
    padding: 24px 20px 26px;
  }

  .menu-panel h3 {
    font-size: 1.35rem;
  }

  .menu-panel-body > p {
    min-height: 0;
  }

  .menu-panel dl div {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .menu-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    gap: 14px;
  }

  .review blockquote {
    font-size: 1.22rem;
  }

  .reviews-score strong {
    font-size: 6rem;
  }

  .hours {
    padding: 24px 20px;
  }

  .visit-actions .button {
    flex: 1 1 100%;
  }

  .map-wrap {
    height: 450px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-brand,
  .footer-socials {
    grid-column: 1 / -1;
  }

  .footer-socials > div {
    margin-left: -10px;
  }

  .footer-bottom {
    margin-top: 48px;
  }

  .lightbox {
    padding: 76px 16px 26px;
  }

  .lightbox[open] {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 6px;
  }

  .lightbox figure {
    height: min(74vh, 760px);
  }

  .lightbox button {
    width: 42px;
    height: 42px;
  }
}

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

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

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

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

  .button-ghost {
    background: rgb(32 29 53 / 0.72);
    backdrop-filter: none;
  }
}

/* Richer narrative pass */
.hero h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 8vw, 6rem);
  letter-spacing: -0.04em;
}

.intro-copy h2,
.section-heading h2,
.moments-heading h2,
.reviews-score h2,
.visit-copy h2 {
  letter-spacing: -0.04em;
}

.reviews-score strong {
  letter-spacing: -0.04em;
}

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

.quick-facts {
  color: #fff;
  background: var(--accent);
}

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

.quick-facts p {
  min-width: 0;
  margin: 0;
  padding: 22px clamp(20px, 3vw, 38px);
  display: grid;
  gap: 3px;
}

.quick-facts p + p {
  border-inline-start: 1px solid rgb(255 255 255 / 0.3);
}

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

.quick-facts span {
  color: rgb(255 255 255 / 0.8);
  font-size: 0.78rem;
}

.intro-media-stack {
  position: relative;
  min-width: 0;
  padding: 0 8% 10% 0;
}

.intro-media-stack .portrait-media {
  width: 88%;
}

.intro-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--surface);
  border-radius: var(--radius);
  background: var(--surface);
}

.intro-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-note {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-footer strong {
  color: var(--ink);
}

.moments-section {
  overflow: hidden;
  background: #ebeaf3;
}

.moments-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(36px, 8vw, 110px);
  margin-bottom: clamp(46px, 7vw, 86px);
}

.moments-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  font-weight: 830;
  line-height: 0.96;
  text-wrap: balance;
}

.moments-label {
  width: fit-content;
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

.moments-heading > p {
  max-width: 48ch;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.04rem;
  text-wrap: pretty;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(16px, 2.2vw, 30px);
}

.story-card {
  min-width: 0;
  margin: 0;
}

.story-card-table {
  margin-top: 0;
}

.story-card-tall {
  margin-top: 0;
}

.story-card img {
  width: 100%;
  height: clamp(280px, 28vw, 380px);
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-card-wide img,
.story-card-table img,
.story-card-tall img {
  aspect-ratio: auto;
}

.story-card figcaption {
  display: grid;
  gap: 3px;
  padding-top: 14px;
}

.story-card figcaption strong {
  color: var(--violet);
  font-size: 1.02rem;
}

.story-card figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews-lede {
  max-width: 31ch;
  margin-top: 28px !important;
  color: var(--ink) !important;
  line-height: 1.55;
}

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

.review:first-child {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  padding: clamp(28px, 4vw, 46px);
  color: #fff;
  background: var(--violet);
  border: 0;
  border-radius: var(--radius);
}

.review:first-child blockquote,
.review:first-child .review-author h3,
.review:first-child > a {
  color: #fff;
}

.review:first-child blockquote {
  max-width: 800px;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
}

.review:nth-child(2),
.review:nth-child(3) {
  padding-top: 30px;
  border-bottom: 0;
}

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

@media (max-width: 900px) {
  .quick-facts p {
    padding-inline: 20px;
  }

  .intro-media-stack {
    width: min(100%, 620px);
    justify-self: center;
  }

  .moments-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .story-card-table {
    margin-top: 0;
  }

  .story-card-tall {
    width: 64%;
    margin: 0 auto;
    grid-column: 1 / -1;
  }

  .story-card img {
    height: 300px;
  }

  .review-list {
    margin-top: 20px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15.2vw, 4.35rem);
  }

  .hero-content {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .quick-facts-grid {
    grid-template-columns: 1fr;
    padding-block: 4px;
  }

  .quick-facts p {
    padding: 15px 0;
  }

  .quick-facts p + p {
    border-inline-start: 0;
    border-top: 1px solid rgb(255 255 255 / 0.3);
  }

  .intro-media-stack {
    padding: 0 34px 54px 0;
  }

  .intro-media-stack .portrait-media {
    width: 100%;
  }

  .intro-detail {
    width: 46%;
    border-width: 7px;
  }

  .moments-heading h2 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

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

  .story-card-table,
  .story-card-tall {
    width: 100%;
    margin-top: 24px;
    grid-column: auto;
  }

  .story-card-wide img,
  .story-card-table img,
  .story-card-tall img {
    height: clamp(240px, 68vw, 290px);
    aspect-ratio: auto;
  }

  .review:first-child {
    padding: 28px 22px;
  }

  .review:nth-child(2),
  .review:nth-child(3) {
    padding-block: 28px;
    border-bottom: 1px solid var(--line);
  }

  .review:nth-child(3) {
    border-bottom: 0;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 6px 8px max(6px, env(safe-area-inset-bottom));
    color: #fff;
    background: var(--violet);
    border-top: 1px solid rgb(255 255 255 / 0.16);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-action-bar a + a {
    border-inline-start: 1px solid rgb(255 255 255 / 0.18);
  }

  body.menu-open .mobile-action-bar,
  body.lightbox-open .mobile-action-bar {
    display: none;
  }
}

/* Emil motion system: decorative loops never move core copy or controls. */
:root {
  --motion-out: cubic-bezier(0.23, 1, 0.32, 1);
  --motion-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-media { animation: nash-breathe 18s var(--motion-in-out) infinite alternate; }
.intro-detail { animation: nash-float 6s var(--motion-in-out) infinite alternate; }
.brand-orbit {
  position: absolute;
  top: -22px;
  right: 0;
  width: 112px;
  height: 112px;
  z-index: 2;
  display: grid;
  place-items: center;
  color: white;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
}
.brand-orbit > span {
  position: absolute;
  inset: 7px;
  border: 2px dashed rgb(255 255 255 / 0.8);
  border-radius: 50%;
  animation: nash-orbit 24s linear infinite;
}
.brand-orbit b { text-align: center; font-size: 1.25rem; line-height: 1.1; }
.brand-orbit small { display: block; max-width: 70px; margin: 5px auto 0; font-size: 0.61rem; }
.brand-ribbon {
  overflow: hidden;
  margin: -26px 0 56px;
  padding-block: 16px;
  color: var(--accent-dark);
  border-block: 1px solid var(--line);
}
.brand-ribbon-track {
  display: flex;
  width: max-content;
  animation: nash-flow 28s linear infinite;
}
.brand-ribbon-track span {
  flex: none;
  padding-right: 0.4em;
  white-space: nowrap;
  font-size: clamp(1.35rem, 3vw, 2.5rem);
  font-weight: 850;
  letter-spacing: -0.02em;
}
.button, .social-link, .menu-toggle, .mobile-action-bar a, .lightbox button {
  transition: transform 160ms var(--motion-out), background-color 180ms ease, color 180ms ease;
}
.button:active, .social-link:active, .menu-toggle:active,
.mobile-action-bar a:active, .lightbox button:active { transform: scale(0.96); }
.gallery-item { position: relative; }
.gallery-item::after {
  content: "View photo ↗";
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 9px 14px;
  color: white;
  background: var(--violet);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms var(--motion-out);
  pointer-events: none;
}
.lightbox figure img { touch-action: pan-y; }
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover::after { opacity: 1; transform: none; }
  .gallery-item:hover img { transform: scale(1.055); }
}
@media (hover: none) {
  .button:hover, .social-link:hover, .menu-panel:hover .menu-image img,
  .gallery-item:hover img { transform: none; filter: none; }
  .gallery-item::after { opacity: 1; transform: none; }
}
.keyboard-input *, .keyboard-input *::after { transition-duration: 0s !important; }
.keyboard-input { scroll-behavior: auto; }
.motion-paused .hero-media, .motion-paused .intro-detail,
.motion-paused .brand-orbit > span, .motion-paused .brand-ribbon-track,
.motion-offscreen .hero-media, .motion-offscreen .intro-detail,
.motion-offscreen .brand-orbit > span, .motion-offscreen .brand-ribbon-track {
  animation-play-state: paused;
}
body:not(.motion-ready) .hero-media, body:not(.motion-ready) .intro-detail,
body:not(.motion-ready) .brand-orbit > span, body:not(.motion-ready) .brand-ribbon-track {
  animation: none;
}
@keyframes nash-breathe {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(-0.6%, 0.6%, 0); }
}
@keyframes nash-float {
  from { transform: translateY(5px) rotate(-2deg); }
  to { transform: translateY(-12px) rotate(2deg); }
}
@keyframes nash-orbit { to { transform: rotate(360deg); } }
@keyframes nash-flow { to { transform: translateX(-50%); } }
@media (max-width: 680px) {
  .brand-orbit { width: 88px; height: 88px; top: -16px; }
  .brand-orbit b { font-size: 1rem; }
  .brand-orbit small { font-size: 0.52rem; max-width: 56px; }
  .brand-ribbon { margin-bottom: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media, .intro-detail, .brand-orbit > span, .brand-ribbon-track {
    animation: none !important;
    transform: none !important;
  }
  .brand-ribbon-track { width: 100%; justify-content: center; }
  .brand-ribbon-track span { white-space: normal; text-align: center; padding-inline: 16px; }
  .brand-ribbon-track span + span { display: none; }
  .button:hover, .button:active, .social-link:hover, .social-link:active,
  .menu-panel:hover .menu-image img,
  .gallery-item:hover img, .gallery-item:focus-visible img,
  .gallery-item::after, .gallery-item:hover::after,
  .menu-toggle:active,
  .mobile-action-bar a:active, .lightbox button:active { transform: none; }
}

/* Visit section: copy on the left, map on the right */
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: stretch;
}

.visit-info {
  width: auto;
  margin: 0;
  padding-inline-start: max(20px, calc((100vw - 1180px) / 2));
  padding-inline-end: clamp(38px, 6vw, 88px);
  grid-template-columns: 1fr;
  gap: 42px;
}

.visit-info .hours {
  width: min(100%, 520px);
}

.visit-section .map-wrap {
  height: auto;
  min-height: 100%;
}

@media (min-width: 981px) {
  .visit-info.section-pad {
    padding-block: clamp(48px, 4.4vw, 64px);
  }

  .visit-info {
    gap: 22px;
  }

  .visit-copy h2 {
    font-size: clamp(2.75rem, 4vw, 4rem);
    line-height: 0.98;
  }

  .visit-info .hours {
    padding: 20px 22px;
  }

  .visit-info .hours h3 {
    margin-bottom: 12px;
  }

  .visit-info .hours dl {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .visit-info .hours dl div {
    padding-block: 3px;
    gap: 10px;
    font-size: 0.88rem;
  }
}

@media (max-width: 980px) {
  .visit-section {
    display: block;
  }

  .visit-info {
    width: var(--shell);
    margin-inline: auto;
    padding-inline: 0;
  }

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

@media (max-width: 680px) {
  .visit-section .map-wrap {
    height: 450px;
  }
}
