/* ============================================================
   KEN HELLEM — kenhellem.com
   Design Tokens + Full Stylesheet
   v2.0 · April 2026 · "10 Lifetimes" Edition
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  --forest: #2B4C42;
  --forest-mid: #3D6B5C;
  --forest-light: #4E8A78;
  --forest-bg: rgba(43,76,66,0.06);
  --copper: #D4944F;
  --copper-light: #E8B06A;
  --copper-glow: #F0C88A;
  --copper-bg: rgba(212,148,79,0.1);
  --linen: #FAF8F4;
  --sand: #F0EBE3;
  --sand-mid: #E5DED4;
  --border: #DDD5CA;
  --text-rich: #2A2521;
  --text-warm: #524A42;
  --text-quiet: #8C8278;
  --white: #FFFFFF;
  --grad-copper: linear-gradient(135deg, #C4793A, #D4944F 40%, #E8B06A 70%, #F0C88A);
  --grad-copper-bold: linear-gradient(135deg, #B86E30, #D4944F 35%, #F0C88A);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --space-xs: 4px; --space-sm: 8px; --space-md: 16px;
  --space-lg: 24px; --space-xl: 32px; --space-2xl: 48px;
  --space-3xl: 64px; --space-4xl: 96px;
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 20px; --r-full: 999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--linen);
  color: var(--text-rich);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--forest); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 var(--space-lg); }
section { padding: var(--space-4xl) 0; position: relative; overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h1 { font-size: clamp(36px, 5vw, 52px); letter-spacing: -1.5px; }
h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -1px; }
h3 { font-size: clamp(20px, 2.5vw, 26px); }

.label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--copper);
  margin-bottom: var(--space-md);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-3xl);
}
.section-header p {
  color: var(--text-warm);
  font-size: 17px; line-height: 1.75;
  margin-top: var(--space-md);
}


/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.3px;
  border: none; cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none; text-align: center;
}
.btn-primary {
  background: var(--forest); color: var(--white);
  border-radius: var(--r-full);
  box-shadow: 0 4px 14px rgba(43,76,66,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(43,76,66,0.35); color: var(--white); }
.btn-accent {
  background: var(--grad-copper-bold); color: var(--white);
  border-radius: var(--r-full);
  box-shadow: 0 4px 16px rgba(212,148,79,0.3);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,148,79,0.4); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--forest);
  border: 2px solid var(--forest); border-radius: var(--r-full);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,0.1); color: var(--white);
  border-radius: var(--r-full); backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); color: var(--white); }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(42,37,33,0.06); }
.nav .container {
  display: flex; justify-content: space-between; align-items: center; height: 64px;
}
.nav-logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; letter-spacing: -0.5px; color: var(--forest);
}
.nav-links {
  display: flex; align-items: center; gap: var(--space-xl); list-style: none;
}
.nav-links a {
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--text-warm); transition: color 0.2s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links .btn { padding: 10px 20px; font-size: 13px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: var(--space-sm); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-rich); margin: 5px 0; transition: all 0.3s; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--forest); color: var(--white);
  padding: 140px 0 var(--space-4xl);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 5px;
  background: var(--grad-copper-bold);
}
.hero .container {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl); align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { color: var(--white); margin-bottom: var(--space-lg); line-height: 1.1; }
.hero h1 .accent { color: var(--copper-light); }
.hero-sub {
  font-size: 18px; line-height: 1.7; opacity: 0.75;
  max-width: 520px; margin-bottom: var(--space-lg);
}
.hero-buttons { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.hero-image {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: flex-end;
  align-self: stretch;
  margin-bottom: calc(-1 * var(--space-4xl));
  margin-top: -40px;
}
.hero-image img {
  max-width: 480px; width: 100%;
  border-radius: 0;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.3));
  object-fit: contain;
}
.hero .ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.06); pointer-events: none;
}
.hero .ring-1 { width: 200px; height: 200px; top: 60px; right: 10%; }
.hero .ring-2 { width: 80px; height: 80px; bottom: 80px; left: 5%; }


/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--sand);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}
.stats-bar .container {
  display: flex; justify-content: center; align-items: center;
  gap: var(--space-3xl); flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  color: var(--forest);
  line-height: 1;
}
.stat-label {
  font-size: 12px; font-weight: 600;
  color: var(--text-quiet);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ============================================================
   PROOF STRIP (FLAGS & LOGOS)
   ============================================================ */
