/* ============================================================
   BAGASSI KOURA — Film Distribution Pitch Site
   ============================================================ */

:root {
  --bg:         #080808;
  --surface:    #0f0f0f;
  --surface-2:  #161616;
  --gold:       #C9A84C;
  --gold-light: #E8CA7B;
  --gold-dim:   rgba(201, 168, 76, 0.15);
  --gold-border:rgba(201, 168, 76, 0.25);
  --text:       #F0EDE8;
  --muted:      #7A7570;
  --faint:      #3A3733;
  --font-d:     'Cinzel', serif;
  --font-b:     'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-d); letter-spacing: 0.04em; line-height: 1.2; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

.label {
  font-size: 0.68rem;
  font-family: var(--font-b);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  margin-bottom: 24px;
}

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

section { padding: 96px 0; }

.divider {
  height: 1px;
  background: var(--faint);
  margin: 0;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
}

nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--faint);
}

.nav-logo {
  font-family: var(--font-d);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--text);
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  text-decoration: none;
}

.nav-links a:hover { color: var(--text); }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Ship.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.12) saturate(0.4);
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-name {
  font-family: var(--font-d);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-line {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(240, 237, 232, 0.6);
  letter-spacing: 0.06em;
  margin-bottom: 52px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.btn {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(240,237,232,0.3);
}
.btn-outline:hover {
  border-color: var(--text);
  color: var(--text);
  transform: translateY(-1px);
}

.hero-credentials {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.cred-item {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.cred-dot {
  color: var(--faint);
  font-size: 0.5rem;
}

/* ── Awards Strip ── */
.awards-strip {
  background: var(--surface);
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
  padding: 24px 0;
}

.awards-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.award-icon {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.8;
}

.award-text strong {
  display: block;
  font-family: var(--font-d);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.award-text span {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── Films ── */
#films { padding-top: 112px; }

.films-header {
  margin-bottom: 72px;
}

.films-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--text);
}

/* Featured film */
.featured-film {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 96px;
}

.film-poster {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7);
  transition: filter 0.4s;
}

.film-poster:hover img { filter: saturate(1); }

.film-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-border);
  pointer-events: none;
}

.film-awards-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.award-chip {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  background: var(--gold-dim);
}

.film-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.film-title-alt {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  display: block;
}

.film-synopsis {
  font-size: 0.92rem;
  color: rgba(240,237,232,0.75);
  line-height: 1.75;
  margin-bottom: 28px;
}

.film-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--faint);
}

.spec-item {}

.spec-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}

.spec-value {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
}

.film-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Shorts grid */
.shorts-header {
  margin-bottom: 40px;
}

.shorts-header h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 8px;
}

.shorts-header p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 540px;
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.short-card {
  background: var(--surface);
  padding: 32px 28px;
  border: 1px solid var(--faint);
  transition: border-color 0.25s, background 0.25s;
  position: relative;
}

.short-card:hover {
  border-color: var(--gold-border);
  background: var(--surface-2);
}

.short-number {
  font-family: var(--font-d);
  font-size: 2.5rem;
  color: var(--faint);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.short-title {
  font-family: var(--font-d);
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.short-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.short-meta-item {
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
}

.short-meta-item strong {
  color: var(--text);
  font-weight: 500;
  min-width: 60px;
}

.short-desc {
  font-size: 0.8rem;
  color: rgba(240,237,232,0.55);
  line-height: 1.65;
}

.badge-new {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
  padding: 3px 8px;
}

/* ── Filmmaker ── */
#filmmaker { background: var(--surface); }

.filmmaker-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.filmmaker-bio h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 28px;
  color: var(--text);
}

.bio-text {
  font-size: 0.95rem;
  color: rgba(240,237,232,0.78);
  line-height: 1.8;
  margin-bottom: 16px;
}

.credentials-card {
  background: var(--surface-2);
  border: 1px solid var(--faint);
  padding: 36px 32px;
}

.credentials-card h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cred-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--faint);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cred-list li:last-child { border-bottom: none; }

.cred-name {
  font-family: var(--font-d);
  font-size: 0.8rem;
  color: var(--text);
  letter-spacing: 0.04em;
}

.cred-role {
  font-size: 0.67rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Rights ── */
#rights {}

.rights-intro {
  max-width: 600px;
  margin-bottom: 56px;
}

.rights-intro h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 16px;
}

.rights-intro p {
  font-size: 0.92rem;
  color: rgba(240,237,232,0.65);
  line-height: 1.75;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--faint);
  border: 1px solid var(--faint);
  margin-bottom: 56px;
}

.rights-cell {
  background: var(--bg);
  padding: 36px 32px;
}

.rights-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
}

.rights-cell h4 {
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.rights-cell p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}

.rights-availability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.availability-block {
  background: var(--surface);
  border: 1px solid var(--faint);
  padding: 28px 32px;
}

.availability-block h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.avail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.avail-list li {
  font-size: 0.82rem;
  color: rgba(240,237,232,0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}

.avail-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Contact ── */
#contact { background: var(--surface); }

.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 20px;
  color: var(--text);
}

.contact-info p {
  font-size: 0.88rem;
  color: rgba(240,237,232,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-targets h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.contact-targets ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-targets li {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-targets li::before {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background: var(--gold-border);
  flex-shrink: 0;
}

/* Form */
.acquisition-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface-2);
  border: 1px solid var(--faint);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.88rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-border);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--faint); }

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.form-note {
  font-size: 0.7rem;
  color: var(--muted);
}

.form-success {
  display: none;
  font-size: 0.82rem;
  color: var(--gold);
  padding: 16px;
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  margin-top: 12px;
}

/* ── Footer ── */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--faint);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-d);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-decoration: none;
}

.footer-copy {
  font-size: 0.68rem;
  color: var(--faint);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.68rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

/* ── Utilities ── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .featured-film { grid-template-columns: 1fr; gap: 40px; }
  .filmmaker-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr; }
  .rights-availability { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  nav { padding: 16px 24px; }
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .shorts-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px; }
  .film-specs { grid-template-columns: 1fr; }
  .awards-inner { gap: 28px; flex-direction: column; }
}
