/* ═══════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES — identical to consulting page
   ═══════════════════════════════════════════════════ */
:root {
  --golden-ochre: #F2891B;
  --golden-ochre-light: #F5A04A;
  --golden-ochre-dark: #D07010;
  --burnt-sienna: #B86010;
  --warm-amber: #F5A04A;
  --charcoal-brown: #1A1C20;
  --deep-navy: #0A0C0E;
  --deep-navy-light: #141618;
  --dusty-blue: #1A4D6B;
  --muted-teal: #4A7C6F;
  --soft-cream: #ECEAE6;
  --parchment: #DDD8CE;
  --parchment-dark: #CCC6BA;
  --warm-white: #F4F2EE;
  --ink-brown: #0A0C0E;
  --faded-gold: #C87818;

  --text-primary: #0A0C0E;
  --text-secondary: #3A3C3E;
  --text-light: #ECEAE6;
  --text-muted: #6A6C6E;
  --border-warm: rgba(242, 137, 27, 0.15);
  --border-gold: rgba(242, 137, 27, 0.3);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --content-max: 900px;
  --content-wide: 1100px;
  --section-pad: clamp(5rem, 10vw, 8rem);
}

/* ═══════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--deep-navy);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════════════
   GLOBAL CANVAS GRAIN TEXTURE
   ═══════════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ═══════════════════════════════════════════════════
   CONTAINERS
   ═══════════════════════════════════════════════════ */
.container { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }
.container--wide { max-width: var(--content-wide); }

/* ═══════════════════════════════════════════════════
   PAINTING-BACKED SECTIONS
   ═══════════════════════════════════════════════════ */
.painting-section {
  position: relative;
  overflow: hidden;
}

.painting-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.painting-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 14, 0.74) 0%,
    rgba(10, 12, 14, 0.70) 40%,
    rgba(10, 12, 14, 0.76) 100%
  );
}

.painting-section__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 100px 30px rgba(10, 12, 14, 0.2);
  pointer-events: none;
}

.painting-section__content {
  position: relative;
  z-index: 5;
}

/* ═══════════════════════════════════════════════════
   DECORATIVE SVG LAYER
   ═══════════════════════════════════════════════════ */
.decor-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.decor-layer svg {
  position: absolute;
}

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--golden-ochre);
  margin-bottom: 0.75rem;
}

.section-label--light { color: var(--golden-ochre-light); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.35s ease;
  position: relative;
}

.btn--primary {
  background: var(--golden-ochre);
  color: #0A0C0E;
  border: 1px solid var(--golden-ochre);
  box-shadow: 0 2px 12px rgba(242, 137, 27, 0.2);
}

.btn--primary:hover {
  background: var(--warm-amber);
  border-color: var(--warm-amber);
  box-shadow: 0 4px 24px rgba(218, 165, 32, 0.35);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--golden-ochre-light);
  border: 1px solid rgba(212, 169, 74, 0.5);
}

.btn--ghost:hover {
  background: rgba(212, 169, 74, 0.1);
  border-color: var(--golden-ochre-light);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-warm);
}
.btn--outline:hover { border-color: var(--golden-ochre); color: var(--golden-ochre); }

.btn--full { width: 100%; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ═══════════════════════════════════════════════════
   NAVIGATION — overrides on top of base.css
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  background: transparent;
  border-bottom: none;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}
.nav--scrolled { background: rgba(10, 12, 14, 0.95); padding: 0.7rem 0; }
.nav__container { max-width: var(--content-wide); }
.nav__logo { color: var(--soft-cream); }
.nav__logo:hover { color: var(--golden-ochre-light); }
.nav__link { color: rgba(245,240,232,0.7); }
.nav__link:hover { color: var(--golden-ochre-light); }
.nav__cta { background: var(--golden-ochre); }
.nav__cta:hover { background: var(--warm-amber); }
.nav__toggle span { background: var(--soft-cream); }
.mobile-break { display: none; }
@media (max-width: 640px) {
  .nav__menu { background: var(--deep-navy); }
  .mobile-break { display: inline; }
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
}

.hero .painting-section__bg {
  background-image: url('/images/1306_1.webp');
}

.hero__content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--golden-ochre-light);
  border: 1px solid rgba(212, 169, 74, 0.35);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--soft-cream);
  margin-bottom: 1.5rem;
}

.hero__title--accent {
  color: var(--golden-ochre-light);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   TWO PATHS SECTION (card layout)
   ═══════════════════════════════════════════════════ */
.paths-section {
  background: var(--parchment);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--golden-ochre);
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.path-card {
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  border-radius: 6px;
  padding: 2.5rem;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.path-card:hover { border-color: var(--golden-ochre); box-shadow: 0 8px 40px rgba(200,150,46,0.08); }

.path-card__icon { color: var(--golden-ochre); margin-bottom: 1.25rem; }
.path-card__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 0.5rem; }
.path-card__tagline { font-family: var(--font-heading); font-size: 0.95rem; font-style: italic; color: var(--golden-ochre-dark); margin-bottom: 1rem; }
.path-card__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; flex-grow: 1; }
.path-card__meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.path-card__meta strong { color: var(--text-secondary); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   TWO PATHS — HORIZONTAL LAYOUT (variation)
   ═══════════════════════════════════════════════════ */
.paths-hz-section {
  background: var(--deep-navy);
  padding: clamp(3rem, 6vw, 5rem) 0 var(--section-pad);
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.path-hz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.path-hz:last-child { margin-bottom: 0; }

.path-hz--reverse .path-hz__image { order: 2; }
.path-hz--reverse .path-hz__content { order: 1; }

.path-hz__image {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(242, 137, 27, 0.2);
  background: var(--parchment);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.path-hz__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-hz__content {
  padding: 1rem 0;
}

.path-hz__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--golden-ochre-light);
  margin-bottom: 0.75rem;
}

.path-hz__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--soft-cream);
}

