/* ====================================================================
   THE YOUNG IMAM — Sabah Ahmedi
   v2 — Premium dark editorial, saffron accent
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  --black: #0B0B0C;
  --surface: #161618;
  --surface-2: #1F1F22;
  --cream: #F4F1EA;
  --cream-soft: #D8D2C5;
  --muted: #8A847C;
  --line: rgba(244, 241, 234, 0.1);
  --line-strong: rgba(244, 241, 234, 0.22);
  --saffron: #F5B82E;
  --saffron-deep: #C99526;
  --saffron-glow: rgba(245, 184, 46, 0.15);

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Instrument Sans', system-ui, sans-serif;

  --max: 1440px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
}

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

html { scroll-behavior: smooth; background: var(--black); }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle grain overlay for warmth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.em {
  font-style: italic;
  color: var(--saffron);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--saffron);
  display: inline-block;
}

/* ============ LAYOUT ============ */

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }

section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }

/* ============ NAV ============ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.brand em { color: var(--saffron); font-style: italic; font-weight: 300; }

.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.92rem; font-weight: 500; transition: color 0.2s; color: var(--cream-soft); }
.nav-links a:hover { color: var(--saffron); }

.nav-cta {
  background: var(--saffron);
  color: var(--black) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--cream); transform: translateY(-1px); }

.menu-btn { display: none; background: none; border: 0; padding: 0.4rem; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: 0.3s; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
}

/* ============ HERO — FULL BLEED MAGAZINE COVER ============ */

.hero {
  position: relative;
  min-height: 88vh;
  max-height: 900px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.3) 0%, transparent 30%, transparent 50%, rgba(11,11,12,0.92) 100%),
    linear-gradient(90deg, rgba(11,11,12,0.55) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 6vw, 5rem);
}

.hero-text .eyebrow { margin-bottom: 1.6rem; color: var(--saffron); }
.hero-text .eyebrow::before { background: var(--saffron); }

.hero h1 {
  font-size: clamp(3.2rem, 9.5vw, 8.5rem);
  font-weight: 300;
  margin-bottom: 1.6rem;
  letter-spacing: -0.04em;
  line-height: 0.92;
  max-width: 14ch;
  color: var(--cream);
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  line-height: 1.35;
  color: var(--cream-soft);
  margin-bottom: 2.4rem;
  max-width: 34ch;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--sans);
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary { background: var(--saffron); color: var(--black); }
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 20px 40px -20px rgba(245, 184, 46, 0.5); }

.btn-ghost { background: rgba(11,11,12,0.4); color: var(--cream); border-color: var(--cream); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: var(--cream); color: var(--black); border-color: var(--cream); transform: translateY(-2px); }

.btn-arrow { transition: transform 0.25s; display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-badge {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 3;
  background: var(--saffron);
  color: var(--black);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--black);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

@media (max-width: 720px) {
  .hero { min-height: 92vh; }
  .hero-badge { font-size: 0.6rem; padding: 0.4rem 0.7rem; }
}

/* ============ STATS BAR ============ */

.stats-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 1.6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat .num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.stat .num .em { font-style: italic; color: var(--saffron); font-weight: 300; }
.stat .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem 1rem; }
}

/* ============ PRESS MARQUEE ============ */

.press-strip {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.press-label {
  text-align: center;
  margin-bottom: 2.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  animation: scroll 35s linear infinite;
  padding-right: clamp(2rem, 5vw, 4rem);
  flex-shrink: 0;
  align-items: center;
}
@keyframes scroll { to { transform: translateX(-50%); } }

.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.marquee-track .italic { font-style: italic; font-weight: 400; }
.marquee-track .dot {
  width: 6px; height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ LATEST ============ */

.latest-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 3rem;
  gap: 2rem;
}
.latest-head h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-top: 1rem;
}
.latest-head .view-all {
  color: var(--cream-soft);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.3rem;
}
.latest-head .view-all:hover { color: var(--saffron); border-color: var(--saffron); }

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.latest-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.latest-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}

.latest-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}
.latest-img img { width: 100%; height: 100%; object-fit: cover; }

