/* ============================================================
   ESNCE COLLECTIVE — stylesheet
   Edit colours, fonts, and spacing from the :root block below.
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Colour palette */
  --black: #080808;
  --deep: #0F0F0F;
  --card: #141414;
  --surface: #1A1A1A;
  --pink: #F2C4CE;
  --pink-mid: #D9889A;
  --pink-dark: #B5607A;
  --gold: #C9A96E;
  --white: #FAF8F6;
  --muted: rgba(250, 248, 246, 0.38);
  --border: rgba(242, 196, 206, 0.12);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  background: rgba(8, 8, 8, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 196, 206, 0.1);
  padding: 0 5vw;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--pink); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 248, 246, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }

.nav-book {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--pink);
  border: 1px solid rgba(242, 196, 206, 0.5);
  padding: 11px 24px;
  text-decoration: none;
  transition: all 0.25s;
}
.nav-book:hover { background: var(--pink); color: var(--black); }

/* ============================================================
   HERO + VIDEO
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
  background: var(--black);
}

.video-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, #2a1a1f 0%, #0F0F0F 45%, #080808 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  z-index: 0;
}
.video-placeholder-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(242, 196, 206, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder-tri {
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid rgba(242, 196, 206, 0.3);
  margin-left: 4px;
}
.video-placeholder-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 196, 206, 0.28);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 8, 8, 0.35) 0%,
    rgba(8, 8, 8, 0.45) 40%,
    rgba(8, 8, 8, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6vw 72px;
  pointer-events: none;
}
.hero-content > * { pointer-events: auto; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--pink);
}
.eyebrow-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 1100px;
}
.hero-h1 em { font-style: italic; color: var(--pink); }

.hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(242, 196, 206, 0.2);
}
.hero-sub {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250, 248, 246, 0.75);
  max-width: 400px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-fineprint {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 196, 206, 0.55);
  margin-top: 22px;
}

.btn-pink {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--pink);
  color: var(--black);
  padding: 15px 32px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-pink:hover { background: var(--pink-mid); }

.btn-ghost-pink {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(242, 196, 206, 0.4);
  color: var(--white);
  padding: 15px 32px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost-pink:hover { border-color: var(--pink); color: var(--pink); }

.hero-sound {
  position: absolute;
  top: 96px;
  right: 6vw;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(242, 196, 206, 0.25);
  background: rgba(8, 8, 8, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: border-color 0.2s;
  font-family: inherit;
}
.hero-sound:hover { border-color: var(--pink); }
.sound-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.sound-txt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(242, 196, 206, 0.6));
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
.scroll-txt {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 196, 206, 0.6);
}

/* ============================================================
   RIBBON
   ============================================================ */

.ribbon {
  background: var(--pink-dark);
  padding: 13px 0;
  overflow: hidden;
}
.ribbon-track {
  display: flex;
  white-space: nowrap;
  animation: rib 25s linear infinite;
}
.ribbon-item {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: rgba(250, 248, 246, 0.85);
  padding: 0 32px;
}
.ribbon-dot {
  color: rgba(250, 248, 246, 0.35);
  padding: 0 4px;
}
@keyframes rib {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SHARED SECTION ELEMENTS
   ============================================================ */

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eline {
  width: 32px;
  height: 1px;
  background: var(--pink-mid);
}
.etxt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-mid);
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.section-h2 em { font-style: italic; color: var(--pink); }

.section-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.img-ph, .dc-img-ph {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 246, 0.25);
  text-align: center;
  padding: 20px;
}
.img-ph code, .dc-img-ph code {
  display: inline-block;
  margin-top: 6px;
  font-size: 9px;
  color: var(--pink);
  background: rgba(242, 196, 206, 0.08);
  padding: 2px 6px;
  letter-spacing: 0;
  font-family: ui-monospace, Menlo, Monaco, monospace;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  background: var(--deep);
  padding: 96px 6vw;
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-box {
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(242, 196, 206, 0.2);
  z-index: -1;
}
.about-badge {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--pink-dark);
  padding: 10px 18px;
}
.about-badge-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.about-text p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 16px;
}
.about-text p strong { color: var(--white); font-weight: 500; }

.about-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.pill {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 7px 14px;
  color: var(--muted);
}

/* ============================================================
   ROSTER
   ============================================================ */

.roster {
  background: var(--black);
  padding: 96px 6vw;
  border-bottom: 1px solid var(--border);
}
.roster-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 20px;
  flex-wrap: wrap;
}
.roster-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 196, 206, 0.25);
  padding-bottom: 3px;
}
.roster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dancer-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s;
}
.dancer-card:hover { border-color: rgba(242, 196, 206, 0.4); }

