/* ============================================================
   BEN PICKETT — PERSONAL BRAND SITE
   style.css
   ============================================================ */

/* === VARIABLES === */
:root {
  --dark:        #0E1B14;   /* deep forest green */
  --dark-2:      #162817;   /* forest surface */
  --dark-3:      #1F3320;   /* forest mid */
  --blue:        #C8773A;   /* copper — primary CTA */
  --blue-light:  #D68B4E;   /* lighter copper (hover) */
  --blue-xlight: #FAF0E6;   /* warm cream light */
  --amber:       #A85E28;   /* dark copper */
  --amber-light: #D68B4E;   /* mid copper */
  --amber-xlight:#FDF3E8;   /* very light copper tint */
  --sage:        #7A9E8A;   /* muted Pacific Northwest sage */
  --sage-light:  #EAF2EE;   /* very light sage tint */
  --white:       #FFFFFF;
  --text:        #111827;
  --text-2:      #374151;
  --muted:       #6B7280;
  --muted-light: #9CA3AF;
  --bg:          #FFFFFF;
  --bg-2:        #F8F5F0;   /* warm off-white */
  --bg-warm:     #F5F0EA;   /* warmer off-white */
  --border:      #E8E2D9;   /* warm border */
  --border-2:    #D4CCC0;   /* warm border darker */
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 2px rgba(0,0,0,0.06);
  --shadow:      0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg:   0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl:   0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --max-w:       1200px;
  --font:        'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h:       72px;
  --transition:  0.25s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select {
  font-family: var(--font);
  font-size: 1rem;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { line-height: 1.75; color: var(--text-2); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: block;
}
.eyebrow-amber { color: var(--amber); }
.eyebrow-muted { color: var(--muted); }

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-2);
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section       { padding: 6rem 0; }
.section-sm    { padding: 4rem 0; }
.section-lg    { padding: 8rem 0; }
.section-alt   { background: var(--bg-2); }
.section-warm  { background: var(--bg-warm); }
.section-dark  { background: var(--dark); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .eyebrow { color: var(--amber-light); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.1rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1  { gap: 0.5rem; }
.gap-2  { gap: 1rem; }
.gap-3  { gap: 1.5rem; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.transparent { background: transparent; }
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav.scrolled .nav-logo { color: var(--text); }
.nav.scrolled .nav-links a { color: var(--text-2); }
.nav.scrolled .nav-links a:hover { color: var(--blue); }
.nav.dark-page { background: rgba(255,255,255,0.97); box-shadow: 0 1px 0 var(--border); }
.nav.dark-page .nav-logo { color: var(--text); }
.nav.dark-page .nav-links a { color: var(--text-2); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color var(--transition);
  flex-shrink: 0;
}
.nav-logo span { color: var(--amber-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.active { color: var(--white); }
.nav-cta {
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  margin-left: auto;
  padding: 0.25rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover { background: var(--blue-xlight); transform: translateY(-1px); }
.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-amber:hover { background: var(--amber-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-nav {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--amber-light); }

/* === HERO === */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(122,158,138,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(200,119,58,0.12) 0%, transparent 60%),
    radial-gradient(circle, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 36px 36px;
  pointer-events: none;
}
.hero-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-text { position: relative; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.5rem;
}
.hero-text h1 {
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.93;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}
.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-tagline span { color: rgba(255,255,255,0.85); }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-img-inner {
  position: relative;
  max-width: 400px;
  width: 100%;
}
.hero-img-inner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(ellipse, rgba(122,158,138,0.22) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-img-inner img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.hero-stats {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  position: relative;
  z-index: 1;
}
.hero-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 80% 50%, rgba(122,158,138,0.12) 0%, transparent 70%),
    radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.page-hero .lead { color: rgba(255,255,255,0.65); max-width: 600px; }
.page-hero .eyebrow { color: var(--amber-light); }

/* === AUTHORITY BAR === */
.authority {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.authority-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.authority-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.authority-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.authority-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.authority-badge-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
}
.authority-badge-sub {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.authority-divider {
  width: 1px;
  height: 40px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* === SERVICE CARDS === */
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border-2);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.service-icon-blue  { background: var(--blue-xlight); }
.service-icon-amber { background: var(--amber-xlight); }
.service-icon-dark  { background: var(--dark); }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p  { font-size: 0.95rem; margin-bottom: 1.5rem; }
.service-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.6rem; }

/* === KEYNOTE FEATURE (homepage) === */
.keynote-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(122,158,138,0.18) 0%, transparent 70%);
}
.play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.play-btn svg { margin-left: 4px; }
.video-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.keynote-text .eyebrow { margin-bottom: 0.75rem; }
.keynote-text h2 { margin-bottom: 1rem; }
.keynote-text p  { margin-bottom: 1.5rem; }
.keynote-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: var(--bg-2);
  color: var(--muted);
  border: 1px solid var(--border);
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--sage);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-2), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 0.8rem; color: var(--muted); }

/* === BLOG CARDS === */
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img {
  height: 200px;
  width: 100%;
}
.blog-img-1 { background: linear-gradient(135deg, #0e2018 0%, #1a4030 60%, #3a7a58 100%); }
.blog-img-2 { background: linear-gradient(135deg, #1a1a10 0%, #3a3010 50%, #7a6020 100%); }
.blog-img-3 { background: linear-gradient(135deg, #1a1008 0%, #4a2808 50%, #8a5018 100%); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.35; }
.blog-card p  { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.25rem; }
.blog-read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* === PHOTOGRAPHY GRID === */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.photo-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition);
}
.photo-item:hover { transform: scale(1.02); }
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-item:hover img { transform: scale(1.06); }
.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.photo-caption {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
}
/* Photo gradient placeholders */
.p1 { background: linear-gradient(160deg, #1a2535 0%, #2c4a6a 40%, #c4943a 100%); }
.p2 { background: linear-gradient(160deg, #2a3a1a 0%, #4a7a30 50%, #8ab24a 100%); }
.p3 { background: linear-gradient(160deg, #3a2010 0%, #7a4520 50%, #c47530 100%); }
.p4 { background: linear-gradient(180deg, #1a2040 0%, #2a3870 50%, #5a7aaa 100%); }
.p5 { background: linear-gradient(160deg, #251015 0%, #5a2020 50%, #aa4535 100%); }
.p6 { background: linear-gradient(160deg, #0f1a10 0%, #1a3020 50%, #3a6a3a 100%); }

/* === TALK CARDS (speaking page) === */
.talk-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.talk-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.talk-number {
  width: 52px;
  height: 52px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.talk-body h3 { margin-bottom: 0.35rem; }
.talk-subtitle {
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 1rem;
}
.talk-body p { font-size: 0.95rem; margin-bottom: 1.25rem; }
.talk-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.talk-meta-item {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* === PROCESS STEPS === */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 26px; left: calc(12.5% + 26px); right: calc(12.5% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--dark), var(--sage), var(--blue));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-num {
  width: 52px;
  height: 52px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 6px var(--bg-2);
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.875rem; }

/* === ENGAGEMENT FORMATS === */
.format-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.format-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }
.format-card h3 { margin-bottom: 0.5rem; }
.format-card p  { font-size: 0.9rem; }

/* === FAQ === */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-q .faq-icon { font-size: 1.25rem; color: var(--muted); transition: transform var(--transition); flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-a {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-a.open { max-height: 300px; padding-top: 1rem; }

/* === ABOUT PAGE SECTIONS === */
.about-chapter {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.about-chapter:last-child { border-bottom: none; }
.about-chapter-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.35rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-chapter-body h2 { margin-bottom: 1.25rem; font-size: 2rem; }
.about-chapter-body p  { margin-bottom: 1.25rem; }
.about-chapter-body p:last-child { margin-bottom: 0; }

.creds-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-2);
}

.beliefs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.belief-item {
  padding: 1.25rem;
  background: var(--bg-2);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* === FORMS === */
.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.form-label .req { color: var(--blue); }
.form-input, .form-textarea, .form-select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(200,119,58,0.2);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
  text-align: center;
}
.contact-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p  { font-size: 0.95rem; margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 500;
}
.contact-link-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* === NEWSLETTER === */
.newsletter { background: var(--dark); padding: 5rem 0; }
.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter h2 { color: var(--white); font-size: 2rem; margin-bottom: 1rem; }
.newsletter p  { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--blue-light);
  background: rgba(255,255,255,0.1);
}
.newsletter-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.75rem; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(200,119,58,0.12) 0%, transparent 70%);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.65); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  display: block;
}
.footer-logo span { color: var(--amber-light); }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* === UTILITIES === */
.text-center { text-align: center; }
.text-muted   { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* === FADE-IN ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-main         { grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-img          { display: flex; justify-content: center; order: -1; padding-top: 2rem; }
  .hero-img-inner    { width: 180px; height: 180px; overflow: hidden; border-radius: 50%; }
  .hero-img-inner img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: none; }
  .hero-img-inner::before { display: none; }
  .hero-stats-inner  { grid-template-columns: repeat(2, 1fr); }
  .keynote-feature   { grid-template-columns: 1fr; }
  .about-chapter     { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-chapter-label { position: static; }
  .process-steps     { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-split     { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .grid-4            { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 1.25rem; }
  .section   { padding: 4rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
  }
  .nav-links.open a { color: rgba(255,255,255,0.8); padding: 0.75rem 0.5rem; border-radius: 0; }
  .nav-toggle { display: block; }
  .hero-stats-inner  { grid-template-columns: repeat(2, 1fr); }
  .photo-grid        { grid-template-columns: repeat(2, 1fr); }
  .beliefs-list      { grid-template-columns: 1fr; }
  .talk-card         { grid-template-columns: 1fr; gap: 1rem; }
  .footer-grid       { grid-template-columns: 1fr; }
  .process-steps     { grid-template-columns: 1fr; }
  .newsletter-form   { flex-direction: column; }
  .hero-btns         { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 3.5rem; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .authority-items  { gap: 1.5rem; }
}
