:root {
  --ink: #243045;
  --muted: #657188;
  --paper: #fffdf7;
  --peach: #ff846f;
  --gold: #ffc84d;
  --sky: #88d8f7;
  --mint: #a7e8bd;
  --lavender: #c7b7ff;
  --rose: #fff0ec;
  --blue-ink: #1d5272;
  --line: rgba(36, 48, 69, 0.14);
  --shadow: 0 22px 60px rgba(44, 45, 80, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--peach);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(255, 132, 111, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--blue-ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #eaf8ff;
  outline: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section-band,
.section-wrap {
  position: relative;
  padding: 86px max(20px, calc((100vw - 1160px) / 2));
}

.section-band {
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 200, 77, 0.27), transparent 24%),
    radial-gradient(circle at 91% 8%, rgba(136, 216, 247, 0.28), transparent 22%),
    #fff7f1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 52px;
  padding-bottom: 58px;
  gap: 44px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 8%;
  bottom: -28px;
  width: 210px;
  height: 72px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--ink) 0 16px, #fff 16px 30px);
  border: 8px solid var(--ink);
  border-radius: 10px 10px 26px 26px;
  opacity: 0.08;
  transform: rotate(-5deg);
}

.hero-copy,
.hero-media,
.section-heading,
.about-card,
.trait-board,
.clip-card,
.gallery-item,
.resume-panel,
.resume-list,
.main-reel,
.mini-clip,
blockquote,
.contact-form,
.safety-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: #9b3452;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5.2vw, 4.45rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-intro {
  max-width: 690px;
  margin: 18px 0 0;
  color: #3f4b62;
  font-size: 1.12rem;
}

.hero-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.chip {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.button.primary,
.chip.active {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(36, 48, 69, 0.22);
}

.button.secondary,
.chip {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button:hover,
.button:focus-visible,
.chip:hover,
.chip:focus-visible {
  outline: 3px solid rgba(136, 216, 247, 0.45);
  outline-offset: 3px;
}

.hero-media {
  align-self: stretch;
  display: grid;
  align-items: end;
}

.hero-media img {
  width: min(100%, 420px);
  aspect-ratio: 2 / 3;
  object-fit: contain;
  border: 10px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.photo-note {
  width: min(78%, 340px);
  margin: -52px auto 0;
  padding: 16px 18px;
  color: #3a4050;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(44, 45, 80, 0.12);
}

.photo-note strong {
  display: block;
  color: var(--ink);
}

.hero-art .spark {
  position: absolute;
  display: block;
  border-radius: 999px;
  animation: floaty 6s ease-in-out infinite;
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spark-one {
  top: 24%;
  left: 4%;
  width: 90px;
  height: 90px;
  background: var(--gold);
}

.spark-two {
  top: 17%;
  right: 34%;
  width: 58px;
  height: 58px;
  background: var(--mint);
  animation-delay: -2s;
}

.spark-three {
  right: 3%;
  bottom: 22%;
  width: 76px;
  height: 76px;
  background: var(--lavender);
  animation-delay: -4s;
}

.section-heading {
  margin-bottom: 32px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
}

.about-card,
.trait-board,
.resume-panel,
.resume-list,
.safety-card,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(44, 45, 80, 0.08);
}

.about-card,
.resume-panel,
.safety-card,
.contact-form {
  padding: 28px;
}

.about-card p:last-child,
.safety-card p:last-child {
  margin-bottom: 0;
}

.trait-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.trait-board div {
  min-height: 150px;
  padding: 24px;
  background: #fff;
}

.trait-board span,
.clip-date,
.small-note {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.trait-board strong {
  display: block;
  margin-top: 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.clip-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.clip-card,
blockquote {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(44, 45, 80, 0.08);
}

.video-placeholder,
.main-reel {
  position: relative;
  display: grid;
  min-height: 180px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 132, 111, 0.88), rgba(136, 216, 247, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0 10px, transparent 10px 20px);
  border-radius: 16px;
}

.video-placeholder::before,
.main-reel::before {
  position: absolute;
  inset: auto 20% 0;
  height: 70%;
  content: "";
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7), transparent 70%);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  opacity: 0.62;
  animation: spotlight 4.2s ease-in-out infinite alternate;
}

.clip-video {
  display: block;
  width: 100%;
  min-height: 180px;
  object-fit: contain;
  background: var(--ink);
  border-radius: 16px;
}

.clip-video-landscape {
  aspect-ratio: 16 / 9;
}

.coming-soon-label {
  position: relative;
  z-index: 1;
  padding: 12px 18px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(36, 48, 69, 0.18);
}

.play-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(36, 48, 69, 0.18);
}

.play-icon::after {
  width: 0;
  height: 0;
  margin-left: 5px;
  content: "";
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--peach);
}

