:root {
  --bg: #09070d;
  --bg-soft: #130d18;
  --paper: #f5efe2;
  --paper-2: #efe5d3;
  --ink: #1a1420;
  --text: #f7f4ef;
  --muted: rgba(247, 244, 239, .76);
  --purple: #4d1f60;
  --purple-deep: #24102e;
  --gold: #b88945;
  --gold-soft: #d4b17a;
  --line: rgba(34, 21, 38, .12);
  --shadow: 0 24px 60px rgba(0, 0, 0, .18);
  --radius: 28px;
  --wrap: min(1220px, calc(100% - 48px));
  --header: 102px;
  --paper-dots: radial-gradient(circle at 1px 1px, rgba(105, 83, 56, .11) 1px, transparent 1.2px);
  --hero-torn: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='92' viewBox='0 0 1600 92' preserveAspectRatio='none'%3E%3Cpath fill='%23f5efe2' d='M0 34 C 85 18, 130 67, 210 51 S 377 17, 460 39 S 598 78, 700 43 S 835 7, 930 34 S 1084 70, 1178 42 S 1330 10, 1435 36 S 1544 60, 1600 46 V92 H0 Z'/%3E%3C/svg%3E");
  --paper-torn-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='92' viewBox='0 0 1600 92' preserveAspectRatio='none'%3E%3Cpath fill='%2309070d' d='M0 34 C 85 18, 130 67, 210 51 S 377 17, 460 39 S 598 78, 700 43 S 835 7, 930 34 S 1084 70, 1178 42 S 1330 10, 1435 36 S 1544 60, 1600 46 V92 H0 Z'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  overflow-x: hidden;
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 14px;
  top: -48px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { top: 14px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(8, 7, 11, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.header-inner {
  position: relative;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-brand {
  width: clamp(180px, 19vw, 320px);
  text-decoration: none;
}
.site-brand img { width: 100%; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.site-nav a:hover { color: #fff; }
.nav-cta {
  border: 1px solid rgba(212, 177, 122, .55);
  background: rgba(184, 137, 69, .12);
  padding: 14px 18px;
}
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  display: block;
}

.hero {
  min-height: min(980px, 100vh);
  position: relative;
  overflow: clip;
  display: flex;
  align-items: center;
  padding: calc(var(--header) + 42px) 0 110px;
}
.hero-media,
.hero-shade,
.hero-grain,
.hero-logo-overlay,
.hero-monogram { position: absolute; }
.hero-media { inset: 0; z-index: -5; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 24% 46%;
  transform: translate3d(0, var(--py, 0px), 0) scale(1.05);
}
.hero-shade {
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(6,5,9,.92) 0%, rgba(6,5,9,.84) 34%, rgba(6,5,9,.55) 62%, rgba(6,5,9,.72) 100%),
    linear-gradient(180deg, rgba(6,5,9,.2) 0%, rgba(6,5,9,.1) 55%, rgba(6,5,9,.55) 100%);
}
.hero-grain {
  inset: 0;
  z-index: -3;
  opacity: .12;
  background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,.1) 1px, transparent 1.4px);
  background-size: 8px 8px;
  mix-blend-mode: soft-light;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 92px;
  background: var(--hero-torn) center bottom / 100% 100% no-repeat;
  pointer-events: none;
}
.hero-logo-overlay {
  top: calc(var(--header) + 24px);
  left: clamp(20px, 5vw, 54px);
  width: clamp(260px, 28vw, 430px);
  opacity: .98;
}
.hero-monogram {
  width: min(30vw, 420px);
  right: 2%;
  top: 14%;
  opacity: .12;
}
.hero-layout {
  width: min(1220px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  gap: 30px;
}
.hero-copy {
  grid-column: 2;
  max-width: 560px;
  padding-top: 72px;
  position: relative;
  z-index: 2;
}
.eyebrow,
.section-kicker,
.service-tag,
.occasion-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
}
.eyebrow { color: rgba(255,255,255,.76); }
.eyebrow span { color: var(--gold); margin-inline: 8px; }
.hero h1,
.brand-copy h2,
.section-heading h2,
.showreel-block h2,
.why-block h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(3.7rem, 7vw, 7.1rem);
  margin-bottom: 18px;
}
.hero h1 span {
  display: block;
  color: var(--gold);
}
.hero-lede {
  margin: 0 0 12px;
  font-size: 1.16rem;
  max-width: 42ch;
  color: #fff;
}
.hero-text {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-gold {
  background: var(--gold);
  color: #fff;
}
.button-gold:hover { background: #c59854; }
.button-outline {
  border-color: rgba(255,255,255,.34);
  color: #fff;
}
.button-outline:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.button-purple {
  background: var(--purple);
  color: #fff;
}
.button-purple:hover { background: #5b2571; }
.button-outline-dark {
  border-color: rgba(26,20,32,.18);
  color: var(--ink);
}
.button-outline-dark:hover { border-color: var(--purple); color: var(--purple); }
.hero-script,
.script-note {
  margin: 26px 0 0;
  font-family: "Allura", cursive;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  color: rgba(245, 239, 226, .88);
}
.script-note { color: var(--purple); }
.script-note.dark { color: #6a376d; }
.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .66rem;
  color: rgba(255,255,255,.64);
}
.scroll-cue span {
  width: 26px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  position: relative;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 8px;
  border-radius: 20px;
  background: rgba(255,255,255,.66);
  transform: translateX(-50%);
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

.paper {
  color: var(--ink);
  background:
    var(--paper-dots),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0)),
    var(--paper);
  background-size: 11px 11px, auto, auto;
}
.torn-top,
.torn-bottom,
.overlap-top { position: relative; }
.torn-top::before,
.torn-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  pointer-events: none;
}
.torn-top::before {
  top: -89px;
  background: var(--hero-torn) center top / 100% 100% no-repeat;
}
.torn-bottom::after {
  bottom: -89px;
  background: var(--paper-torn-dark) center bottom / 100% 100% no-repeat;
}
.overlap-top { margin-top: -70px; z-index: 5; }

.brand-intro { padding: 90px 0 120px; }
.brand-grid {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}
.brand-card {
  background: rgba(255,255,255,.46);
  border: 1px solid rgba(43, 25, 50, .09);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow);
  text-align: center;
}
.brand-card img { width: min(470px, 100%); margin-inline: auto; }
.brand-card p {
  margin: 18px 0 0;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .76rem;
  color: #6e604e;
}
.brand-copy h2,
.section-heading h2,
.showreel-block h2,
.why-block h2,
.contact-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  margin-bottom: 16px;
}
.brand-copy h2 span,
.contact-copy h2 span { color: var(--gold); }
.brand-copy p,
.section-sub,
.why-block p,
.contact-copy p { color: #524742; }
.section-kicker {
  color: #86602d;
}
.section-kicker.light { color: rgba(255,255,255,.75); }
.mini-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.mini-points span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .93rem;
  color: #3b2c38;
}
.mini-points span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  flex: 0 0 10px;
}

