/* =========================================
   RESET — BREAKTHROUGH LEADERSHIP RETREAT
   ========================================= */

/* --- Custom Properties --- */
:root {
  /* Color Palette — RESET · sampled from Canva design (DAHHNuYa1_0) */
  /* Warm cream background, ochre-gold accents, chocolate-brown text, dark olive-brown for dark surfaces */
  --color-white:       #F4EAD5;
  --color-off-white:   #EEE2CB;
  --color-warm-light:  #E5D5B8;
  --color-warm-mid:    #D4C3A3;
  --color-gray-medium: #8B7D6B;
  --color-text:        #3D2414;
  --color-text-body:   #4A3020;
  --color-text-muted:  #7A6852;
  --color-gold:        #B8923C;
  --color-gold-light:  #D4A94A;
  --color-charcoal:    #2A2418;
  --color-charcoal-mid:#3F3628;

  /* Typography */
  --font-serif:   'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  /* Spacing (8px grid) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;
  --sp-20: 160px;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  font-size: 19.4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text-body);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* =========================================
   SECTION LABEL
   ========================================= */
.section-label {
  font-family: var(--font-sans);
  font-size: 13.3px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gray-medium);
  display: block;
  margin-bottom: var(--sp-3);
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav-b {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-5);
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav-b.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--color-warm-mid);
  backdrop-filter: blur(8px);
}

.nav-b.scrolled .nav-b-logo { color: var(--color-text); }
.nav-b.scrolled .nav-b-links a { color: var(--color-text-body); }
.nav-b.scrolled .nav-b-links a:hover { color: var(--color-text); }
.nav-b.scrolled .nav-b-cta { color: var(--color-text) !important; border-bottom-color: var(--color-text) !important; }

.nav-b-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--color-white);
  transition: color 0.3s;
}

.enso-logo-b {
  width: 44px;
  height: 44px;
}

.nav-b-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
}

.nav-b-links a {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  background-image: linear-gradient(var(--color-gold-light), var(--color-gold-light));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: color 0.3s, background-size 0.4s ease;
}

.nav-b-links a:hover {
  color: var(--color-white);
  background-size: 100% 1px;
}

.nav-b-cta {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white) !important;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
  cursor: pointer;
}

.nav-b-cta:hover {
  border-bottom-color: var(--color-gold-light) !important;
  color: var(--color-gold-light) !important;
}

/* Mobile hamburger */
.nav-b-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-b-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: all 0.3s;
}
.nav-b.scrolled .nav-b-hamburger span {
  background: var(--color-text);
}

/* =========================================
   HERO
   ========================================= */
.hero-b {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--color-charcoal);
}

.hero-b-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Image shown unadulterated — no opacity, no sepia, no saturation filter */
}

.hero-b-overlay {
  position: absolute;
  inset: 0;
  /* Keep the Garden of the Gods colors untouched — no dark overlay */
  background: transparent;
  pointer-events: none;
}

/* White bottom bar / breadcrumb band */
.hero-b-band {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 0 var(--sp-5);
}

.hero-b-subscribe {
  font-family: var(--font-sans);
  font-size: 13.3px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 10px rgba(0,0,0,0.7), 0 0 2px rgba(0,0,0,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-b-subscribe:hover {
  color: #fff;
}

.hero-b-content {
  position: absolute;
  bottom: 120px;
  left: var(--sp-5);
  right: var(--sp-5);
  max-width: var(--max-width);
  margin: 0 auto;
  color: var(--color-white);
}

.hero-b-eyebrow {
  font-family: var(--font-sans);
  font-size: 13.3px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--sp-2);
  text-shadow: 0 1px 10px rgba(0,0,0,0.7), 0 0 2px rgba(0,0,0,0.5);
}

/* Hero text: no dark overlay on image, so use text-shadow for legibility */
.hero-b h1 {
  font-family: var(--font-serif);
  font-size: clamp(77.4px, 9vw, 145.2px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 0 4px rgba(0,0,0,0.35);
}

.hero-b-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(29px, 3.5vw, 48.4px);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 18px rgba(0,0,0,0.6), 0 0 3px rgba(0,0,0,0.4);
}

.hero-b-dates {
  font-family: var(--font-sans);
  font-size: 16.9px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-5);
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7), 0 0 2px rgba(0,0,0,0.5);
}

/* Hero location link with map preview */
.hero-location-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(255 210 0);
  text-decoration: none;
  transition: color 0.3s;
}

