/* ============================================================
   Omar Moonis — Personal Brand Website
   style.css
   ============================================================ */

/* ===========================
   CSS Variables
   =========================== */
:root {
  --navy:        #0A1628;
  --navy-mid:    #111E33;
  --navy-light:  #1A2F50;
  --gold:        #D4AF6E;
  --gold-light:  #E2C06B;
  --gold-dim:    rgba(212, 175, 110, 0.15);
  --gold-subtle: rgba(212, 175, 110, 0.10);
  --gold-hover:  rgba(212, 175, 110, 0.30);
  --gold-glow:   rgba(212, 175, 110, 0.18);
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --gray-100:    #F1F3F5;
  --gray-200:    #E9ECEF;
  --gray-300:    #DEE2E6;
  --gray-500:    #ADB5BD;
  --gray-600:    #6C757D;
  --gray-700:    #495057;
  --gray-900:    #1A1A2A;
  --navy-bg:     var(--navy);

  /* Previously undefined — now explicit */
  --bg:          var(--off-white);
  --text:        var(--gray-900);
  --text-muted:  var(--gray-600);

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

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.28s var(--ease);

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 8px 32px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.16), 0 16px 48px rgba(0,0,0,0.10);

  --radius:     14px;
  --radius-sm:  8px;
  --radius-xs:  5px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ===========================
   Skip Navigation
   =========================== */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.15s;
}
.skip-nav:focus {
  top: 0;
}

/* ===========================
   Layout
   =========================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 600;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-header {
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.section-header.light h2 { color: var(--white); }
.section-header.light .section-label { color: var(--gold-light); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
}

.section-header.light .section-subtitle { color: rgba(255,255,255,0.7); }

/* ===========================
   Navigation
   =========================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 28px;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

#navbar.scrolled {
  /* Solid navy — do NOT reintroduce backdrop-filter here.
     backdrop-filter establishes a new containing block for fixed-positioned
     descendants (CSS Filter Effects spec), which makes the mobile
     .nav-links overlay collapse to fit inside the navbar's tiny height —
     only the first link shows until the page is scrolled back to the top. */
  background: rgba(10, 22, 40, 1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

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

.nav-links li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
  /* Touch target: nav links are fine at this size inside the fixed bar */
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links li a.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-links li a.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* ── Learn dropdown ──────────────────────────────────────── */
.nav-has-dropdown {
  position: relative;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px;
  min-width: 160px;
  list-style: none;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  display: block;
}
.nav-dropdown li a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  border-radius: 4px;
  white-space: nowrap;
}
.nav-dropdown li a:hover,
.nav-dropdown li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
/* ─────────────────────────────────────────────────────────── */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  /* 44px touch target */
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  /* Eliminate the iOS 300ms tap delay; reduces ghost-click incidence. */
  touch-action: manipulation;
}

/* Nav link tap targets also opt out of double-tap-zoom — keeps the click
   tight to touchend and avoids straggling synthesized events. */
.nav-links a { touch-action: manipulation; }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav backdrop — tap outside to close */
.nav-backdrop {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}
.nav-backdrop.visible { display: block; }

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,110,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,47,80,0.8) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

