/* ============================================================
   AZAEL KYANDO — Personal Brand Website
   Complete Stylesheet
   ============================================================ */

/* CSS Custom Properties */
:root {
  --navy: #1a2332;
  --navy-light: #2c3e50;
  --cream: #faf8f5;
  --cream-dark: #f5f0eb;
  --gold: #c9a96e;
  --gold-hover: #b8956a;
  --teal: #1a6b5a;
  --teal-light: #2d8b7a;
  --gray-light: #e8e8e8;
  --gray-bg: #f0f0f0;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-body: #333333;
  --text-muted: #666666;
  --text-light: #999999;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.7; color: var(--text-body); background: var(--cream); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--text-body); }
::selection { background: var(--gold); color: var(--white); }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow, .container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section-title { font-family: var(--font-heading); font-size: 2.2rem; color: var(--text-dark); margin-bottom: 20px; line-height: 1.2; }
.text-center { text-align: center; }
.bg-light { background: var(--white); }
.section--alt, .section-alt { background: var(--cream-dark); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; border: 2px solid transparent; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); text-decoration: none; gap: 8px; white-space: nowrap; }
.btn-primary, .btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover, .btn--primary:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary, .btn--secondary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-secondary:hover, .btn--secondary:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-2px); }
.btn-outline, .btn--outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover, .btn--outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-large, .btn--large { padding: 18px 40px; font-size: 1.05rem; }
.btn-small, .btn--small { padding: 10px 24px; font-size: 0.875rem; }
.btn-submit { width: 100%; }
.btn-nav { background: var(--gold); color: var(--white); border-color: var(--gold); padding: 10px 24px; font-size: 0.875rem; border-radius: var(--radius-sm); font-weight: 600; }
.btn-nav:hover { background: var(--gold-hover); }

/* ============================================================
   NAVIGATION — All Variants
   ============================================================ */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(250,248,245,0.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); transition: var(--transition); }
.site-header.scrolled, .navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(250,248,245,0.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); transition: var(--transition); padding: 0 24px; }
.navbar .container, .navbar .nav-container { display: flex; align-items: center; justify-content: space-between; height: 80px; max-width: 1200px; margin: 0 auto; }
.site-header .navbar { display: flex; align-items: center; justify-content: space-between; height: 80px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.nav-logo, .logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--navy); letter-spacing: -0.5px; flex-shrink: 0; }
.nav-logo span, .logo span { color: var(--gold); }

.nav-links, .nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-links li, .nav-menu li { list-style: none; }
.nav-links a, .nav-menu a, .nav-link { font-size: 0.9rem; font-weight: 500; color: var(--text-body); position: relative; padding: 4px 0; }
.nav-links a::after, .nav-menu a::after, .nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover, .nav-menu a:hover, .nav-link:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-menu a:hover::after, .nav-link:hover::after { width: 100%; }
.nav-links a.active, .nav-menu a.active, .nav-link.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after, .nav-menu a.active::after, .nav-link.active::after { width: 100%; }

.nav-cta { display: inline-flex; align-items: center; padding: 10px 24px; font-size: 0.875rem; font-weight: 600; background: var(--gold); color: var(--white); border-radius: var(--radius-sm); transition: var(--transition); flex-shrink: 0; }
.nav-cta:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger { display: block; width: 24px; height: 2px; background: var(--navy); transition: var(--transition); border-radius: 2px; position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* Speaking page nav uses span children instead of .hamburger */
.nav-toggle > span { display: block; width: 24px; height: 2px; background: var(--navy); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active > span:nth-child(2) { opacity: 0; }
.nav-toggle.active > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   PAGE HEADER / BANNER
   ============================================================ */
.page-header { background: var(--navy); padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.08) 0%, transparent 60%); pointer-events: none; }
.page-header h1, .page-header .page-header__title { color: var(--white); font-size: 3rem; position: relative; z-index: 2; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 600px; margin: 16px auto 0; line-height: 1.7; position: relative; z-index: 2; }

.page-banner { background: var(--navy); padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; }
.banner-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.08) 0%, transparent 60%); pointer-events: none; }
.banner-content { position: relative; z-index: 2; }
.banner-content h1 { color: var(--white); font-size: 3rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section:last-of-type { padding-bottom: 80px; }
.lead-text { font-size: 1.15rem; color: var(--text-body); line-height: 1.8; text-align: center; max-width: 700px; margin: 0 auto; }
.section__intro { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; text-align: center; }

/* ============================================================
   HERO (Index)
   ============================================================ */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, var(--white) 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.06) 0%, transparent 60%); pointer-events: none; }
