/* ============================================================
   BAT & ROOT MANAGEMENT — MOCKUP STYLES
   Brand: #991F0C brick red / #000 black / #FFF white / wood-tone tan
   Type:  Playfair Display (headlines) + Outfit (body)
   ============================================================ */

:root {
  --ink: #0E0B09;
  --ink-soft: #1A1410;
  --paper: #F5EFE3;
  --paper-warm: #E9DFCB;
  --wood: #C9A57B;
  --wood-dark: #8C6E48;
  --brick: #991F0C;
  --brick-deep: #6E1408;
  --brick-light: #C44A35;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brick);
}

/* ============ NAV ============ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.nav-light {
  /* For pages with light hero — switch nav text to ink */
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid rgba(140,110,72,0.18);
}
.nav.nav-light .nav-logo,
.nav.nav-light .nav-links a { color: var(--ink); }
.nav.nav-light .nav-logo .wordmark small { color: var(--wood-dark); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  text-decoration: none;
}
.nav-logo .mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brick);
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  color: var(--paper);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 20px rgba(153,31,12,0.35);
}
/* Image-based monogram replacement for .mark when using real logo PNG */
.nav-logo img.nav-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(153,31,12,0.25));
}
/* Footer wordmark image (Batandroot logo with roots) */
.footer .brand-block .wordmark-img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 6px;
  filter: brightness(1.06);
}
.nav-logo .wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo .wordmark small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--wood);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--paper);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--wood); }
.nav-links a.current {
  opacity: 1;
  border-bottom: 1px solid var(--brick);
  padding-bottom: 2px;
}
.nav-cta {
  background: var(--brick);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--brick-deep); }

/* ============ HERO (DARK) ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 70% 110%, rgba(153,31,12,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 90% 80% at 20% -20%, rgba(201,165,123,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0E0B09 0%, #1A1410 100%);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,165,123,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,165,123,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
}
.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(196,74,53,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 56px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero .eyebrow { color: var(--wood); margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(3rem, 7.5vw, 7.5rem);
  color: var(--paper);
  max-width: 1000px;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--wood); }
.hero h1 .root-word {
  color: var(--brick-light);
  font-style: italic;
  font-weight: 600;
}
.hero-sub {
  font-size: 1.2rem;
  max-width: 560px;
  color: rgba(245,239,227,0.78);
  margin-bottom: 48px;
  font-weight: 300;
}

/* ============ HERO COMPACT (subpages) ============ */
.hero-compact {
  position: relative;
  padding: 200px 56px 100px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(153,31,12,0.16) 0%, transparent 60%),
    linear-gradient(180deg, #0E0B09 0%, #1A1410 100%);
  color: var(--paper);
  overflow: hidden;
}
.hero-compact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,165,123,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,165,123,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}
.hero-compact-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-compact .eyebrow { color: var(--wood); margin-bottom: 24px; }
.hero-compact h1 {
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  color: var(--paper);
  margin-bottom: 24px;
  max-width: 880px;
}
.hero-compact h1 em { font-style: italic; color: var(--brick-light); font-weight: 600; }
.hero-compact p {
  font-size: 1.15rem;
  color: rgba(245,239,227,0.72);
  max-width: 620px;
  font-weight: 300;
  line-height: 1.7;
}

