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

:root {
  --black: #0a0a0a;
  --off-black: #111;
  --dark: #1a1a1a;
  --mid: #444;
  --muted: #888;
  --light: #ccc;
  --off-white: #f5f4f0;
  --white: #fff;
  --accent: #c8a96e;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 2rem;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 0.45rem 1rem;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--black); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/ax-sharma-bbc-news-interview-closeup.webp');
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(20%);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.2) 0%,
    rgba(10,10,10,0.4) 40%,
    rgba(10,10,10,0.85) 75%,
    rgba(10,10,10,0.97) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 2rem 4rem;
  max-width: 900px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-name {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-name em {
  font-style: italic;
  color: var(--accent);
}
.hero-descriptor {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-descriptor strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.hero-descriptor a, .about-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.hero-descriptor a:hover, .about-body a:hover {
  border-bottom-color: var(--accent);
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--white);
  color: var(--black);
  padding: 0.8rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  padding: 0.8rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-scroll-hint {
  position: absolute; bottom: 1.5rem; right: 2rem; z-index: 2;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-lr;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* MEDIA BAR */
.media-bar {
  background: var(--black);
  padding: 1rem 2rem;
  display: flex; align-items: center;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.media-bar::-webkit-scrollbar { display: none; }
.media-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.media-outlets {
  display: flex; flex-wrap: nowrap;
}
.media-outlet {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  padding: 0 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
  cursor: default;
}
.media-outlet:last-child { border-right: none; }
.media-outlet:hover { color: var(--accent); }

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--off-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.stat {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}
.stat::before {
  content: '';
  position: absolute; top: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat:hover::before { opacity: 1; }

/* SECTIONS */
.section-inner { padding: 5rem 2rem; max-width: 900px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.about-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
}
.about-body p + p { margin-top: 1rem; }
.about-body strong { color: var(--black); font-weight: 500; }
.about-aside { display: flex; flex-direction: column; gap: 0.75rem; }
.role-chip {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 0.82rem;
  color: var(--mid);
  background: var(--white);
  transition: all 0.2s;
}
.role-chip:hover { border-color: var(--accent); color: var(--black); }
.role-chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* TV SECTION */
.tv-section { background: var(--black); padding: 5rem 0; }
.tv-inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.tv-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.tv-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

/* 2x2 TV grid */
.tv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.tv-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.tv-card-bg {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: grayscale(25%) brightness(0.55);
  transition: filter 0.4s, transform 0.5s;
}
.tv-card:hover .tv-card-bg {
  filter: grayscale(0%) brightness(0.7);
  transform: scale(1.03);
}
.tv-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.0) 100%);
  padding: 1.25rem;
}
.tv-show-network {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.tv-show-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}
.tv-show-detail {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.2rem;
}
.tv-card-arrow {
  position: absolute; top: 1rem; right: 1rem;
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.tv-card:hover .tv-card-arrow { opacity: 1; }

/* WORK */
.work-section { background: var(--off-white); }
.work-list { display: flex; flex-direction: column; }
.work-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.work-item:last-child { border-bottom: none; }
.work-outlet {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.2rem;
  line-height: 1.4;
}
.work-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  text-decoration: none;
}
.work-title:hover { color: var(--accent); }
.work-meta { font-size: 0.78rem; color: var(--muted); white-space: nowrap; }

/* DISCLOSURES */
.disclosures-section { background: var(--white); }
.disclosures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  margin-top: 2rem;
}
.disclosure-item {
  padding: 1.5rem;
  background: var(--white);
  transition: background 0.2s;
}
.disclosure-item:hover { background: var(--off-white); }
.disclosure-org {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.disclosure-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
a.disclosure-title:hover { color: var(--accent); }
.disclosure-detail { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }
.disclosure-detail a {
  color: var(--mid);
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.2);
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.disclosure-detail a:hover { color: var(--black); }

/* CONTACT */
.contact-section {
  background: var(--black);
  padding: 5rem 2rem;
  text-align: center;
}
.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.contact-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.45); margin-bottom: 2.5rem; }
.contact-sub a {
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.4);
  transition: border-color 0.2s;
}
.contact-sub a:hover { border-bottom-color: var(--accent); }
.contact-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.contact-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
}
.contact-link:hover { color: var(--accent); border-color: var(--accent); }

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-link { font-size: 0.72rem; color: rgba(255,255,255,0.25); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-link:hover { color: var(--accent); }

/* MOBILE */
@media (max-width: 700px) {
  nav { padding: 0.9rem 1.25rem; }
  .nav-links { display: none; }
  .hero-content { padding: 5rem 1.25rem 3rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tv-grid { grid-template-columns: 1fr; gap: 1px; }
  .work-item { grid-template-columns: 1fr; gap: 0.25rem; }
  .work-meta { display: none; }
  .disclosures-grid { grid-template-columns: 1fr; }
  .section-inner { padding: 3rem 1.25rem; }
}

/* FADE IN */
.fade-in {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