.hero-container, .hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-content { position: relative; z-index: 2; }
.hero-headline { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 8px; }
.hero-subtitle { font-size: 1.1rem; font-weight: 500; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.5px; }
.hero-tagline { font-size: 1.2rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; max-width: 520px; }
.hero-description { font-size: 1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-image { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
.hero-image img { width: 100%; max-width: 480px; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ============================================================
   THREE PILLARS (Index)
   ============================================================ */
.pillars { padding: 100px 0; background: var(--white); }
.pillars .section-title { text-align: center; margin-bottom: 16px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.pillar-card { background: var(--cream); border-radius: var(--radius-lg); padding: 48px 36px; text-align: center; transition: var(--transition); border: 1px solid transparent; position: relative; overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: all 0.5s ease; }
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,169,110,0.15); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--gold); box-shadow: var(--shadow-sm); transition: var(--transition); }
.pillar-icon svg { width: 40px; height: 40px; }
.pillar-card:hover .pillar-icon { background: var(--gold); color: var(--white); transform: scale(1.05); }
.pillar-card:hover .pillar-icon svg { stroke: var(--white); }
.pillar-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--navy); margin-bottom: 16px; }
.pillar-text, .pillar-description { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   ABOUT SNAPSHOT (Index)
   ============================================================ */
.about-snapshot { padding: 100px 0; background: var(--cream); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 24px; }

/* ============================================================
   FEATURED BOOKS (Index)
   ============================================================ */
.featured-books { padding: 100px 0; background: var(--white); }
.featured-books .section-title { text-align: center; margin-bottom: 12px; }
.section-intro { text-align: center; color: var(--text-muted); font-size: 1.05rem; max-width: 700px; margin: 0 auto 60px; line-height: 1.7; }
.books-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.book-card { background: var(--cream); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); border: 1px solid rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.book-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.book-cover { width: 100%; aspect-ratio: 3/4; max-height: 280px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.book-cover-title { font-family: var(--font-heading); color: var(--white); font-size: 1.3rem; text-align: center; padding: 20px; position: relative; z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.book-info { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.book-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.book-subtitle { font-size: 0.9rem; color: var(--gold); margin-bottom: 12px; font-weight: 500; }
.book-description { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; flex: 1; }

/* ============================================================
   SPEAKING SECTION (Index)
   ============================================================ */
.speaking { padding: 100px 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.speaking::before { content: ''; position: absolute; top: 0; right: 0; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%); pointer-events: none; }
.speaking-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.speaking-content { position: relative; z-index: 2; }
.speaking-content .section-title { color: var(--white); margin-bottom: 20px; }
.speaking-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.8; margin-bottom: 32px; }
.speaking-themes { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.theme-tag { display: inline-block; padding: 8px 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 30px; font-size: 0.85rem; color: rgba(255,255,255,0.8); transition: var(--transition); }
.theme-tag:hover { background: rgba(201,169,110,0.2); border-color: rgba(201,169,110,0.4); color: var(--white); }
.speaking-image { position: relative; z-index: 2; }
.speaking-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ============================================================
   HEALTHCARE LEADERSHIP (Index)
   ============================================================ */
.healthcare-leadership { padding: 100px 0; background: var(--cream); }
.healthcare-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.healthcare-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.healthcare-content .section-title { margin-bottom: 20px; }
.healthcare-content p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 32px; }

/* ============================================================
   AUDIENCES (Index)
   ============================================================ */
.audiences { padding: 100px 0; background: var(--white); }
.audiences .section-title { text-align: center; margin-bottom: 12px; }
.audiences .section-intro { margin-bottom: 40px; }
.audiences-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.audience-card { background: var(--cream); border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; transition: var(--transition); border: 1px solid transparent; }
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,169,110,0.15); }
.audience-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--gold); box-shadow: var(--shadow-sm); transition: var(--transition); }
.audience-icon svg { width: 32px; height: 32px; }
.audience-card:hover .audience-icon { background: var(--gold); color: var(--white); transform: scale(1.1); }
.audience-card:hover .audience-icon svg { stroke: var(--white); }
.audience-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--navy); margin-top: 8px; }