.latest-body { padding: 1.5rem; }
.latest-body .meta {
  display: flex;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.latest-body .meta .date { color: var(--muted); font-weight: 500; }
.latest-body h3 {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.latest-body p {
  font-size: 0.92rem;
  color: var(--cream-soft);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .latest-grid { grid-template-columns: 1fr; }
  .latest-head { flex-direction: column; align-items: flex-start; }
}

/* ============ INTRO ============ */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.intro-image {
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; }

.intro-text h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  margin: 1rem 0 2rem;
  font-weight: 300;
}

.intro-text p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--cream-soft);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.intro-text .btn { margin-top: 1.2rem; }

@media (max-width: 820px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ============ WHAT I DO ============ */

.what h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 1rem 0 3.5rem;
  max-width: 14ch;
  font-weight: 300;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.what-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem 1.7rem;
  background: var(--surface);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.what-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.what-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.what-card:hover::before { transform: scaleX(1); }

.what-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--saffron);
  margin-bottom: 2.8rem;
  display: block;
  font-weight: 300;
}

.what-card h3 {
  color: var(--cream);
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.what-card p {
  font-size: 0.92rem;
  color: var(--cream-soft);
  line-height: 1.55;
}

@media (max-width: 820px) { .what-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .what-grid { grid-template-columns: 1fr; } }

/* ============ SHOWREEL ============ */

.showreel {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.showreel h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 1rem 0 2rem;
  max-width: 18ch;
  font-weight: 300;
}

.showreel-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
  margin-top: 1rem;
  cursor: pointer;
}
.showreel-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.showreel-wrap iframe { width: 100%; height: 100%; border: 0; }
.showreel-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,11,12,0.55));
  pointer-events: none;
  z-index: 1;
}
.showreel-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.showreel-play::after {
  content: '';
  border: 14px solid transparent;
  border-left: 22px solid var(--black);
  margin-left: 6px;
}
.showreel-wrap:hover .showreel-play { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 0 12px rgba(245,184,46,0.15); }

.showreel-caption {
  position: absolute;
  left: 2rem; bottom: 2rem;
  z-index: 2;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  max-width: 50%;
}
@media (max-width: 720px) { .showreel-caption { display: none; } .showreel-play { width: 70px; height: 70px; } }

/* ============ SPEAKING SECTION ============ */

.speaking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: flex-start;
}

.speaking-text h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 1rem 0 1.8rem;
  font-weight: 300;
}

.speaking-text > p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--cream-soft);
  margin-bottom: 2rem;
  max-width: 42ch;
}

.topics { list-style: none; margin-bottom: 2rem; counter-reset: topic; }
.topics li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--cream);
}
.topics li::before {
  content: counter(topic, decimal-leading-zero);
  counter-increment: topic;
  font-size: 0.7rem;
  font-family: var(--sans);
  color: var(--saffron);
  letter-spacing: 0.12em;
  font-weight: 600;
}
.topics li:last-child { border-bottom: 1px solid var(--line); }

.speaking-side {
  background: var(--surface);
  border-radius: 8px;
  padding: 2.5rem;
  border: 1px solid var(--line);
}
.speaking-side h3 { font-size: 1.7rem; margin-bottom: 1.2rem; font-weight: 400; }
.speaking-side p { font-size: 0.95rem; color: var(--cream-soft); margin-bottom: 1.5rem; }

.venue-list { list-style: none; margin-top: 1.5rem; }
.venue-list li {
  padding: 0.8rem 0;
  font-size: 0.92rem;
  color: var(--cream-soft);
  border-top: 1px solid var(--line);
}
.venue-list li:first-child { border: 0; }

@media (max-width: 820px) { .speaking-grid { grid-template-columns: 1fr; } }

/* ============ TESTIMONIALS ============ */

.testimonials {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 1rem 0 3rem;
  max-width: 18ch;
  font-weight: 300;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.test-card {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}
.test-card .quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--saffron);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1rem;
  display: block;
}
.test-card blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.test-card cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--cream-soft);
}
.test-card cite strong { display: block; color: var(--cream); font-weight: 600; margin-bottom: 0.2rem; }