/* ============ BUTTONS ============ */
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.btn {
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-primary {
  background: var(--brick);
  color: var(--paper);
  box-shadow: 0 8px 30px rgba(153,31,12,0.4);
}
.btn-primary:hover {
  background: var(--brick-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(153,31,12,0.5);
}
.btn-ghost {
  color: var(--paper);
  border: 1px solid rgba(245,239,227,0.4);
}
.btn-ghost:hover { border-color: var(--wood); color: var(--wood); }
.btn-ghost.btn-ghost-dark {
  color: var(--ink);
  border-color: rgba(14,11,9,0.25);
}
.btn-ghost.btn-ghost-dark:hover {
  border-color: var(--brick);
  color: var(--brick);
}
.btn .arrow { font-family: serif; font-size: 1rem; }

.hero-meta {
  position: absolute;
  bottom: 36px;
  left: 56px;
  right: 56px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: rgba(245,239,227,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-meta .scroll-hint::after { content: ' ↓'; }

/* ============ PHILOSOPHY / TWO-COLUMN BLOCK ============ */
.philosophy {
  background: var(--paper);
  padding: 140px 56px;
  position: relative;
}
.philosophy-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.philosophy .eyebrow { margin-bottom: 24px; }
.philosophy h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--ink);
  margin-bottom: 32px;
}
.philosophy h2 em {
  font-style: italic;
  color: var(--brick);
  font-weight: 600;
}
.philosophy-body p {
  font-size: 1.08rem;
  color: rgba(14,11,9,0.78);
  margin-bottom: 22px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
}
.philosophy-body p strong { color: var(--ink); font-weight: 600; }
.philosophy-quote {
  background: var(--paper-warm);
  padding: 56px 48px;
  border-left: 3px solid var(--brick);
  position: relative;
  margin-top: 8px;
}
.philosophy-quote::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-style: italic;
  color: var(--brick);
  opacity: 0.18;
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
}
.philosophy-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.philosophy-quote cite {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wood-dark);
  font-weight: 500;
}

/* ============ PROGRAMS GRID (3 cards, dark) ============ */
.programs {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 56px;
  position: relative;
}
.programs::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brick) 50%, transparent 100%);
  opacity: 0.5;
}
.programs-header {
  max-width: 1280px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.programs-header .eyebrow { color: var(--wood); margin-bottom: 20px; }
.programs-header h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  max-width: 480px;
}
.programs-header h2 em {
  font-style: italic;
  color: var(--brick-light);
  font-weight: 600;
}
.programs-header p {
  font-size: 1.05rem;
  color: rgba(245,239,227,0.65);
  max-width: 460px;
  line-height: 1.65;
  font-weight: 300;
}
.programs-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--ink-soft);
  padding: 48px 36px;
  border: 1px solid rgba(201,165,123,0.12);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.program-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--brick);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.program-card:hover {
  border-color: rgba(201,165,123,0.3);
  transform: translateY(-4px);
}
.program-card:hover::after { transform: scaleX(1); }
.program-card .number {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--wood);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  font-style: italic;
}
.program-card h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: var(--paper);
  line-height: 1.15;
}
.program-card .schedule {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 18px;
  font-weight: 500;
}
.program-card p {
  font-size: 0.98rem;
  color: rgba(245,239,227,0.7);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
  flex-grow: 1;
}
.program-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--paper);
  margin-bottom: 4px;
}
.program-card .price-unit {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 28px;
  display: block;
}
.program-card .card-cta {
  color: var(--brick-light);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(201,165,123,0.15);
  padding-top: 24px;
  transition: color 0.2s, gap 0.2s;
}
.program-card .card-cta:hover {
  color: var(--paper);
  gap: 16px;
}

/* ============ PROGRAM DETAIL (alternating image/text rows) ============ */
.program-detail {
  padding: 120px 56px;
  background: var(--paper);
}
.program-detail.dark {
  background: var(--ink);
  color: var(--paper);
}
.program-detail.warm { background: var(--paper-warm); }

.program-detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.program-detail.reverse .program-detail-inner > *:first-child { order: 2; }
.program-detail .number-large {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--brick);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: block;
}
.program-detail.dark .number-large { color: var(--brick-light); }
.program-detail h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.program-detail h2 em {
  font-style: italic;
  color: var(--brick);
  font-weight: 600;
}
.program-detail.dark h2 em { color: var(--brick-light); }
.program-detail .tag-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brick);
  margin-bottom: 28px;
  font-weight: 600;
}
.program-detail.dark .tag-line { color: var(--brick-light); }
.program-detail p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(14,11,9,0.78);
  margin-bottom: 18px;
  font-weight: 300;
}
.program-detail.dark p { color: rgba(245,239,227,0.78); }
.program-detail ul {
  list-style: none;
  margin: 24px 0 32px;
}
.program-detail li {
  font-size: 0.98rem;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(140,110,72,0.18);
  position: relative;
  color: rgba(14,11,9,0.78);
  font-weight: 300;
}
.program-detail.dark li {
  color: rgba(245,239,227,0.75);
  border-color: rgba(201,165,123,0.18);
}
.program-detail li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--brick);
  font-size: 0.7rem;
  top: 16px;
}
.program-detail.dark li::before { color: var(--brick-light); }

