/* speaking.html — externalized from inline <style>. */

    :root {
      --gold-pale:      #e8c97a;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body { font-family: var(--font-body); background: var(--ivory); color: var(--slate); line-height: 1.65; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ══ SCROLL REVEAL ══ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ══ NAV ══ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 3rem;
      transition: background 400ms ease, border-color 400ms ease;
    }
    nav.scrolled {
      background: rgba(250,247,242,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--ivory-mid);
    }
    nav.hero-zone { background: transparent; }
    .nav-wordmark { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; transition: color 300ms ease; }
    nav.hero-zone .nav-wordmark { color: rgba(250,247,242,0.85); }
    nav.scrolled .nav-wordmark { color: var(--slate); }
    .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
    .nav-links a {
      font-size: 0.78rem; font-weight: 400; letter-spacing: 0.09em;
      text-transform: uppercase; transition: color var(--transition); position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
      height: 1px; transform: scaleX(0); transform-origin: left; transition: transform 280ms ease;
    }
    nav.hero-zone .nav-links a { color: rgba(250,247,242,0.65); }
    nav.hero-zone .nav-links a::after { background: var(--ivory); }
    nav.hero-zone .nav-links a:hover { color: var(--ivory); }
    nav.hero-zone .nav-links a:hover::after { transform: scaleX(1); }
    nav.hero-zone .nav-links a.active { color: var(--ivory); }
    nav.scrolled .nav-links a { color: var(--slate-mid); }
    nav.scrolled .nav-links a::after { background: var(--burgundy-hover); }
    nav.scrolled .nav-links a:hover { color: var(--slate); }
    nav.scrolled .nav-links a:hover::after { transform: scaleX(1); }
    nav.scrolled .nav-links a.active { color: var(--burgundy); font-weight: 500; }

    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .nav-hamburger span { display: block; width: 22px; height: 1.5px; border-radius: 2px; transition: transform 300ms ease, opacity 300ms ease, background 300ms ease; }
    nav.hero-zone .nav-hamburger span { background: var(--ivory); }
    nav.scrolled .nav-hamburger span { background: var(--slate); }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    .nav-mobile {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: var(--burgundy); z-index: 99;
      flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--ivory); opacity: 0.85; transition: opacity var(--transition); }
    .nav-mobile a:hover { opacity: 1; }
    @media (max-width: 640px) { nav { padding: 1.2rem 1.4rem; } .nav-links { display: none; } .nav-hamburger { display: flex; } }

    /* ══ HERO ══ */
    .hero {
      position: relative; min-height: 90vh;
      background: var(--burgundy);
      display: flex; flex-direction: column; justify-content: flex-end;
      overflow: hidden;
    }

    /* Grain texture overlay */
    .hero::before {
      content: '';
      position: absolute; inset: 0; z-index: 1;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.055;
      pointer-events: none;
    }

    /* Architectural line detail — diagonal rule */
    .hero::after {
      content: '';
      position: absolute; z-index: 2;
      top: 0; right: 15%;
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,0.25) 30%, rgba(201,168,76,0.12) 70%, transparent 100%);
      pointer-events: none;
    }

    .hero-bg-text {
      position: absolute; bottom: -0.08em; left: -0.02em; z-index: 1;
      font-family: var(--font-display); font-weight: 600;
      font-size: clamp(14rem, 28vw, 26rem);
      line-height: 0.85;
      color: rgba(201,168,76,0.045);
      letter-spacing: -0.04em;
      user-select: none; pointer-events: none;
      white-space: nowrap;
    }

    .hero-content {
      position: relative; z-index: 3;
      padding: 0 4rem 5rem;
      max-width: 900px;
    }

    .hero-eyebrow {
      font-family: var(--font-sc);
      font-size: 1rem; font-weight: 500; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 1rem;
      margin-bottom: 1.8rem;
      opacity: 0; animation: fadeUp 0.9s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); opacity: 0.6; }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(4.5rem, 10vw, 9rem);
      font-weight: 300; line-height: 0.92; letter-spacing: -0.03em;
      color: var(--ivory);
      margin-bottom: 2.2rem;
      opacity: 0; animation: fadeUp 1s 0.35s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-title em { font-style: italic; color: rgba(250,247,242,0.55); font-weight: 300; }

    .hero-statement {
      font-family: var(--font-display);
      font-size: clamp(1.05rem, 2vw, 1.3rem);
      font-weight: 300; font-style: italic;
      color: rgba(250,247,242,0.65);
      line-height: 1.65; max-width: 560px;
      border-left: 1px solid rgba(201,168,76,0.4);
      padding-left: 1.4rem;
      opacity: 0; animation: fadeUp 1s 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    .hero-scroll-hint {
      position: absolute; bottom: 2.5rem; right: 4rem; z-index: 3;
      display: flex; align-items: center; gap: 0.75rem;
      font-family: var(--font-sc); font-size: 0.85rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(250,247,242,0.3);
      opacity: 0; animation: fadeIn 1.2s 1s ease forwards;
    }
    .hero-scroll-hint::after {
      content: '';
      display: block; width: 1px; height: 48px;
      background: linear-gradient(to bottom, rgba(201,168,76,0.4), transparent);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    @media (max-width: 640px) {
      .hero { min-height: 80vh; }
      .hero-content { padding: 0 1.5rem 4rem; }
      .hero-scroll-hint { display: none; }
    }

    /* ══ DIVIDER ══ */
    .section-divider {
      width: 100%; height: 4px; background: var(--burgundy);
    }

    /* ══ STAT BAR ══ */
    .stat-bar {
      background: var(--ivory-dark);
      border-bottom: 1px solid var(--ivory-mid);
      padding: 2rem 4rem;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      text-align: center; padding: 0.5rem 1rem;
      border-right: 1px solid var(--ivory-mid);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300; color: var(--burgundy); line-height: 1;
      margin-bottom: 0.3rem;
    }
    .stat-label {
      font-family: var(--font-sc); font-size: 0.85rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--slate-light);
    }
    @media (max-width: 640px) {
      .stat-bar { grid-template-columns: 1fr 1fr; padding: 1.5rem; }
      .stat-item:nth-child(2) { border-right: none; }
    }

    /* ══ PAGE BODY ══ */
    .page { max-width: 900px; margin: 0 auto; padding: 5rem 2rem 7rem; }

    /* ══ SECTION LABEL ══ */
    .section-label {
      font-family: var(--font-sc); font-size: 1rem; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage);
      display: flex; align-items: center; gap: 0.75rem;
      margin-bottom: 1.8rem; margin-top: 3.5rem;
    }
    .section-label::after { content: ''; flex: 1; height: 1px; background: var(--ivory-mid); max-width: 60px; }
    .section-label:first-child { margin-top: 0; }

    /* ══ FEATURED CARD ══ */
    .featured-card {
      background: var(--burgundy); color: var(--ivory);
      border-radius: 2px; padding: 3rem 3.2rem;
      margin-bottom: 1rem; position: relative; overflow: hidden;
    }
    .featured-card::before {
      content: '\201C';
      position: absolute; top: -0.15em; left: 0.3em;
      font-family: var(--font-display); font-size: 16rem; font-weight: 300;
      color: rgba(250,247,242,0.04); line-height: 1; pointer-events: none;
    }
    /* Grain on featured card */
    .featured-card::after {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.04;
      pointer-events: none;
    }
    .featured-inner { position: relative; z-index: 1; }
    .featured-label {
      font-family: var(--font-sc); font-size: 1rem; font-weight: 500;
      letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.6rem;
    }
    .featured-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); opacity: 0.6; }
    .featured-quote {
      font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.75rem);
      font-weight: 300; font-style: italic; line-height: 1.55;
      color: var(--ivory); margin-bottom: 2rem;
    }
    .featured-event {
      font-size: 0.82rem; color: rgba(250,247,242,0.6);
      display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    }
    .featured-event strong { color: var(--ivory); font-weight: 500; }
    .featured-tag {
      font-family: var(--font-sc); font-size: 0.58rem; letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
      color: var(--gold-pale); padding: 3px 10px; border-radius: 2px;
    }

    /* ══ PHOTO GALLERIES ══ */
    .gallery-grid {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 0.5rem; margin-bottom: 2rem;
    }
    .gallery-figure { margin: 0; position: relative; overflow: hidden; border-radius: 2px; }
    .gallery-figure img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
      transition: transform 600ms cubic-bezier(0.22,1,0.36,1), filter 400ms ease;
      filter: saturate(0.85);
    }
    .gallery-figure:hover img { transform: scale(1.03); filter: saturate(1); }
    .gallery-figure figcaption {
      font-family: var(--font-sc); font-size: 1rem; letter-spacing: 0.1em;
      color: var(--slate-light); margin-top: 0.45rem; text-align: center;
    }
    @media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }

    /* ══ VIDEO ══ */
    .video-wrapper {
      position: relative; padding-bottom: 56.25%;
      height: 0; overflow: hidden; border-radius: 2px;
    }
    .video-wrapper iframe {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%; border-radius: 2px;
    }

    /* ══ EMMY CARD ══ */
    .emmy-card {
      background: var(--ivory-dark); border: 1px solid var(--ivory-mid);
      border-left: 3px solid var(--gold);
      border-radius: 2px; padding: 1.8rem 2rem;
      display: flex; gap: 1.5rem; align-items: flex-start;
      margin-bottom: 0.75rem;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .emmy-card:hover { box-shadow: 0 4px 24px rgba(46,52,64,0.08); }
    .emmy-icon {
      font-family: var(--font-display); font-size: 2rem; font-weight: 300;
      color: var(--gold); flex-shrink: 0; line-height: 1; margin-top: -1px;
    }
    .emmy-title { font-family: var(--font-display); font-size: 1.18rem; font-weight: 400; color: var(--slate); margin-bottom: 0.4rem; line-height: 1.35; }
    .emmy-desc { font-size: 0.84rem; color: var(--slate-mid); line-height: 1.7; }
    .emmy-meta { font-size: 0.72rem; color: var(--slate-light); margin-top: 0.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

    /* ══ APPEARANCES ══ */
    .appearance-list { display: flex; flex-direction: column; }
    .appearance-item {
      display: grid; grid-template-columns: 90px 1fr auto;
      gap: 1.4rem; padding: 1.6rem 0;
      border-bottom: 1px solid var(--ivory-mid);
      align-items: start;
      transition: background var(--transition);
    }
    .appearance-item:first-child { border-top: 1px solid var(--ivory-mid); }
    .appearance-year {
      font-family: var(--font-display); font-size: 0.85rem; font-style: italic;
      color: var(--slate-light); padding-top: 4px;
    }
    .appearance-title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 400; color: var(--slate); line-height: 1.3; margin-bottom: 0.3rem; }
    .appearance-org { font-size: 0.79rem; color: var(--slate-light); margin-bottom: 0.35rem; }
    .appearance-desc { font-size: 0.82rem; color: var(--slate-mid); line-height: 1.65; }
    .appearance-tag {
      font-family: var(--font-sc); font-size: 0.58rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 3px 9px; border-radius: 2px;
      white-space: nowrap; align-self: flex-start; margin-top: 4px;
    }
    .tag-keynote  { background: var(--rose-pale);    color: #7a3828; border: 1px solid var(--rose-light); }
    .tag-media    { background: var(--lavender-pale); color: #4a4a7a; border: 1px solid var(--lavender); }
    .tag-upcoming { background: var(--sage-muted);   color: #3a4e28; border: 1px solid #b4c0a8; }
    .tag-award    { background: var(--ivory-mid);    color: var(--slate-mid); border: 1px solid #d4cfc7; }

    @media (max-width: 600px) {
      .appearance-item { grid-template-columns: 1fr; gap: 0.4rem; }
      .appearance-year { font-size: 0.78rem; }
    }

    /* ══ TOPICS ══ */
    .topics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .topic-card {
      background: #fff; border: 1px solid var(--ivory-mid);
      border-radius: 2px; padding: 1.6rem 1.8rem;
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
      cursor: default;
    }
    .topic-card:hover {
      border-color: rgba(40,1,8,0.2);
      box-shadow: 0 6px 30px rgba(46,52,64,0.07);
      transform: translateY(-2px);
    }
    .topic-num {
      font-family: var(--font-display); font-size: 1.8rem; font-weight: 300;
      color: var(--ivory-mid); line-height: 1; margin-bottom: 0.7rem;
      transition: color var(--transition);
    }
    .topic-card:hover .topic-num { color: var(--burgundy); opacity: 0.2; }
    .topic-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--slate); margin-bottom: 0.45rem; line-height: 1.3; }
    .topic-desc { font-size: 0.8rem; color: var(--slate-light); line-height: 1.65; }
    @media (max-width: 600px) { .topics-grid { grid-template-columns: 1fr; } }

    /* ══ PULL QUOTE ══ */
    .pull-quote-block {
      padding: 3.5rem 0;
      border-top: 1px solid var(--ivory-mid);
      border-bottom: 1px solid var(--ivory-mid);
      margin: 4rem 0;
      text-align: center;
    }
    .pull-quote-text {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 300; font-style: italic;
      color: var(--slate); line-height: 1.45;
      max-width: 680px; margin: 0 auto 1.2rem;
    }
    .pull-quote-attr {
      font-family: var(--font-sc); font-size: 0.6rem; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--sage);
    }

    /* ══ CTA ══ */
    .cta-block {
      background: var(--burgundy);
      border-radius: 2px; padding: 3rem 3.2rem;
      display: flex; align-items: center; justify-content: space-between;
      gap: 2rem; flex-wrap: wrap; margin-top: 4rem;
      position: relative; overflow: hidden;
    }
    .cta-block::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.04; pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 1; flex: 1; }
    .cta-title {
      font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 300; color: var(--ivory); margin-bottom: 0.4rem; line-height: 1.2;
    }
    .cta-desc { font-size: 0.84rem; color: rgba(250,247,242,0.55); line-height: 1.65; }
    .cta-btn {
      position: relative; z-index: 1;
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: transparent; color: var(--ivory);
      font-family: var(--font-sc); font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 0.9rem 2rem; border-radius: 2px;
      border: 1px solid rgba(250,247,242,0.3);
      transition: background var(--transition), border-color var(--transition), transform var(--transition);
      white-space: nowrap;
    }
    .cta-btn:hover {
      background: rgba(250,247,242,0.1);
      border-color: rgba(250,247,242,0.6);
      transform: translateY(-1px);
    }

    /* ══ FOOTER ══ */
    .site-footer {
      background: var(--slate); color: rgba(250,247,242,0.45);
      padding: 3rem 4rem;
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
    }
    .footer-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--ivory); }
    .footer-links { display: flex; flex-wrap: wrap; gap: 1.8rem; list-style: none; }
    .footer-links a { font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(250,247,242,0.4); transition: color var(--transition); }
    .footer-links a:hover { color: var(--ivory); }
    .footer-copy { font-size: 0.7rem; width: 100%; padding-top: 1.5rem; border-top: 1px solid rgba(250,247,242,0.06); }
    @media (max-width: 640px) { .site-footer { padding: 2.5rem 1.5rem; } .footer-links { gap: 1rem; flex-wrap: wrap; } }
  
    /* ── Accessibility: honor the reduced-motion preference ── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1 !important; transform: none !important; }
    }
  
/* ───────────────────────────────────────────── */
html.no-js .reveal { opacity: 1 !important; transform: none !important; }