.play-icon.large {
  width: 80px;
  height: 80px;
}

.clip-card p {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(44, 45, 80, 0.08);
}

.gallery-item.feature {
  grid-row: span 2;
}

.gallery-item img,
.gallery-placeholder,
.gallery-video {
  width: 100%;
  min-height: 250px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-video {
  display: block;
  background: var(--ink);
}

.headshot-showcase {
  margin-top: 28px;
}

.headshot-showcase h3 {
  margin-bottom: 14px;
}

.headshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.headshot-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(44, 45, 80, 0.08);
}

.headshot-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  background: #eef5f1;
}

.gallery-item.feature img {
  min-height: 530px;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  background: #eef5f1;
}

.gallery-placeholder {
  background:
    radial-gradient(circle at 72% 28%, #fff 0 7%, transparent 8%),
    linear-gradient(135deg, var(--sky), var(--mint));
}

.gallery-placeholder.script {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 48%, rgba(36, 48, 69, 0.1) 49% 51%, transparent 52%),
    repeating-linear-gradient(0deg, #fff 0 22px, #e8f5ff 22px 24px);
}

.gallery-placeholder.dance {
  background:
    radial-gradient(circle at 30% 30%, #fff 0 10%, transparent 11%),
    conic-gradient(from 70deg, var(--peach), var(--gold), var(--lavender), var(--sky), var(--peach));
}

.gallery-placeholder.spotlight {
  background:
    radial-gradient(ellipse at center bottom, rgba(255, 255, 255, 0.8), transparent 48%),
    linear-gradient(135deg, #23304a, #6d5cc5 50%, #ff846f);
}

figcaption {
  padding: 14px 16px 16px;
  color: #3f4b62;
  font-size: 0.95rem;
  font-weight: 800;
}

.resume-layout,
.contact-layout,
.reel-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: start;
}

.resume-panel {
  position: sticky;
  top: 100px;
}

.resume-panel .button {
  margin-top: 18px;
}

.resume-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.resume-list {
  padding: 22px;
}

.resume-list ul {
  padding-left: 22px;
  margin-bottom: 0;
}

.main-reel {
  min-height: 430px;
  color: #fff;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}

.main-reel p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  font-size: 1.2rem;
  font-weight: 900;
}

.supporting-clips {
  display: grid;
  gap: 16px;
}

.mini-clip {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.mini-clip span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--peach);
  border-radius: 50%;
}

.mini-clip p,
blockquote p {
  margin: 6px 0 0;
}

blockquote {
  margin: 0;
}

blockquote p {
  font-size: 1.05rem;
  font-weight: 700;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-ink);
  font-weight: 900;
}

.contact-form label:nth-last-of-type(1),
.contact-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-ink);
  outline: 3px solid rgba(136, 216, 247, 0.35);
}

.safety-card {
  background: #f1fbff;
}

.social-placeholders {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-placeholders a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  background: var(--ink);
  border-radius: 50%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px max(20px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: var(--ink);
}

.site-footer a {
  font-weight: 900;
}

.opening-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 200, 77, 0.35), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(136, 216, 247, 0.34), transparent 24%),
    linear-gradient(135deg, #fffaf0 0%, #fff0ec 47%, #eaf8ff 100%);
}

.opening {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.72fr);
  width: min(1160px, calc(100% - 40px));
  min-height: 100vh;
  align-items: center;
  gap: 46px;
  margin: 0 auto;
  padding: 64px 0;
}

