:root {
  --ink: #120d11;
  --ink-soft: #2a1b22;
  --cream: #fff8e8;
  --cream-deep: #ffe2a1;
  --sun: #f6b11a;
  --sun-soft: #ffe28a;
  --navy: #071f58;
  --price-dark: #25313b;
  --price-blue: #31485a;
  --price-pink: #d93268;
  --price-yellow: #f7bf25;
  --price-paper: #f5eee1;
  --hot: #ff2b8a;
  --electric: #20ccff;
  --green: #6cff81;
  --white: #fffaf0;
  --muted: #8b7c73;
  --shadow: 0 24px 80px rgba(18, 13, 17, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--price-dark);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 24px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  height: auto;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  overflow: visible;
  transition: transform .28s ease, opacity .28s ease;
}

.site-header::after {
  display: none;
}

.site-header.is-hidden {
  opacity: 0;
  transform: translate(-50%, -120%);
  pointer-events: none;
}

.site-header.cta-only .nav-toggle {
  display: none;
}

.site-header.cta-only .site-nav {
  display: flex;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.brand-logo {
  width: 178px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(7, 31, 88, .18));
  transition: transform .24s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.02);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1;
  font-family: "Exo 2", Inter, sans-serif;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: rgba(7, 31, 88, .68);
  font-size: .75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  text-shadow: none;
}

.site-nav a {
  position: relative;
  padding: 12px 10px;
  color: rgba(7, 31, 88, .82);
  border-radius: 999px;
  transition: color .22s ease, background .22s ease;
}

.site-nav a:hover {
  color: var(--navy);
  background: rgba(246, 177, 26, .12);
}

.site-nav a:not(.nav-cta)::after {
  display: none;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 4px;
  padding: 12px 18px !important;
  color: var(--navy) !important;
  background: #f6b11a;
  border-radius: 999px;
  box-shadow: none;
}

.nav-cta:hover {
  background: #ffd15a !important;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(7, 31, 88, .14);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 0;
  display: flex;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  color: var(--navy);
  background: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(54px, 10vw, 110px);
  background: linear-gradient(to bottom, transparent 0%, rgba(37, 49, 59, .18) 34%, #25313b 100%);
  pointer-events: none;
}

.hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  max-height: none;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.hero picture {
  display: block;
  width: 100%;
}

.hero-overlay {
  display: none;
}

.orbit-line {
  position: absolute;
  z-index: 1;
  width: 58vw;
  height: 18vw;
  max-height: 260px;
  border: 4px solid rgba(246, 177, 26, .28);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(246, 177, 26, .22));
  pointer-events: none;
}

.orbit-line-one {
  top: 18%;
  left: -12%;
  transform: rotate(-13deg);
  animation: orbitDrift 8s ease-in-out infinite;
}

.orbit-line-two {
  right: -18%;
  bottom: 14%;
  border-color: rgba(246, 177, 26, .18);
  border-right-color: transparent;
  border-top-color: transparent;
  transform: rotate(-18deg);
  animation: orbitDrift 9s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Exo 2", Inter, sans-serif;
  line-height: .92;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 9.6rem);
  letter-spacing: 0;
  text-shadow: 0 0 40px rgba(32, 204, 255, .18);
  animation: titleRise .55s ease both;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 540px;
  color: rgba(255, 250, 240, .78);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  animation: titleRise .55s ease .08s both;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  animation: titleRise .55s ease .14s both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--sun), #fff0b7);
  box-shadow: 0 16px 42px rgba(255, 184, 77, .28);
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent);
  animation: buttonShine 4.4s ease-in-out infinite;
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, .36);
}

.button {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

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

.button-secondary.dark {
  color: var(--white);
  border-color: rgba(255, 250, 240, .42);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 44px;
  width: min(360px, calc(100% - 48px));
  padding: 22px;
  background: rgba(245, 229, 201, .92);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: cardFloat 5s ease-in-out infinite;
}

.hero-card span,
.hero-card strong {
  display: block;
}

.hero-card span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  margin-top: 4px;
  font-family: "Exo 2", Inter, sans-serif;
  font-size: 1.8rem;
}

