:root {
  --plum-deep:   #180C1E;
  --plum-mid:    #3A1F50;
  --plum-light:  #7B5EA7;
  --lavender:    #B8A4D4;
  --mauve:       #9B7ABF;
  --rose:        #C4917A;
  --gold:        #C9A84C;
  --cream:       #F5EDE0;
  --cream-light: #FDFAF7;
  --white:       #FFFFFF;
  --text-dark:   #1A0F2E;
  --text-mid:    #4A3570;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Grain texture */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1rem 3.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.5s, box-shadow 0.5s;
}
nav.scrolled {
  background: rgba(18, 8, 28, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(245,237,224,0.65); text-decoration: none;
  font-size: 0.73rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--plum-deep);
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}
.orb-1 { width:600px;height:600px; background:radial-gradient(circle,#7B5EA788,transparent); top:-180px;left:-150px; animation-duration:18s; }
.orb-2 { width:450px;height:450px; background:radial-gradient(circle,#B8A4D433,transparent); bottom:-100px;right:-80px; animation-direction:alternate-reverse; animation-duration:13s; }
.orb-3 { width:350px;height:350px; background:radial-gradient(circle,#C9A84C1A,transparent); top:50%;left:52%; animation-duration:22s; }
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(38px,28px) scale(1.09); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
  max-width: 900px;
}
.hero-logo {
  height: 280px; width: auto; display: block;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.85)) drop-shadow(0 0 34px rgba(255,255,255,0.45));
  opacity: 0; animation: fadeUp 1s 0.2s forwards;
}
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s 0.4s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 1.04; color: var(--white); font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s 0.6s forwards;
}
.hero-title em { font-style: italic; color: var(--lavender); }
.hero-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(245,237,224,0.5); font-weight: 300;
  letter-spacing: 0.06em; margin-bottom: 3rem;
  max-width: 540px; margin-left: auto; margin-right: auto;
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1s forwards;
}
.btn-outline {
  display: inline-block; padding: 0.9rem 2.4rem;
  border: 1.5px solid var(--gold); color: var(--gold);
  text-decoration: none; font-size: 0.73rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--plum-deep); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block; padding: 0.9rem 2.4rem;
  border: 1.5px solid rgba(245,237,224,0.2); color: rgba(245,237,224,0.6);
  text-decoration: none; font-size: 0.73rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-ghost:hover { border-color: rgba(245,237,224,0.5); color: var(--white); transform: translateY(-2px); }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(245,237,224,0.3); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  animation: scrollBounce 2.5s 2s ease-in-out infinite;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(245,237,224,0.3), transparent);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── WAVE ── */
.wave { display:block; overflow:hidden; line-height:0; }
.wave svg { display:block; width:100%; height:70px; }

/* ── FEATURED FILM ── */
.section-featured {
  background: var(--cream-light);
  padding: 7rem 3.5rem;
}
.featured-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.featured-poster {
  position: relative;
}
.featured-poster img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 30px 80px rgba(100,60,160,0.22), 0 8px 24px rgba(0,0,0,0.12);
  display: block;
}
.featured-poster-badge {
  position: absolute; top: -1rem; right: -1rem;
  background: var(--plum-mid); color: var(--gold);
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  padding: 0.5rem 1rem; border-radius: 2px;
}
.featured-content { }
.featured-label {
  font-size: 0.68rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--mauve);
  font-weight: 500; margin-bottom: 1rem;
}
.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--plum-deep); font-weight: 700;
  line-height: 1.1; margin-bottom: 0.5rem;
}
.featured-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--mauve);
  font-style: italic; margin-bottom: 1.75rem;
}
.featured-desc {
  font-size: 1rem; color: var(--text-mid);
  line-height: 1.8; font-weight: 300;
  margin-bottom: 2rem;
}
.featured-meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.meta-item { }
.meta-label {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mauve);
  font-weight: 500; margin-bottom: 0.25rem;
}
.meta-value {
  font-size: 0.88rem; color: var(--text-dark); font-weight: 500;
}
.featured-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--plum-mid); color: var(--cream);
  text-decoration: none; font-size: 0.73rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
}
.featured-cta:hover { background: var(--plum-light); transform: translateY(-2px); }
.featured-cta svg { flex-shrink: 0; }

.section-header { text-align:center; margin-bottom:3.5rem; }
.eyebrow {
  font-size: 0.68rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--mauve);
  font-weight: 500; margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--plum-deep); font-weight: 700; line-height: 1.15;
}
.section-title em { font-style:italic; color:var(--mauve); }

/* ── ABOUT ── */
.section-about {
  background: var(--plum-deep);
  padding: 8rem 3.5rem;
  position: relative; overflow: hidden;
}
.section-about::before {
  content:''; position:absolute;
  width:700px; height:700px;
  background: radial-gradient(circle, rgba(123,94,167,0.25), transparent 70%);
  top:-300px; left:-200px; border-radius:50%;
}
.section-about::after {
  content:''; position:absolute;
  width:500px; height:500px;
  background: radial-gradient(circle, rgba(184,164,212,0.1), transparent 70%);
  bottom:-200px; right:-150px; border-radius:50%;
}
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 6rem; align-items: center; position: relative; z-index: 2;
}
.about-left { }
.about-left .eyebrow { color: var(--gold); }
.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white); font-weight: 700; line-height: 1.15;
  margin-bottom: 0.5rem;
}
.about-heading em { font-style: italic; color: var(--lavender); }
.about-year {
  font-size: 5rem; font-weight: 700;
  color: rgba(184,164,212,0.12);
  font-family: 'Playfair Display', serif;
  line-height: 1; margin-top: 1rem;
}
.about-right { }
.about-text {
  font-size: 1rem; color: rgba(245,237,224,0.65);
  line-height: 1.9; font-weight: 300;
}
.about-text p + p { margin-top: 1.2rem; }
.about-text strong { color: var(--lavender); font-weight: 500; }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--gold); font-weight: 700;
}
.stat-label {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,237,224,0.35);
  font-weight: 500; margin-top: 0.25rem;
}