/* ============================================================
   MEDIA KIT SECTION (Index)
   ============================================================ */
.media-kit { padding: 80px 0; background: var(--cream); text-align: center; }
.media-kit .section-title { margin-bottom: 16px; }
.media-kit p { max-width: 700px; margin: 0 auto 32px; color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* ============================================================
   FINAL CTA (Index)
   ============================================================ */
.final-cta { padding: 100px 0; background: var(--navy); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 60%); pointer-events: none; }
.cta-headline { font-family: var(--font-heading); font-size: 2.5rem; color: var(--white); margin-bottom: 20px; line-height: 1.2; position: relative; z-index: 2; }
.final-cta p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; line-height: 1.7; position: relative; z-index: 2; }

/* CTA Section (Inner Pages) */
.cta-section { padding: 80px 0; background: var(--navy); text-align: center; }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ============================================================
   FOOTER — All Variants
   ============================================================ */
.site-footer, .footer { background: var(--navy); color: var(--white); padding: 80px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer .container, .site-footer .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__content { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-brand { max-width: 300px; }
.footer-brand h3, .footer-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin-bottom: 12px; }
.footer-logo, .footer__logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--white); display: inline-block; margin-bottom: 12px; }
.footer-logo span, .footer__logo span { color: var(--gold); }
.footer-titles, .footer-tagline, .footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 8px; }
.footer-tagline, .footer__tagline { margin-bottom: 0; }

.footer-nav h4, .footer-links h4, .footer-contact h4, .footer-about h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 20px; }
.footer-nav ul, .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-nav a:hover, .footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-social h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 20px; }
.footer-social ul { display: flex; flex-direction: column; gap: 12px; }
.footer-social a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-social a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.site-footer .footer-social a, .footer .footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
.site-footer .footer-social a:hover, .footer .footer-social a:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-about p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; }

.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { padding: 80px 0; background: var(--cream); }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-intro-text p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }

.about-work { padding: 80px 0; background: var(--white); }
.about-work .section-title { text-align: center; margin-bottom: 40px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.work-card { background: var(--cream); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; transition: var(--transition); border: 1px solid transparent; }
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,169,110,0.15); }
.work-card h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--navy); margin-bottom: 16px; }
.work-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0; }

.about-drives { padding: 80px 0; background: var(--cream); }
.about-drives .section-title { text-align: center; margin-bottom: 40px; }
.drives-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.drive-quote { background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; border-left: 4px solid var(--gold); transition: var(--transition); }
.drive-quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.drive-quote p { font-size: 1.05rem; font-style: italic; color: var(--text-body); line-height: 1.8; margin-bottom: 0; }

.about-author { padding: 80px 0; background: var(--white); }
.author-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.author-text .section-title { margin-bottom: 20px; }
.author-text p { font-size: 1.05rem; line-height: 1.8; }
.author-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.about-mission { padding: 80px 0; background: var(--cream); text-align: center; }
.about-mission .section-title { margin-bottom: 24px; }
.mission-statement { font-family: var(--font-heading); font-size: 1.6rem; font-style: italic; color: var(--navy); line-height: 1.6; max-width: 700px; margin: 0 auto; }

.about-cta { padding: 60px 0; background: var(--navy); text-align: center; }
.about-cta p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 24px; }

/* ============================================================
   BOOKS PAGE
   ============================================================ */
.books-intro { padding: 60px 0 40px; background: var(--cream); }
.books-intro-text { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; text-align: center; max-width: 700px; margin: 0 auto; }

.book-section { padding: 60px 0; }
.book-section--cream { background: var(--cream); }
.book-section--white { background: var(--white); }
.book-section--dark { background: var(--navy); }
.book-section--dark .section-title { color: var(--white); }