.program-detail .pricing-block {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(140,110,72,0.25);
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.program-detail.dark .pricing-block { border-color: rgba(201,165,123,0.18); }
.program-detail .price-big {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.program-detail.dark .price-big { color: var(--paper); }
.program-detail .price-meta {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood-dark);
  font-weight: 500;
}
.program-detail.dark .price-meta { color: var(--wood); }

/* visual placeholder column (will hold real photos later) */
.program-detail .visual {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(153,31,12,0.25) 0%, transparent 70%),
    linear-gradient(135deg, #1A1410 0%, #0E0B09 100%);
  overflow: hidden;
  border: 1px solid rgba(201,165,123,0.15);
}
.program-detail .visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,165,123,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,165,123,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 80%);
}
.program-detail .visual::after {
  content: 'PHOTO';
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--wood);
  opacity: 0.6;
}
.program-detail .visual .roman {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 7rem;
  color: var(--brick);
  opacity: 0.4;
  line-height: 1;
}

/* ============ PULL QUOTE ============ */
.pull {
  background: var(--paper-warm);
  padding: 160px 56px;
  text-align: center;
  position: relative;
}
.pull.dark {
  background: var(--ink);
  color: var(--paper);
}
.pull-inner {
  max-width: 920px;
  margin: 0 auto;
}
.pull .eyebrow { margin-bottom: 32px; }
.pull blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 36px;
}
.pull.dark blockquote { color: var(--paper); }
.pull blockquote em {
  font-style: normal;
  font-weight: 700;
  color: var(--brick);
}
.pull.dark blockquote em { color: var(--brick-light); }
.pull cite {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wood-dark);
  font-weight: 500;
}
.pull.dark cite { color: var(--wood); }

/* ============ ABOUT PAGE BIO ============ */
.bio-section {
  background: var(--paper);
  padding: 120px 56px;
}
.bio-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.bio-portrait {
  position: sticky;
  top: 100px;
}
.bio-portrait .frame {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(140,110,72,0.4) 0%, transparent 70%),
    linear-gradient(135deg, #1A1410 0%, #0E0B09 100%);
  border: 1px solid rgba(201,165,123,0.2);
  position: relative;
  overflow: hidden;
}
.bio-portrait .frame::after {
  content: 'COACH JORGE';
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--wood);
  opacity: 0.7;
}
.bio-portrait .frame .initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 6rem;
  color: var(--brick);
  opacity: 0.45;
  line-height: 1;
}
.bio-portrait .caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--wood-dark);
  margin-top: 16px;
  text-align: center;
}

.bio-body .eyebrow { margin-bottom: 20px; }
.bio-body h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  margin-bottom: 12px;
}
.bio-body .role {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brick);
  margin-bottom: 36px;
}
.bio-body h3 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(140,110,72,0.2);
}
.bio-body h3:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.bio-body p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(14,11,9,0.78);
  margin-bottom: 18px;
  font-weight: 300;
}
.bio-body p strong { color: var(--ink); font-weight: 600; }

.influences {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.influence-card {
  padding: 20px;
  background: var(--paper-warm);
  border-left: 2px solid var(--brick);
}
.influence-card .label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wood-dark);
  font-weight: 600;
  margin-bottom: 8px;
}
.influence-card .title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
}