.dc-img {
  aspect-ratio: 2/3;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.dc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dc-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--pink-dark);
  padding: 6px 12px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}
.dc-body { padding: 16px 14px 18px; }
.dc-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 5px;
}
.dc-spec {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-mid);
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  background: var(--deep);
  padding: 96px 6vw;
  border-bottom: 1px solid var(--border);
}
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--border);
}
.svc-item {
  padding: 32px 28px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
  display: block;
  text-decoration: none;
}
.svc-item:hover { background: rgba(242, 196, 206, 0.04); }
.svc-item:nth-child(2n) { border-right: none; }
.svc-item:nth-last-child(-n+2) { border-bottom: none; }

.svc-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: italic;
  color: var(--pink-mid);
  margin-bottom: 14px;
  opacity: 0.6;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}
.svc-arrow {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--pink);
  opacity: 0;
  transition: opacity 0.2s;
  text-decoration: none;
}
.svc-item:hover .svc-arrow { opacity: 1; }

/* ============================================================
   GALLERY — masonry (no cropping, preserves aspect ratio)
   ============================================================ */

.gallery {
  background: var(--black);
  padding: 96px 6vw;
  border-bottom: 1px solid var(--border);
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 20px;
  flex-wrap: wrap;
}
.gallery-masonry {
  column-count: 4;
  column-gap: 14px;
}
.masonry-item {
  break-inside: avoid;
  margin: 0 0 14px 0;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.masonry-item:hover {
  border-color: rgba(242, 196, 206, 0.4);
  transform: translateY(-2px);
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}
.masonry-item:hover img {
  transform: scale(1.02);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open {
  display: flex;
}
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(250, 248, 246, 0.06);
  border: 1px solid rgba(242, 196, 206, 0.25);
  color: var(--pink);
  cursor: pointer;
  font-family: serif;
  transition: all 0.2s;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(242, 196, 206, 0.15);
  border-color: var(--pink);
}
.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
  padding-bottom: 4px;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 32px;
  line-height: 1;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-mid);
}

/* ============================================================
   CLIENTS STRIP
   ============================================================ */

.clients-sec {
  background: var(--pink-dark);
  padding: 44px 6vw;
}
.clients-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.clients-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 248, 246, 0.55);
  flex-shrink: 0;
}
.clients-rule {
  width: 1px;
  height: 32px;
  background: rgba(250, 248, 246, 0.25);
  flex-shrink: 0;
}
.clients-names {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.client-nm {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: rgba(250, 248, 246, 0.7);
}

/* ============================================================
   SHOWREEL
   ============================================================ */

.reel-sec {
  background: var(--black);
  padding: 96px 6vw;
  border-bottom: 1px solid var(--border);
}
.reel-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 5fr 2fr;
  gap: 16px;
}
.reel-main {
  aspect-ratio: 16/9;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  text-decoration: none;
}
.reel-main:hover .play-circle { border-color: var(--pink); }

