:root {
  --black: #070507;
  --ink: #151014;
  --ivory: #fff8ec;
  --paper: #f7efe3;
  --champagne: #d9b66f;
  --gold: #f4d892;
  --rose: #bd5e70;
  --plum: #472638;
  --mist: rgba(255, 248, 236, 0.7);
  --line: rgba(244, 216, 146, 0.22);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --shadow-deep: 0 42px 110px rgba(0, 0, 0, 0.48);
  --surface: rgba(255, 248, 236, 0.055);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 9%, rgba(189, 94, 112, 0.14), transparent 30rem),
    radial-gradient(circle at 18% 34%, rgba(244, 216, 146, 0.08), transparent 28rem),
    var(--black);
  color: var(--ivory);
  overflow-x: hidden;
}

body.is-lightbox-open {
  overflow: hidden;
}

body::before {
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 30%), rgba(244, 216, 146, 0.1), transparent 24rem),
    radial-gradient(circle at 82% 18%, rgba(189, 94, 112, 0.08), transparent 28rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 1;
}

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

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

:focus-visible {
  outline: 2px solid rgba(244, 216, 146, 0.9);
  outline-offset: 4px;
}

.atmosphere {
  inset: 0;
  height: 100vh;
  pointer-events: none;
  position: fixed;
  width: 100vw;
  z-index: 3;
}

.cursor-glow {
  background: radial-gradient(circle, rgba(244, 216, 146, 0.2), rgba(189, 94, 112, 0.08) 36%, transparent 68%);
  border-radius: 50%;
  filter: blur(4px);
  height: 260px;
  left: var(--pointer-x, 50%);
  mix-blend-mode: screen;
  pointer-events: none;
  position: fixed;
  top: var(--pointer-y, 40%);
  transform: translate(-50%, -50%);
  width: 260px;
  z-index: 4;
}

