/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --text: #e8e4df;
  --text-muted: #8a8580;
  --text-dim: #5a5651;
  --accent: #c9a96e;
  --accent-dim: rgba(201, 169, 110, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.75;
}

em {
  font-style: italic;
  color: var(--text);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 72px;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
}

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

.nav-links a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px 48px 36px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('hero.jpg') center 20% / cover no-repeat;
  background-color: var(--bg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.1) 40%,
    rgba(10, 10, 10, 0.6) 80%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hero-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Sections ===== */
.section {
  padding: 120px 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

/* ===== About ===== */
.about {
  background: var(--bg);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.about-photo img {
  width: 100%;
  display: block;
}

.about-bio {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
}

.about-details {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail {
  display: flex;
  gap: 24px;
}

.detail-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  min-width: 100px;
  padding-top: 2px;
}

.detail-value {
  font-size: 15px;
  color: var(--text-muted);
}

/* ===== Credits ===== */
.credits {
  background: var(--bg-elevated);
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

.credit-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.3s;
}

.credit-card:hover {
  background: #1c1c1c;
}

.credit-featured {
  grid-column: 1 / -1;
  border-left: 2px solid var(--accent);
  background: var(--accent-dim);
}

.credit-featured:hover {
  background: rgba(201, 169, 110, 0.2);
}

.credit-network {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.credit-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.credit-role {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.credit-type {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: 8px;
}

.credit-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

.credits-imdb {
  margin-top: 40px;
  text-align: center;
}

.credits-imdb a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.credits-imdb a:hover {
  color: var(--accent);
  border-color: var(--accent);
  opacity: 1;
}

/* ===== Reel ===== */
.reel {
  background: var(--bg);
}

.reel-container {
  margin-bottom: 64px;
}

.reel-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.reel-play svg {
  opacity: 0.5;
}

.reel-coming {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* When reel is ready, replace .reel-placeholder with:
   .reel-container iframe,
   .reel-container video {
     width: 100%;
     aspect-ratio: 16 / 9;
     display: block;
     border: none;
   }
*/

.reel-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.highlight h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.highlight p {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.highlight-desc {
  margin-top: 12px;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  color: var(--text-muted) !important;
  line-height: 1.7;
}

/* ===== Press ===== */
.press {
  background: var(--bg-elevated);
}

.award {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px;
  background: var(--accent-dim);
  border-left: 2px solid var(--accent);
  margin-bottom: 48px;
}

.award-year {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.award-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.award-info p {
  font-size: 14px;
  color: var(--text-muted);
}

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

.press-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 32px;
  background: var(--bg-card);
  transition: background 0.3s;
}

.press-item:hover {
  background: #1c1c1c;
  opacity: 1;
}

.press-outlet {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.press-desc {
  font-size: 15px;
  color: var(--text-muted);
}

/* ===== Contact ===== */
.contact {
  background: var(--bg);
  padding-bottom: 80px;
}

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

.contact-card h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.contact-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-card a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--accent);
  opacity: 1;
}

/* ===== Footer ===== */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}


/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo {
    max-width: 320px;
  }

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

  .credit-featured {
    grid-column: 1;
  }

  .reel-highlights {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .award {
    flex-direction: column;
    gap: 16px;
    padding: 28px;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 48px;
  }

  .hero-tag {
    font-size: 10px;
  }

  .credit-title {
    font-size: 22px;
  }
}