.path-hz__tagline {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--golden-ochre-light);
  margin-bottom: 1.25rem;
}

.path-hz__desc {
  font-size: 0.93rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.path-hz__highlights {
  margin-bottom: 1.75rem;
}

.path-hz__highlights li {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.7;
  padding: 0.25rem 0 0.25rem 1.4rem;
  position: relative;
}

.path-hz__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--golden-ochre);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .path-hz { grid-template-columns: 1fr; gap: 2rem; }
  .path-hz--reverse .path-hz__image { order: 0; }
  .path-hz--reverse .path-hz__content { order: 0; }
}

/* ═══════════════════════════════════════════════════
   ABOUT / TRUST SECTION
   ═══════════════════════════════════════════════════ */
.about-section {
  background: var(--warm-white);
  padding: 4rem 0 3.5rem 0;
  position: relative;
  overflow: hidden;
  color: var(--text-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 1.25rem;
}

.trust-markers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.trust-marker {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.trust-marker__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--golden-ochre);
  margin-top: 2px;
}

.trust-marker__text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}

.trust-marker__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-markers { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   YOUTUBE SECTION
   ═══════════════════════════════════════════════════ */
.youtube-section {
  background: var(--warm-white);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.youtube-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.youtube-stat {
  text-align: center;
}

.youtube-stat__number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--golden-ochre);
  display: block;
}

.youtube-stat__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.video-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.video-card__embed {
  aspect-ratio: 16/9;
  width: 100%;
}

.video-card__embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__title {
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.video-card__type {
  padding: 0 1.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--golden-ochre-dark);
}

/* ═══════════════════════════════════════════════════
   PUBLIC TALKS SECTION
   ═══════════════════════════════════════════════════ */
.talks-section {
  background: var(--deep-navy);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.talks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin-top: 3rem;
}

.talks-grid .talk-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.talks-grid .talk-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.talk-item {
}

.talk-item__type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--golden-ochre-light);
  margin-bottom: 0.35rem;
}

.talk-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--soft-cream);
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.talk-item__title a {
  transition: color 0.2s;
}
.talk-item__title a:hover {
  color: var(--golden-ochre-light);
}

.talk-item__venue {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.6;
}

.talk-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--golden-ochre);
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.talk-item__link:hover { color: var(--golden-ochre-light); }

/* ═══════════════════════════════════════════════════
   LEAD MAGNET / EMAIL CAPTURE
   ═══════════════════════════════════════════════════ */
.lead-section {
  background: #F7F3ED;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.lead-image {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border-warm);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

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

.lead-content .section-heading {
  color: var(--text-primary);
}

.lead-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.lead-list {
  margin-bottom: 2rem;
}

.lead-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.lead-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--golden-ochre);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .lead-grid { grid-template-columns: 1fr; }
  .lead-image { max-width: 360px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: #050607;
  border-top: 1px solid rgba(245,240,232,0.06);
  padding: 3.5rem 0 2rem;
  color: rgba(245,240,232,0.5);
  font-size: 0.85rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--soft-cream);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.4);
  line-height: 1.7;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--soft-cream);
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(245,240,232,0.45);
  transition: color 0.2s;
  font-size: 0.85rem;
}
.footer__links a:hover { color: var(--golden-ochre-light); }

.footer__bottom {
  border-top: 1px solid rgba(245,240,232,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.25);
  max-width: 400px;
  text-align: right;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   FADE-IN ANIMATION
   ═══════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .paths-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .talks-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; }
  .footer__disclaimer { text-align: left; max-width: 100%; }
}

@media (max-width: 640px) {
  .nav__menu {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
    background: var(--deep-navy); flex-direction: column; justify-content: center;
    padding: 2rem; gap: 1.5rem; transition: right 0.35s; box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }
  .nav__menu.is-open { right: 0; }
  .nav__toggle { display: flex; }
  .nav__close {
    display: flex; position: absolute; top: 1.25rem; right: 1.25rem;
    background: none; border: none; color: var(--soft-cream); font-size: 1.75rem;
    line-height: 1; cursor: pointer; padding: 0.25rem; opacity: 0.7;
  }
  .nav__close:hover { opacity: 1; }
  .mobile-break { display: inline; }
  .nav__link { font-size: 1rem; color: var(--soft-cream); }
  .hero { min-height: auto; padding: 6rem 0 4rem; }
  .hero__title { font-size: clamp(2rem, 5.5vw, 3.5rem); }
  .hero__subtitle { font-size: clamp(0.95rem, 1.8vw, 1.2rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; }
  .youtube-stats { gap: 1.5rem; }
}