.hero-location-link:hover {
  color: var(--color-gold-light);
}

.hero-map-pin {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
}

.hero-location-link:hover .hero-map-pin {
  transform: scale(1.2) translateY(-1px);
  color: var(--color-gold-light);
}

/* Map preview tooltip — desktop only */
.hero-map-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  width: 300px;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 100;
}

.hero-map-tooltip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-location-link:hover .hero-map-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

/* Hide tooltip on mobile — link goes straight to Google Maps */
@media (max-width: 768px) {
  .hero-map-tooltip {
    display: none;
  }
}

/* Text CTA — underline style */
.cta-text {
  font-family: var(--font-sans);
  font-size: 15.7px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 3px;
  display: inline-block;
  transition: border-color 0.3s, color 0.3s;
  cursor: pointer;
}

.cta-text:hover {
  border-bottom-color: var(--color-gold-light);
  color: var(--color-gold-light);
}

/* Hero PDF link */
.hero-pdf-link {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 6px;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-4);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-pdf-link:hover {
  color: var(--color-gold-light);
}

.hero-pdf-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  max-width: 16px;
  max-height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
}

/* =========================================
   ENSO DIVIDER
   ========================================= */
.enso-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-10) var(--sp-5);
  max-width: var(--max-width);
  margin: 0 auto;
}

.enso-divider::before,
.enso-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-warm-mid);
}

.enso-divider-mark {
  width: 32px;
  height: 32px;
  color: var(--color-gray-medium);
  opacity: 0.5;
  flex-shrink: 0;
}

/* =========================================
   EDITORIAL SECTIONS — LAYOUT
   ========================================= */
.section-b {
  padding: var(--sp-20) var(--sp-5);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-b-wide {
  padding: var(--sp-20) var(--sp-5);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Two-column editorial layout */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-8) var(--sp-10);
  align-items: start;
}

.editorial-grid-heading {
  /* left column */
}

.editorial-grid-body {
  /* right column */
}

/* Section headings */
.heading-b {
  font-family: var(--font-serif);
  font-size: clamp(43.6px, 4vw, 67.8px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.heading-b-italic {
  font-style: italic;
}

/* Body prose */
.prose-b p {
  font-family: var(--font-sans);
  font-size: 19.4px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: var(--sp-3);
}

.prose-b p:last-child { margin-bottom: 0; }

.prose-b a {
  color: var(--color-gold);
  text-decoration: none;
  background-image: linear-gradient(var(--color-gold), var(--color-gold));
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 1px;
  transition: color 0.3s, background-size 0.4s ease;
}
.prose-b a:hover {
  color: var(--color-gold);
  background-size: 100% 1px;
}

.prose-b strong { font-weight: 600; color: var(--color-text); }

/* =========================================
   WARM BACKGROUND SECTION
   ========================================= */
.bg-warm {
  background: var(--color-warm-light);
}

.bg-off-white {
  background: var(--color-off-white);
}

/* =========================================
   FULL-WIDTH IMAGE WITH WHITE MARGINS
   ========================================= */
.image-frame {
  padding: 0 20px;
  margin: 0;
  background: var(--color-white);
}

.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.image-frame-caption {
  padding: var(--sp-2) 0 0;
  font-family: var(--font-mono);
  font-size: 13.3px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 0;
}

/* Two-column image grid */
.image-grid-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 0 20px;
}

.image-grid-b img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* =========================================
   QUOTE / PARALLAX SECTION
   ========================================= */
.quote-b {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-b-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.quote-b-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.62);
}

.quote-b blockquote {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 0 var(--sp-5);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26.6px, 3vw, 38.7px);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.45;
}

.quote-b blockquote cite {
  display: block;
  margin-top: var(--sp-3);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13.3px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* =========================================
   TIMELINE — TABLE LAYOUT
   ========================================= */
.timeline-b {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--sp-8);
}

.timeline-b thead tr {
  border-bottom: 2px solid var(--color-text);
}

.timeline-b thead th {
  font-family: var(--font-sans);
  font-size: 12.1px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gray-medium);
  text-align: left;
  padding: 0 0 var(--sp-2);
}

.timeline-b thead th:first-child { width: 72px; }
.timeline-b thead th:nth-child(2) { width: 160px; }

.timeline-b tbody tr {
  border-bottom: 1px solid var(--color-warm-mid);
  transition: background 0.3s;
}

.timeline-b tbody tr:hover {
  background: var(--color-off-white);
}