@media (max-width: 820px) { .test-grid { grid-template-columns: 1fr; } }

/* ============ COLLABORATIONS ============ */

.collab-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.collab-head h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-top: 1rem; font-weight: 300; }
.collab-head p {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream-soft);
  line-height: 1.55;
  max-width: 42ch;
}

.collab-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.collab-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.25s;
}
.collab-card:hover { transform: translateY(-4px); border-color: var(--saffron); }

.collab-card h4 { font-size: 1.3rem; margin-bottom: 0.7rem; font-weight: 400; }
.collab-card p { font-size: 0.92rem; color: var(--cream-soft); line-height: 1.55; }

@media (max-width: 820px) { .collab-head { grid-template-columns: 1fr; } .collab-cards { grid-template-columns: 1fr; } }

/* ============ WATCH LISTEN ============ */

.watch h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 1rem 0 2.5rem;
  max-width: 16ch;
  font-weight: 300;
}

.watch-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; }

.video-wrap {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }

.podcast-stack { display: flex; flex-direction: column; gap: 1rem; }

.pod-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem 1.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s;
}
.pod-card:hover { transform: translateY(-3px); border-color: var(--saffron); }
.pod-card h4 { font-size: 1.3rem; margin: 0.7rem 0 1rem; font-weight: 400; }
.pod-card .listen { font-size: 0.88rem; font-weight: 600; color: var(--saffron); }

@media (max-width: 820px) { .watch-grid { grid-template-columns: 1fr; } }

/* ============ INSTAGRAM ============ */

.insta-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.insta-head h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-top: 1rem; font-weight: 300; }
.insta-head a { font-weight: 600; color: var(--saffron); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
}
.insta-tile {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
@media (max-width: 820px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============ AWARDS ============ */

.awards h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 1rem 0 3rem;
  max-width: 18ch;
  font-weight: 300;
}

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

.award-card { border-top: 2px solid var(--saffron); padding-top: 1.5rem; }
.award-card .yr {
  font-family: var(--serif);
  font-style: italic;
  color: var(--saffron);
  font-size: 0.95rem;
  font-weight: 300;
}
.award-card h4 { font-size: 1.4rem; margin: 0.5rem 0 0.7rem; font-weight: 400; }
.award-card p { font-size: 0.92rem; color: var(--cream-soft); line-height: 1.5; }

@media (max-width: 820px) { .award-grid { grid-template-columns: 1fr; } }

/* ============ NEWSLETTER ============ */

.newsletter {
  background: var(--saffron);
  color: var(--black);
}

.newsletter::before { display: none; }
.newsletter .eyebrow { color: var(--black); }
.newsletter .eyebrow::before { background: var(--black); }

.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.newsletter h2 {
  color: var(--black);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 1rem 0 1.2rem;
  font-weight: 300;
}
.newsletter h2 em { font-style: italic; color: var(--black); }
.newsletter p { font-family: var(--serif); font-size: 1.15rem; color: var(--black); max-width: 42ch; line-height: 1.55; }

.news-form {
  background: var(--black);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 520px;
  margin-left: auto;
}
.news-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.9rem 0;
  outline: none;
}
.news-form input::placeholder { color: var(--muted); }
.news-form button {
  background: var(--saffron);
  color: var(--black);
  border: 0;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
}
.news-form button:hover { background: var(--cream); }

@media (max-width: 820px) {
  .news-grid { grid-template-columns: 1fr; gap: 2rem; }
  .news-form { margin-left: 0; }
}

/* ============ PRESS KIT ============ */

.press-kit {
  background: var(--black);
  text-align: center;
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-kit h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem auto 1rem;
  max-width: 22ch;
  font-weight: 300;
}
.press-kit p {
  font-family: var(--serif);
  color: var(--cream-soft);
  max-width: 48ch;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ============ CONTACT ============ */

.contact {
  background: var(--black);
}
.contact h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  margin: 1rem 0 1.5rem;
  max-width: 18ch;
  font-weight: 300;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: flex-start; }
