/* ============================================
   CHAD WADDEN — Personal Brand Site
   chadwadden.ca
   ============================================ */

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

:root {
  --navy:      #0d1b2e;
  --navy-mid:  #1a2f4a;
  --blue:      #1e4d8c;
  --teal:      #0ea5a0;
  --orange:    #e07b39;
  --cream:     #f8f6f2;
  --white:     #ffffff;
  --gray-100:  #f3f4f6;
  --gray-300:  #d1d5db;
  --gray-500:  #6b7280;
  --gray-700:  #374151;
  --text:      #1a1a2e;

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

  --max-w: 1200px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: #163d70; border-color: #163d70; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,77,140,0.3); }

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

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover { background: #0c8f8a; transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-text .tagline-sm {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,77,140,0.35) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-headline .line {
  display: block;
}
.hero-headline .dot {
  color: var(--teal);
}
.hero-headline .dot-orange {
  color: var(--orange);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 24px 0 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero right — visual card stack */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px;
  transition: border-color 0.3s;
}
.hero-card:hover { border-color: rgba(14,165,160,0.4); }

.hero-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.hero-card-icon.blue  { background: rgba(30,77,140,0.3); }
.hero-card-icon.teal  { background: rgba(14,165,160,0.25); }
.hero-card-icon.orange{ background: rgba(224,123,57,0.25); }
.hero-card-icon.green { background: rgba(34,197,94,0.2); }

.hero-card h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.hero-card.span-2 { grid-column: span 2; }

/* ============================================
   TRUST BAR
   ============================================ */
#trust-bar {
  background: var(--navy-mid);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: nowrap;
}

.trust-item {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}
.trust-item:hover { color: rgba(255,255,255,0.75); }

/* ============================================
   PILLARS
   ============================================ */
#pillars {
  background: var(--cream);
  padding: 90px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pillar-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pillar-header {
  padding: 36px 36px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.pillar-icon.education { background: rgba(30,77,140,0.1); }
.pillar-icon.coaching  { background: rgba(224,123,57,0.1); }

.pillar-header-text h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.pillar-header-text p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.pillar-features {
  padding: 0 36px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pillar-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.check.blue   { background: rgba(30,77,140,0.12); color: var(--blue); }
.check.orange { background: rgba(224,123,57,0.15); color: var(--orange); }

.pillar-footer {
  padding: 20px 36px 28px;
  border-top: 1px solid var(--gray-100);
}

.pillar-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.pillar-link:hover { gap: 10px; }
.pillar-link.blue-link   { color: var(--blue); }
.pillar-link.orange-link { color: var(--orange); }

/* ============================================
   CONTENT ENGINE (Writing / YouTube / Resources)
   ============================================ */
#content-engine {
  background: var(--white);
  padding: 90px 0;
}

.content-engine-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.content-engine-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.content-engine-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
}

.content-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--gray-300);
  background: transparent;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(30,77,140,0.06);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}

.blog-card-body {
  padding: 20px 22px 22px;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

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

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* YouTube grid */
.youtube-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.yt-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
  cursor: pointer;
}

.yt-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-mid), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.yt-play {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  transition: transform 0.2s;
  padding-left: 4px;
}
.yt-card:hover .yt-play { transform: scale(1.1); }

.yt-info {
  padding: 14px 16px;
}
.yt-info h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.4;
}
.yt-info span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.yt-card.featured { grid-row: span 2; }
.yt-card.featured .yt-thumbnail { aspect-ratio: unset; height: 240px; }
.yt-card.featured .yt-info { padding: 18px 20px; }
.yt-card.featured .yt-info h4 { font-size: 1rem; }

/* Resources grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.resource-card {
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.resource-card:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: var(--shadow); }

.resource-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.resource-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}

.resource-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.5;
}

.resource-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.resource-badge.free { background: rgba(14,165,160,0.12); color: var(--teal); }
.resource-badge.paid { background: rgba(224,123,57,0.12); color: var(--orange); }

.resource-btn {
  display: block;
  text-align: center;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  transition: all 0.2s;
}
.resource-btn:hover { border-color: var(--blue); color: var(--blue); }
.resource-btn.free-btn { border-color: var(--teal); color: var(--teal); }
.resource-btn.free-btn:hover { background: var(--teal); color: var(--white); }

/* ============================================
   NEWSLETTER
   ============================================ */
#newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2a4a 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

#newsletter::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14,165,160,0.15) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.newsletter-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.newsletter-bullets li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(14,165,160,0.25);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.newsletter-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 32px;
}

.newsletter-form-wrap h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.newsletter-form-wrap p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}

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

.form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus { outline: none; border-color: var(--teal); }

.form-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ============================================
   SPEAKING / WORKSHOPS
   ============================================ */
#speaking {
  background: var(--cream);
  padding: 90px 0;
}

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

.speaking-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.speaking-card:hover { transform: translateY(-3px); }

.speaking-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.speaking-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.speaking-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.speaking-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.speaking-link:hover { gap: 10px; }

/* ============================================
   ABOUT STRIP
   ============================================ */
#about-strip {
  background: var(--white);
  padding: 90px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-mid), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.2);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(224,123,57,0.35);
}
.about-badge .number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-links {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover { background: var(--blue); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual      { max-width: 500px; }
  .pillars-grid     { grid-template-columns: 1fr; }
  .blog-grid        { grid-template-columns: 1fr 1fr; }
  .resources-grid   { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-inner      { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 360px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-headline { font-size: 2.4rem; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .blog-grid        { grid-template-columns: 1fr; }
  .speaking-grid    { grid-template-columns: 1fr; }
  .youtube-grid     { grid-template-columns: 1fr; }
  .yt-card.featured { grid-row: unset; }
  .yt-card.featured .yt-thumbnail { height: auto; }
  .resources-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-visual  { grid-template-columns: 1fr; }
  .hero-card.span-2 { grid-column: 1; }
  .resources-grid { grid-template-columns: 1fr; }
  .content-tabs { gap: 6px; }
  .tab-btn { padding: 8px 16px; font-size: 0.82rem; }
}