.hero-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-name {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-credential {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

/* Hero CTA variants — show the right button per viewport */
.hero-cta-mobile { display: none; }

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.badge {
  font-size: 0.76rem;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.02em;
}

.badge-link {
  color: var(--gold);
  border-color: rgba(212,175,110,0.3);
  background: rgba(212,175,110,0.08);
  transition: background var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.badge-link:hover {
  background: rgba(212,175,110,0.18);
  color: var(--gold-light);
}

.hero-thinking {
  margin-top: 36px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  max-width: 460px;
}

.hero-thinking-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.hero-thinking-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-style: italic;
}

/* Photo */
.hero-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-frame {
  position: relative;
  width: 400px;
  max-width: 100%;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 3px solid rgba(212,175,110,0.4);
  filter: brightness(0.95) contrast(1.02);
  box-shadow: var(--shadow-lg);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  /* Ensure minimum 44px height for touch targets */
  min-height: 44px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,110,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-full { width: 100%; }

/* ===========================
   Credentials Strip
   =========================== */
.credentials-strip {
  background: var(--navy-mid);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.credentials-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
  text-align: center;
}

.credentials-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.credentials-logos span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* ===========================
   About
   =========================== */
.about { padding: 100px 0; background: var(--white); }

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

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.about-rich a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-rich ul {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 18px;
}

.about-rich li {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.about-actions { margin-top: 32px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat {
  background: var(--gray-100);
  padding: 28px 22px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--gray-200);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.03em;
}

/* ===========================
   Career
   =========================== */
.career { padding: 100px 0; background: var(--gray-100); }

/* Timeline */
.timeline { position: relative; padding-left: 28px; margin-bottom: 60px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray-300);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray-300);
}

.timeline-marker.current {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,110,0.3);
}

.timeline-content {
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.timeline-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
}

.timeline-company {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.timeline-period {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.timeline-content h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.timeline-desc {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.timeline-desc ul {
  list-style: disc;
  padding-left: 1.2em;
  margin-top: 8px;
}

.timeline-desc li {
  margin-bottom: 4px;
}

.timeline-location {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.timeline-location::before {
  content: '📍';
  font-size: 0.7rem;
}

/* Education */
.education {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 48px;
}

.education h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.edu-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}

.edu-school {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.edu-degree {
  color: var(--gray-700);
  font-size: 0.88rem;
}

.edu-location {
  color: var(--gray-500);
  font-size: 0.8rem;
}

/* Board Directorships */
.board-inline {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.board-inline h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.board-framing {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.6;
}

.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.board-card {
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.board-icon {
  width: 36px;
  height: 36px;
  color: var(--navy);
  margin-bottom: 14px;
  opacity: 0.6;
}

.board-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.board-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 10px;
  line-height: 1.5;
}

.board-sector {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===========================
   Services
   =========================== */
.services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--navy);
  padding: 36px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--navy);
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-card ul {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.service-format {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-card li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.service-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.service-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
  /* 44px touch target */
  min-height: 44px;
}

.service-cta:hover { gap: 8px; }

/* ===========================
   Speaking
   =========================== */
.speaking {
  padding: 100px 0;
  background: var(--gray-100);
}

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

.speaking-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.speaking-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.speaking-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.speaking-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.speaking-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.speaking-year {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
}

.speaking-invite {
  text-align: center;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.speaking-invite p {
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   Blog Preview
   =========================== */
.blog-preview {
  padding: 100px 0;
  background: var(--white);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.blog-card-meta time {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
}

.blog-card-readtime {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.blog-card-title {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-title a {
  transition: color var(--transition);
}

.blog-card-title a:hover { color: var(--gold); }

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-read {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}

.blog-card-read:hover { color: var(--gold); gap: 8px; }

.blog-preview-footer { text-align: center; }

/* ===========================
   Contact
   =========================== */
.contact {
  padding: 100px 0;
  background: var(--navy);
}

.contact .contact-qualifier {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color var(--transition), background var(--transition);
  /* Minimum height for touch targets */
  min-height: 44px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group select option { background: var(--navy); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}

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

/* Contact side */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block {
  background: rgba(255,255,255,0.05);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-block h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-block p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  line-height: 1.6;
}

.contact-block-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ===========================
   Footer
   =========================== */
footer {
  background: var(--navy-mid);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--gold-hover);
  color: var(--gold);
}

.footer-social a svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* Blog page footer */
.footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-nav-mini {
  display: flex;
  gap: 20px;
}

.footer-nav-mini a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-nav-mini a:hover { color: var(--gold); }

.footer-social-mini {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social-mini a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--transition), color var(--transition);
}

.footer-social-mini a:hover {
  background: var(--gold-hover);
  color: var(--gold);
}

.footer-social-mini a svg { width: 16px; height: 16px; }

/* ===========================
   Blog Listing Page
   =========================== */
.blog-listing {
  padding: 120px 0 80px;
}

.blog-listing .section-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.blog-listing .blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-listing-footer a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================
   Blog Post Page
   =========================== */
.post-back {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color var(--transition);
}
.post-back:hover { color: var(--gold); }

.post-header {
  padding: 80px 0 36px;
  background: var(--navy);
  text-align: center;
}

.post-header .post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.post-header .post-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.post-header .post-date {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.post-header .post-readtime {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.post-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.2;
}

.post-header .post-excerpt {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.post-featured-image {
  width: 100%;
  display: block;
  margin-top: 40px;
  margin-bottom: 1rem;
}

.post-featured-image figure {
  margin: 0;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-featured-image figcaption {
  font-size: 0.8rem;
  color: var(--text-secondary, #888);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

.post-body {
  padding: 64px 0 24px;
  background: var(--white);
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-700);
}

.post-content h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin: 48px 0 16px;
}

.post-content h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 36px 0 12px;
}

.post-content p { margin-bottom: 24px; }

.post-content ul, .post-content ol {
  padding-left: 1.5em;
  margin-bottom: 24px;
}

.post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--gray-100);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--gray-600);
}

.post-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content a:hover { color: var(--gold); }

.post-content strong { color: var(--navy); }

.post-content code {
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--navy);
}

.post-content pre {
  background: var(--navy);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin-bottom: 24px;
}

.post-content pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: 0.9em;
}

.post-footer {
  max-width: 720px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.post-footer-back {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
  /* 44px touch target */
  min-height: 44px;
}

.post-footer-back:hover { color: var(--gold); gap: 10px; }

.post-footer-cta {
  font-size: 0.88rem;
  color: var(--gray-600);
}

.post-footer-cta a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================
   About Page
   =========================== */

/* Breadcrumb */
/* Hero */
.about-page-hero {
  padding: 110px 0 80px;
  background: var(--navy);
}

.about-page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
}

.about-page-hero-content .section-label {
  color: var(--gold);
}

.about-page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.08;
  margin: 12px 0 24px;
}

.about-page-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.about-page-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 2.5rem;
}

.about-stat {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.08) !important;
}

.about-stat .stat-number {
  color: var(--gold) !important;
}

.about-stat .stat-label {
  color: rgba(255,255,255,0.5) !important;
}

.about-page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-page-hero-photo {
  display: flex;
  justify-content: center;
}

/* Story section */
.about-story {
  padding: 100px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: start;
}

.about-story-extra {
  margin-top: 18px;
  color: var(--gray-700);
  line-height: 1.8;
  font-size: 1.02rem;
}

/* Credentials sidebar */
.about-credentials-sidebar {
  padding-top: 2.5rem;
}

.about-credentials-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: 5.5rem;
}

.about-credentials-card h3 {
  font-size: 0.72rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}

.credentials-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.credentials-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.credentials-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cred-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray-500);
  font-family: var(--font-sans);
}

.cred-value {
  font-size: 0.87rem;
  color: var(--navy);
  font-family: var(--font-sans);
  line-height: 1.4;
}

/* Track Record section */
.about-track-record {
  padding: 100px 0;
  background: var(--white);
}

.track-record-body {
  max-width: 680px;
  margin: 0 auto;
}

.track-record-body p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.track-record-link a {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}

.track-record-link a:hover { color: var(--gold); }

/* Philosophy section */
.about-philosophy {
  padding: 100px 0;
  background: var(--gray-100);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.philosophy-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.philosophy-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.philosophy-item h3 {
  font-size: 1.1rem;
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.philosophy-item h3::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.philosophy-item p {
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* About page CTA (dark section) */
.about-page-cta {
  padding: 100px 0;
  background: var(--navy);
}

.about-page-cta .contact-qualifier {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  font-style: italic;
}

.about-page-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-page-cta-writing {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.4);
}

.about-page-cta-writing a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}

.about-page-cta-writing a:hover { color: var(--gold-light); }

/* ===========================
   Responsive — 1024px
   =========================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-photo { display: none; }

  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-thinking { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }

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

  .contact-grid { grid-template-columns: 1fr; }
  .contact-side { flex-direction: row; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .speaking-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social { justify-content: flex-start; }
}

/* ===========================
   Responsive — 768px
   =========================== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 32px 24px;
    gap: 8px;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 8px;
    /* Large touch target on mobile */
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-links li a.nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  /* Dropdown: show inline, indented, no floating panel */
  .nav-dropdown {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 4px 16px;
    min-width: unset;
    border-radius: 0;
  }
  .nav-dropdown li a {
    padding: 10px 16px;
    font-size: 0.9rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.6);
  }
  .nav-dropdown li a:hover,
  .nav-dropdown li a.active {
    color: var(--white);
    background: rgba(255,255,255,0.06);
  }

  /* Hero */
  .hero-container {
    padding-top: 90px;
    padding-bottom: 60px;
    gap: 36px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    text-align: center;
    width: 100%;
    /* Allow text to wrap on very small screens */
    white-space: normal;
  }

  /* Swap hero CTAs: LinkedIn on mobile, Conversation CTA on desktop */
  .hero-cta-mobile { display: inline-flex; }
  .hero-cta-desktop { display: none; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.12em; }
  .hero-thinking {
    margin-left: auto;
    margin-right: auto;
  }

  /* Sections */
  .about, .expertise, .career, .services, .speaking, .contact { padding: 64px 0; }
  .board { padding: 48px 0; }
  .blog-preview { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  /* About */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* About Page */
  .about-page-hero { padding: 80px 0 60px; }
  .about-page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-page-hero-photo { order: -1; }
  .about-page-hero-photo .photo-frame { width: 280px; }
  .about-page-hero-stats { grid-template-columns: repeat(4, 1fr); }
  .about-story { padding: 64px 0; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-credentials-sidebar { padding-top: 0; }
  .about-credentials-card { position: static; }
  .about-philosophy { padding: 64px 0; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .about-page-cta { padding: 64px 0; }

  /* Career */
  .timeline { padding-left: 20px; }
  .timeline-content { padding: 20px 22px; }
  .timeline-marker { left: -20px; }
  .edu-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .education { padding: 24px; }
  .board-inline { padding: 24px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Speaking */
  .speaking-grid { grid-template-columns: 1fr; }
  .speaking-invite { padding: 32px 24px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-listing { padding: 100px 0 60px; }
  .blog-listing .blog-grid { grid-template-columns: 1fr; }

  /* Learn */
  .learn-listing { padding: 100px 0 60px; }

  /* Contact */
  .contact-form-wrap { padding: 28px 22px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-side { flex-direction: column; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-social { justify-content: flex-start; }
  .footer-nav { align-items: flex-start; }
  .footer-nav a { min-height: 44px; display: flex; align-items: center; }

  /* Post */
  .post-header { padding: 72px 0 28px; }
  .post-body { padding: 40px 0 32px; }
  .post-content { font-size: 1rem; }
  .post-footer { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Proof strip */
  .proof-stats { grid-template-columns: repeat(2, 1fr); }

  /* Who I Help */
  .who-i-help { padding: 64px 0; }
  .audience-grid { grid-template-columns: 1fr; }

  /* Speaking & Writing */
  .speaking-section { padding: 64px 0; }
  .writing-section { padding: 64px 0; }
  .speaking-grid-2x2 { grid-template-columns: 1fr; }
  .writing-grid { grid-template-columns: 1fr; }
  .voice-footer { flex-direction: column; align-items: stretch; }
  .voice-footer .btn { text-align: center; }
}

/* ===========================
   Proof Strip (stat cards)
   =========================== */
.proof-strip {
  background: var(--navy-mid);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 28px;
}

.proof-stat {
  background: var(--navy-mid);
  padding: 28px 20px;
  text-align: center;
}

.proof-stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.proof-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

.proof-logos-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 12px;
}

.proof-logos-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.proof-logos-row span {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* ===========================
   Page Jump Nav
   =========================== */
.page-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 68px;
  z-index: 500;
}

.page-nav-links {
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.page-nav-links::-webkit-scrollbar { display: none; }

.page-nav-links a {
  padding: 14px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gray-600);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.page-nav-links a:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

@media (max-width: 768px) {
  .page-nav-links { justify-content: flex-start; padding: 0 18px; }
  .page-nav-links a { padding: 14px 16px; }
}

/* ===========================
   Who I Help
   =========================== */
.who-i-help {
  padding: 100px 0;
  background: var(--off-white);
}

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

.audience-card {
  background: var(--navy);
  padding: 36px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--navy);
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.audience-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.audience-card h3 {
  font-size: 1.12rem;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
}

.audience-card-bullets {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.audience-card-bullets li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}

.audience-card-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.audience-card-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
  min-height: 44px;
  margin-top: auto;
}

.audience-card-cta:hover { gap: 8px; }

/* ===========================
   Career extras
   =========================== */
.career-more {
  text-align: center;
  margin: -12px 0 52px;
}

.board-open {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-style: italic;
  margin-top: 24px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.board-open-cta { margin-top: 4px; }

/* ===========================
   Speaking Section
   =========================== */
.speaking-section {
  padding: 100px 0;
  background: var(--white);
}

.speaking-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* ===========================
   Writing Section
   =========================== */
.writing-section {
  padding: 100px 0;
  background: var(--gray-100);
}

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

.writing-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.writing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.writing-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.writing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.writing-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.writing-card-body .voice-post-excerpt {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.voice-post-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  color: var(--gray-500);
}

.voice-post-title {
  font-size: 0.98rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}

.voice-post-title a { transition: color var(--transition); }
.voice-post-title a:hover { color: var(--gold); }

.voice-post-excerpt {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.voice-footer {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ===========================
   Responsive additions — 1024px
   =========================== */
@media (max-width: 1024px) {
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .writing-grid { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   Responsive — 480px
   =========================== */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-name { font-size: 2.4rem; }
  .stat-number { font-size: 1.8rem; }
  .photo-frame { width: 260px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 22px; }
  .speaking-card { padding: 22px; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-page-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-nav-mini { flex-wrap: wrap; gap: 12px; }
}

/* ===========================
   Learn Page — Extended Content
   =========================== */

.learn-listing {
  padding: 120px 0 80px;
}

.learn-intro {
  max-width: 780px;
  margin: 0 0 52px;
}

.learn-intro p {
  font-size: 1.02rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 18px;
}

.learn-intro p:last-child { margin-bottom: 0; }

.learn-audience {
  margin-bottom: 52px;
}

.learn-audience h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--navy);
  margin-bottom: 28px;
}

.learn-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.learn-audience-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 22px;
}

.learn-audience-item h3 {
  font-size: 1rem;
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.learn-audience-item h3::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
}

.learn-audience-item p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

.learn-methodology {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px 36px;
  margin: 48px 0 0;
}

.learn-methodology h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.learn-methodology p {
  font-size: 0.96rem;
  color: var(--gray-700);
  line-height: 1.78;
  margin-bottom: 16px;
}

.learn-methodology p:last-child { margin-bottom: 0; }

.learn-methodology a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .learn-audience-grid { grid-template-columns: 1fr; }
  .learn-methodology { padding: 28px 22px; }
}

/* ===========================
   Learn Page — cards
   (intro / audience / methodology styling is defined above, around L2021)
   =========================== */
.learn-listing .section-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 14px;
}

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

.learn-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 28px 24px 32px;
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.learn-card--featured {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.12);
}

.learn-card-thumbnail {
  width: calc(100% + 48px);
  margin: -28px -24px 22px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.learn-card-thumbnail a,
.learn-card-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
}

.learn-card-thumbnail img {
  object-fit: cover;
}

.learn-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.learn-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.learn-card-status {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}

.learn-card-status--live {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.learn-card-status--soon {
  background: var(--gray-100);
  color: var(--gray-600);
}

.learn-card-title {
  font-size: 1.15rem;
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.3;
}

.learn-card-description {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.65;
  flex: 1;
  margin: 0 0 20px;
}

.learn-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  transition: gap var(--transition), color var(--transition);
}

.learn-card-link--disabled {
  color: var(--gray-500);
  cursor: not-allowed;
}

.learn-card:hover .learn-card-link:not(.learn-card-link--disabled) {
  gap: 8px;
  color: var(--gold);
}

.learn-listing-footer {
  margin-top: 32px;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.learn-listing-footer a {
  color: var(--navy);
  font-weight: 600;
}

.learn-listing-footer a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .learn-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .learn-card { padding: 22px 18px 26px; }
  .learn-card-title { font-size: 1.15rem; }
  .learn-card-thumbnail { width: calc(100% + 36px); margin: -22px -18px 22px; }
}

/* ===========================
   Reduced Motion
   =========================== */
@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;
  }
}

/* ===========================
   Related Posts
   =========================== */
.related-posts {
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.related-posts-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.related-post-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.related-post-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.related-post-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.related-post-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.related-post-readtime {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .related-posts-grid { grid-template-columns: 1fr; }
}