.hero-card p {
  margin: 8px 0 0;
  color: #5c4c43;
}

.today-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 92px;
  padding: 26px 32px;
  color: var(--white);
  background: var(--price-blue);
  border-left: 5px solid var(--price-yellow);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.today-status .eyebrow {
  margin: 0 0 3px;
  color: var(--price-yellow);
}

.today-status h1 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.today-hours,
.today-note {
  margin: 4px 0 0;
}

.today-hours {
  font-weight: 800;
}

.today-note {
  color: rgba(255, 255, 255, .78);
}

.moment-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 98px;
  padding: 54px 32px;
  color: var(--white);
  text-align: center;
  justify-items: center;
  background: linear-gradient(135deg, var(--price-pink), #b92558);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(217, 50, 104, .22);
}

.moment-section .eyebrow {
  margin: 0 0 8px;
  color: var(--price-yellow);
}

.moment-section h2 {
  max-width: 700px;
  margin: 0 auto 10px;
}

.moment-section > p:not(.eyebrow) {
  width: 100%;
  margin: 0 auto;
  color: rgba(255, 255, 255, .88);
}

.moment-section .button-row {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.moment-section .button-secondary.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}

.intro,
.feature-grid,
.split-section,
.equipment-section,
.gallery-section,
.booking-band,
.hours-contact,
.faq,
.map-socials {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  padding: 92px 0 58px;
  align-items: start;
  color: var(--price-paper);
}

.intro p:last-child {
  color: rgba(245, 238, 225, .76);
  font-size: 1.08rem;
  margin-top: clamp(132px, 9.8vw, 162px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 92px;
}

.feature-grid article {
  min-height: 220px;
  padding: 26px;
  background: var(--price-dark);
  color: var(--white);
  border-radius: 8px;
  border-top: 5px solid var(--price-pink);
  box-shadow: 0 24px 70px rgba(14, 18, 34, .28);
}

.feature-grid article:nth-child(2) {
  background: var(--price-blue);
}

.feature-grid article:nth-child(3) {
  background: #1f2a32;
}

.feature-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--price-yellow);
  font-weight: 800;
}

.float-card {
  transition: transform .28s ease, box-shadow .28s ease;
}

.float-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(217, 50, 104, .18);
}

.feature-grid p {
  color: rgba(255, 250, 240, .68);
}

.split-section {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 620px;
  background: linear-gradient(135deg, var(--price-dark), var(--price-blue));
  color: var(--white);
  border-top: 8px solid var(--price-pink);
}

.split-image img {
  height: 100%;
  object-fit: cover;
}

.split-copy {
  padding: clamp(34px, 6vw, 76px);
  align-self: center;
}

.split-copy .eyebrow {
  color: var(--sun) !important;
}

.split-copy p {
  color: rgba(255, 250, 240, .72);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 30px;
  position: relative;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--price-yellow);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(247, 191, 37, .42);
}

.gallery-section,
.faq {
  padding: 98px 0;
  color: var(--price-paper);
}

.equipment-section {
  padding: 34px 0 98px;
  color: var(--price-paper);
}

.equipment-section .section-heading {
  max-width: 680px;
}

.equipment-section .section-heading > p:last-child {
  max-width: 590px;
  color: rgba(255, 255, 255, .72);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.equipment-card {
  grid-column: auto;
  overflow: hidden;
  background: var(--price-dark);
  border-bottom: 5px solid var(--price-pink);
  transition: transform .35s ease, box-shadow .35s ease;
}

.equipment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .24);
}

.equipment-card img {
  display: block;
  width: 100%;
  height: 280px;
  aspect-ratio: auto;
  object-fit: cover;
  background: transparent;
  transition: transform .5s ease;
}

.equipment-card:hover img {
  transform: scale(1.035);
}

.equipment-card > div {
  position: relative;
  min-height: 104px;
  padding: 18px 20px 20px;
}