.timeline-b tbody td {
  padding: var(--sp-3) var(--sp-2) var(--sp-3) 0;
  vertical-align: middle;
}

.timeline-b .col-day {
  font-family: var(--font-serif);
  font-size: 33.9px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
  white-space: nowrap;
}

.timeline-b .col-date {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--color-gray-medium);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.timeline-b .col-desc {
  font-family: var(--font-sans);
  font-size: 18.2px;
  font-weight: 300;
  color: var(--color-text-body);
  line-height: 1.7;
}

/* =========================================
   DAILY RHYTHM BOX
   ========================================= */
.rhythm-b {
  margin-top: var(--sp-8);
  padding: var(--sp-6) var(--sp-8);
  border-left: 3px solid var(--color-gold);
  background: var(--color-warm-light);
}

.rhythm-b h3 {
  font-family: var(--font-sans);
  font-size: 13.3px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-medium);
  margin-bottom: var(--sp-2);
}

.rhythm-b p {
  font-family: var(--font-sans);
  font-size: 18.2px;
  font-weight: 300;
  color: var(--color-text-body);
  line-height: 1.75;
}

/* =========================================
   CALLING LIST
   ========================================= */
.calling-list-b {
  list-style: none;
  margin-top: var(--sp-4);
}

.calling-list-b li {
  font-family: var(--font-sans);
  font-size: 19.4px;
  font-weight: 300;
  color: var(--color-text-body);
  line-height: 1.7;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--color-warm-mid);
  padding-left: var(--sp-4);
  position: relative;
}

.calling-list-b li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: var(--color-gold);
}

/* =========================================
   GUIDELINES — THREE COLUMN GRID
   ========================================= */
.guidelines-b {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.guideline-b {
  padding: var(--sp-5);
  background: var(--color-white);
  border: 1px solid var(--color-warm-mid);
  border-top: 3px solid var(--color-gold);
}

.guideline-b h3 {
  font-family: var(--font-sans);
  font-size: 15.7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}

.guideline-b p,
.guideline-b ul {
  font-family: var(--font-sans);
  font-size: 16.9px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-body);
}

.guideline-b ul {
  list-style: none;
  padding: 0;
}

.guideline-b ul li {
  padding-left: var(--sp-3);
  position: relative;
  margin-bottom: var(--sp-1);
}

.guideline-b ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gray-medium);
}

/* =========================================
   FACILITATORS
   ========================================= */
.facilitators-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  margin-top: var(--sp-8);
}

.facilitator-b {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
}

.facilitator-b-photo {
  width: 100%;
  max-width: 528px;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.75);
  margin-bottom: var(--sp-4);
  transition: filter 0.4s;
  border-radius: 12px;
}

.facilitator-b-photo:hover {
  filter: saturate(1);
}

.facilitator-b h3 {
  font-family: var(--font-serif);
  font-size: 33.9px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--sp-1);
}

.facilitator-socials {
  display: flex;
  gap: 12px;
  margin-bottom: var(--sp-3);
}

.facilitator-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-text-muted);
  border-radius: 6px;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
}

.facilitator-socials a:hover {
  color: var(--color-gold);
  background-color: var(--color-warm-light);
  transform: translateY(-2px);
}

.facilitator-socials svg {
  width: 18px;
  height: 18px;
}

.facilitator-b p {
  font-family: var(--font-sans);
  font-size: 18.2px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-body);
  text-align: justify;
}

.facilitator-b-outfitter {
  grid-column: 1 / -1;
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-warm-mid);
}

.facilitator-b-outfitter h3 {
  font-family: var(--font-serif);
  font-size: 33.9px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}

.facilitator-b-outfitter p {
  font-family: var(--font-sans);
  font-size: 18.2px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-body);
  max-width: 680px;
}

/* =========================================
   PRICING — CLEAN TYPOGRAPHY
   ========================================= */
.pricing-subtitle-b {
  font-family: var(--font-sans);
  font-size: 15.7px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-gray-medium);
  text-align: center;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-10);
}

.pricing-grid-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-warm-mid);
  border: 1px solid var(--color-warm-mid);
}

.price-col-b {
  background: var(--color-white);
  padding: var(--sp-8) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.price-col-b .price-tier {
  font-family: var(--font-sans);
  font-size: 13.3px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gray-medium);
}