/* ============ CONTACT PAGE / ENROLLMENT CARDS ============ */
.enroll-section {
  background: var(--paper);
  padding: 100px 56px;
}
.enroll-section.dark {
  background: var(--ink);
  color: var(--paper);
}
.enroll-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.enroll-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 40px;
  max-width: 720px;
}
.enroll-section.dark h2 { color: var(--paper); }
.enroll-section h2 em {
  font-style: italic;
  color: var(--brick);
  font-weight: 600;
}
.enroll-section.dark h2 em { color: var(--brick-light); }

.enroll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.enroll-card {
  padding: 36px 32px;
  background: var(--paper-warm);
  border: 1px solid rgba(140,110,72,0.2);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.enroll-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--brick);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.enroll-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(14,11,9,0.12);
}
.enroll-card:hover::after { transform: scaleX(1); }
.enroll-section.dark .enroll-card {
  background: var(--ink-soft);
  border-color: rgba(201,165,123,0.15);
  color: var(--paper);
}
.enroll-card .number {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--wood-dark);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.enroll-section.dark .enroll-card .number { color: var(--wood); }
.enroll-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.enroll-card .schedule {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood-dark);
  font-weight: 500;
  margin-bottom: 16px;
}
.enroll-section.dark .enroll-card .schedule { color: var(--wood); }
.enroll-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(14,11,9,0.7);
  font-weight: 300;
  flex-grow: 1;
  margin-bottom: 24px;
}
.enroll-section.dark .enroll-card p { color: rgba(245,239,227,0.7); }
.enroll-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.enroll-section.dark .enroll-card .price { color: var(--paper); }
.enroll-card .price-unit {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood-dark);
  margin-bottom: 24px;
}
.enroll-section.dark .enroll-card .price-unit { color: var(--wood); }
.enroll-card .cta {
  margin-top: auto;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brick);
  border-top: 1px solid rgba(140,110,72,0.2);
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.2s;
}
.enroll-section.dark .enroll-card .cta { color: var(--brick-light); border-color: rgba(201,165,123,0.15); }
.enroll-card:hover .cta { gap: 16px; }

/* "Other ways" smaller secondary cards */
.secondary-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.path-card {
  padding: 28px 24px;
  border: 1px solid rgba(140,110,72,0.25);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enroll-section.dark .path-card { color: var(--paper); border-color: rgba(201,165,123,0.15); }
.path-card:hover { border-color: var(--brick); }
.path-card .label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wood-dark);
  font-weight: 600;
}
.enroll-section.dark .path-card .label { color: var(--wood); }
.path-card h4 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-top: 0;
}
.path-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(14,11,9,0.65);
  font-weight: 300;
  margin: 0;
}
.enroll-section.dark .path-card p { color: rgba(245,239,227,0.65); }
.path-card .arrow {
  margin-top: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brick);
  font-weight: 600;
}
.enroll-section.dark .path-card .arrow { color: var(--brick-light); }