.play-circle {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(242, 196, 206, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s;
}
.play-arrow {
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid rgba(242, 196, 206, 0.5);
  margin-left: 6px;
}
.reel-main-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.reel-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reel-thumb {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 100px;
  text-decoration: none;
}
.reel-thumb .play-circle { width: 48px; height: 48px; }
.reel-thumb .play-arrow {
  border-top-width: 8px;
  border-bottom-width: 8px;
  border-left-width: 14px;
}

/* ============================================================
   BOOK / CONTACT
   ============================================================ */

.book-sec {
  background: var(--deep);
  padding: 96px 6vw;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.book-left p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 36px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--card);
}
.ci {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-key {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-mid);
  min-width: 56px;
  padding-top: 2px;
}
.ci-val {
  font-size: 12px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
}
.ci-link { transition: color 0.2s; }
.ci-link:hover { color: var(--pink); }

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fi {
  width: 100%;
  padding: 13px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.fi::placeholder { color: rgba(250, 248, 246, 0.2); }
.fi:focus { border-color: rgba(242, 196, 206, 0.45); }
select.fi { appearance: none; cursor: pointer; }
select.fi option { background: var(--card); color: var(--white); }
textarea.fi { height: 108px; resize: none; }

.form-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.submit-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--pink);
  color: var(--black);
  padding: 15px 36px;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.submit-btn:hover { background: var(--pink-mid); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 6vw 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-signoff {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-signoff-logo {
  display: block;
  width: 320px;
  max-width: 70%;
  height: auto;
  opacity: 0.9;
  border-radius: 4px;
}
.footer-logo span { color: var(--pink); }
.footer-brand p {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 10px;
  max-width: 240px;
  line-height: 1.7;
}
.footer-cols {
  display: flex;
  gap: 56px;
}
.fc h4 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 16px;
}
.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc a {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.fc a:hover { color: var(--pink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 10px;
  font-weight: 300;
  color: rgba(250, 248, 246, 0.2);
}
.footer-soc {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-soc a {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 246, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-soc a:hover { color: var(--pink); }

/* ============================================================
   WHY ESNCE — four pillar points
   ============================================================ */

.why-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
}
.why-point {
  padding-left: 18px;
  border-left: 1px solid var(--border);
  transition: border-color 0.25s;
}
.why-point:hover { border-left-color: var(--pink-mid); }
.why-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.why-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   WHAT WE CREATE — editorial bullet list
   ============================================================ */

.create-sec {
  background: var(--black);
  padding: 96px 6vw;
  border-bottom: 1px solid var(--border);
}
.create-inner {
  max-width: 900px;
}
.create-lead {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(250, 248, 246, 0.7);
  margin-bottom: 40px;
  max-width: 680px;
}
.create-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 48px;
  padding: 0;
}
.create-list li {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  padding-left: 22px;
  position: relative;
}
.create-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 1px;
  background: var(--pink-mid);
}

/* ============================================================
   SIGNATURE CONCEPTS — card grid
   ============================================================ */

.concepts {
  background: var(--deep);
  padding: 96px 6vw;
  border-bottom: 1px solid var(--border);
}
.concepts-intro {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 52px;
}
.concepts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.concept {
  background: var(--card);
  padding: 36px 28px 32px;
  transition: background 0.25s;
  cursor: default;
  position: relative;
}
.concept:hover { background: #1a1a1a; }
.concept::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.concept:hover::before { transform: scaleX(1); }
.concept-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: italic;
  color: var(--pink-mid);
  margin-bottom: 16px;
  opacity: 0.65;
}
.concept-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.concept-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   SERVICES — add intro & outro styles
   ============================================================ */

.services-intro {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 0;
}
.services-outro {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(250, 248, 246, 0.7);
  max-width: 680px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   HOW IT WORKS — three step layout
   ============================================================ */

.how {
  background: var(--black);
  padding: 96px 6vw;
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 40px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  padding-right: 20px;
}
.how-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--pink);
  background: var(--black);
  display: inline-block;
  padding-right: 16px;
  margin-bottom: 20px;
}
.how-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.how-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   TRUSTED BY — dark pink band
   ============================================================ */

.trust-sec {
  background: var(--pink-dark);
  padding: 88px 6vw;
}
.trust-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.trust-sec .section-eyebrow {
  justify-content: center;
}
.trust-sec .eline {
  background: rgba(250, 248, 246, 0.4);
}
.trust-sec .section-h2 {
  margin-bottom: 28px;
}
.trust-sec .section-h2 em { color: var(--pink); }
.trust-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250, 248, 246, 0.8);
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================================
   GOOGLE REVIEWS — call to action section
   ============================================================ */

.review-sec {
  background: var(--deep);
  padding: 88px 6vw;
  border-bottom: 1px solid var(--border);
}
.review-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.review-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: var(--gold);
  margin-bottom: 28px;
}
.review-stars svg {
  filter: drop-shadow(0 0 8px rgba(201, 169, 110, 0.25));
}
.review-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 36px;
}
.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.review-btn:hover {
  background: var(--pink);
  transform: translateY(-1px);
}
.review-btn svg {
  flex-shrink: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  background: var(--black);
  padding: 120px 6vw;
  border-bottom: 1px solid var(--border);
}
.final-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.final-h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.final-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
}
.final-btn {
  padding: 18px 44px;
  font-size: 11px;
}
.final-fineprint {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 196, 206, 0.5);
  margin-top: 24px;
}

/* ============================================================
   NAVIGATION — Castings link with active dot
   ============================================================ */

.nav-cast {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink) !important;
}
.nav-cast-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ============================================================
   NOW-CASTING STRIP (sits above hero)
   ============================================================ */

.cast-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--pink-dark);
  padding: 11px 6vw;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-body);
  transition: background 0.2s;
  flex-wrap: wrap;
  text-align: center;
}
.cast-strip:hover {
  background: #9d4f68;
}
.cs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(242, 196, 206, 0.6);
  animation: cast-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes cast-pulse {
  0% { box-shadow: 0 0 0 0 rgba(242, 196, 206, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(242, 196, 206, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 196, 206, 0); }
}
.cs-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
}
.cs-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
}
.cs-arrow {
  font-size: 14px;
  color: var(--pink);
  transition: transform 0.2s;
}
.cast-strip:hover .cs-arrow {
  transform: translateX(4px);
}

/* ============================================================
   CASTINGS SECTION
   ============================================================ */

.castings {
  background: var(--black);
  padding: 96px 6vw;
  border-bottom: 1px solid var(--border);
}
.cast-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.cast-intro {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 4px;
}

