/* ============================================================
   REMY BLAIRE — Shared Stylesheet
   Brand: Authoritative. Elegant. Refined.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --ivory:      #f2efe9;
  --ivory-deep: #e8e4dc;
  --navy:       #0d2240;
  --navy-mid:   #1a3a5c;
  --forest:     #1b5e3b;
  --gold:       #c4a265;
  --gold-light: #d4b87a;
  --charcoal:   #2a2a2a;
  --rule:       #d6d0c8;
  --white:      #fafaf8;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1180px;
  --pad-x: 60px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav-mobile-btn { display: none; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(242, 239, 233, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; }

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--navy);
  color: var(--navy);
  opacity: 1 !important;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover {
  background: var(--navy);
  color: var(--ivory);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--ivory);
  padding: 60px var(--pad-x) 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(242,239,233,0.12);
  margin-bottom: 32px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--ivory);
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(242,239,233,0.5);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(242,239,233,0.6);
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--ivory); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: rgba(242,239,233,0.3);
  letter-spacing: 0.06em;
}

/* ── LAYOUT HELPERS ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: 100px var(--pad-x); }
.section-sm { padding: 72px var(--pad-x); }

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section-heading em {
  font-style: italic;
  color: var(--navy-mid);
}

.rule-gold {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

.body-copy {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 640px;
}

.body-copy + .body-copy { margin-top: 20px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--navy);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--navy-mid); }

.btn-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--ivory); }

.btn-outline-ivory {
  border: 1px solid rgba(242,239,233,0.4);
  color: var(--ivory);
}
.btn-outline-ivory:hover {
  background: rgba(242,239,233,0.08);
  border-color: var(--ivory);
}

.btn-arrow::after { content: '→'; }

/* ── PAGE HERO (interior pages) ─────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  background: var(--navy);
  color: var(--ivory);
}

.page-hero-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ivory);
  max-width: 800px;
}

.page-hero-title em {
  font-style: italic;
  color: rgba(242,239,233,0.65);
}

.page-hero-sub {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(242,239,233,0.55);
  max-width: 560px;
  line-height: 1.7;
}

/* ── ARTICLE ROW (writing/media lists) ──────────────────── */
.article-list { max-width: var(--max-w); margin: 0 auto; }

.article-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 0 40px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.4s ease, opacity 0.3s ease;
  cursor: pointer;
}
.article-row:first-child { border-top: 1px solid var(--rule); }
.article-row:hover { background: rgba(232, 228, 220, 0.45); }

.article-meta {
  padding-top: 4px;
}

.article-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.article-date {
  font-size: 12px;
  color: var(--charcoal);
  opacity: 0.45;
}

.article-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}

.article-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  opacity: 0.7;
  line-height: 1.65;
  max-width: 560px;
}

.article-arrow {
  padding-top: 6px;
  font-size: 18px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.article-row:hover .article-arrow { opacity: 1; }

/* ── QUOTE BLOCK ─────────────────────────────────────────── */
.quote-section {
  background: var(--navy);
  padding: 100px var(--pad-x);
  text-align: center;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--ivory);
  opacity: 0.6;
  line-height: 0.5;
  margin-bottom: 32px;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.55;
  max-width: 780px;
  margin: 0 auto 28px;
}

.quote-attr {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CARD GRID ───────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid var(--rule);
}

.card-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 20px;
}

.card-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.card-body {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
}

/* ── PHOTO BLOCK ─────────────────────────────────────────── */
.photo-full {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-half {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center top;
}

/* ── FORM ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

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

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

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--rule);
  margin: 60px 0;
}

/* ── TAGS ────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--rule);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-right: 8px;
  margin-bottom: 8px;
}

/* ── NEWSLETTER STRIP ────────────────────────────────────── */
.newsletter-strip {
  background: var(--ivory-deep);
  padding: 72px var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.newsletter-strip .section-heading {
  font-size: 32px;
  margin-bottom: 12px;
}

.newsletter-strip p {
  font-size: 14px;
  color: var(--charcoal);
  opacity: 0.65;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--rule);
  border-right: none;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy);
  outline: none;
}