/* Contact / Questions block */
.questions {
  background: var(--paper-warm);
  padding: 100px 56px;
  text-align: center;
}
.questions-inner {
  max-width: 720px;
  margin: 0 auto;
}
.questions .eyebrow { margin-bottom: 24px; }
.questions h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 24px;
}
.questions h2 em { font-style: italic; color: var(--brick); font-weight: 600; }
.questions p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(14,11,9,0.7);
  font-weight: 300;
  margin-bottom: 36px;
}
.questions .actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-large {
  padding: 22px 40px;
  font-size: 0.85rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 56px 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer .brand-block .wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 6px;
}
.footer .brand-block .wordmark .root { color: var(--brick-light); font-style: italic; }
.footer .brand-block .tag {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer .brand-block p {
  font-size: 0.95rem;
  color: rgba(245,239,227,0.6);
  line-height: 1.7;
  font-weight: 300;
  max-width: 320px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a {
  color: rgba(245,239,227,0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer a:hover { color: var(--brick-light); }
.footer-bottom {
  max-width: 1280px;
  margin: 64px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(201,165,123,0.15);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(245,239,227,0.4);
  letter-spacing: 0.06em;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav { padding: 20px 28px; }
  .nav-links { display: none; }
  .hero-inner, .hero-meta { padding-left: 28px; padding-right: 28px; }
  .hero-compact { padding: 140px 28px 70px; }
  .philosophy, .programs, .pull, .footer { padding-left: 28px; padding-right: 28px; }
  .program-detail, .bio-section, .enroll-section, .questions { padding-left: 28px; padding-right: 28px; }
  .philosophy-grid, .programs-header, .footer-inner, .program-detail-inner, .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .programs-grid, .enroll-grid, .secondary-paths, .influences { grid-template-columns: 1fr; }
  .philosophy { padding-top: 80px; padding-bottom: 80px; }
  .programs { padding-top: 80px; padding-bottom: 80px; }
  .pull { padding-top: 100px; padding-bottom: 100px; }
  .program-detail { padding-top: 70px; padding-bottom: 70px; }
  .bio-section { padding-top: 70px; padding-bottom: 70px; }
  .bio-portrait { position: static; }
  .program-detail.reverse .program-detail-inner > *:first-child { order: 0; }
  .hero-meta { display: none; }
}

/* ============================================================
   PHOTOGRAPHY INTEGRATION (added 6.1.26)
   Real daylight field photos treated to sit inside the dark
   "cathedral" palette: cover-fit + scrims + slight tone shift.
   ============================================================ */

/* ---- HERO with photo / video background ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  z-index: 0;
  filter: saturate(0.9) contrast(1.04);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* left fade — protects the headline, clears by mid-frame so center players show */
    linear-gradient(90deg, rgba(14,11,9,0.90) 0%, rgba(14,11,9,0.52) 30%, rgba(14,11,9,0.10) 60%, transparent 90%),
    /* thin bottom fade — just enough for the footer meta line */
    linear-gradient(0deg, rgba(14,11,9,0.72) 0%, rgba(14,11,9,0.0) 24%),
    /* soft top fade so the nav stays readable */
    linear-gradient(180deg, rgba(14,11,9,0.55) 0%, transparent 18%),
    radial-gradient(ellipse 60% 45% at 82% 24%, rgba(196,74,53,0.14) 0%, transparent 60%);
}
.hero .hero-inner, .hero .hero-meta { z-index: 2; }

/* ---- PHILOSOPHY portrait ---- */
.philosophy-portrait {
  margin-top: 40px;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(140,110,72,0.3);
  box-shadow: 0 24px 60px rgba(14,11,9,0.28);
}
.philosophy-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
  filter: saturate(0.9) contrast(1.04);
}
.philosophy-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,11,9,0.5) 100%);
}
.philosophy-portrait .cap {
  position: absolute;
  bottom: 18px; left: 20px;
  z-index: 1;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.85;
}

/* ---- PROGRAM CARD images (home) ---- */
.program-card { padding: 0; }
.program-card .card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}
.program-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: saturate(0.85) contrast(1.05);
}
.program-card:hover .card-img img { transform: scale(1.05); }
.program-card .card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,20,16,0.15) 0%, rgba(26,20,16,0.92) 100%);
}
.program-card .card-body {
  padding: 34px 34px 44px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.program-card .card-body .number { margin-bottom: 22px; margin-top: 0; }

/* ---- PROGRAM DETAIL visual -> real photo ---- */
.program-detail .visual.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
  filter: saturate(0.88) contrast(1.05);
}
.program-detail .visual.has-photo::before,
.program-detail .visual.has-photo::after { display: none; }
.program-detail .visual.has-photo .roman { display: none; }
.program-detail .visual.has-photo .photo-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,11,9,0.10) 0%, rgba(14,11,9,0.45) 100%);
}

/* ---- PULL QUOTE with background photo ---- */
.pull.has-bg { background: var(--ink); overflow: hidden; }
.pull.has-bg .pull-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  z-index: 0;
  opacity: 0.55;
  filter: saturate(0.82) contrast(1.05);
}
.pull.has-bg::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,11,9,0.80) 0%, rgba(14,11,9,0.92) 100%);
}
.pull.has-bg .pull-inner { position: relative; z-index: 2; }
.pull.has-bg blockquote { color: var(--paper); }
.pull.has-bg blockquote em { color: var(--brick-light); }
.pull.has-bg cite { color: var(--wood); }