.proof-strip {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}
.proof-heading {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-quiet);
  margin-bottom: var(--space-md);
}

/* FLAGS */
.flag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.flag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-warm);
  transition: all 0.2s;
  white-space: nowrap;
}
.flag-item:hover {
  background: var(--sand);
  border-color: var(--sand-mid);
}
.flag-item.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.fi { font-size: 16px; line-height: 1; }

/* COMPANY LOGOS */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 16px;
}
.co {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-rich);
  opacity: 0.25;
  transition: opacity 0.3s;
  line-height: 1.8;
}
.co:hover { opacity: 0.7; }
.co.sm {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.18;
}


/* ============================================================
   PHOTO MOSAIC
   ============================================================ */
.photo-mosaic {
  padding: var(--space-lg) 0;
  background: var(--white);
  overflow: hidden;
}
.mosaic-track {
  display: flex;
  gap: var(--space-sm);
  padding: 0 var(--space-sm);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mosaic-track::-webkit-scrollbar { display: none; }
.mosaic-img {
  flex: 0 0 220px;
  height: 160px;
  border-radius: var(--r-md);
  overflow: hidden;
  scroll-snap-align: start;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mosaic-img.visible {
  opacity: 1;
  transform: scale(1);
}
.mosaic-img:nth-child(2).visible { transition-delay: 0.05s; }
.mosaic-img:nth-child(3).visible { transition-delay: 0.1s; }
.mosaic-img:nth-child(4).visible { transition-delay: 0.15s; }
.mosaic-img:nth-child(5).visible { transition-delay: 0.2s; }
.mosaic-img:nth-child(6).visible { transition-delay: 0.25s; }
.mosaic-img:nth-child(7).visible { transition-delay: 0.3s; }
.mosaic-img:nth-child(8).visible { transition-delay: 0.35s; }
.mosaic-img:nth-child(9).visible { transition-delay: 0.4s; }
.mosaic-img:nth-child(10).visible { transition-delay: 0.45s; }
.mosaic-img:nth-child(11).visible { transition-delay: 0.5s; }
.mosaic-img:nth-child(12).visible { transition-delay: 0.55s; }
.mosaic-img.tall { flex: 0 0 280px; }
.mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mosaic-img:hover img { transform: scale(1.08); }


/* ============================================================
   PHOTO FEATURE (FULL-WIDTH HERO-STYLE)
   ============================================================ */
.photo-feature {
  position: relative;
  height: 620px;
  overflow: hidden;
}
.photo-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.photo-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,76,66,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-3xl) var(--space-2xl);
}
.photo-feature-content {
  max-width: 560px;
}
.photo-feature-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--copper-light);
  margin-bottom: var(--space-md);
  background: rgba(0,0,0,0.3);
  padding: 6px 14px;
  border-radius: var(--r-full);
}
.photo-feature-heading {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}


/* ============================================================
   TIMELINE / REINVENTIONS
   ============================================================ */
.reinventions { padding: var(--space-4xl) 0; }

.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--border) 0%, var(--forest) 20%, var(--forest) 80%, var(--copper) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item:nth-child(2).visible { transition-delay: 0.08s; }
.timeline-item:nth-child(3).visible { transition-delay: 0.16s; }
.timeline-item:nth-child(4).visible { transition-delay: 0.24s; }
.timeline-item:nth-child(5).visible { transition-delay: 0.32s; }
.timeline-item:nth-child(6).visible { transition-delay: 0.40s; }

.timeline-marker {
  position: absolute;
  left: -48px;
  top: 24px;
  width: 30px;
  display: flex;
  justify-content: center;
}
.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--forest);
  border: 3px solid var(--linen);
  box-shadow: 0 0 0 2px var(--forest);
}
.dot-future {
  background: var(--copper);
  box-shadow: 0 0 0 2px var(--copper), 0 0 12px rgba(212,148,79,0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--copper), 0 0 12px rgba(212,148,79,0.4); }
  50% { box-shadow: 0 0 0 2px var(--copper), 0 0 20px rgba(212,148,79,0.6); }
}