.contact-text p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--cream-soft);
  margin-bottom: 1.5rem;
  max-width: 38ch;
}
.contact-text .direct { font-family: var(--sans); font-size: 0.9rem; color: var(--muted); margin-top: 2rem; }

.contact form { display: grid; gap: 1.1rem; }
.contact .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.contact label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.contact input, .contact textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.7rem 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.contact input:focus, .contact textarea:focus { border-bottom-color: var(--saffron); }
.contact textarea { min-height: 110px; resize: vertical; line-height: 1.5; }

.contact button {
  justify-self: start;
  background: var(--saffron);
  color: var(--black);
  border: 0;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.6rem;
  transition: all 0.2s;
}
.contact button:hover { background: var(--cream); transform: translateY(-2px); }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact .row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */

footer {
  background: var(--black);
  color: var(--cream-soft);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}

.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }

.foot-brand { font-family: var(--serif); font-size: 1.7rem; color: var(--cream); margin-bottom: 0.7rem; }
.foot-brand em { color: var(--saffron); font-weight: 300; font-style: italic; }
.foot-tag { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 0.95rem; max-width: 32ch; font-weight: 300; }

.foot-col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.foot-col ul { list-style: none; }
.foot-col li { padding: 0.3rem 0; }
.foot-col a { font-size: 0.92rem; color: var(--cream-soft); transition: color 0.2s; }
.foot-col a:hover { color: var(--saffron); }

.foot-bar {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.8rem;
}
.foot-bar a { color: var(--saffron); }

@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ============ PAGE HEADERS (sub-pages) ============ */

.page-head { padding: clamp(4rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; margin: 1rem 0; }
.page-head p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--cream-soft);
  max-width: 48ch;
  line-height: 1.5;
  font-weight: 300;
}

/* ============ ABOUT BODY ============ */

.about-body { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 6vw, 5rem); }

.about-portrait {
  aspect-ratio: 4/5;
  background: var(--surface);
  border-radius: 6px;
  overflow: hidden;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

.about-prose h3 { font-size: 1.7rem; font-weight: 400; margin: 2.5rem 0 1rem; }
.about-prose h3:first-child { margin-top: 0; }
.about-prose p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--cream-soft);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2.5rem 0; }
.fact { border-top: 2px solid var(--saffron); padding-top: 1rem; }
.fact .label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.fact .val { font-family: var(--serif); font-size: 1.4rem; margin-top: 0.3rem; font-weight: 400; }

@media (max-width: 820px) {
  .about-body { grid-template-columns: 1fr; }
  .about-portrait { position: static; }
}

/* ============ PRESS PAGE ============ */

.press-year {
  font-family: var(--serif);
  font-style: italic;
  color: var(--saffron);
  font-size: 1.1rem;
  margin: 3rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
  font-weight: 300;
}

.press-list { list-style: none; }
.press-list li {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  transition: padding 0.2s;
}
.press-list li:hover { padding-left: 0.8rem; }
.press-list .outlet {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
}
.press-list .title { font-family: var(--serif); font-size: 1.2rem; color: var(--cream); }
.press-list .arrow { font-family: var(--sans); font-size: 0.85rem; color: var(--muted); white-space: nowrap; }
.press-list li:hover .arrow { color: var(--saffron); }

@media (max-width: 720px) { .press-list li { grid-template-columns: 1fr; gap: 0.3rem; } .press-list .arrow { display: none; } }

/* ============ SPEAKING PAGE ============ */

.speak-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.speak-hero-img { aspect-ratio: 4/5; background: var(--surface); border-radius: 6px; overflow: hidden; }
.speak-hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .speak-hero { grid-template-columns: 1fr; } }

.formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.format-card { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 2rem; }
.format-card h4 { font-size: 1.35rem; margin-bottom: 0.7rem; font-weight: 400; }
.format-card p { font-size: 0.95rem; color: var(--cream-soft); line-height: 1.55; }
@media (max-width: 820px) { .formats { grid-template-columns: 1fr; } }

/* ============ MOTION ============ */

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

::selection { background: var(--saffron); color: var(--black); }