.scroll-progress {
  background: linear-gradient(90deg, var(--gold), #fff1ba, var(--rose));
  height: 2px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
  z-index: 20;
}

.site-header {
  align-items: center;
  background: rgba(7, 5, 7, 0.62);
  border-bottom: 1px solid rgba(255, 248, 236, 0.08);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 300ms ease, padding 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease;
  z-index: 10;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(7, 5, 7, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  padding-block: 12px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  aspect-ratio: 1;
  border: 1px solid rgba(244, 216, 146, 0.38);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(244, 216, 146, 0.18);
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.brand strong,
h1,
h2,
h3 {
  font-family: Cinzel, Georgia, serif;
}

.brand strong {
  font-size: clamp(13px, 1.8vw, 18px);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  justify-content: center;
}

.menu-toggle {
  align-items: center;
  background: rgba(255, 248, 236, 0.05);
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 999px;
  color: var(--ivory);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 48px;
}

.menu-toggle span {
  background: currentColor;
  height: 1px;
  position: absolute;
  transition: transform 240ms ease, opacity 240ms ease;
  width: 18px;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

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

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

.mobile-menu {
  background: rgba(7, 5, 7, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 248, 236, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  padding: 10px;
  position: absolute;
  right: 18px;
  top: calc(100% + 10px);
  width: min(280px, calc(100vw - 36px));
}

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

.mobile-menu a {
  border-radius: 6px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 14px 12px;
  text-transform: uppercase;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(244, 216, 146, 0.1);
  color: var(--ivory);
}

.nav-links a,
.header-cta {
  color: rgba(255, 248, 236, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  background: var(--gold);
  bottom: -9px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
  width: 100%;
}

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

.nav-links a.is-active {
  color: var(--ivory);
}

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

.header-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.hero {
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 132px clamp(18px, 7vw, 110px) 72px;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  overflow: hidden;
}

.hero-media img,
.hero-video {
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
}

.hero-video {
  display: block;
}

.hero-fallback {
  display: none;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 22%, rgba(189, 94, 112, 0.36), transparent 30%),
    radial-gradient(circle at 38% 58%, rgba(244, 216, 146, 0.14), transparent 32%),
    linear-gradient(90deg, rgba(7, 5, 7, 0.94) 0%, rgba(7, 5, 7, 0.68) 42%, rgba(7, 5, 7, 0.32) 100%),
    linear-gradient(0deg, var(--black), transparent 30%);
}

.hero::after {
  background: linear-gradient(90deg, transparent, rgba(244, 216, 146, 0.42), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 10vw;
  position: absolute;
  right: 10vw;
  z-index: 2;
}

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

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1.04;
  margin-bottom: 22px;
  max-width: 820px;
  overflow-wrap: break-word;
}

.hero-copy {
  color: rgba(255, 248, 236, 0.78);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.72;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.08em;
  min-width: 180px;
  overflow: hidden;
  padding: 16px 24px;
  position: relative;
  text-transform: uppercase;
  transition: transform 240ms var(--ease), border-color 240ms ease, box-shadow 240ms ease;
}

.button::before {
  background: rgba(255, 255, 255, 0.34);
  content: "";
  height: 100%;
  left: -80%;
  position: absolute;
  top: 0;
  transform: skewX(-20deg);
  transition: left 500ms ease;
  width: 40%;
}

.button:hover::before {
  left: 120%;
}

.primary {
  background: linear-gradient(135deg, var(--gold), #fff1ba 44%, var(--rose));
  box-shadow: 0 18px 44px rgba(244, 216, 146, 0.18);
  color: #211017;
}

.secondary {
  border: 1px solid rgba(255, 248, 236, 0.28);
  color: var(--ivory);
}

.hero-card {
  align-items: center;
  backdrop-filter: blur(14px);
  background:
    linear-gradient(135deg, rgba(244, 216, 146, 0.1), transparent 48%),
    rgba(12, 7, 10, 0.42);
  border: 1px solid rgba(244, 216, 146, 0.2);
  border-radius: 8px;
  bottom: 34px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 6px 14px;
  grid-template-columns: 46px minmax(0, 1fr);
  max-width: 430px;
  padding: 14px 16px;
  position: absolute;
  right: clamp(18px, 6vw, 88px);
  z-index: 2;
}

.event-strip {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(244, 216, 146, 0.12), rgba(189, 94, 112, 0.08), rgba(244, 216, 146, 0.08)),
    rgba(255, 248, 236, 0.035);
  border-bottom: 1px solid rgba(255, 248, 236, 0.08);
  border-top: 1px solid rgba(255, 248, 236, 0.08);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
}

.event-strip span {
  border-right: 1px solid rgba(255, 248, 236, 0.08);
  color: rgba(255, 248, 236, 0.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  padding: 18px clamp(14px, 3vw, 34px);
  text-align: center;
  text-transform: uppercase;
}

.event-strip span:last-child {
  border-right: 0;
}

.card-mark {
  aspect-ratio: 1;
  border: 1px solid rgba(244, 216, 146, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(244, 216, 146, 0.14);
  grid-row: 1 / 4;
  height: 46px;
  object-fit: cover;
  width: 46px;
}


.hero-card span,
.hero-card small {
  color: rgba(255, 248, 236, 0.6);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-card strong {
  font-family: Cinzel, serif;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.25;
}

.section-shell {
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(78px, 10vw, 140px) clamp(18px, 4vw, 42px);
  position: relative;
}

.intro {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 160px 1.15fr 0.85fr;
  padding-top: clamp(84px, 9vw, 118px);
}

.intro-mark {
  align-self: center;
  background: radial-gradient(circle at 50% 42%, rgba(244, 216, 146, 0.14), rgba(7, 5, 7, 0.84) 62%);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  display: grid;
  height: 132px;
  justify-self: center;
  overflow: hidden;
  padding: 10px;
  place-items: center;
  position: relative;
  width: 132px;
}

.intro-mark::before {
  border: 1px solid rgba(189, 94, 112, 0.32);
  border-radius: inherit;
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

.intro-mark img {
  aspect-ratio: 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.intro h2,
.services h2,
.packages h2,
.contact h2 {
  font-size: clamp(31px, 4.5vw, 60px);
  line-height: 1.05;
}

.intro-text,
.showcase-content p,
.editorial-copy p,
.contact-copy p {
  color: rgba(255, 248, 236, 0.7);
  font-size: 17px;
  line-height: 1.8;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.service-grid,
.package-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
}

.service-panel,
.package-card {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(244, 216, 146, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.065), rgba(255, 248, 236, 0.025));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 248, 236, 0.11);
  border-radius: 8px;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: transform 360ms var(--ease), border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.service-panel::before,
.package-card::before {
  background: radial-gradient(circle, rgba(244, 216, 146, 0.28), transparent 65%);
  content: "";
  height: 190px;
  opacity: 0;
  position: absolute;
  right: -80px;
  top: -80px;
  transition: opacity 300ms ease;
  width: 190px;
}

.service-panel:hover,
.package-card:hover {
  border-color: rgba(244, 216, 146, 0.4);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-8px);
}

.service-panel:hover::before,
.package-card:hover::before {
  opacity: 1;
}

.service-number {
  color: rgba(244, 216, 146, 0.46);
  display: block;
  font-family: Cinzel, serif;
  font-size: 36px;
  margin-bottom: 42px;
}

.service-panel h3,
.package-card h3 {
  font-size: 24px;
  line-height: 1.15;
}

.service-panel p,
.package-card li {
  color: rgba(255, 248, 236, 0.68);
  line-height: 1.7;
}

.gallery-wall {
  max-width: 1460px;
  padding-left: clamp(18px, 6vw, 88px);
  padding-right: clamp(18px, 6vw, 88px);
  padding-top: clamp(58px, 7vw, 96px);
}

.gallery-wall .section-heading {
  display: grid;
  gap: 20px clamp(28px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  max-width: none;
}

.gallery-wall .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.gallery-wall .section-heading h2 {
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.02;
}

.gallery-wall .section-heading p:not(.eyebrow) {
  align-self: end;
  color: rgba(255, 248, 236, 0.68);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.8;
  max-width: 560px;
}

.gallery-grid {
  display: grid;
  gap: clamp(14px, 1.6vw, 24px);
  grid-auto-flow: dense;
  grid-auto-rows: minmax(138px, 9vw);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: clamp(42px, 5vw, 72px);
  touch-action: pan-y;
}

.gallery-tile {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 248, 236, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  color: inherit;
  cursor: pointer;
  font: inherit;
  grid-column: span 3;
  grid-row: span 2;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.gallery-tile:nth-child(1),
.gallery-tile:nth-child(4) {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-tile:nth-child(2),
.gallery-tile:nth-child(6) {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-tile:nth-child(3),
.gallery-tile:nth-child(5) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-tile img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 520ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.12);
}

.gallery-tile:focus-visible {
  border-color: rgba(244, 216, 146, 0.7);
}

.gallery-tile::before {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(244, 216, 146, 0.14), transparent 32%),
    linear-gradient(180deg, transparent 34%, rgba(7, 5, 7, 0.9));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.gallery-tile div {
  bottom: 18px;
  display: grid;
  gap: 5px;
  left: 18px;
  position: absolute;
  right: 18px;
  z-index: 2;
}

.gallery-tile span {
  color: var(--gold);
  display: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-tile strong {
  font-family: Cinzel, serif;
  font-size: clamp(20px, 2vw, 28px);
}



.motion-reels {
  max-width: 1460px;
  overflow: clip;
  padding-bottom: clamp(54px, 6vw, 88px);
  position: relative;
}

.motion-reels::before {
  background:
    radial-gradient(circle at 22% 22%, rgba(189, 94, 112, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(255, 248, 236, 0.035), transparent);
  border-top: 1px solid rgba(255, 248, 236, 0.06);
  content: "";
  inset: 0 calc(50% - 50vw);
  position: absolute;
  z-index: -1;
}

.reel-grid {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.reel-card {
  aspect-ratio: 0.78;
  border: 1px solid rgba(255, 248, 236, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
}

.reel-screen {
  background:
    linear-gradient(180deg, rgba(7, 5, 7, 0.02), rgba(7, 5, 7, 0.86)),
    var(--reel-image) center / cover;
  height: 100%;
  position: relative;
  transform: scale(1.08);
  transition: transform 700ms ease;
}

.reel-card:hover .reel-screen {
  transform: scale(1.16);
}

.reel-screen::before {
  animation: reelPan 5.8s linear infinite;
  background: linear-gradient(180deg, transparent, rgba(255, 248, 236, 0.18), transparent);
  content: "";
  height: 42%;
  left: 0;
  position: absolute;
  right: 0;
  top: -44%;
}

.play-pulse {
  align-items: center;
  background: rgba(255, 248, 236, 0.15);
  border: 1px solid rgba(244, 216, 146, 0.52);
  border-radius: 50%;
  display: grid;
  height: 68px;
  left: 50%;
  place-items: center;
  position: absolute;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 68px;
}

.play-pulse::before {
  animation: pulseRing 1.6s ease-out infinite;
  border: 1px solid rgba(244, 216, 146, 0.52);
  border-radius: inherit;
  content: "";
  inset: -12px;
  position: absolute;
}

.play-pulse::after {
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--gold);
  border-top: 12px solid transparent;
  content: "";
  margin-left: 5px;
}

.reel-caption {
  bottom: 24px;
  display: grid;
  gap: 8px;
  left: 24px;
  position: absolute;
  right: 24px;
}

.reel-caption strong {
  font-family: Cinzel, serif;
  font-size: 25px;
}

.reel-caption small {
  color: rgba(255, 248, 236, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 24px;
  padding: 14px 20px;
  text-transform: uppercase;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.video-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.showcase {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 88px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  min-height: 78svh;
  padding: clamp(70px, 8vw, 108px) clamp(18px, 6vw, 88px);
  position: relative;
}

.showcase::before {
  background:
    radial-gradient(circle at 28% 50%, rgba(244, 216, 146, 0.08), transparent 28rem),
    linear-gradient(90deg, rgba(71, 38, 56, 0.52), transparent);
  content: "";
  inset: 0 0 auto;
  height: 78%;
  position: absolute;
  z-index: -1;
}

.showcase-image {
  align-self: start;
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  transform: rotate(-1.5deg);
}

.showcase-image img {
  aspect-ratio: 1.18;
  object-fit: cover;
}

.showcase-content h2,
.editorial-copy h2 {
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1.03;
}

.showcase-content {
  align-self: start;
  max-width: 720px;
  padding-top: clamp(2px, 1vw, 14px);
}

.showcase-content .eyebrow {
  color: rgba(255, 248, 236, 0.68);
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.7;
  margin-bottom: clamp(18px, 2vw, 28px);
  max-width: 680px;
  text-wrap: balance;
}

.stats-row {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(26px, 3vw, 40px);
  padding-top: 24px;
}

.stats-row span {
  color: rgba(255, 248, 236, 0.6);
  display: grid;
  font-size: 13px;
  gap: 6px;
  text-transform: uppercase;
}

.stats-row strong {
  color: var(--gold);
  font-family: Cinzel, serif;
  font-size: 26px;
  text-transform: none;
}

.packages {
  overflow: clip;
  padding-top: clamp(58px, 6vw, 92px);
  position: relative;
}

.packages::before {
  background: radial-gradient(circle at 78% 12%, rgba(244, 216, 146, 0.11), transparent 26rem);
  content: "";
  inset: 0 -8vw auto;
  height: 70%;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-card {
  backdrop-filter: blur(18px);
  min-height: 430px;
}

.package-card.featured {
  background: linear-gradient(160deg, rgba(244, 216, 146, 0.18), rgba(189, 94, 112, 0.12) 48%, rgba(255, 248, 236, 0.05));
  border-color: rgba(244, 216, 146, 0.46);
  box-shadow: 0 34px 90px rgba(244, 216, 146, 0.08), var(--shadow);
  transform: translateY(-18px);
}

.package-card p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 30px 0 36px;
  padding: 0;
}

.package-card li {
  border-top: 1px solid rgba(255, 248, 236, 0.1);
  padding-top: 14px;
}

.package-card a {
  bottom: 28px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  position: absolute;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.package-card a:hover {
  color: var(--ivory);
}

.editorial {
  align-items: center;
  background:
    radial-gradient(circle at 78% 24%, rgba(189, 94, 112, 0.12), transparent 28rem),
    var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  padding: clamp(70px, 10vw, 126px) clamp(18px, 6vw, 90px);
}

.editorial-image {
  aspect-ratio: 1.02;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(34, 16, 18, 0.26);
  object-fit: cover;
}

.editorial-copy {
  max-width: 680px;
}

.editorial .eyebrow {
  color: #9a514d;
}

.editorial-copy p {
  color: rgba(21, 16, 20, 0.72);
}

.contact {
  align-items: start;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  overflow: clip;
  padding-bottom: clamp(70px, 8vw, 112px);
  padding-top: clamp(58px, 7vw, 96px);
}

.contact::before {
  background: radial-gradient(circle at 18% 20%, rgba(189, 94, 112, 0.1), transparent 26rem);
  content: "";
  inset: 0 -8vw;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.contact-panel {
  backdrop-filter: blur(18px);
  background:
    linear-gradient(145deg, rgba(244, 216, 146, 0.14), transparent 45%),
    rgba(255, 248, 236, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
}

.contact-panel > a {
  border-bottom: 1px solid rgba(255, 248, 236, 0.1);
  font-family: Cinzel, serif;
  font-size: clamp(22px, 2.8vw, 34px);
  padding-bottom: 18px;
  word-break: break-word;
}

.contact-panel > a[href^="mailto:"] {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 800;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  text-transform: none;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-form {
  border-bottom: 1px solid rgba(255, 248, 236, 0.1);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 18px;
}

.booking-form label {
  color: rgba(255, 248, 236, 0.72);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
  text-transform: uppercase;
}

.booking-form .full,
.booking-form button,
.form-status {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form textarea {
  background: rgba(7, 5, 7, 0.62);
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 8px;
  color: var(--ivory);
  font: inherit;
  padding: 12px;
  width: 100%;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  background: rgba(7, 5, 7, 0.78);
  border-color: rgba(244, 216, 146, 0.52);
  box-shadow: 0 0 0 3px rgba(244, 216, 146, 0.1);
  outline: none;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input[name="website"] {
  display: none;
}

.booking-form button {
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 13px 16px;
  text-transform: uppercase;
}

.booking-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  color: var(--gold);
  font-size: 13px;
  margin: 0;
  min-height: 18px;
}

.socials a {
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 999px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 12px;
  font-weight: 800;
  padding: 10px 13px;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.socials a:hover {
  background: rgba(244, 216, 146, 0.12);
  border-color: rgba(244, 216, 146, 0.44);
  color: var(--ivory);
}

.lightbox {
  align-items: center;
  display: grid;
  inset: 0;
  padding: 24px;
  position: fixed;
  z-index: 40;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  background: rgba(7, 5, 7, 0.88);
  inset: 0;
  position: absolute;
}

.lightbox-dialog {
  background: rgba(15, 9, 13, 0.96);
  border: 1px solid rgba(244, 216, 146, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  display: grid;
  gap: 14px;
  margin: auto;
  max-height: calc(100svh - 48px);
  max-width: min(1080px, calc(100vw - 48px));
  overflow: auto;
  padding: 14px;
  position: relative;
  width: 100%;
}

.lightbox-dialog img {
  border-radius: 6px;
  max-height: calc(100svh - 170px);
  object-fit: contain;
}

.lightbox-close {
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 999px;
  color: var(--ivory);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  justify-self: end;
  letter-spacing: 0.12em;
  padding: 10px 14px;
  text-transform: uppercase;
}

.lightbox-dialog p {
  color: rgba(255, 248, 236, 0.78);
  font-family: Cinzel, serif;
  font-size: clamp(20px, 3vw, 30px);
  margin: 0;
}

.footer {
  align-items: center;
  border-top: 1px solid rgba(255, 248, 236, 0.1);
  color: rgba(255, 248, 236, 0.58);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 58px);
}

.footer p {
  color: var(--ivory);
  font-family: Cinzel, serif;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 760ms ease, transform 760ms var(--ease);
}

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






@keyframes reelPan {
  to { top: 110%; }
}

@keyframes pulseRing {
  to { opacity: 0; transform: scale(1.45); }
}

@keyframes heroDrift {
  from {
    object-position: 48% 48%;
  }
  to {
    object-position: 54% 52%;
  }
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

  .intro,
  .showcase,
  .editorial,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .gallery-wall .section-heading {
    grid-template-columns: 1fr;
  }

  .gallery-wall .section-heading p:not(.eyebrow) {
    max-width: 760px;
  }

  .gallery-grid {
    grid-auto-rows: minmax(160px, 20vw);
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-tile,
  .gallery-tile:nth-child(1),
  .gallery-tile:nth-child(2),
  .gallery-tile:nth-child(3),
  .gallery-tile:nth-child(4),
  .gallery-tile:nth-child(5),
  .gallery-tile:nth-child(6) {
    grid-column: span 3;
    grid-row: span 2;
  }

  .intro-mark {
    height: 118px;
    max-width: none;
    width: 118px;
  }

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

@media (max-width: 760px) {
  .site-header {
    gap: 14px;
  }

  .brand-mark {
    height: 42px;
    width: 42px;
  }

  .header-cta {
    padding: 11px 13px;
  }

  .hero {
    display: block;
    padding: 128px 24px 58px;
  }

  .hero-content {
    max-width: min(100%, 318px);
  }

  h1 {
    font-size: clamp(28px, 7.8vw, 32px);
    line-height: 1.1;
    max-width: 100%;
    text-wrap: balance;
  }

  .hero-card {
    margin-top: 52px;
    max-width: 360px;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.62;
    max-width: 310px;
  }

  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 230px;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .event-strip {
    grid-template-columns: 1fr;
  }

  .event-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 236, 0.08);
  }

  .event-strip span:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .package-grid,
  .stats-row,
  .cue-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: minmax(210px, 58vw);
    grid-template-columns: 1fr;
  }

  .gallery-tile,
  .gallery-tile:nth-child(1),
  .gallery-tile:nth-child(2),
  .gallery-tile:nth-child(3),
  .gallery-tile:nth-child(4),
  .gallery-tile:nth-child(5),
  .gallery-tile:nth-child(6) {
    grid-column: auto;
    grid-row: span 1;
  }

  .mood-stage {
    min-height: 360px;
  }

  .reel-screen,
  .reel-card:hover .reel-screen {
    transform: none;
  }

  .reel-caption {
    left: 18px;
    right: 18px;
  }

  .reel-caption strong,
  .reel-caption small {
    overflow-wrap: anywhere;
  }

  .orb-one {
    height: 180px;
    width: 180px;
  }

  .orb-two {
    height: 140px;
    width: 140px;
  }

  .package-card.featured {
    transform: none;
  }

  .showcase-image {
    transform: none;
  }
}

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

  .atmosphere {
    display: none;
  }

  .hero-video {
    display: none;
  }

  .hero-fallback {
    display: block;
  }
}


[data-reactive] {
  --mx: 50%;
  --my: 50%;
}

[data-reactive]::after {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 248, 236, 0.2), transparent 28%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
  z-index: 0;
}

[data-reactive]:hover::after {
  opacity: 1;
}

.service-panel > *,
.package-card > *,
.hero-card > *,
.contact-panel > *,
.reel-screen > * {
  position: relative;
  z-index: 1;
}

.showcase-image,
.intro-mark,
.contact-panel,
.hero-card,
.reel-card,
.package-card,
.service-panel {
  transform-style: preserve-3d;
}

.showcase-image::after,
.intro-mark::after,
.contact-panel::after,
.hero-card::after,
.reel-card::after,
.package-card::after,
.service-panel::after {
  border-radius: inherit;
}