.timeline-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.timeline-card.has-photo {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-md);
}
.timeline-photo {
  flex: 0 0 100px;
  height: 120px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.timeline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.timeline-card-body {
  flex: 1;
  min-width: 0;
  padding-top: var(--space-xs);
}
.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(42,37,33,0.07);
}
.timeline-card.now {
  border: 2px solid var(--forest);
  background: linear-gradient(135deg, var(--white) 0%, rgba(43,76,66,0.03) 100%);
}
.timeline-card.now::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-copper-bold);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.future-card {
  border: 2px dashed var(--copper);
  background: linear-gradient(135deg, var(--white) 0%, rgba(212,148,79,0.04) 100%);
}
.timeline-era {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--copper);
  margin-bottom: var(--space-sm);
}
.timeline-card h3 {
  color: var(--forest);
  margin-bottom: var(--space-sm);
  font-size: 22px;
}
.timeline-card p {
  color: var(--text-warm);
  font-size: 15px; line-height: 1.7;
}
.timeline-tag {
  display: inline-block;
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  color: var(--text-quiet);
  background: var(--sand);
  padding: 4px 12px;
  border-radius: var(--r-full);
}


/* ============================================================
   BUCKET LIST
   ============================================================ */
.bucket { background: var(--sand); }
.bucket-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}
.bucket-content p {
  color: var(--text-warm); line-height: 1.8; margin-bottom: var(--space-md);
}
.bucket-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.bucket-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
}
.bucket-card.done { opacity: 0.7; }
.bucket-card.new { border: 2px solid var(--forest); }
.bucket-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.bucket-status {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.bucket-card.done .bucket-status { color: var(--text-quiet); }
.bucket-card.new .bucket-status { color: var(--copper); }
.bucket-version {
  font-size: 10px; font-weight: 700;
  color: var(--text-quiet);
  background: var(--sand);
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.bucket-card ul {
  list-style: none;
}
.bucket-card li {
  font-size: 14px;
  padding: 6px 0;
  color: var(--text-warm);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding-left: 22px;
  position: relative;
}
.bucket-card li:last-child { border-bottom: none; }
.bucket-card li::before {
  content: '○';
  position: absolute; left: 0;
  color: var(--text-quiet);
  font-size: 12px;
}
.bucket-card li.checked {
  color: var(--text-quiet);
  text-decoration: line-through;
}
.bucket-card li.checked::before {
  content: '✓';
  color: var(--forest);
  font-weight: 700;
}
.bucket-card.done li { text-decoration: line-through; }
.bucket-card.done li::before { content: '✓'; color: var(--forest); font-weight: 700; }

/* Bucket list proof photos */
.bucket-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.bucket-proof-img {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
}
.bucket-proof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bucket-proof-img:hover img { transform: scale(1.08); }
.bucket-proof-img span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 6px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ============================================================
   FRAMEWORKS & JOURNALING
   ============================================================ */
.frameworks {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.frameworks-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.frameworks-text p {
  color: var(--text-warm);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.frameworks-text p:last-of-type {
  font-style: italic;
  color: var(--copper);
  font-weight: 500;
}
.framework-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-xl);
}
.fw-pill {
  display: inline-block;
  padding: 8px 16px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: var(--r-full);
}

/* Journal photo gallery - masonry-ish grid */
.journal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: var(--space-sm);
}
.journal-img {
  border-radius: var(--r-md);
  overflow: hidden;
}
.journal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.journal-img:hover img {
  transform: scale(1.05);
}

/* Gallery layout: 3 cols, varied sizes */
.jg-1 {
  grid-column: 1 / 3;
  grid-row: 1;
  height: 200px;
}
.jg-2 {
  grid-column: 3;
  grid-row: 1 / 3;
  height: 100%;
}
.jg-3 {
  grid-column: 1;
  grid-row: 2;
  height: 160px;
}
.jg-4 {
  grid-column: 2;
  grid-row: 2;
  height: 160px;
}
.jg-5 {
  grid-column: 1 / 2;
  grid-row: 3;
  height: 160px;
}
.jg-6 {
  grid-column: 2 / 4;
  grid-row: 3;
  height: 160px;
}


/* ============================================================
   NOW SECTION
   ============================================================ */
.now-section { padding: var(--space-4xl) 0; }
.now-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.now-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.now-card.has-img {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.now-card-img {
  height: 180px;
  overflow: hidden;
}
.now-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.now-card:hover .now-card-img img { transform: scale(1.05); }
.now-card-body {
  padding: var(--space-lg);
}
.now-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(42,37,33,0.08);
}
.now-icon {
  font-size: 32px;
  margin-bottom: var(--space-md);
}
.now-card h3 {
  color: var(--forest);
  margin-bottom: var(--space-sm);
  font-size: 20px;
}
.now-card p {
  color: var(--text-warm);
  font-size: 15px; line-height: 1.7;
}
.now-link {
  display: inline-block;
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  color: var(--copper);
  transition: color 0.2s;
}
.now-link:hover { color: var(--forest); }


/* ============================================================
   VIDEO SECTION (50 LUNCHES)
   ============================================================ */
.video-section {
  padding: var(--space-4xl) 0;
  background: var(--forest);
  color: var(--white);
}
.video-section .label { color: var(--copper-light); }
.video-section .section-header h2 { color: var(--white); }
.video-section .section-header p { color: rgba(255,255,255,0.65); }

.video-hero {
  display: block;
  max-width: 880px;
  margin: 0 auto var(--space-2xl);
  text-decoration: none;
  color: inherit;
}
.video-thumb-hero {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-hero:hover .video-thumb-hero {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
}
.video-thumb-hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 50px;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.video-hero:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.video-caption {
  margin-top: var(--space-lg);
  text-align: center;
}
.video-caption h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: var(--space-xs);
}
.video-caption p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 880px;
  margin: 0 auto;
}
.video-thumb {
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}
.video-thumb-sm {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}
.video-thumb:hover .video-thumb-sm {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.video-thumb-sm img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.play-btn-sm {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 34px;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.video-thumb:hover .play-btn-sm {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.video-thumb h4 {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-top: var(--space-sm);
}

.video-section .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.video-section .btn-outline:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}


/* ============================================================
   CONTENT GRID
   ============================================================ */
.content-section {
  background: var(--sand);
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 860px;
  margin: 0 auto;
}
.content-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(42,37,33,0.08);
  border-color: var(--sand-mid);
  color: inherit;
}
.content-card.content-featured {
  grid-column: 1 / -1;
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  padding: 0;
  overflow: hidden;
}
.content-featured-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
}
.content-featured-text {
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
}
.content-featured-img {
  overflow: hidden;
}
.content-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.content-card.content-featured:hover .content-featured-img img {
  transform: scale(1.05);
}
.content-card.content-featured:hover {
  box-shadow: 0 12px 32px rgba(43,76,66,0.2);
  border-color: var(--forest);
  color: var(--white);
}
.content-card.content-featured .content-type { color: var(--copper-light); }
.content-card.content-featured h3 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 32px);
}
.content-card.content-featured p { opacity: 0.75; font-size: 17px; color: var(--white); }
.content-card.content-featured .content-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.content-card.content-featured .content-arrow { color: var(--copper-light); }
.content-card.content-featured .content-meta { border-color: rgba(255,255,255,0.1); }
.content-featured-text .content-meta { margin-top: auto; }