.price-col-b .price-number {
  font-family: var(--font-serif);
  font-size: clamp(58.1px, 5vw, 87.1px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
  margin: var(--sp-2) 0;
}

.price-col-b .price-detail-b {
  font-family: var(--font-sans);
  font-size: 15.7px;
  font-weight: 400;
  color: var(--color-text-body);
}

.price-col-b .price-muted {
  font-family: var(--font-sans);
  font-size: 15.7px;
  font-weight: 300;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.price-col-b .price-badge-b {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12.1px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 4px 10px;
  margin-top: var(--sp-2);
  align-self: flex-start;
}

/* =========================================
   WHAT'S INCLUDED — TWO COLUMN
   ========================================= */
.included-grid-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8) var(--sp-10);
  margin-top: var(--sp-8);
}

.included-col h3 {
  font-family: var(--font-sans);
  font-size: 13.3px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-medium);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--color-warm-mid);
}

.included-col ul {
  list-style: none;
  padding: 0;
}

.included-col ul li {
  font-family: var(--font-sans);
  font-size: 16.9px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-body);
  padding: var(--sp-1) 0 var(--sp-1) var(--sp-3);
  position: relative;
  border-bottom: 1px solid var(--color-off-white);
}

.included-col ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-text-muted);
  font-size: 14.5px;
}

/* =========================================
   SAFETY & ECOLOGY
   ========================================= */
.safety-grid-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8) var(--sp-10);
  margin-top: var(--sp-8);
}

.safety-col h3 {
  font-family: var(--font-sans);
  font-size: 13.3px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-medium);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--color-warm-mid);
}

.safety-col p {
  font-family: var(--font-sans);
  font-size: 18.2px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-body);
}

/* =========================================
   REGISTRATION — DARK SECTION
   ========================================= */
.register-b {
  background: var(--color-charcoal);
  position: relative;
  overflow: hidden;
  padding: var(--sp-20) var(--sp-5);
  text-align: center;
}

/* Subtle ink-wash texture */
.register-b::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.register-b-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.register-b h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(38.7px, 4vw, 62.9px);
  font-weight: 400;
  color: var(--color-off-white);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.register-b p {
  font-family: var(--font-sans);
  font-size: 18.2px;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.65);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-8);
}

.cta-text-cream {
  color: var(--color-off-white);
  border-bottom-color: var(--color-gold);
  font-size: 15.7px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cta-text-cream:hover {
  border-bottom-color: var(--color-gold-light);
  color: var(--color-gold-light);
}

/* =========================================
   CANCELLATION POLICY
   ========================================= */
.cancellation-policy-b {
  margin-top: var(--sp-10);
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-3);
}

.cancellation-policy-b h3 {
  font-family: var(--font-sans);
  font-size: 13.3px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.45);
  margin-bottom: var(--sp-3);
}

.cancellation-policy-b table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-3);
}

.cancellation-policy-b thead th {
  font-family: var(--font-sans);
  font-size: 12.1px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: left;
  padding: 0 0 var(--sp-2);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cancellation-policy-b tbody td {
  font-family: var(--font-sans);
  font-size: 15.7px;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.55);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cancellation-policy-b p {
  margin-top: var(--sp-3) !important;
  font-size: 14.5px !important;
  color: rgba(250, 250, 247, 0.4) !important;
}

/* =========================================
   FOOTER — TOPOGRAPHIC
   ========================================= */
.footer-b {
  background: var(--color-white);
  padding: 0;
  text-align: center;
  position: relative;
}

/* Contour line container */
.footer-topo {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-topo-svg {
  display: block;
  width: 100%;
  height: 120px;
}

.footer-topo-svg path {
  stroke: var(--color-warm-mid);
  opacity: 0.35;
  stroke-linecap: round;
}

/* Index contour — gold accent */
.footer-topo-svg path:nth-child(3) {
  stroke: var(--color-gold);
  opacity: 0.3;
  stroke-width: 1.5;
}

/* Outer lines lighter */
.footer-topo-svg path:nth-child(1),
.footer-topo-svg path:nth-child(7) {
  opacity: 0.18;
}

/* Inner lines slightly bolder */
.footer-topo-svg path:nth-child(4),
.footer-topo-svg path:nth-child(5) {
  opacity: 0.4;
}

/* Footer content */
.footer-content {
  padding: var(--sp-6) var(--sp-5) var(--sp-8);
}

.footer-enso {
  width: 28px;
  height: 28px;
  color: var(--color-warm-mid);
  opacity: 0.5;
  margin: 0 auto var(--sp-4);
  display: block;
}

.footer-quote {
  font-family: var(--font-serif);
  font-size: 17.6px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
  max-width: 600px;
  margin: 0 auto var(--sp-6);
  padding: 0;
  border: none;
}

.footer-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 12.1px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-top: var(--sp-2);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 18.2px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-1);
}