.newsletter-btn {
  padding: 14px 28px;
  background: var(--navy);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-btn:hover { background: var(--navy-mid); }

.newsletter-note {
  font-size: 11px;
  color: var(--charcoal);
  opacity: 0.4;
  margin-top: 14px;
}

/* ── CTA STRIP (global) ──────────────────────────────────── */
.cta-strip {
  padding: 120px var(--pad-x);
  text-align: center;
}
.cta-strip .section-label { text-align: center; }
.cta-strip .section-heading {
  margin: 0 auto 16px;
  max-width: 600px;
  text-align: center;
}
.cta-strip p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--charcoal);
  opacity: 0.7;
  margin: 0 auto 40px;
  max-width: 480px;
  text-align: center;
}
.cta-strip .btn { margin-top: 0; }

/* ============================================================
   RESPONSIVE — TABLET  ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-x: 40px; }

  /* ── NAV: show hamburger, hide links by default ── */
  .nav-mobile-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-mobile-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: transform 0.25s, opacity 0.2s;
  }
  .nav-mobile-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-mobile-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
  .nav-mobile-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(242,239,233,0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 20px;
    border-bottom: 1px solid var(--rule);
    z-index: 99;
    box-shadow: 0 8px 24px rgba(13,34,64,0.08);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px var(--pad-x);
    font-size: 12px;
    letter-spacing: 0.1em;
    opacity: 1;
    border-bottom: 1px solid var(--rule);
    color: var(--navy);
  }
  .nav-links a.nav-cta {
    margin: 12px var(--pad-x) 0;
    width: calc(100% - 80px);
    text-align: center;
    border: 1px solid var(--navy);
    padding: 12px var(--pad-x);
  }

  /* ── TYPOGRAPHY ── */
  .section-heading { font-size: 34px; }
  .page-hero-title { font-size: 48px; }

  /* ── SHARED GRIDS ── */
  .two-col   { grid-template-columns: 1fr; gap: 48px; }
  .three-col { grid-template-columns: 1fr 1fr; gap: 32px; }
  .card-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  /* ── ARTICLE ROWS ── */
  .article-row { grid-template-columns: 110px 1fr auto; gap: 0 20px; }

  /* ── FOOTER ── */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* ── HOME: hero ── */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 80px var(--pad-x) 64px; }
  .hero-image { height: 460px; overflow: hidden; }
  .hero-name { font-size: 80px; }

  /* ── HOME: sections ── */
  .editorial-inner { grid-template-columns: 1fr; gap: 48px; }
  .editorial-left  { position: static; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 2px; }
  .media-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .media-card.featured { grid-column: span 2; }
  .speaking-teaser { grid-template-columns: 1fr; }
  .speaking-image  { display: none; }
  .speaking-content { padding: 72px var(--pad-x); }

  /* ── ABOUT ── */
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-img { height: 440px; }
  .about-hero-img img { height: 440px; object-fit: cover; }
  .about-hero-content { padding: 56px var(--pad-x); }
  .bio-inner { grid-template-columns: 1fr; gap: 48px; }
  .bio-sidebar { position: static; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip img { height: 300px; }
  .highlight-row { grid-template-columns: 140px 1fr; gap: 32px; }

  /* ── MEDIA PAGE ── */
  .media-hero-grid { grid-template-columns: 1fr; }
  .media-hero-card img { height: 400px; }
  .media-hero-card.secondary { display: none; }
  .media-grid-3 { grid-template-columns: 1fr 1fr; gap: 2px; }
  .press-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .broadcast-row { grid-template-columns: 100px 1fr; gap: 24px; }
  .broadcast-date { display: none; }

  /* ── WRITING ── */
  .featured-essay { grid-template-columns: 1fr; }
  .featured-essay-img img { height: 300px; min-height: 300px; }
  .featured-essay-content { padding: 40px 32px; }

  /* ── SPEAKING ── */
  .speaking-intro { grid-template-columns: 1fr; }
  .speaking-intro-img { display: none; }
  .speaking-intro-content { padding: 72px var(--pad-x); }
  .engagement-row { grid-template-columns: 140px 1fr; gap: 32px; }

  /* ── PRESS KIT ── */
  .headshot-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .headshot-card img { height: 300px; }
  .bio-block { padding: 36px 32px; }
  .kit-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  /* ── CONTACT ── */
  .contact-layout { grid-template-columns: 1fr; gap: 56px; }
  .contact-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   RESPONSIVE — MOBILE  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
    --nav-h: 60px;
  }

  /* ── OVERFLOW LOCK ── */
  * { word-break: break-word; }
  .btn, button, a { word-break: normal; white-space: nowrap; }
  section, .footer, .newsletter-strip, .quote-section, .cta-strip {
    width: 100%;
    overflow-x: hidden;
  }

  /* ── TYPOGRAPHY ── */
  .section-heading { font-size: 26px; }
  .page-hero-title { font-size: 32px; line-height: 1.15; }
  .body-copy { font-size: 15px; }
  .quote-text { font-size: 19px; line-height: 1.5; }

  /* ── SPACING ── */
  .section        { padding: 60px var(--pad-x); }
  .section-sm     { padding: 44px var(--pad-x); }
  .cta-strip      { padding: 72px var(--pad-x); }
  .quote-section  { padding: 64px var(--pad-x); }
  .newsletter-strip { padding: 60px var(--pad-x); }

  /* ── PAGE HERO ── */
  .page-hero {
    padding-top: calc(var(--nav-h) + 44px);
    padding-bottom: 52px;
  }

  /* ── SHARED GRIDS → 1-col ── */
  .two-col, .three-col, .card-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ── ARTICLE ROWS ── */
  .article-row {
    grid-template-columns: 1fr auto;
    gap: 0 12px;
    padding: 24px 0;
  }
  .article-meta    { display: none; }
  .article-excerpt { display: none; }
  .article-title   { font-size: 17px; }
  .article-arrow   { opacity: 1; }

  /* ── FOOTER ── */
  .footer { padding: 48px var(--pad-x) 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; margin-bottom: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── NEWSLETTER ── */
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--rule); border-bottom: none; }
  .newsletter-btn { width: 100%; padding: 14px; text-align: center; }

  /* ── HOME: hero ── */
  .hero-name { font-size: 48px; white-space: normal; line-height: 1.0; }
  .hero-image { height: 280px; }
  .hero-tagline { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── HOME: sections ── */
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-card { padding: 28px 20px; }
  .media-grid { grid-template-columns: 1fr; }
  .media-card.featured { grid-column: span 1; }
  .media-card.featured .media-card-img { height: 280px; }
  .media-card-img { height: 220px; }

  /* ── ABOUT ── */
  .about-hero { display: block; }
  .about-hero-img { height: 280px; }
  .about-hero-img img { height: 280px; }
  .about-hero-content { padding: 48px var(--pad-x); }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 240px; }
  .highlight-row { grid-template-columns: 1fr; gap: 4px; padding: 24px 0; }
  .highlight-label { padding-bottom: 4px; }

  /* ── MEDIA PAGE ── */
  .media-grid-3 { grid-template-columns: 1fr; }
  .press-grid   { grid-template-columns: 1fr; }
  .media-tile img { height: 200px; }
  .broadcast-row { grid-template-columns: 1fr; gap: 4px; padding: 20px 0; }
  .broadcast-outlet { padding-bottom: 4px; }

  /* ── WRITING ── */
  .writing-filters { gap: 6px; }
  .filter-btn { padding: 7px 12px; font-size: 10px; }
  .featured-essay-title { font-size: 22px; }

  /* ── SPEAKING ── */
  .speaking-content { padding: 60px var(--pad-x); }
  .engagement-row { grid-template-columns: 1fr; gap: 4px; padding: 20px 0; }
  .topic-card { padding: 28px 20px; }

  /* ── PRESS KIT ── */
  .headshot-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .headshot-card img { height: 200px; }
  .bio-block { padding: 28px var(--pad-x); }
  .bio-block-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .kit-grid { grid-template-columns: 1fr; }

  /* ── CONTACT ── */
  .contact-layout { gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── ACCESSIBILITY ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #c9a96e;
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #1a2332;
  color: #f2efe9;
  padding: 8px 16px;
  font-size: 13px;
  font-family: sans-serif;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ── MEDIA + SPEAKING PAGE HERO (ivory split layout) ─────── */
@media (max-width: 1024px) {
  .media-page-hero-inner,
  .speaking-page-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 1024px) {
  .page-hero-split {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
  .page-hero-split h1 { font-size: 52px !important; }
}
@media (max-width: 768px) {
  .page-hero-split h1 { font-size: 38px !important; }
}