.cast-card {
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cast-status {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--pink);
  color: var(--black);
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cast-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
  animation: pulse 1.8s ease-in-out infinite;
}

.cast-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
}
.cast-poster {
  background: var(--surface);
  display: block;
  position: relative;
  overflow: hidden;
}
.cast-poster a {
  display: block;
  width: 100%;
  height: 100%;
}
.cast-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.cast-poster:hover img {
  transform: scale(1.02);
}

.cast-body {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cast-tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.cast-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 6px 12px;
  color: var(--muted);
}
.cast-tag-pink {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--black);
}

.cast-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin: 4px 0 8px;
}
.cast-title em {
  font-style: italic;
  color: var(--pink);
}
.cast-lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250, 248, 246, 0.75);
}
.cast-lead strong {
  color: var(--white);
  font-weight: 500;
}

.cast-block {
  margin-top: 6px;
}
.cast-block-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 12px;
}
.cast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.cast-list li {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(250, 248, 246, 0.78);
  padding-left: 18px;
  position: relative;
}
.cast-list li strong { color: var(--white); font-weight: 600; }
.cast-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--pink-mid);
}
.cast-list-perks li {
  padding-left: 24px;
}
.cast-list-perks li::before {
  display: none;
}
.cast-check {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--pink);
}

.cast-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.cast-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 24px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.cast-btn-wa {
  background: #25D366;
  color: var(--black);
}
.cast-btn-wa:hover {
  background: #1da851;
  transform: translateY(-1px);
}
.cast-btn-email {
  background: transparent;
  color: var(--pink);
  border-color: rgba(242, 196, 206, 0.4);
}
.cast-btn-email:hover {
  background: var(--pink);
  color: var(--black);
  border-color: var(--pink);
}

.cast-fineprint {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 4px;
}
.cast-fineprint a {
  color: var(--pink);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 196, 206, 0.3);
  transition: border-color 0.2s;
}
.cast-fineprint a:hover {
  border-color: var(--pink);
}

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */

@media (max-width: 960px) {
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img-wrap { max-width: 420px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-item { border-right: none !important; }
  .svc-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .svc-item:last-child { border-bottom: none; }
  .gallery-masonry { column-count: 3; column-gap: 12px; }
  .masonry-item { margin-bottom: 12px; }
  .concepts-grid { grid-template-columns: repeat(2, 1fr); }
  .create-list { grid-template-columns: 1fr; gap: 12px; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .how-steps::before { display: none; }
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
  .cast-header { grid-template-columns: 1fr; gap: 32px; }
  .cast-grid { grid-template-columns: 1fr; }
  .cast-poster img { aspect-ratio: 4/5; }
  .cast-body { padding: 32px 28px 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { gap: 40px; }
  .footer-signoff-logo { width: 260px; }
}

/* ============================================================
   RESPONSIVE — mobile
   ============================================================ */

@media (max-width: 600px) {
  .nav { padding: 0 5vw; }
  .nav-inner { height: 60px; }
  .logo { font-size: 14px; letter-spacing: 0.2em; }
  .nav-book { padding: 9px 16px; font-size: 9px; }

  .hero { min-height: 560px; height: 88vh; }
  .hero-content { padding: 0 5vw 40px; }
  .hero-h1 { font-size: clamp(38px, 10vw, 56px); }
  .hero-sound { top: 76px; right: 5vw; padding: 6px 10px; }
  .hero-flex { flex-direction: column; align-items: stretch; gap: 20px; }
  .hero-btns .btn-pink, .hero-btns .btn-ghost-pink { flex: 1; text-align: center; }

  .about, .services, .gallery, .create-sec, .concepts, .how, .book-sec { padding: 64px 5vw; }
  .trust-sec { padding: 64px 5vw; }
  .review-sec { padding: 64px 5vw; }
  .castings { padding: 64px 5vw; }
  .final-cta { padding: 80px 5vw; }

  .cast-strip { gap: 8px; padding: 10px 5vw; }
  .cs-text { font-size: 12px; }
  .cs-label { font-size: 8px; letter-spacing: 0.22em; }
  .cast-actions .cast-btn { flex: 1; justify-content: center; padding: 13px 14px; }
  .cast-status { top: 12px; right: 12px; font-size: 8px; padding: 6px 10px; }

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

  .gallery-masonry { column-count: 2; column-gap: 8px; }
  .masonry-item { margin-bottom: 8px; }

  .lightbox { padding: 16px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 24px; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; font-size: 26px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-counter { bottom: 16px; font-size: 10px; }

  .footer { padding: 48px 5vw 28px; }
  .footer-cols { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-signoff { margin-top: 40px; padding-top: 32px; }
  .footer-signoff-logo { width: 220px; }
}