.services-stage {
  position: relative;
  overflow: clip;
  padding: 110px 0 180px;
  background: radial-gradient(circle at 30% 0%, rgba(94, 28, 120, .2), transparent 28%), #0b0810;
}
.services-backdrop {
  position: absolute;
  inset: 0;
  opacity: .35;
  background:
    radial-gradient(circle at 74% 24%, rgba(184, 137, 69, .13), transparent 22%),
    radial-gradient(circle at 12% 70%, rgba(98, 31, 128, .22), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 45%);
  transform: translate3d(0, var(--py, 0px), 0);
}
.section-heading {
  text-align: center;
  margin-bottom: 46px;
}
.section-heading h2 { color: var(--text); }
.section-sub { margin: 14px auto 0; max-width: 50ch; color: rgba(255,255,255,.66); }
.section-sub.dark { color: #625852; }
.service-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-panel {
  overflow: hidden;
  background: rgba(18, 12, 24, .9);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
  transform: translate3d(0, var(--py, 0px), 0);
}
.service-panel-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.service-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-panel-copy { padding: 28px 26px 30px; }
.service-tag { color: var(--gold-soft); }
.service-panel h3,
.occasion-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: .98;
  letter-spacing: -.02em;
}
.service-panel h3 { color: var(--text); }
.service-panel p:last-child { margin: 0; color: rgba(255,255,255,.7); }

.occasions { padding: 110px 0 110px; }
.occasions .section-heading h2 { color: var(--ink); }
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.occasion-card {
  background: rgba(255,255,255,.5);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.occasion-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}