.content-type {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--copper);
  margin-bottom: var(--space-sm);
}
.content-card h3 {
  font-size: 20px;
  color: var(--forest);
  margin-bottom: var(--space-sm);
}
.content-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-warm);
  flex-grow: 1;
}
.content-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}
.content-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-quiet);
  background: var(--sand);
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.content-arrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--copper);
  transition: transform 0.2s;
}
.content-card:hover .content-arrow { transform: translateX(3px); }


/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  background: var(--forest); color: var(--white);
  padding: var(--space-4xl) 0; position: relative;
}
.testimonial-section .ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.06); pointer-events: none;
}
.testimonial-section .ring-1 { width: 140px; height: 140px; top: 30px; right: 10%; }
.testimonial-section .ring-2 { width: 60px; height: 60px; bottom: 40px; left: 8%; }
.testimonial-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.testimonial-bar {
  width: 48px; height: 4px;
  background: var(--grad-copper-bold);
  border-radius: 2px; margin: 0 auto var(--space-xl);
}
.testimonial-quote {
  font-size: clamp(18px, 2.5vw, 22px);
  font-style: italic; line-height: 1.6;
  margin-bottom: var(--space-xl); opacity: 0.95;
}
.testimonial-author { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 13px; opacity: 0.5; margin-top: 4px; }


