: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);
  font-family: Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  overflow-x: 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;
}

.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;
}

.site-header {
  align-items: center;
  background: rgba(7, 5, 7, 0.5);
  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;
  z-index: 10;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(7, 5, 7, 0.82);
  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;
}

.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;
}

.header-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
}

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

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.1) translate3d(calc(var(--hero-x, 0px) * -1), calc(var(--hero-y, 0px) * -1), 0);
  transition: transform 180ms ease-out;
  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%),
    linear-gradient(90deg, rgba(7, 5, 7, 0.92) 0%, rgba(7, 5, 7, 0.66) 40%, rgba(7, 5, 7, 0.3) 100%),
    linear-gradient(0deg, var(--black), transparent 30%);
}

.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(38px, 5.8vw, 78px);
  line-height: 1.02;
  margin-bottom: 22px;
  max-width: 790px;
}

.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 ease, border-color 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));
  color: #211017;
}

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

.hero-card {
  backdrop-filter: blur(20px);
  background: rgba(20, 11, 16, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 36px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  max-width: 360px;
  padding: 24px;
  position: absolute;
  right: clamp(18px, 6vw, 88px);
  z-index: 2;
}

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


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

.hero-card strong {
  font-family: Cinzel, serif;
  font-size: 22px;
  line-height: 1.25;
}

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

.intro {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 160px 1.15fr 0.85fr;
}

.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;
}

.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));
  border: 1px solid rgba(255, 248, 236, 0.11);
  border-radius: 8px;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: transform 300ms ease, border-color 300ms ease, background 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);
  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;
}



.motion-reels {
  position: relative;
}

.reel-grid {
  display: grid;
  gap: 18px;
  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);
  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;
}

.showcase {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 88px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  padding: clamp(80px, 10vw, 130px) clamp(18px, 6vw, 88px);
  position: relative;
}

.showcase::before {
  background: linear-gradient(90deg, rgba(71, 38, 56, 0.48), transparent);
  content: "";
  inset: 0 0 auto;
  height: 70%;
  position: absolute;
  z-index: -1;
}

.showcase-image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  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(32px, 5vw, 66px);
  line-height: 1.03;
}

.stats-row {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  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 {
  position: relative;
}

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

.package-card {
  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);
  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;
}

.editorial {
  align-items: center;
  background: 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 .eyebrow {
  color: #9a514d;
}

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

.contact {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.contact-panel {
  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: 18px;
  padding: clamp(26px, 5vw, 44px);
}

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

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

.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;
}

.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 cubic-bezier(0.16, 1, 0.3, 1);
}

.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 {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.15) translate3d(-2.2%, -1.4%, 0);
  }
}

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

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

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

  .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 {
    padding-top: 132px;
  }

  .hero-card {
    margin-top: 52px;
    position: relative;
    right: auto;
    bottom: auto;
  }

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

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

  .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;
  }
}


[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;
}