.book-section .book-card { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; background: transparent; border: none; overflow: visible; }
.book-section--cream .book-card { background: var(--white); }
.book-section--white .book-card { background: var(--cream); }
.book-section--dark .book-card { background: rgba(255,255,255,0.05); }
.book-cover-placeholder { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: var(--shadow-lg); }
.book-cover--navy { background: linear-gradient(145deg, var(--navy), var(--navy-light)); }
.book-cover--teal { background: linear-gradient(145deg, var(--teal), var(--teal-light)); }
.book-cover--gold { background: linear-gradient(145deg, var(--gold), var(--gold-hover)); }
.book-cover--rose { background: linear-gradient(145deg, #8b4a6b, #a85d7f); }
.book-cover--dark { background: linear-gradient(145deg, #2a2a3a, #3a3a4a); }
.book-cover-placeholder .book-cover-title { font-family: var(--font-heading); color: var(--white); font-size: 1.4rem; text-align: center; padding: 24px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }

.book-section .book-title { font-size: 1.6rem; margin-bottom: 8px; }
.book-section .book-subtitle { font-size: 1rem; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.book-section .book-description { font-size: 1rem; line-height: 1.8; margin-bottom: 24px; }
.book-section--dark .book-title { color: var(--white); }
.book-section--dark .book-description { color: rgba(255,255,255,0.7); }

.book-audience { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.audience-tag { display: inline-block; padding: 6px 16px; background: rgba(201,169,110,0.1); color: var(--gold); border-radius: 20px; font-size: 0.8rem; font-weight: 500; }
.book-section--dark .audience-tag { background: rgba(201,169,110,0.15); color: var(--gold); }
.book-tagline { font-size: 1rem; color: var(--gold); font-weight: 500; margin-bottom: 12px; }
.book-quote { font-family: var(--font-heading); font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.6); margin-bottom: 16px; padding-left: 20px; border-left: 3px solid var(--gold); }

.book-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.works-development { text-align: center; }
.works-development .section-title { margin-bottom: 40px; }
.book-card--upcoming { max-width: 900px; margin: 0 auto; }

/* ============================================================
   SPEAKING PAGE
   ============================================================ */
.speaking-image-wrapper { margin: 40px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.speaking-hero-image { width: 100%; display: block; }

.talks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 40px; }
.talk-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; transition: var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.talk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.talk-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.talk-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; opacity: 0.5; }
.talk-card h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy); margin-bottom: 0; }
.talk-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.talk-best-for { font-size: 0.85rem; color: var(--text-muted); padding-top: 16px; border-top: 1px solid var(--gray-light); }
.talk-best-for strong { color: var(--text-dark); }

.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.format-item { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md); padding: 20px 24px; font-size: 0.95rem; color: var(--text-body); text-align: center; transition: var(--transition); font-weight: 500; }
.format-item:hover { border-color: var(--gold); background: rgba(201,169,110,0.05); transform: translateY(-2px); }
.bg-light .format-item { background: var(--cream); }

/* ============================================================
   HEALTHCARE LEADERSHIP PAGE
   ============================================================ */
.opening-text { max-width: 800px; margin: 0 auto; text-align: center; }
.opening-text p { font-size: 1.1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }

.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.focus-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; transition: var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.focus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.focus-card h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.focus-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0; }

.images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.image-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.image-card img { width: 100%; display: block; }
.image-card p { font-size: 0.85rem; color: var(--text-muted); padding: 12px 16px; text-align: center; background: var(--white); margin-bottom: 0; }

.collaboration-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.pill { display: inline-block; padding: 10px 20px; background: rgba(26,107,90,0.1); color: var(--teal); border-radius: 30px; font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.pill:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.contact-form-wrapper .section-title { margin-bottom: 32px; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group-full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-group label .required { color: #e74c3c; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark); background: var(--cream); border: 1px solid var(--gray-light); border-radius: var(--radius-md); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,169,110,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.contact-direct { position: sticky; top: 100px; }
.direct-contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.direct-contact-image { margin-bottom: 24px; border-radius: var(--radius-lg); overflow: hidden; }
.direct-contact-image img { width: 100%; }
.direct-contact-card .section-title { font-size: 1.5rem; margin-bottom: 24px; }
.direct-contact-list { display: flex; flex-direction: column; gap: 20px; }
.direct-contact-list li { display: flex; flex-direction: column; gap: 4px; }
.contact-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.direct-contact-list a { color: var(--gold); font-weight: 500; }
.direct-contact-list a:hover { color: var(--gold-hover); }
.direct-contact-list span { font-size: 0.95rem; color: var(--text-body); }

/* ============================================================
   MEDIA KIT PAGE
   ============================================================ */
.media-kit-profile { display: flex; align-items: center; gap: 40px; padding: 40px 0; }
.media-kit-profile__image { width: 180px; flex-shrink: 0; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-lg); }
.media-kit-profile__image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.media-kit-profile__name { font-family: var(--font-heading); font-size: 1.8rem; color: var(--navy); margin-bottom: 8px; }
.media-kit-profile__title { font-size: 1rem; color: var(--gold); font-weight: 500; margin-bottom: 4px; }
.media-kit-profile__title-alt { font-size: 0.9rem; color: var(--text-muted); }

.media-kit-section { padding: 40px 0; }
.media-kit-section__heading { font-family: var(--font-heading); font-size: 1.6rem; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-light); }
.media-kit-section__text { font-size: 1.05rem; line-height: 1.8; color: var(--text-body); margin-bottom: 16px; }
.media-kit-section__quote { border-left: 4px solid var(--gold); padding: 20px 24px; background: var(--cream-dark); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; }
.media-kit-section__quote p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 0; }