/* ── TEAM ── */
.section-team {
  background: var(--cream-light);
  padding: 7rem 3.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem; max-width: 1100px; margin: 0 auto;
}
.team-card {
  text-align: center; padding: 2rem 1.25rem;
  background: var(--white); border-radius: 12px;
  box-shadow: 0 10px 40px rgba(100,60,160,0.08);
}
.team-avatar {
  width: 84px; height: 84px; border-radius: 50%;
  margin: 0 auto 1.1rem;
  background: linear-gradient(135deg, var(--plum-mid), var(--plum-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--cream);
}
.team-avatar.team-photo {
  object-fit: cover; display: block;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--plum-deep);
  margin-bottom: 0.3rem;
  text-decoration: none;
}
a.team-name:hover { color: var(--plum-light); text-decoration: underline; }
.team-role {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mauve); font-weight: 600; margin-bottom: 0.9rem;
}
.team-bio {
  font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; font-weight: 300;
  text-align: left;
}
.team-bio-note {
  font-size: 0.8rem; color: var(--mauve); font-style: italic;
}

.collaborators {
  max-width: 1100px; margin: 7rem auto 0;
  text-align: center; padding-top: 5rem;
  border-top: 1px solid rgba(123,94,167,0.15);
}
.collaborators-label {
  font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--mauve);
  font-weight: 500; margin-bottom: 2.25rem;
}
.collaborators-list {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 3.5rem 7rem;
}
.collaborator-name {
  padding: 1.1rem 2.5rem;
  border: 1px solid rgba(123,94,167,0.2); border-radius: 100px;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.4rem; color: var(--text-mid);
  text-decoration: none; display: inline-block;
  transition: border-color 0.3s, color 0.3s;
}
a.collaborator-name:hover {
  border-color: var(--plum-light); color: var(--plum-mid);
}
.collaborator-logo-link { display: inline-flex; align-items: center; }
.collaborator-logo {
  height: 110px; width: auto;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s;
}
.collaborator-logo-link:hover .collaborator-logo {
  filter: grayscale(0) opacity(1);
}

/* ── CONTACT ── */
.section-contact {
  background: var(--cream-light);
  padding: 8rem 3.5rem 7rem;
  position: relative; overflow: hidden;
}
.section-contact::before {
  content:''; position:absolute;
  width:500px; height:500px;
  background: radial-gradient(circle, rgba(123,94,167,0.08), transparent 70%);
  top:-200px; right:-100px; border-radius:50%;
}
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 6rem; align-items: start; position: relative; z-index: 2;
}
.contact-left { }
.contact-left .eyebrow { color: var(--mauve); }
.contact-left .section-title { color: var(--plum-deep); }
.contact-left .section-title em { color: var(--mauve); }
.contact-sub {
  color: var(--text-mid); font-size: 0.95rem;
  line-height: 1.75; margin: 1.25rem 0 2.5rem; font-weight: 300;
}
.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 0.85rem;
}
.detail-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(123,94,167,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--mauve);
}
.detail-text { }
.detail-label {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mauve); font-weight: 600;
}
.detail-value {
  font-size: 0.9rem; color: var(--text-dark); font-weight: 400;
}
.detail-value a {
  color: inherit; text-decoration: none;
}
.detail-value a:hover {
  color: var(--plum-light); text-decoration: underline;
}
.socials {
  display: flex; gap: 1rem; margin-top: 2rem;
}
.social-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(123,94,167,0.25);
  border-radius: 100px; text-decoration: none;
  color: var(--text-mid); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  transition: all 0.3s;
}
.social-btn:hover {
  background: var(--plum-mid); border-color: var(--plum-mid);
  color: var(--cream);
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 1rem 1.2rem;
  background: rgba(123,94,167,0.05);
  border: 1px solid rgba(123,94,167,0.15);
  border-radius: 6px; color: var(--text-dark);
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
  outline: none; transition: border-color 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(74,53,112,0.4); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--plum-light); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.btn-send {
  padding: 1.05rem;
  background: var(--plum-mid); border: none; border-radius: 6px;
  color: var(--cream); font-family: 'Inter', sans-serif;
  font-size: 0.73rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
  cursor: pointer; transition: background 0.3s, transform 0.2s;
}
.btn-send:hover { background: var(--plum-light); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--plum-deep);
  padding: 2rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-brand img {
  height: 34px; display: block;
  background: var(--white);
  border-radius: 6px;
  padding: 4px 7px;
  opacity: 0.9;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem; color: rgba(245,237,224,0.28);
  letter-spacing: 0.1em;
}
.footer-copy {
  font-size: 0.68rem; color: rgba(245,237,224,0.18); letter-spacing: 0.05em;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .section-featured, .section-about, .section-team, .section-contact { padding: 5rem 1.5rem; }
  .featured-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .featured-poster { max-width: 380px; margin: 0 auto; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}