.equipment-number {
  display: block;
  margin-bottom: 8px;
  color: var(--price-yellow);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.equipment-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.12rem;
}

.equipment-card p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
}

.price-list,
.credit-list {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.price-list li,
.credit-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.price-list strong,
.credit-list strong {
  color: var(--price-yellow);
  font-weight: 800;
}

.credit-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 34px;
  margin-top: 26px;
  padding: 28px;
  color: var(--white);
  background: var(--price-pink);
}

.credit-card .eyebrow {
  color: var(--price-yellow);
}

.credit-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.credit-card p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
}

.credit-list {
  margin-top: 0;
  border-color: rgba(255, 255, 255, .32);
}

.credit-list li {
  border-color: rgba(255, 255, 255, .22);
}

.credit-list strong {
  color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.panorama-viewer {
  width: 100%;
  height: min(520px, 42vw);
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: #111820;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .24);
}

.panorama-viewer .pnlm-container {
  font-family: inherit;
}

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

.panorama-label {
  margin: 12px 0 0;
  color: var(--white);
  font-weight: 800;
}

.instagram-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 98px;
  padding: 36px 42px;
  color: var(--white);
  text-align: center;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.instagram-callout .eyebrow {
  margin: 0 0 8px;
  color: var(--price-yellow);
}

.instagram-callout h2 {
  max-width: 460px;
  margin: 0 0 14px;
}

.instagram-callout > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, .86);
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--price-dark);
  border-radius: 8px;
  border-bottom: 5px solid var(--price-pink);
}

.gallery img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  padding: 16px 18px;
  color: var(--white);
  background: var(--price-pink);
  font-weight: 800;
}

.booking-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  margin-bottom: 98px;
  background: linear-gradient(135deg, var(--price-pink), #b92558);
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(217, 50, 104, .22);
}

.booking-band img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.booking-band > div {
  padding: clamp(30px, 6vw, 68px);
}

.booking-band .eyebrow,
.hours-card .eyebrow,
.faq .eyebrow,
.gallery-section .eyebrow,
.intro .eyebrow {
  color: var(--price-yellow);
}

.booking-band p {
  color: rgba(255, 250, 240, .78);
}

.hours-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 98px;
}

.hours-card,
.contact-card {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
}

.hours-card {
  background: var(--price-paper);
}

.contact-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(217, 50, 104, .26), rgba(247, 191, 37, .1)),
    var(--price-dark);
}

.hours-list {
  display: grid;
  gap: 8px;
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(37, 49, 59, .14);
}

.contact-card address {
  margin-bottom: 18px;
  font-style: normal;
  color: rgba(255, 250, 240, .72);
}

.contact-card a {
  display: block;
  margin-top: 10px;
  color: var(--price-yellow);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.rating {
  margin-top: 24px;
  color: rgba(255, 250, 240, .72);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--price-paper);
  color: var(--price-dark);
  border-radius: 8px;
  border-left: 6px solid var(--price-pink);
  box-shadow: 0 12px 36px rgba(18, 13, 17, .12);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--price-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: #25313b;
}

.map-socials {
  margin-bottom: 98px;
}

.map-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--price-dark), var(--price-blue));
  border-radius: 8px;
  border-top: 6px solid var(--price-pink);
  box-shadow: 0 24px 70px rgba(14, 18, 34, .28);
}

.map-card > div {
  padding: clamp(28px, 5vw, 54px);
}

.map-card p {
  color: rgba(255, 250, 240, .78);
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
  filter: saturate(.82) contrast(.96);
}

.review-score {
  color: var(--price-yellow) !important;
  font-weight: 800;
}

.rating-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rating-link:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 800;
  background: rgba(255, 250, 240, .08);
  border: 1px solid rgba(255, 250, 240, .14);
  border-radius: 999px;
  transition: background .22s ease, transform .22s ease;
}

.social-links a:hover {
  background: var(--price-pink);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--price-dark);
}

.footer-logo {
  width: min(250px, 100%);
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 0 14px rgba(246, 177, 26, .28));
}