.media-kit-topics { display: flex; flex-wrap: wrap; gap: 12px; }
.tag { display: inline-block; padding: 8px 18px; background: rgba(201,169,110,0.1); color: var(--gold); border-radius: 20px; font-size: 0.85rem; font-weight: 500; transition: var(--transition); }
.tag:hover { background: var(--gold); color: var(--white); }

.media-kit-downloads { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 24px; }
.media-kit-download-card { background: var(--cream); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; transition: var(--transition); border: 1px solid transparent; }
.media-kit-download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201,169,110,0.15); }
.media-kit-download-card__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--gold); }
.media-kit-download-card__title { font-family: var(--font-heading); font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.media-kit-download-card__desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0; }

/* ============================================================
   INSIGHTS PAGE
   ============================================================ */
.insights-intro { padding: 60px 0 40px; background: var(--cream); }
.insights-opening { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; text-align: center; max-width: 700px; margin: 0 auto; }

.insights-categories { padding: 40px 0; background: var(--cream); }
.insights-categories .section-title { text-align: center; margin-bottom: 24px; font-size: 1.6rem; }
.category-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.category-pill { padding: 8px 20px; background: var(--white); border: 1px solid var(--gray-light); border-radius: 30px; font-size: 0.85rem; font-weight: 500; color: var(--text-muted); cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.category-pill:hover { border-color: var(--gold); color: var(--gold); }
.category-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.insights-articles { padding: 60px 0 100px; background: var(--cream); }
.insights-articles .section-title { text-align: center; margin-bottom: 40px; }
.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.article-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; transition: var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.article-tag { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.tag-mental-health { background: rgba(155,89,182,0.1); color: #9b59b6; }
.tag-aspiring { background: rgba(52,152,219,0.1); color: #3498db; }
.tag-before-title { background: rgba(230,126,34,0.1); color: #e67e22; }
.tag-leadership { background: rgba(26,107,90,0.1); color: var(--teal); }
.tag-medicine { background: rgba(231,76,60,0.1); color: #e74c3c; }
.tag-youth { background: rgba(201,169,110,0.1); color: var(--gold); }
.tag-books { background: rgba(26,35,50,0.1); color: var(--navy); }
.article-date { font-size: 0.8rem; color: var(--text-light); }
.article-title { font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.article-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.article-link { font-size: 0.9rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.article-link:hover { gap: 10px; }

/* ============================================================
   BOOK DETAIL PAGES
   ============================================================ */

/* Books Grid (books.html) */
.books-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin: 40px 0; }
.book-card-grid { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
.book-card-grid:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.book-card-grid__cover { padding: 0; }
.book-card-grid__body { padding: 28px; }
.book-card-grid__title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.book-card-grid__subtitle { font-size: 0.9rem; color: var(--gold); font-weight: 500; margin-bottom: 12px; }
.book-card-grid__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.book-card-grid--upcoming { max-width: 600px; margin: 40px auto; }
.book-card-grid--upcoming .book-card-grid__body { padding: 32px; }

/* Book Detail Layout */
.book-detail { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.book-detail__cover { position: sticky; top: 120px; }
.book-detail__info { padding: 20px 0; }
.book-detail__price { font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.book-detail__title { font-family: var(--font-heading); font-size: 2.4rem; color: var(--navy); margin-bottom: 8px; }
.book-detail__subtitle { font-size: 1.1rem; color: var(--gold); font-weight: 500; margin-bottom: 24px; }
.book-detail__desc { font-size: 1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.book-detail__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

/* Audience Grid */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 40px 0; }
.audience-card { background: var(--white); padding: 28px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.audience-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.audience-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.audience-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Themes List */
.themes-list { display: flex; flex-wrap: wrap; gap: 12px; margin: 40px 0; }
.theme-item { background: var(--white); padding: 12px 24px; border-radius: 30px; font-size: 0.9rem; font-weight: 500; color: var(--navy); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); }

/* Author Note */
.author-note { max-width: 700px; margin: 0 auto; text-align: center; padding: 40px 0; }
.author-note p { font-size: 1.1rem; font-style: italic; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.author-note__sig { font-size: 1rem; color: var(--gold); font-weight: 600; margin-top: 24px; }

/* Purchase Options */
.purchase-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.purchase-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--transition); cursor: pointer; }
.purchase-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.purchase-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.purchase-card h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.purchase-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* Section title light variant */
.section-title--light { color: var(--white); }

/* Page header subtitle */
.page-header__subtitle { font-size: 1.2rem; color: var(--gold); font-weight: 500; margin-top: 8px; }

/* ============================================================
   BULK ORDER FORM
   ============================================================ */
.bulk-order-intro { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.bulk-order-intro p { font-size: 1.05rem; color: var(--text-body); line-height: 1.8; }
.bulk-form { max-width: 600px; margin: 0 auto; background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--gray-light); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark); background: var(--cream); transition: var(--transition); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.15); }
.form-group textarea { resize: vertical; }
.btn--full { width: 100%; text-align: center; }
.form-success { text-align: center; padding: 40px 0; }
.form-success h2 { color: var(--teal); margin-bottom: 16px; }
.form-success p { font-size: 1.05rem; color: var(--text-body); line-height: 1.8; margin-bottom: 24px; }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 992px) {
  .hero-container, .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { order: 1; }
  .hero-image { order: 2; }
  .hero-tagline, .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-image img { max-width: 400px; margin: 0 auto; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .about-container, .about-intro-grid, .healthcare-container, .author-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image, .healthcare-image, .author-image { order: -1; max-width: 500px; margin: 0 auto; }
  .books-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .book-detail { grid-template-columns: 1fr; gap: 32px; }
  .book-detail__cover { position: static; max-width: 400px; margin: 0 auto; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .purchase-options { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .speaking-container { grid-template-columns: 1fr; }
  .speaking-content { order: 2; }
  .speaking-image { order: 1; }
  .audiences-grid { grid-template-columns: repeat(2, 1fr); }
  .talks-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-direct { position: static; }
  .footer-grid, .footer-container, .footer-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { max-width: 100%; }
  .footer__content { grid-template-columns: 1fr; }
  .work-grid, .drives-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .book-section .book-card { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .media-kit-downloads { grid-template-columns: repeat(2, 1fr); }
  .media-kit-profile { flex-direction: column; text-align: center; }
  .media-kit-profile__image { width: 150px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }

  /* Mobile Nav */
  .nav-links, .nav-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--cream); flex-direction: column; justify-content: center; align-items: center; gap: 24px; box-shadow: -4px 0 20px rgba(0,0,0,0.1); transition: var(--transition); z-index: 999; padding: 40px; }
  .nav-links.open, .nav-links.active, .nav-menu.open, .nav-menu.active { right: 0; }
  .nav-links a, .nav-menu a { font-size: 1.1rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  .audiences-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .formats-grid { grid-template-columns: 1fr; }
  .page-header, .page-banner { padding: 120px 0 60px; }
  .page-header h1, .banner-content h1 { font-size: 2.2rem; }
  .cta-headline, .cta-content h2 { font-size: 1.8rem; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .mission-statement { font-size: 1.3rem; }
  .images-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero-headline { font-size: 2rem; }
  .btn { padding: 12px 24px; font-size: 0.875rem; }
  .pillar-card, .work-card, .talk-card, .focus-card { padding: 28px 20px; }
  .book-info { padding: 20px; }
  .media-kit-downloads { grid-template-columns: 1fr; }
  .direct-contact-card { padding: 24px; }
}

/* Print */
@media print {
  .navbar, .site-header, .hamburger, .nav-toggle, .cta-section, .final-cta, .footer, .site-footer { display: none !important; }
  body { background: var(--white); color: var(--text-dark); }
  .page-header, .page-banner { background: var(--white); padding: 20px 0; border-bottom: 2px solid var(--navy); }
  .page-header h1, .banner-content h1 { color: var(--navy); }
}