.opening-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.curtain {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 16vw;
  min-width: 90px;
  opacity: 0.18;
  background:
    repeating-linear-gradient(90deg, rgba(155, 52, 82, 0.36) 0 18px, rgba(255, 132, 111, 0.2) 18px 34px),
    linear-gradient(180deg, var(--peach), #9b3452);
}

.curtain-left {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.curtain-right {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 22% 100%);
}

.opening-light {
  position: absolute;
  top: 2%;
  width: 34%;
  height: 92%;
  opacity: 0.44;
  background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.18) 38%, transparent 70%);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  animation: spotlight 4.6s ease-in-out infinite alternate;
}

.opening-light-one {
  left: 8%;
  transform: rotate(7deg);
}

.opening-light-two {
  right: 10%;
  animation-delay: -1.8s;
  transform: rotate(-7deg);
}

.opening-star {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--gold);
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
  animation: floaty 5s ease-in-out infinite;
}

.star-one {
  top: 18%;
  left: 42%;
}

.star-two {
  right: 5%;
  bottom: 26%;
  background: var(--lavender);
  animation-delay: -1.2s;
}

.star-three {
  bottom: 16%;
  left: 9%;
  background: var(--mint);
  animation-delay: -2.4s;
}

.opening-content,
.opening-photo {
  position: relative;
  z-index: 1;
}

.opening-content {
  max-width: 680px;
  padding: 34px 0;
}

.opening-content h1 {
  font-size: clamp(3.15rem, 7vw, 6.2rem);
}

.opening-content p:not(.eyebrow) {
  max-width: 590px;
  margin: 20px 0 0;
  color: #3f4b62;
  font-size: 1.18rem;
}

.opening-button {
  margin-top: 30px;
  min-width: 210px;
}

.opening-photo {
  display: grid;
  justify-items: center;
}

.opening-photo img {
  width: min(100%, 430px);
  aspect-ratio: 2 / 3;
  object-fit: contain;
  border: 10px solid #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.opening-badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(92%, 360px);
  margin-top: -34px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(36, 48, 69, 0.12);
}

.opening-badge span {
  color: var(--blue-ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes spotlight {
  from {
    transform: translateX(-8%) skewX(-3deg);
  }
  to {
    transform: translateX(8%) skewX(3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .about-grid,
  .resume-layout,
  .reel-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .clip-grid,
  .testimonial-grid,
  .headshot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .resume-panel {
    position: static;
  }

  .contact-layout {
    gap: 18px;
  }

  .opening {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 44px;
  }

  .opening-content {
    max-width: 720px;
    padding: 0;
  }

  .opening-photo img {
    width: min(100%, 360px);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .section-band,
  .section-wrap {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .opening {
    width: min(100% - 32px, 560px);
    padding-top: 36px;
    padding-bottom: 50px;
  }

  .opening-content h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .opening-content p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .opening-button {
    width: 100%;
  }

  .opening-photo img {
    border-width: 7px;
    border-radius: 22px;
  }

  .opening-badge {
    width: calc(100% - 22px);
    border-radius: 18px;
  }

  .hero-intro {
    font-size: 1.05rem;
  }

  .hero-media img {
    border-width: 7px;
    border-radius: 22px;
  }

  .photo-note {
    width: calc(100% - 26px);
  }

  .trait-board,
  .resume-columns,
  .contact-form,
  .clip-grid,
  .testimonial-grid,
  .gallery-grid,
  .headshot-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.feature {
    grid-row: auto;
  }

  .gallery-item.feature img,
  .main-reel {
    min-height: 330px;
  }

  .contact-form label:nth-last-of-type(1),
  .contact-form button {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.directors-player { position: relative; }
.directors-player video { display: block; }
.directors-play { position: absolute; inset: 0; display: grid; place-items: center; width: 100%; border: 0; border-radius: 16px; background: transparent; cursor: pointer; }
.directors-play[hidden], .directors-error[hidden] { display: none; }
.directors-play:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
