@font-face {
  font-family: Lusitana;
  src: url("/assets/fonts/lusitana-regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: Lusitana;
  src: url("/assets/fonts/lusitana-bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}
:root {
  --ink: #050507;
  --panel: #101014;
  --panel2: #17171d;
  --paper: #f8f5ef;
  --muted: #c7c2b8;
  --gold: #f4c76b;
  --gold2: #a77a2d;
  --cyan: #35e4e8;
  --magenta: #f04fb1;
  --line: rgba(244, 199, 107, 0.25);
  --serif: Lusitana, Georgia, serif;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, #21152b 0, transparent 28rem), var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  color: #000;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}
.site-header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.55rem clamp(1rem, 3vw, 3rem);
  background: rgba(5, 5, 7, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  height: 48px;
  width: auto;
  max-height: 56px;
  object-fit: contain;
}
.nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 1.3vw, 1.5rem);
}
.nav a {
  text-decoration: none;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e0d8;
  white-space: nowrap;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.sound-toggle,
.energy-button,
.menu-toggle {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #111115;
  color: var(--paper);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}
.sound-toggle[aria-pressed="true"] {
  border-color: var(--cyan);
  color: var(--cyan);
}
.energy-button {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.energy-label {
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.energy-bars {
  display: flex;
  gap: 2px;
  align-items: end;
  height: 18px;
}
.energy-bars i {
  width: 3px;
  min-height: 3px;
  height: calc(var(--energy, 0.08) * 100%);
  background: linear-gradient(var(--cyan), var(--magenta));
  transition: height 0.3s;
}
.energy-bars i:nth-child(2) {
  height: calc(var(--energy, 0.08) * 75%);
}
.energy-bars i:nth-child(3) {
  height: calc(var(--energy, 0.08) * 92%);
}
.header-cta {
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-cta.book-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: #100c05;
}
.header-cta.contact-cta:hover,
.header-cta.contact-cta:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}
.phone-cta {
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.phone-cta:hover,
.phone-cta:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}
.menu-toggle {
  display: none;
}
main {
  min-height: 70vh;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.72rem;
}
.page-hero {
  min-height: 50vh;
  display: grid;
  place-items: end start;
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) clamp(1.25rem, 7vw, 7rem)
    clamp(3rem, 7vw, 6rem);
  background:
    linear-gradient(90deg, rgba(4, 4, 7, 0.94), rgba(4, 4, 7, 0.35)),
    var(--hero) center/cover;
}
.page-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(transparent, var(--ink));
}
.hero-copy {
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.hero-copy h1,
.set-copy h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0.35rem 0 1rem;
  text-wrap: balance;
}
.hero-copy p {
  max-width: 650px;
  color: #e7e1d8;
}
.gold {
  color: var(--gold);
}
.home-hero {
  height: 175vh;
  position: relative;
}
.set-stage {
  height: calc(100vh - 76px);
  position: sticky;
  top: 76px;
  overflow: hidden;
  background: radial-gradient(
    ellipse at 50% 65%,
    #28162e 0,
    #09090e 50%,
    #030304 100%
  );
}
#set-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.set-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 20%,
      rgba(53, 228, 232, 0.18) 21%,
      transparent 29%
    ),
    linear-gradient(
      245deg,
      transparent 18%,
      rgba(240, 79, 177, 0.15) 19%,
      transparent 28%
    ),
    url("/assets/images/full setup.jpg") center/cover;
  filter: saturate(0.7);
}
.set-fallback:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.75)
  );
}
.set-copy {
  position: absolute;
  z-index: 3;
  left: clamp(1.2rem, 7vw, 7rem);
  bottom: clamp(4rem, 10vh, 8rem);
  max-width: 740px;
  text-shadow: 0 3px 35px #000;
}
.set-copy p {
  max-width: 600px;
  color: #e8e4de;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.set-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
}
.status-dot {
  width: 9px;
  height: 9px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  border-radius: 50%;
}
.scroll-cue {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 3rem;
  z-index: 3;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: var(--muted);
}
.section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem);
}
.section-inner {
  max-width: 1240px;
  margin: auto;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
  margin: 0.2rem 0;
}
.section-heading p {
  max-width: 480px;
  color: var(--muted);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
.intro-photo {
  position: relative;
}
.intro-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.75);
  border-radius: 2px;
}
.intro-photo:before {
  content: "";
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  border: 1px solid var(--gold2);
}
.large-copy {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1.12;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.86rem 1.2rem;
  background: var(--gold);
  color: #100c05;
  border: 1px solid var(--gold);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
  border-radius: 2px;
  cursor: pointer;
}
.button.alt {
  background: transparent;
  color: var(--paper);
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244, 199, 107, 0.18);
}
.services-grid,
.content-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card,
.content-block {
  background: linear-gradient(145deg, #15151a, #0d0d11);
  padding: clamp(1.4rem, 3vw, 2.5rem);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.service-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-decoration: none;
}
.service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent, #09090c 85%),
    var(--card-img) center/cover;
  opacity: 0.6;
  transition: 0.5s;
}
.service-card > * {
  position: relative;
}
.service-card:hover:before {
  transform: scale(1.04);
  opacity: 0.8;
}
.service-card h3,
.content-block h2,
.content-block h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.06;
  margin: 0.5rem 0;
}
.content-block p {
  color: var(--muted);
  margin: 0.65rem 0;
}
.content-block .price {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 800;
}
.content-flow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: transparent;
  border: 0;
  gap: 1.2rem;
}
.content-block {
  border: 1px solid var(--line);
  min-height: auto;
}
.content-block.heading {
  grid-column: 1/-1;
  background: transparent;
  border: 0;
  padding: 2rem 0 0;
  min-height: 0;
}
.content-block.heading h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}
.source-content.privacy {
  max-width: 900px;
  margin: auto;
}
.privacy .content-block {
  display: block;
  background: #0d0d10;
}
.privacy .content-block p {
  white-space: pre-wrap;
  color: #ded9d1;
  line-height: 1.85;
}
.video-wrap {
  aspect-ratio: 16/9;
  max-width: 1050px;
  margin: auto;
}
.video-facade {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid var(--line);
  padding: 0;
  background: #111 center/cover;
  color: white;
  cursor: pointer;
  overflow: hidden;
}
.video-facade:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}
.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 0 0 12px rgba(244, 199, 107, 0.15);
}
.video-title {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-weight: 700;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.video-grid .video-wrap {
  width: 100%;
}
.gallery-grid {
  columns: 4 220px;
  column-gap: 0.8rem;
}
.gallery-item {
  width: 100%;
  margin: 0 0 0.8rem;
  break-inside: avoid;
  padding: 0;
  border: 0;
  background: #111;
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: 0.45s;
  filter: saturate(0.82);
}
.gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(1.1);
}
.lightbox {
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.94);
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  color: white;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}
.lightbox-inner {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 4rem;
}
.lightbox img {
  max-height: 88vh;
  max-width: 90vw;
}
.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  border: 1px solid white;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  cursor: pointer;
}
.reviews-band {
  padding: 4rem 1.25rem;
  text-align: center;
  background: linear-gradient(120deg, #1d1530, #0c1c25);
  border-block: 1px solid var(--line);
}
.rating {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 5rem);
}
.stars {
  color: var(--gold);
  letter-spacing: 0.3em;
}
.form-shell {
  max-width: 900px;
  margin: auto;
  border: 1px solid var(--line);
  background: #0d0d11;
  padding: clamp(1.2rem, 5vw, 4rem);
}
.demo-note {
  border-left: 3px solid var(--cyan);
  background: rgba(53, 228, 232, 0.08);
  padding: 1rem;
  margin: 1.5rem 0;
  color: #e9ffff;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #57545b;
  background: #08080b;
  color: #fff;
  padding: 0.85rem;
  border-radius: 0;
}
.field textarea {
  min-height: 140px;
}
.form-status {
  min-height: 1.5rem;
  color: var(--cyan);
}
.portal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem clamp(1.25rem, 7vw, 7rem);
  background: #17171d;
  border-block: 1px solid var(--line);
}
.portal strong {
  color: var(--gold);
}
.site-footer {
  padding: 4rem clamp(1.25rem, 7vw, 7rem) 2rem;
  background: #020203;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
  max-width: 1240px;
  margin: auto;
}
.footer-logo {
  height: 52px;
  width: auto;
  max-height: 56px;
  object-fit: contain;
}
.footer-grid h2 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-grid a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 0.45rem 0;
}
.footer-grid a:hover {
  color: white;
}
.copyright {
  max-width: 1240px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #222;
  color: #aaa;
  font-size: 0.72rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.socials {
  display: flex;
  gap: 1rem;
}
.socials a {
  display: inline-flex;
}
.kicker {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--cyan);
}
@media (max-width: 1100px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 1.2rem;
    background: #09090c;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }
  .nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .phone-cta {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    height: 68px;
    padding: 0.4rem 0.8rem;
  }
  .brand img {
    height: 40px;
    width: auto;
    max-height: 48px;
    object-fit: contain;
  }
  .set-stage {
    top: 68px;
    height: calc(100vh - 68px);
  }
  .home-hero {
    height: 150vh;
  }
  .energy-label {
    display: none;
  }
  .sound-toggle {
    font-size: 0.7rem;
  }
  .header-tools {
    gap: 0.3rem;
  }
  .hero-copy h1,
  .set-copy h1 {
    font-size: clamp(2.7rem, 14vw, 5rem);
  }
  .page-hero {
    min-height: 57vh;
  }
  .intro-grid,
  .content-flow,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .content-block.heading {
    grid-column: auto;
  }
  .field.full {
    grid-column: auto;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    columns: 2 140px;
  }
  .section-heading {
    display: block;
  }
  .portal {
    display: block;
  }
  .copyright {
    display: block;
  }
  .scroll-cue {
    display: none;
  }
  .lightbox-inner {
    padding: 1rem;
  }
  .footer-logo {
    height: 44px;
    width: auto;
    max-height: 48px;
    object-fit: contain;
  }
}
/* Finishing layer: stage composition, motion, and editorial rhythm. */
.fallback-venue {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  opacity: 0.9;
}
@media (max-width: 720px) {
  .fallback-venue {
    width: 100%;
    height: 49%;
  }
}
.monogram-banner {
  margin-bottom: 3rem;
}
.monogram-banner img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  opacity: 0.8;
}
.set-copy h1 {
  pointer-events: auto;
}
:root {
  --magenta: var(--cyan);
}
body {
  background:
    radial-gradient(ellipse at 70% 0, #132126, transparent 50rem), var(--ink);
}
[hidden] {
  display: none !important;
}
.mobile-services {
  display: none;
}
main:focus {
  outline: 0;
}
section[id],
main {
  scroll-margin-top: 90px;
}
a,
button,
h1,
h2,
h3 {
  position: relative;
}
p,
a,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}
h1,
h2,
h3 {
  font-weight: 400;
}
.brand,
.header-tools {
  min-width: 0;
}
.header-tools {
  justify-self: end;
}
.sound-toggle {
  min-width: 88px;
  font-size: 0.75rem;
}
.energy-button {
  min-width: 81px;
}
.set-stage {
  background: radial-gradient(
    ellipse at 66% 50%,
    #142329 0,
    #080b10 49%,
    #050507 78%
  );
}
.set-copy {
  max-width: 520px;
  left: 5.5vw;
  bottom: 15%;
  pointer-events: none;
}
.set-copy a {
  pointer-events: auto;
}
.set-copy h1 {
  font-size: clamp(3.8rem, 6.1vw, 6.9rem);
  font-weight: 400;
  line-height: 1.01;
  margin: 1.2rem 0;
  letter-spacing: -0.045em;
}
.set-copy h1 em,
.booking-close em {
  color: var(--gold);
  font-weight: 400;
}
.set-copy p {
  font-size: 0.91rem;
  max-width: 405px;
  line-height: 1.8;
  color: #ddd9d1;
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.7rem 0;
}
.set-copy .hero-contact {
  font-size: 0.66rem;
  color: #cbc7bf;
  letter-spacing: 0.04em;
}
.set-status {
  color: var(--gold);
}
.scene-caption {
  position: absolute;
  bottom: 2rem;
  left: 5.5vw;
  right: 4vw;
  display: flex;
  justify-content: space-between;
  color: #b7bab9;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  z-index: 3;
}
.set-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 5, 7, 0.2), transparent 65%);
  z-index: 2;
}
.set-fallback {
  background: radial-gradient(ellipse at 70% 50%, #163438, transparent 55%);
  filter: none;
}
.set-fallback:after {
  background: none;
}
.page-hero {
  min-height: 520px;
}
.hero-copy {
  max-width: 1000px;
}
.hero-copy h1 {
  font-size: clamp(3.3rem, 7.5vw, 7rem);
}
.hero-copy p:not(.eyebrow) {
  max-width: 570px;
}
.section {
  border-bottom: 1px solid rgba(244, 199, 107, 0.08);
}
.section-inner {
  max-width: 1200px;
}
.section-heading h2 {
  font-weight: 400;
}
.section-heading .eyebrow {
  margin-bottom: 1rem;
}
.video-intro {
  max-width: 740px;
  margin: -1rem 0 2.6rem;
  color: var(--muted);
}
.intro-photo img {
  max-height: 590px;
}
.large-copy {
  font-weight: 400;
  margin-top: 0.5rem;
}
.services-grid {
  gap: 1rem;
  background: none;
  border: 0;
}
.service-card {
  min-height: 365px;
  border: 1px solid var(--line);
}
.service-card h3 {
  font-size: 2.5rem;
}
.service-card > span:last-child {
  font-size: 0.75rem;
  color: #e4d9c6;
}
.content-block {
  overflow: visible;
  align-self: start;
}
.content-block h2 {
  text-transform: none;
}
.content-block.heading h2 {
  text-transform: lowercase;
}
.content-block.heading h2:first-letter {
  text-transform: uppercase;
}
.content-block .price {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  font-size: 1.35rem;
}
.content-block p {
  font-size: 0.94rem;
}
.package-photo {
  width: calc(100% + 2rem);
  max-width: none;
  margin: -1rem -1rem 1.5rem;
  aspect-ratio: 16/8;
  object-fit: cover;
}
.original-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.original-images figure {
  margin: 0;
}
.original-images img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}
.source-notes {
  padding-top: 2rem;
}
.privacy .content-block {
  border: 0;
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  background: none;
  transform: none !important;
}
.privacy .content-block h2 {
  max-width: 800px;
  font-size: 2rem;
}
.privacy .content-block p {
  font-size: 1rem;
}
.source-content.privacy {
  padding: 0;
}
.legacy-heading {
  font-family: var(--serif);
  font-size: 2.2rem;
}
.form-shell .button {
  margin-top: 1.7rem;
}
.form-shell h2 {
  font-size: 3rem;
}
.demo-note {
  font-size: 0.86rem;
}
.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--cyan);
}
.booking-close {
  text-align: center;
}
.booking-close .large-copy {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.05;
}
.text-link {
  display: block;
  margin: 1.3rem auto 0;
  color: var(--muted);
}
.footer-grid {
  grid-template-columns: 1.15fr 0.8fr 0.8fr 1.1fr;
  gap: 2rem;
}
.footer-grid a {
  font-size: 0.78rem;
}
.socials {
  flex-wrap: wrap;
}
.socials a {
  font-size: 0.82rem;
}
.video-title {
  right: 1rem;
  text-align: left;
  font-size: 0.85rem;
}
.video-title small {
  font-size: 0.67rem;
  font-weight: 400;
}
.stars {
  font-size: 0.5em;
}
.reviews-band {
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0, #193034, #0c1115 75%);
  padding: 4rem 0;
}
.reviews-window {
  overflow: hidden;
  margin-top: 2rem;
}
.reviews-track {
  display: flex;
  width: max-content;
  animation: reviews-scroll var(--marquee-duration, 45s) linear infinite;
}
.reviews-group {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}
.reviews-group figure {
  margin: 0;
  width: 360px;
  padding: 2rem;
  text-align: left;
  border: 1px solid var(--line);
  background: #0c1216;
}
.reviews-group blockquote {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.35;
  margin: 0 0 1.5rem;
}
.reviews-group figcaption {
  color: var(--gold);
  font-size: 0.72rem;
}
.reviews-group small {
  font-size: 0.65rem;
  color: var(--muted);
}
.reviews-window:hover .reviews-track {
  animation-play-state: paused;
}
.marquee-toggle {
  font-size: 0.62rem;
  padding: 0.55rem 1rem;
}
.lightbox-caption {
  position: absolute;
  bottom: 1rem;
  text-align: center;
  font-size: 0.8rem;
  padding: 0 4rem;
}
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 48%;
  width: 48px;
  height: 48px;
  background: #10151a;
  color: white;
  border: 1px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-prev {
  left: 1rem;
}
.lightbox-next {
  right: 1rem;
}
.lightbox-inner img {
  object-fit: contain;
  max-height: 80vh;
}
.tilt-card {
  transition:
    transform 0.18s,
    border-color 0.18s;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
}
.tilt-card.is-tilting {
  border-color: var(--gold);
}
.tilt-card:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--light-x, 50%) var(--light-y, 50%),
    rgba(244, 199, 107, 0.09),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.2s;
}
.tilt-card.is-tilting:after {
  opacity: 1;
}
.ui-pulse {
  animation: ui-thump 0.42s ease-out;
}
.ui-ripple {
  position: absolute;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
  width: 18px;
  height: 18px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  animation: ripple 0.6s ease-out forwards;
  z-index: 4;
}
.beat-drop .site-header {
  border-bottom-color: var(--cyan);
}
@keyframes ui-thump {
  0%,
  100% {
    scale: 1;
  }
  30% {
    scale: 1.008;
  }
}
@keyframes ripple {
  from {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0.6;
  }
  to {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}
@keyframes reviews-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 1100px) {
  .mobile-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }
  .nav {
    max-height: calc(100dvh - 90px);
    overflow: auto;
  }
  .set-copy {
    max-width: 420px;
  }
  .set-copy h1 {
    font-size: 5.7vw;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 721px) and (max-height: 700px) {
  .set-copy {
    bottom: 10%;
    max-width: 460px;
  }
  .set-copy h1 {
    font-size: 4rem;
    margin: 0.7rem 0;
  }
  .set-copy p {
    font-size: 0.8rem;
    line-height: 1.55;
  }
  .hero-actions {
    margin: 1rem 0;
  }
  .scene-caption {
    bottom: 1rem;
  }
  .set-stage {
    min-height: 475px;
  }
}
@media (max-width: 720px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 0.3rem;
  }
  .header-tools {
    gap: 0.35rem;
  }
  .sound-toggle {
    min-width: 71px;
    padding: 0.45rem 0.55rem;
    font-size: 0.65rem;
  }
  .energy-button {
    min-width: 39px;
    padding: 0.55rem;
  }
  .menu-toggle {
    padding: 0.45rem 0.6rem;
    font-size: 0.65rem;
  }
  .nav {
    top: 68px;
  }
  .set-stage {
    height: calc(100svh - 68px);
    min-height: 690px;
  }
  .home-hero {
    height: 175svh;
  }
  .set-copy {
    left: 1.3rem;
    right: 1.3rem;
    bottom: 6%;
    max-width: none;
  }
  .set-copy h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 0.98;
    margin: 0.8rem 0;
  }
  .set-copy h1 br:nth-of-type(2) {
    display: none;
  }
  .set-copy p {
    font-size: 0.77rem;
    line-height: 1.65;
    max-width: 340px;
  }
  .set-copy .hero-actions {
    gap: 0.6rem;
    margin: 1.05rem 0;
  }
  .set-status {
    font-size: 0.58rem;
  }
  .scene-caption {
    bottom: 1.1rem;
    left: 1.3rem;
    right: 1.3rem;
    font-size: 0.48rem;
  }
  .set-copy .hero-contact {
    font-size: 0.58rem;
  }
  .set-stage:after {
    background: none;
  }
  .page-hero {
    min-height: 430px;
    padding-top: 5rem;
  }
  .hero-copy h1 {
    font-size: 3.5rem;
  }
  .hero-copy p:not(.eyebrow) {
    font-size: 0.85rem;
  }
  .content-block {
    padding: 1.5rem;
  }
  .package-photo {
    margin: -0.5rem -0.5rem 1.5rem;
    width: calc(100% + 1rem);
  }
  .original-images {
    grid-template-columns: 1fr 1fr;
  }
  .original-images img {
    height: 210px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .video-title {
    font-size: 0.7rem;
  }
  .video-title small {
    display: block;
  }
  .play {
    width: 52px;
    height: 52px;
  }
  .reviews-group figure {
    width: 290px;
  }
  .form-shell h2 {
    font-size: 2.5rem;
  }
  .form-grid {
    gap: 1.2rem;
  }
  .lightbox-caption {
    font-size: 0.65rem;
    padding: 0 1rem;
    bottom: 4rem;
  }
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 1rem;
  }
  .section-heading h2 {
    font-size: 2.8rem;
  }
  .energy-label {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .home-hero {
    height: auto;
  }
  .set-stage {
    position: relative;
    top: 0;
  }
  .tilt-card {
    transform: none !important;
  }
  .reviews-track {
    width: auto;
    display: block;
  }
  .reviews-group {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1rem;
  }
  .reviews-group[aria-hidden="true"] {
    display: none;
  }
  .marquee-toggle {
    display: none;
  }
  .set-fallback {
    filter: none;
  }
}