.occasion-copy { padding: 24px 24px 28px; }
.occasion-label { color: #8b6330; }
.occasion-card h3 { color: #211725; }
.occasion-card p:last-child { margin: 0; color: #5f534d; }

.showreel-why {
  padding: 120px 0;
  background: linear-gradient(180deg, #0c0911, #110c17);
}
.showreel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 60px;
  align-items: start;
}
.showreel-block h2,
.why-block h2 { color: var(--text); }
.showreel-block .section-kicker,
.why-block .section-kicker { color: var(--gold-soft); }
.video-frame {
  position: relative;
  width: min(420px, 100%);
  margin-top: 30px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background: #050409;
  box-shadow: 0 34px 80px rgba(0,0,0,.35);
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  pointer-events: none;
}
.video-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: rgba(10, 8, 14, .78);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.video-play.is-hidden { opacity: 0; pointer-events: none; }
.video-play-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  padding-left: 2px;
}
.why-block {
  padding: 40px 0 0;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}
.why-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(247,244,239,.78);
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--purple));
}

.magic-circle-band {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
}
.magic-circle-photo,
.magic-circle-overlay {
  position: absolute;
  inset: 0;
}
.magic-circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}
.magic-circle-overlay {
  background: linear-gradient(90deg, rgba(45,18,59,.96) 0%, rgba(78,25,92,.92) 100%);
}
.magic-circle-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 34px 0;
}
.magic-circle-inner img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  padding: 8px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.magic-circle-inner p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}
.magic-circle-inner span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.8);
}

.reviews { padding: 110px 0 120px; }
.reviews .section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px 30px;
  text-align: left;
}
.reviews .section-kicker,
.reviews .section-heading h2 { grid-column: 1; }
.reviews .section-heading h2 { color: var(--ink); }
.reviews-link {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  text-decoration: none;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  margin: 0;
  background: rgba(255,255,255,.5);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.review-card p {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.16;
  color: #221725;
}
.review-card footer {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
  color: #7e5c31;
}

.contact { padding: 100px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}
.contact-brand {
  background: rgba(255,255,255,.46);
  border: 1px solid rgba(43, 25, 50, .09);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-brand img { width: min(470px, 100%); margin-inline: auto; }
.contact-copy h2 { color: var(--ink); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.contact-list li { color: #4e433e; }
.contact-list strong { color: #281d2d; }
.contact-list a {
  color: var(--purple);
  text-decoration: none;
}
.contact-list a:hover { text-decoration: underline; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  color: rgba(255,255,255,.54);
  font-size: .74rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-inner p { margin: 0; }

.parallax { will-change: transform; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root { --header: 90px; }
  .hero-layout,
  .brand-grid,
  .showreel-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { grid-column: 1; max-width: 620px; padding-top: 140px; }
  .hero-monogram { right: -40px; width: 360px; }
  .service-panels,
  .occasion-grid,
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    right: 24px;
    top: calc(100% + 10px);
    width: min(320px, calc(100vw - 48px));
    padding: 18px;
    border-radius: 24px;
    background: rgba(12, 10, 17, .98);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 40px rgba(0,0,0,.35);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav a:not(.nav-cta) {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero {
    min-height: auto;
    padding-bottom: 120px;
  }
  .hero-media img { object-position: 20% 44%; }
  .hero-logo-overlay {
    width: min(300px, 66vw);
    left: 24px;
    top: calc(var(--header) + 22px);
  }
  .hero-copy { padding-top: 170px; }
  .scroll-cue { display: none; }
  .magic-circle-inner { align-items: flex-start; }
  .reviews .section-heading {
    grid-template-columns: 1fr;
  }
  .reviews-link {
    grid-column: 1;
    grid-row: auto;
    align-self: start;
  }
}

@media (max-width: 640px) {
  :root { --wrap: min(100% - 28px, 100%); }
  .header-inner { min-height: 82px; }
  .site-brand { width: 180px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .hero-copy { padding-top: 154px; }
  .hero-actions,
  .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .brand-intro,
  .services-stage,
  .occasions,
  .showreel-why,
  .reviews,
  .contact { padding-top: 80px; padding-bottom: 86px; }
  .brand-grid,
  .showreel-grid,
  .contact-grid,
  .service-panels,
  .occasion-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .brand-card,
  .contact-brand,
  .occasion-card,
  .review-card,
  .service-panel { border-radius: 22px; }
  .service-panel-image { aspect-ratio: 4 / 4.6; }
  .occasion-card img { height: 240px; }
  .video-frame { width: 100%; }
  .magic-circle-inner {
    flex-direction: column;
    gap: 16px;
  }
  .magic-circle-inner p { line-height: 1.06; }
}