/* ---- HERO-COMPACT with background photo (subpages) ---- */
.hero-compact.has-bg .hero-compact-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  z-index: 0;
  opacity: 0.42;
  filter: saturate(0.82) contrast(1.05);
}
.hero-compact.has-bg::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,11,9,0.62) 0%, rgba(14,11,9,0.90) 100%);
}
.hero-compact .hero-compact-inner { position: relative; z-index: 2; }

@media (max-width: 960px) {
  .philosophy-portrait { max-width: 420px; }
  .program-card .card-img { height: 200px; }
}

/* Phones: drop the redundant nav CTA (it overlapped the wordmark);
   the hero + section CTAs cover the action. */
@media (max-width: 600px) {
  .nav { padding: 18px 22px; }
  .nav-cta { display: none; }
  .nav-logo .wordmark { font-size: 1.02rem; }
  .hero .eyebrow, .hero-compact .eyebrow { font-size: 0.64rem; letter-spacing: 0.18em; }
}

/* ============================================================
   FIXES (6.1.26) — Coach Jorge portrait + hover-edge cleanup
   ============================================================ */

/* About: real Jorge photo in the portrait frame */
.bio-portrait .frame.has-photo {
  background: none;
  border-color: rgba(140,110,72,0.32);
}
.bio-portrait .frame.has-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
  filter: saturate(0.9) contrast(1.04);
}
.bio-portrait .frame.has-photo::after { display: none; }

/* Kill the lime-green hover/focus edge:
   1) animate only specific props (not `all`) + keep a clean GPU layer
   2) override the OS-accent focus ring with a brand-brick ring */
.program-card, .enroll-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.program-card:hover { transform: translate3d(0, -4px, 0); }
.enroll-card:hover  { transform: translate3d(0, -4px, 0); }
.program-card .card-img img { -webkit-backface-visibility: hidden; backface-visibility: hidden; }
a:focus-visible {
  outline: 2px solid var(--brick);
  outline-offset: 3px;
}
a:focus:not(:focus-visible) { outline: none; }

/* ============================================================
   PROGRAMS REBUILD (6.2.26) — catalog-aligned tiers + sections
   ============================================================ */
.section-head { max-width: 1280px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--ink); }
.section-head h2 em { font-style: italic; color: var(--brick); font-weight: 600; }
.section-head.on-dark h2 { color: var(--paper); }
.section-head.on-dark h2 em { color: var(--brick-light); }
.section-head p { max-width: 640px; margin: 22px auto 0; font-size: 1.08rem; line-height: 1.7; font-weight: 300; color: rgba(14,11,9,0.72); }
.section-head.on-dark p { color: rgba(245,239,227,0.72); }

/* band wrappers */
.band { padding: 130px 56px; }
.band.paper { background: var(--paper); }
.band.warm { background: var(--paper-warm); }

/* Coaching intro (Jorge photo + includes) */
.coach-intro { max-width: 1280px; margin: 0 auto 90px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center; }
.coach-intro .ci-photo { aspect-ratio: 4/5; overflow: hidden; border: 1px solid rgba(201,165,123,0.2); box-shadow: 0 24px 60px rgba(14,11,9,0.3); }
.coach-intro .ci-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.9) contrast(1.04); }
.coach-intro .eyebrow { color: var(--wood); margin-bottom: 18px; }
.coach-intro h2 { font-size: clamp(2rem, 3.4vw, 3rem); color: var(--paper); margin-bottom: 16px; }
.coach-intro h2 em { font-style: italic; color: var(--brick-light); font-weight: 600; }
.coach-intro .tag-line { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; color: var(--brick-light); margin-bottom: 24px; }
.coach-intro p { font-size: 1.04rem; line-height: 1.7; font-weight: 300; color: rgba(245,239,227,0.8); margin-bottom: 16px; }
.coach-intro ul { list-style: none; margin: 24px 0 0; }
.coach-intro li { font-size: 0.96rem; padding: 11px 0 11px 26px; border-bottom: 1px solid rgba(201,165,123,0.16); position: relative; color: rgba(245,239,227,0.8); font-weight: 300; }
.coach-intro li::before { content: '◆'; position: absolute; left: 0; color: var(--brick-light); font-size: 0.65rem; top: 14px; }