.honey-pot{position:absolute!important;left:-9999px!important;height:1px;width:1px;overflow:hidden;opacity:0}
.form-note{font-size:.92rem;line-height:1.65;max-width:42rem;margin:0 0 1.2rem;color:var(--muted,#cfc6b8)}
.rating a{color:inherit;text-decoration:none}
.rating a:hover{color:var(--gold,#f5b544)}
.form-success{color:#c8f5a0;margin-bottom:1rem}

/* ux-polish */
@media (max-width: 720px) {
  .button { min-height: 44px; }
  .page-hero { padding-bottom: 2rem; }
}


/* Geo note + Google review CTA — polished, not stuffed */
.geo-blurb {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0.5rem 0 0.25rem;
}
.geo-blurb p:not(.eyebrow) {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e8e0d4;
}
.review-cta-band {
  display: grid;
  gap: 0.85rem;
  max-width: 40rem;
  margin: 0 auto;
  text-align: left;
  padding: 1.5rem 0;
}
.review-cta-band .large-copy {
  margin: 0;
}
.booking-close .text-link {
  display: inline-block;
  margin: 0.75rem 1.25rem 0 0;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.booking-close .text-link:hover,
.booking-close .text-link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .header-cta.contact-cta { display: none; }
  .phone-cta { display: none; }
}
@media (max-width: 720px) {
  .header-tools .sound-toggle { display: none; }
  .header-cta.book-cta { padding: 0.55rem 0.75rem; }
}

.booth-rate-note {
  margin: 0.35rem 0 0.85rem;
  color: var(--muted, #b8aea0);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 40rem;
}
.booth-rate-note strong {
  color: var(--gold, #f5b544);
  font-weight: 600;
}
.geo-blurb .booth-rate-note {
  margin-top: 0.75rem;
}
.content-block .booth-rate-note {
  font-style: italic;
}