/* ============================================================
   PROGRAMS
   ============================================================ */
.programs { padding: var(--space-4xl) 0; }
.program-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-lg); max-width: 860px; margin: 0 auto;
}
.program-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: var(--space-xl); border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(42,37,33,0.08); }
.program-card.featured { border: 2px solid var(--forest); }
.program-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--grad-copper-bold);
}
.program-badge {
  display: inline-block;
  background: var(--grad-copper-bold); color: var(--white);
  font-family: var(--font-display); font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 4px 12px; border-radius: var(--r-sm);
  margin-bottom: var(--space-md); align-self: flex-start;
}
.program-card h3 { color: var(--forest); margin-bottom: var(--space-sm); }
.program-card p {
  color: var(--text-warm); font-size: 15px; line-height: 1.7;
  margin-bottom: var(--space-lg); flex-grow: 1;
}
.program-price {
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  color: var(--forest); margin-bottom: var(--space-md);
}
.program-card .btn { width: 100%; }


/* ============================================================
   CTA
   ============================================================ */
.cta { padding: var(--space-4xl) 0; text-align: center; }
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta h2 { margin-bottom: var(--space-md); }
.cta p {
  color: var(--text-warm); font-size: 18px; line-height: 1.7;
  margin-bottom: var(--space-xl);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest); color: var(--white); padding: var(--space-2xl) 0;
}
.footer .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-md);
}
.footer-brand {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; letter-spacing: -0.5px;
}
.footer-links { display: flex; gap: var(--space-lg); list-style: none; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy {
  width: 100%; text-align: center;
  margin-top: var(--space-lg); padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px; opacity: 0.4;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto var(--space-lg); }
  .hero-buttons { justify-content: center; }
  .hero-image { order: -1; margin-bottom: 0; margin-top: 0; align-self: auto; }
  .hero-image img { max-width: 300px; }

  .bucket-grid { grid-template-columns: 1fr; }
  .bucket-visual { grid-template-columns: 1fr 1fr; }
  .bucket-content { text-align: center; }
  .bucket-proof { grid-template-columns: repeat(4, 1fr); }

  .frameworks-layout { grid-template-columns: 1fr; }
  .frameworks-text { text-align: center; }
  .framework-pills { justify-content: center; }
  .journal-gallery { max-width: 520px; margin: 0 auto; }
  .now-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .content-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
  .program-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .photo-feature { height: 400px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--linen); padding: var(--space-lg);
    border-bottom: 1px solid var(--border); gap: var(--space-md);
  }
  section { padding: var(--space-3xl) 0; }
  .hero { padding: 110px 0 var(--space-3xl); }
  .stats-bar .container { gap: var(--space-lg); }

  .proof-row { grid-template-columns: 1fr; gap: var(--space-xl); }

  .bucket-visual { grid-template-columns: 1fr; }
  .bucket-proof { grid-template-columns: repeat(2, 1fr); }

  .timeline { padding-left: 40px; }
  .timeline::before { left: 11px; }
  .timeline-marker { left: -40px; }
  .timeline-card.has-photo { flex-direction: column; }
  .timeline-photo { flex: none; width: 100%; height: 160px; }

  .mosaic-img { flex: 0 0 180px; height: 130px; }
  .mosaic-img.tall { flex: 0 0 240px; }
  .photo-feature { height: 340px; }
  .video-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }
  .stats-bar .container { flex-direction: column; gap: var(--space-md); }
  .stat-number { font-size: 28px; }
  .content-grid { grid-template-columns: 1fr; }
  .mosaic-img { flex: 0 0 150px; height: 110px; }
  .mosaic-img.tall { flex: 0 0 200px; }
  .photo-feature { height: 280px; }
  .photo-feature-heading { font-size: 24px; }
  .photo-feature-overlay { padding: var(--space-xl) var(--space-lg); }
}