.footer-details {
  font-family: var(--font-sans);
  font-size: 13.3px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
}

.footer-legal {
  font-family: var(--font-mono);
  font-size: 12.1px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  opacity: 0.7;
}

.footer-b a {
  color: var(--color-text-muted);
  text-decoration: none;
  background-image: linear-gradient(var(--color-gold), var(--color-gold));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 1px;
  transition: color 0.3s, background-size 0.4s ease;
}
.footer-b a:hover {
  color: var(--color-gold);
  background-size: 100% 1px;
}

/* =========================================
   FADE-IN ANIMATION
   ========================================= */
.fade-in-b {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.js-loaded .fade-in-b:not(.visible) {
  opacity: 0;
}

.fade-in-b.visible {
  opacity: 1;
}

/* =========================================
   SECTION DIVIDER LINE
   ========================================= */
.divider-b {
  border: none;
  height: 1px;
  background: var(--color-warm-mid);
  margin: 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .facilitators-b {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .guidelines-b {
    grid-template-columns: 1fr;
  }

  .pricing-grid-b {
    grid-template-columns: 1fr;
  }

  .included-grid-b {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .safety-grid-b {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .image-grid-b {
    grid-template-columns: 1fr;
  }
  .image-grid-b img { height: 300px; }

  .nav-b-hamburger { display: block; }
  .nav-b-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-warm-mid);
    backdrop-filter: blur(8px);
  }
  .nav-b-links.open { display: flex; }
  .nav-b-links a { color: var(--color-text-body) !important; padding: 0.75rem 0; }
}

@media (max-width: 640px) {
  :root {
    --sp-20: 80px;
    --sp-16: 64px;
  }

  .nav-b {
    padding: 0 var(--sp-3);
  }

  .nav-b-links {
    display: none;
  }
  .nav-b-links.open {
    display: flex;
  }

  .hero-b-content {
    bottom: 100px;
    left: var(--sp-3);
    right: var(--sp-3);
  }

  .hero-b-band { padding: 0 var(--sp-3); }

  .section-b, .section-b-wide { padding: 80px var(--sp-3); }

  .image-frame { padding: 0 var(--sp-2); }

  .timeline-b .col-date { display: none; }

  .timeline-b thead th:nth-child(2) { display: none; }

  .timeline-b .col-day { font-size: 26.6px; }

  .rhythm-b { padding: var(--sp-4); }

  .price-col-b { padding: var(--sp-5); }

  .facilitator-b-photo { aspect-ratio: 1/1; }

  .footer-topo-svg { height: 60px; }
  .footer-content { padding: var(--sp-4) var(--sp-3) var(--sp-5); }
  .footer-tagline { font-size: 16.9px; }
}

/* =========================================
   ACCESSIBILITY
   ========================================= */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: 10001;
  padding: 0.75rem 1.5rem;
  background: var(--color-charcoal);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16.9px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-b {
  max-width: 780px;
  margin: 0 auto;
}

.faq-b details {
  border-bottom: 1px solid var(--color-warm-mid);
  padding: var(--sp-4) 0;
}

.faq-b summary {
  font-family: var(--font-sans);
  font-size: 20.6px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  margin: -4px -8px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.faq-b summary:hover {
  background-color: var(--color-warm-light);
  color: var(--color-gold);
}

.faq-b summary::-webkit-details-marker {
  display: none;
}

.faq-b summary::after {
  content: '+';
  font-size: 26.6px;
  font-weight: 300;
  color: var(--color-gold);
  transition: transform 0.2s ease;
}

.faq-b details[open] summary::after {
  content: '\2212';
}

.faq-b details p {
  font-family: var(--font-sans);
  font-size: 18.2px;
  line-height: 1.7;
  color: var(--color-text-body);
  margin-top: var(--sp-2);
  padding-right: var(--sp-6);
}

/* =========================================
   TYPEFORM MODAL (preserved from original)
   ========================================= */
.tf-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tf-modal-overlay.open {
  display: flex;
  opacity: 1;
}

.tf-modal {
  position: relative;
  width: 90vw;
  max-width: 700px;
  height: 85vh;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.tf-modal-overlay.open .tf-modal {
  transform: translateY(0);
}

.tf-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.tf-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 24.2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.tf-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}