.footer-logo-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-logo-row img {
  display: block;
  width: auto !important;
  height: 32px;
  max-width: 150px;
  object-fit: contain;
}

.footer-logo-row .footer-logo {
  height: auto;
}

.footer-logo-row img:nth-child(2) {
  height: 44px;
  max-width: 94px;
}

@keyframes orbitDrift {
  0%, 100% {
    translate: 0 0;
  opacity: .26;
  }
  50% {
    translate: 18px -10px;
    opacity: .82;
  }
}

@keyframes titleRise {
  from {
    opacity: .72;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes buttonShine {
  0%, 52% {
    transform: translateX(-130%) skewX(-20deg);
  }
  72%, 100% {
    transform: translateX(130%) skewX(-20deg);
  }
}

.site-footer p,
.site-footer span {
  margin: 4px 0 0;
  color: rgba(255, 250, 240, .64);
}

.site-footer span {
  display: block;
  text-align: right;
}

.site-footer .creator-link {
  color: var(--price-yellow);
  transition: color .2s ease;
}

.site-footer .creator-link:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 860px) {
  .hero {
    width: 100%;
    margin-left: 0;
  }

  .hero picture,
  .hero-image {
    width: 100%;
    max-width: none;
  }

  .hero picture {
    width: 100%;
    height: auto;
    aspect-ratio: 1003 / 1568;
    overflow: hidden;
  }

  .hero picture .hero-image {
    width: 100%;
    height: 100%;
    max-width: none;
    margin-left: 0;
    object-fit: contain;
    object-position: center;
  }

  .site-header {
    top: 18px;
    width: calc(100% - 20px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(260px, 100%);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(12, 12, 16, .94);
    border: 1px solid rgba(255, 250, 240, .12);
    border-radius: 8px;
  }

  .site-nav a {
    color: rgba(255, 250, 240, .9);
  }

  .site-nav a:hover {
    color: var(--white);
    background: rgba(255, 250, 240, .08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding: 0;
  }

  .hero-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .site-header.cta-only .site-nav .nav-cta {
    display: none;
  }

  .site-header.cta-only .site-nav {
    display: none;
  }

  .site-header.cta-only .nav-toggle {
    display: block;
  }

  .site-header.cta-only .site-nav.is-open {
    display: flex;
  }

  .brand-logo {
    width: 138px;
  }

  .brand span {
    display: none;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 324px;
    margin-top: 20px;
    padding: 14px 18px;
    animation: none;
  }

  .hero-card strong {
    font-size: 1.28rem;
  }

  .hero-card p {
    font-size: .88rem;
  }

  .today-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 70px;
    padding: 24px;
  }

  .moment-section {
    margin-bottom: 70px;
    padding: 38px 24px;
  }

  .intro,
  .feature-grid,
  .split-section,
  .equipment-grid,
  .gallery,
  .booking-band,
  .hours-contact {
    grid-template-columns: 1fr;
  }

  .equipment-section {
    padding: 8px 0 70px;
  }

  .credit-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .equipment-card {
    grid-column: auto;
  }

  .intro {
    gap: 20px;
    padding-top: 70px;
  }

  .intro p:last-child {
    margin-top: 0;
  }

  .feature-grid {
    padding-bottom: 70px;
  }

  .split-section {
    min-height: auto;
  }

  .split-image img {
    max-height: 520px;
  }

  .gallery-section,
  .faq {
    padding: 70px 0;
  }

  .panorama-viewer {
    height: min(480px, 86vw);
    min-height: 300px;
  }

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

  .instagram-callout {
    margin-bottom: 70px;
    padding: 28px 24px;
  }

  .booking-band img {
    min-height: 320px;
  }

  .hours-contact,
  .map-socials,
  .booking-band {
    margin-bottom: 70px;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }

  .site-footer span {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(3.5rem, 19vw, 5.5rem);
  }

  .hero {
    min-height: 0;
  }

  .hero-image {
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .button {
    width: 100%;
  }

  .hours-list p {
    display: block;
  }

  .hours-list strong {
    display: block;
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