/* Tier coaching section */
.tiers { background: var(--ink); color: var(--paper); padding: 130px 56px; position: relative; }
.tiers::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--brick) 50%, transparent); opacity: 0.5; }
.tier-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tier-card { background: var(--ink-soft); border: 1px solid rgba(201,165,123,0.14); padding: 38px 28px; display: flex; flex-direction: column; transition: transform 0.3s ease, border-color 0.3s ease; }
.tier-card:hover { transform: translate3d(0,-4px,0); border-color: rgba(201,165,123,0.34); }
.tier-card .t-num { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.85rem; letter-spacing: 0.2em; color: var(--wood); margin-bottom: 10px; }
.tier-card h3 { font-size: 1.55rem; color: var(--paper); margin-bottom: 8px; line-height: 1.1; }
.tier-card .t-sessions { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wood); margin-bottom: 24px; }
.tier-card .t-opt { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-top: 1px solid rgba(201,165,123,0.14); }
.tier-card .t-opt .lab { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wood); }
.tier-card .t-opt .amt { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--paper); }
.tier-card .t-opt .amt small { font-size: 0.62rem; color: var(--wood); font-family: 'Outfit', sans-serif; letter-spacing: 0.06em; }
.tier-card .t-btns { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.tier-btn { text-align: center; padding: 13px 14px; border-radius: 2px; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.tier-btn.sub { background: var(--brick); color: var(--paper); }
.tier-btn.sub:hover { background: var(--brick-deep); }
.tier-btn.once { border: 1px solid rgba(245,239,227,0.3); color: var(--paper); }
.tier-btn.once:hover { border-color: var(--wood); color: var(--wood); }
.tier-note { max-width: 1280px; margin: 36px auto 0; text-align: center; font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(245,239,227,0.5); }

@media (max-width: 960px) {
  .band { padding: 80px 28px; }
  .tiers { padding: 80px 28px; }
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .coach-intro { grid-template-columns: 1fr; gap: 36px; }
  .coach-intro .ci-photo { max-width: 380px; }
}
@media (max-width: 600px) {
  .tier-grid { grid-template-columns: 1fr; }
}

/* ---- Legal / Terms reading column ---- */
.legal { max-width: 820px; margin: 0 auto; }
.legal .updated { font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--wood-dark); margin-bottom: 36px; }
.legal h3 { font-size: 1.4rem; color: var(--ink); margin: 0 0 14px; padding-top: 36px; margin-top: 36px; border-top: 1px solid rgba(140,110,72,0.2); }
.legal h3:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal p { font-size: 1rem; line-height: 1.75; color: rgba(14,11,9,0.78); font-weight: 300; margin-bottom: 14px; }
.legal ul { margin: 0 0 18px; padding-left: 22px; }
.legal li { font-size: 1rem; line-height: 1.7; color: rgba(14,11,9,0.78); font-weight: 300; margin-bottom: 8px; }
.legal strong { color: var(--ink); font-weight: 600; }

/* ---- Global Series detail rows ---- */
.gs-facts { max-width: 820px; margin: 36px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.gs-facts div { padding: 18px 0; border-bottom: 1px solid rgba(140,110,72,0.2); }
.gs-facts .k { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--wood-dark); font-weight: 600; margin-bottom: 6px; }
.gs-facts .v { font-size: 1.05rem; color: var(--ink); }
@media (max-width: 600px) { .gs-facts { grid-template-columns: 1fr; } }
