/* ─────────────────────────────────────
   TOKENS
───────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

:root {
  --white:     #ffffff;
  --cream:     #faf8f4;
  --cream2:    #f2ede4;
  --cream3:    #e8e0d0;
  --stone:     #d4cbbf;
  --charcoal:  #1c1a16;
  --ink:       #2a2720;
  --muted:     #6b6358;
  --faint:     #a09080;
  --gold:      #9e7840;
  --gold-lt:   #c4985a;
  --gold-bg:   #f6f0e6;
  --border:    #e2d9cc;
  --jungle:    #2d3d2e;
  --nav-h:     72px;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

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

/* ─────────────────────────────────────
   TYPE
───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(50px, 8.5vw, 104px); }
h2 { font-size: clamp(36px, 5.5vw, 64px); }
h3 { font-size: clamp(22px, 2.8vw, 32px); }

p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--muted);
  font-weight: 300;
}

.label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}


/* ─────────────────────────────────────
   HERO — base (flex/column, used by speaking & retreat)
───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Index split layout */
.hero--split {
  display: grid;
  grid-template-columns: 52% 48%;
  padding-top: var(--nav-h);
}
@media (max-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

/* Speaking — dark charcoal hero */
.hero--dark  { background: var(--charcoal); padding-top: var(--nav-h); }

/* Retreat — jungle green hero */
.hero--jungle { background: var(--jungle);  padding-top: var(--nav-h); }

/* Left */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 4.5vw, 72px) clamp(24px, 5vw, 72px);
  background: var(--cream);
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    var(--border) 25%,
    var(--border) 75%,
    transparent);
}
@media (max-width: 900px) { .hero-left::after { display: none; } }

.hero-eyebrow {
  opacity: 0;
  animation: riseIn 0.8s ease 0.1s both;
  margin-bottom: 11px;
}

.hero-h1 {
  opacity: 0;
  animation: riseIn 0.9s ease 0.25s both;
  line-height: 1.0;
  font-size: clamp(38px, 5.6vw, 72px);
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-rule {
  width: 36px; height: 1px;
  background: var(--stone);
  margin: 14px 0;
  opacity: 0;
  animation: riseIn 0.7s ease 0.4s both;
}

.hero-blurb {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.78;
  color: var(--muted);
  font-weight: 300;
  max-width: 440px;
  opacity: 0;
  animation: riseIn 0.8s ease 0.5s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 17px;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn 0.8s ease 0.65s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 40px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(158,120,64,0.28);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom: 1px solid var(--stone);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
  opacity: 0;
  animation: riseIn 0.8s ease 0.8s both;
}
.pill {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--faint);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Right — photo */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--cream2);
}
@media (max-width: 900px) {
  .hero-right {
    order: -1;
    height: 56vw;
    min-height: 280px;
    max-height: 500px;
  }
  .hero-right img {
    object-position: center 8%;
    transform-origin: center 18%;
    animation: photoInMobile 1.1s ease 0.3s both;
  }
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0;
  animation: photoIn 1.1s ease 0.3s both;
}

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: 24px;
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 6px;
  padding: 13px 17px;
  box-shadow: 0 4px 24px rgba(28,26,22,0.1);
  opacity: 0;
  animation: riseIn 0.7s ease 1.1s both;
}
@media (max-width: 900px) { .hero-badge { display: none; } }
.badge-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
}
.badge-sub {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 3px;
}

/* ─────────────────────────────────────
   SECTIONS SHARED
───────────────────────────────────── */
.section {
  padding: clamp(80px, 11vw, 130px) clamp(24px, 5.5vw, 72px);
}
.inner { max-width: 1180px; margin: 0 auto; }

/* ─────────────────────────────────────
   PRACTICE
───────────────────────────────────── */
.practice-section { background: var(--white); }

.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
@media (max-width: 860px) { .practice-grid { grid-template-columns: 1fr; } }

/* Couch photo */
.couch-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/5;
  background: var(--cream2);
}
.couch-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.couch-wrap:hover img { transform: scale(1.04); }
.couch-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(28,26,22,0.5), transparent);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Text */
.practice-text .label { margin-bottom: 22px; }
.practice-text h2 { margin-bottom: 26px; }
.practice-text p { margin-bottom: 18px; }

.practice-quote {
  margin-top: 32px;
  padding: 22px 26px;
  background: var(--gold-bg);
  border-left: 2px solid var(--gold);
  border-radius: 0 3px 3px 0;
}
.practice-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}
.practice-quote-attr {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 12px;
}

/* ─────────────────────────────────────
   APPROACH — dark
───────────────────────────────────── */
.approach-section {
  background: var(--charcoal);
  color: var(--white);
}
.approach-section .label { color: rgba(196,152,90,0.75); }
.approach-section .label::before { background: rgba(196,152,90,0.5); }

.approach-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}
@media (max-width: 768px) { .approach-header { grid-template-columns: 1fr; } }

.approach-header h2 { color: var(--white); margin-top: 18px; }
.approach-header-p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
  align-self: end;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 860px) { .approach-grid { grid-template-columns: 1fr; } }

.approach-card {
  padding: clamp(28px, 4vw, 46px);
  background: var(--charcoal);
  transition: background 0.3s;
}
.approach-card:hover { background: #242118; }

.approach-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.approach-card h3 {
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}
.approach-card p {
  font-size: 14px;
  line-height: 1.82;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
}
.approach-card em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
}

/* ─────────────────────────────────────
   MEDICATION
───────────────────────────────────── */
.meds-section { background: var(--cream); }

.meds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
@media (max-width: 860px) { .meds-grid { grid-template-columns: 1fr; } }

/* diagram */
.meds-diagram {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px);
}
.diagram-path {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 4px;
}
.path-line {
  flex: 1;
  height: 2px;
  background: var(--stone);
}
.path-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.diagram-well-row {
  display: flex;
  justify-content: center;
  margin: 4px 0;
}
.diagram-well {
  width: 130px;
  border: 1.5px solid var(--stone);
  border-top: none;
  border-radius: 0 0 65px 65px;
  padding: 18px 16px 26px;
  position: relative;
  text-align: center;
}
.well-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.45;
  color: var(--faint);
}
.well-ladder {
  position: absolute;
  right: -2px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(158,120,64,0.3));
}
.well-ladder::before,
.well-ladder::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 1.5px;
  background: var(--gold);
  right: 0;
}
.well-ladder::before { top: 28%; }
.well-ladder::after  { top: 58%; }

.diagram-caption {
  text-align: center;
  margin-top: 24px;
}
.diagram-caption-main {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.diagram-caption-sub {
  font-size: 12px;
  color: var(--faint);
  font-style: italic;
  margin-top: 4px;
}

/* text */
.meds-text .label { margin-bottom: 22px; }
.meds-text h2 { margin-bottom: 24px; }
.meds-text p { margin-bottom: 17px; }

.meds-note {
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.meds-note-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.meds-note p {
  font-size: 13px;
  line-height: 1.72;
  margin: 0;
}

/* ─────────────────────────────────────
   THERAPY — dark, Michelangelo
───────────────────────────────────── */
.therapy-section {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.therapy-section::before {
  content: '\201C';
  position: absolute;
  top: -80px;
  left: clamp(20px, 5vw, 60px);
  font-family: 'Cormorant Garamond', serif;
  font-size: 440px;
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.therapy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  position: relative;
}
@media (max-width: 860px) { .therapy-grid { grid-template-columns: 1fr; } }

.therapy-left .label {
  color: rgba(196,152,90,0.7);
  margin-bottom: 28px;
}
.therapy-left .label::before { background: rgba(196,152,90,0.45); }

.therapy-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
}
.therapy-attr {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.therapy-right h2 {
  color: var(--white);
  margin-bottom: 24px;
}
.therapy-right p {
  color: rgba(255,255,255,0.44);
  font-size: 15px;
  margin-bottom: 17px;
  font-weight: 300;
}
.therapy-right em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
}

/* ─────────────────────────────────────
   ABOUT
───────────────────────────────────── */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: clamp(48px, 7vw, 90px);
  align-items: start;
}
@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; } }

.about-photo-col { position: relative; }
.about-photo-frame {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3/4;
  max-height: 560px;
  background: var(--cream2);
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}
.about-border-accent {
  position: absolute;
  bottom: -14px; right: -14px;
  width: 50%; height: 50%;
  border: 1px solid var(--cream3);
  border-radius: 2px;
  z-index: -1;
}
.about-name-badge {
  position: absolute;
  bottom: 20px; right: -16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 13px 17px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(28,26,22,0.22);
  text-align: right;
}
@media (max-width: 960px) { .about-name-badge { right: 16px; } }
.anb-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.anb-sub {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 3px;
}

.about-content .label { margin-bottom: 22px; }
.about-content h2 { margin-bottom: 26px; }
.about-content p { margin-bottom: 17px; }

.cred-list { margin-top: 36px; }
.cred-row {
  display: flex;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.cred-row:last-child { border-bottom: 1px solid var(--border); }
.cred-key {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 68px;
  flex-shrink: 0;
  padding-top: 1px;
}
.cred-val {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.62;
  font-weight: 300;
}

/* ─────────────────────────────────────
   SPECIALTIES
───────────────────────────────────── */
.spec-section { background: var(--cream); }

.spec-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
  align-items: end;
}
@media (max-width: 768px) { .spec-header { grid-template-columns: 1fr; } }

.spec-header h2 { margin-top: 18px; }
.spec-header-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  align-self: end;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
@media (max-width: 900px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .spec-grid { grid-template-columns: 1fr; } }

a.spec-card { display: block; color: inherit; text-decoration: none; }
.spec-card {
  background: var(--cream);
  padding: clamp(26px, 3.5vw, 42px);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.spec-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.spec-card:hover { background: var(--white); }
.spec-card:hover::after { transform: scaleX(1); }

.spec-n {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 22px;
  font-weight: 400;
}
.spec-card h3 {
  font-size: clamp(21px, 2.3vw, 27px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}
.spec-card p {
  font-size: 14px;
  line-height: 1.78;
}
.spec-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.25s, transform 0.25s;
}
.spec-card:hover .spec-more { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────
   PROCESS
───────────────────────────────────── */
.process-section { background: var(--white); }

.process-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
  align-items: end;
}
@media (max-width: 768px) { .process-top { grid-template-columns: 1fr; } }
.process-top h2 { margin-top: 18px; }
.process-top-p { font-size: 16px; line-height: 1.8; align-self: end; }

.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
@media (max-width: 860px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .process-grid { grid-template-columns: 1fr; } }

.process-card {
  list-style: none;
  background: var(--white);
  padding: clamp(24px, 3.5vw, 40px);
}
.process-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--cream2);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.process-card h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.process-card p { font-size: 14px; line-height: 1.72; }

/* ─────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────── */
.testimonials-section { background: var(--cream2); }

.t-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .t-grid { grid-template-columns: 1fr; } }

.t-card {
  background: var(--white);
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.star { color: var(--gold-lt); font-size: 13px; }
.t-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
  flex: 1;
  margin-bottom: 20px;
}
.t-who {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.t-platform { font-size: 11px; color: var(--gold); margin-top: 2px; }

/* ─────────────────────────────────────
   INLINE TESTIMONIAL CARDS (specialty pages)
───────────────────────────────────── */
.testimonials-section {
  padding: 3rem 0 2rem;
}
.section.testimonials-section {
  padding: clamp(80px, 11vw, 130px) clamp(24px, 5.5vw, 72px);
}
.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .testimonials-inner { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(196,152,90,0.2);
  border-radius: 12px;
  padding: 1.75rem;
  margin: 0;
}
.testimonial-card blockquote {
  margin: 0 0 1rem 0;
  padding: 0;
  border: none;
}
.testimonial-card blockquote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}
.testimonial-card figcaption {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.section-label {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* ─────────────────────────────────────
   FIT
───────────────────────────────────── */
.fit-section { background: var(--white); }

.fit-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
  align-items: end;
}
@media (max-width: 768px) { .fit-top { grid-template-columns: 1fr; } }
.fit-top h2 { margin-top: 18px; }
.fit-top-p { font-size: 16px; line-height: 1.8; align-self: end; }

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
@media (max-width: 768px) { .fit-grid { grid-template-columns: 1fr; } }

.fit-col {
  background: var(--cream);
  padding: clamp(28px, 4vw, 52px);
}

.fit-col-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.fit-col--yes .fit-col-label { color: var(--gold); }
.fit-col--no  .fit-col-label { color: var(--muted); }

.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fit-list li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.fit-col--yes .fit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 3px;
}
.fit-col--no .fit-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--stone);
  font-size: 12px;
  top: 3px;
}
.fit-note {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--faint);
  font-style: italic;
}

/* ─────────────────────────────────────
   FAQ
───────────────────────────────────── */
.faq-section { background: var(--cream); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 7vw, 90px);
  align-items: start;
}
@media (max-width: 860px) { .faq-layout { grid-template-columns: 1fr; } }

.faq-left .label { margin-bottom: 18px; }
.faq-left h2 { margin-bottom: 16px; }
.faq-left p { font-size: 15px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
}
.faq-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
.faq-icon {
  width: 22px; height: 22px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-family: monospace;
  color: var(--muted);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}
.faq-answer {
  display: none;
  font-size: 14px;
  line-height: 1.82;
  color: var(--muted);
  padding-bottom: 22px;
  font-weight: 300;
  max-width: 540px;
}
.faq-item.open .faq-answer { display: block; }

/* ─────────────────────────────────────
   CONTACT
───────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 90px);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-left .label  { margin-bottom: 22px; }
.contact-left h2      { margin-bottom: 20px; }
.contact-left > p     { margin-bottom: 40px; }

.c-item {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.c-item:last-of-type { border-bottom: 1px solid var(--border); }
.c-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 5px;
}
.c-value { font-size: 15px; color: var(--charcoal); line-height: 1.55; }
.c-value a:hover { color: var(--gold); }

/* Form */
.form-wrap {
  background: var(--cream);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 2px;
}
.form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 26px;
  font-weight: 300;
}
.fg { margin-bottom: 16px; }
.fg label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(158,120,64,0.09);
}
.fg textarea { resize: none; height: 88px; line-height: 1.6; }

.form-submit {
  width: 100%;
  margin-top: 4px;
  padding: 14px;
  background: var(--charcoal);
  color: var(--white);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.form-submit:hover { background: var(--gold); transform: translateY(-1px); }
.form-submit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.form-submit:disabled { cursor: not-allowed; opacity: 0.8; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5.5vw, 72px)
           clamp(28px, 4vw, 44px);
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
  align-items: start;
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-logo em { font-style: italic; color: var(--gold-lt); }
.footer-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  max-width: 400px;
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 18px;
}

.footer-contact-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-contact-link {
  font-size: 12px;
  color: rgba(196,152,90,0.7);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--gold-lt); }
.footer-contact-sep {
  color: rgba(255,255,255,0.15);
  font-size: 12px;
}

.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 640px) {
  .footer-nav-cols { row-gap: 24px; }
  .footer-contact-inline { margin-bottom: 8px; }
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav-heading {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 4px;
}
.footer-nav-col a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-nav-col a:hover { color: rgba(255,255,255,0.85); }
.footer-nav-col a.active { color: rgba(255,255,255,0.75); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy,
.footer-addr {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}
.footer-addr a {
  color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.footer-addr a:hover { color: rgba(255,255,255,0.5); }

.footer-neighborhoods {
  font-size: 0.78rem;
  color: #6B6358;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ─────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────
   KEYFRAMES
───────────────────────────────────── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes photoIn {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes photoInMobile {
  from { opacity: 0; transform: scale(1.45); }
  to   { opacity: 1; transform: scale(1.4); }
}
@keyframes bgReveal {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.85; }
}

/* ═════════════════════════════════════
   LABEL VARIANTS
═════════════════════════════════════ */
.label-light { color: rgba(196,152,90,0.75); }
.label-light::before { background: rgba(196,152,90,0.5); }
.label-center { justify-content: center; }
.label-center::before { display: none; }

/* ═════════════════════════════════════
   BUTTON VARIANTS (speaking / retreat)
═════════════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 40px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(158,120,64,0.38); }
.btn-gold svg { transition: transform 0.2s; }
.btn-gold:hover svg { transform: translateX(4px); }

.btn-ghost-lt {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.48);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-lt:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

.btn-ghost-light {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-light:hover { color: var(--white); border-color: rgba(255,255,255,0.55); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 40px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
}
.btn-secondary:hover { background: var(--gold); transform: translateY(-1px); }

.btn-outline-light {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline-light:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ═════════════════════════════════════
   DARK / JUNGLE HERO CHILDREN
   (speaking.html + retreat.html heroes)
═════════════════════════════════════ */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  animation: bgReveal 1.4s ease 0.2s both;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,26,22,0.3)  0%,
    rgba(28,26,22,0.1)  30%,
    rgba(28,26,22,0.6)  65%,
    rgba(28,26,22,0.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(48px,6vw,80px) clamp(24px,5.5vw,72px);
  max-width: 860px;
}
.hero-presenter {
  opacity: 0;
  animation: riseIn 0.8s ease 0.35s both;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px,9vw,108px);
  font-weight: 300;
  color: var(--white);
  line-height: 0.98;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: riseIn 1s ease 0.46s both;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }

/* Speaking hero eyebrow (self-contained label in dark hero) */
.hero--dark .hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(196,152,90,0.72);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: riseIn 0.8s ease 0.3s both;
}
.hero--dark .hero-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(196,152,90,0.55);
}

/* Speaking italic subtitle */
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px,2.3vw,25px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.48);
  margin-top: 18px;
  line-height: 1.45;
  opacity: 0;
  animation: riseIn 0.9s ease 0.62s both;
}
/* Retreat italic subtitle */
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px,2.2vw,26px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
  opacity: 0;
  animation: riseIn 0.9s ease 0.65s both;
  line-height: 1.4;
}
/* Hero stats (speaking) */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: riseIn 0.8s ease 0.76s both;
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.hero-stats .stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px,3.5vw,44px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero-stats .stat-l {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
/* Hero meta (retreat) */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: riseIn 0.8s ease 0.8s both;
}
.meta-item { display: flex; flex-direction: column; gap: 3px; }
.meta-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.meta-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
}
/* Scroll indicator (retreat) */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: clamp(24px,5.5vw,72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: riseIn 0.7s ease 1.2s both;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
  animation: scrollPulse 2.2s ease-in-out infinite 1.8s;
}
.scroll-lbl {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  writing-mode: vertical-rl;
}

/* ═════════════════════════════════════
   FOOTER — simple bar (speaking + retreat)
═════════════════════════════════════ */
.footer-bar {
  background: var(--charcoal);
  padding: clamp(28px,4vw,44px) clamp(24px,5.5vw,72px);
}
.footer-bar .footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bar .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}
.footer-bar .footer-logo em { font-style: italic; color: var(--gold-lt); }
.footer-bar .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bar .footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-bar .footer-links a:hover { color: rgba(255,255,255,0.65); }

/* ═════════════════════════════════════
   SPEAKING PAGE — WHY ANDREW
═════════════════════════════════════ */
.why-bg { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,96px);
  align-items: start;
}
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
.why-text .label { margin-bottom: 22px; }
.why-text h2 { font-size: clamp(34px,5vw,58px); margin-top: 18px; margin-bottom: 24px; }
.why-text p { margin-bottom: 18px; }

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--border);
}
.cred-item:last-child { border-bottom: 1px solid var(--border); }
.cred-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.cred-body { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.cred-body strong { color: var(--charcoal); font-weight: 500; }

.pull-card {
  background: var(--charcoal);
  padding: clamp(32px,4vw,52px);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.pull-card::before {
  content: '\201C';
  position: absolute;
  top: -24px; right: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 240px;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.pull-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px,2.4vw,26px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.48;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
}
.pull-attr { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(196,152,90,0.6); }

/* ═════════════════════════════════════
   SPEAKING PAGE — SECTION HEAD
═════════════════════════════════════ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}
@media (max-width: 768px) { .section-head { grid-template-columns: 1fr; } }
.section-head h2 { font-size: clamp(34px,5vw,58px); margin-top: 18px; }

/* ═════════════════════════════════════
   SPEAKING PAGE — KEYNOTES
═════════════════════════════════════ */
.keynotes-bg { background: var(--white); }

.k-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
@media (max-width: 640px) { .k-grid { grid-template-columns: 1fr; } }
.k-card {
  background: var(--white);
  padding: clamp(28px,3.5vw,44px);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.k-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.k-card:hover { background: var(--cream); }
.k-card:hover::after { transform: scaleX(1); }
.k-num { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; font-weight: 400; }
.k-card h3 { font-size: clamp(20px,2.2vw,26px); font-weight: 400; color: var(--charcoal); margin-bottom: 14px; line-height: 1.18; }
.k-card p { font-size: 14px; line-height: 1.75; }
.k-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.k-tag { font-size: 11px; color: var(--faint); background: var(--cream2); border: 1px solid var(--border); padding: 3px 10px; border-radius: 20px; }

/* ═════════════════════════════════════
   SPEAKING PAGE — WORKSHOPS
═════════════════════════════════════ */
.ws-bg { background: var(--cream2); }
.ws-head { margin-bottom: 48px; }
.ws-head h2 { font-size: clamp(34px,5vw,58px); margin-top: 18px; }
.ws-list { display: flex; flex-direction: column; }
.ws-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 28px;
  padding: clamp(24px,3vw,36px) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.ws-item:last-child { border-bottom: 1px solid var(--border); }
@media (max-width: 640px) { .ws-item { grid-template-columns: 1fr; gap: 12px; } .ws-dur { display: none; } }
.ws-n { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px,4vw,52px); font-weight: 300; color: var(--cream3); line-height: 1; user-select: none; transition: color 0.3s; }
.ws-item:hover .ws-n { color: var(--gold-lt); }
.ws-body h3 { font-size: clamp(20px,2.3vw,27px); font-weight: 400; color: var(--charcoal); margin-bottom: 10px; line-height: 1.18; }
.ws-body p { font-size: 14px; line-height: 1.78; }
.ws-topics { margin-top: 14px; display: flex; flex-direction: column; gap: 5px; }
.ws-topics span { font-size: 13px; color: var(--muted); display: flex; align-items: baseline; gap: 8px; }
.ws-topics span::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.ws-dur { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); white-space: nowrap; padding-top: 6px; }

/* ═════════════════════════════════════
   SPEAKING PAGE — ORGS
═════════════════════════════════════ */
.orgs-bg { background: var(--charcoal); padding: clamp(48px,6vw,72px) clamp(24px,5.5vw,72px); }
.orgs-grid { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid rgba(255,255,255,0.07); border-left: 1px solid rgba(255,255,255,0.07); }
.org {
  flex: 1 1 160px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.org:hover { color: rgba(255,255,255,0.62); }
.org em {
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(196,152,90,0.45);
  margin-top: 4px;
  font-weight: 300;
  transition: color 0.25s;
}
.org:hover em { color: rgba(196,152,90,0.72); }

/* ═════════════════════════════════════
   SPEAKING PAGE — TESTIMONIALS (sp-t-*)
   Namespaced to avoid conflict with index .t-*
═════════════════════════════════════ */
.test-bg { background: var(--white); }
.test-head { margin-bottom: 52px; }
.test-head h2 { font-size: clamp(34px,5vw,58px); margin-top: 18px; }

.sp-t-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 2px;
}
@media (max-width: 860px) { .sp-t-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .sp-t-grid { grid-template-columns: 1fr; } }
.sp-t-grid-2 { grid-template-columns: repeat(2,1fr); }

.sp-t-card {
  background: var(--white);
  padding: clamp(24px,3vw,38px);
  position: relative;
}
.sp-t-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 78px;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 0.8;
  display: block;
  margin-bottom: 14px;
  opacity: 0.45;
}
.sp-t-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px,1.8vw,19px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 18px;
}
.sp-t-attr { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); line-height: 1.5; }
.sp-t-org { color: var(--gold); display: block; margin-top: 3px; }

.sp-t-feature { background: var(--charcoal); grid-column: span 1; }
@media (max-width: 860px) { .sp-t-feature { grid-column: span 2; } }
@media (max-width: 560px) { .sp-t-feature { grid-column: span 1; } }
.sp-t-feature::before { color: var(--gold-lt); opacity: 0.28; }
.sp-t-feature .sp-t-q { color: rgba(255,255,255,0.88); font-size: clamp(18px,2.2vw,23px); }
.sp-t-feature .sp-t-attr { color: rgba(255,255,255,0.3); }
.sp-t-feature .sp-t-org { color: var(--gold-lt); }

.sp-t-long { margin-top: 2px; background: var(--cream); border: 1px solid var(--border); padding: clamp(28px,4vw,48px); }
.sp-t-long-inner { display: grid; grid-template-columns: 200px 1fr; gap: clamp(24px,4vw,56px); align-items: start; }
@media (max-width: 640px) { .sp-t-long-inner { grid-template-columns: 1fr; } }
.sp-t-long-meta .label { margin-bottom: 12px; }
.sp-t-long-who { font-family: 'Cormorant Garamond', serif; font-size: clamp(19px,2.3vw,27px); font-weight: 300; color: var(--charcoal); line-height: 1.2; }
.sp-t-long-who em { font-style: italic; color: var(--gold); }
.sp-t-long-q { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px,1.8vw,20px); font-weight: 300; font-style: italic; line-height: 1.58; color: var(--ink); margin-bottom: 14px; }
.sp-t-long-attr { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }

/* ═════════════════════════════════════
   SPEAKING PAGE — BOOKING
═════════════════════════════════════ */
.booking-bg { background: var(--cream); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.42fr;
  gap: clamp(48px,7vw,90px);
  align-items: start;
}
@media (max-width: 860px) { .booking-grid { grid-template-columns: 1fr; } }
.booking-left .label { margin-bottom: 22px; }
.booking-left h2 { font-size: clamp(32px,5vw,56px); margin-bottom: 24px; }
.booking-left p { margin-bottom: 16px; }

.b-details { margin-top: 32px; display: flex; flex-direction: column; }
.b-detail { display: flex; gap: 16px; padding: 14px 0; border-top: 1px solid var(--border); align-items: flex-start; }
.b-detail:last-child { border-bottom: 1px solid var(--border); }
.b-icon { font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.b-text { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.b-text strong { color: var(--charcoal); font-weight: 500; }

/* Speaking booking form */
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .f-row { grid-template-columns: 1fr; } }
.f-wrap { display: flex; flex-direction: column; gap: 6px; }
.f-label { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.f-input, .f-select, .f-textarea {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(158,120,64,0.09);
}
.f-textarea { resize: vertical; min-height: 116px; line-height: 1.65; }
.f-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a09080' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--charcoal);
  color: var(--white);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(158,120,64,0.3); }
.btn-submit svg { transition: transform 0.2s; }
.btn-submit:hover svg { transform: translateX(4px); }
.f-note { font-size: 12px; color: var(--faint); text-align: center; line-height: 1.6; margin-top: 6px; }
.f-err { border-color: #c0392b !important; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 32px;
  background: var(--cream2);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--charcoal); margin-bottom: 12px; }
.form-success p { font-size: 14px; }

/* ═════════════════════════════════════
   RETREAT PAGE — INTRO
═════════════════════════════════════ */
.intro-section { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,96px);
  align-items: center;
}
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-text .label { margin-bottom: 22px; }
.intro-text h2 { font-size: clamp(34px,5vw,58px); margin-bottom: 24px; }
.intro-text p { margin-bottom: 18px; }
.intro-pull {
  background: var(--gold-bg);
  border-left: 2px solid var(--gold);
  padding: 22px 26px;
  margin-top: 28px;
  border-radius: 0 3px 3px 0;
}
.intro-pull-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px,2vw,21px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.intro-pull-attr { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 10px; }
.intro-callout {
  background: var(--jungle);
  padding: clamp(32px,4vw,52px);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.intro-callout::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(158,120,64,0.07);
}
.callout-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(196,152,90,0.6); margin-bottom: 18px; }
.callout-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px,2.8vw,30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.42;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
}
.callout-stats { display: flex; flex-direction: column; gap: 15px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.07); }
.callout-stat { display: flex; align-items: baseline; gap: 12px; }
.callout-stat .stat-n { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--gold-lt); line-height: 1; flex-shrink: 0; min-width: 48px; }
.callout-stat .stat-l { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; font-weight: 300; }

/* ═════════════════════════════════════
   RETREAT PAGE — CURRICULUM
═════════════════════════════════════ */
.curriculum-section { background: var(--white); }
.curr-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}
@media (max-width: 768px) { .curr-header { grid-template-columns: 1fr; } }
.curr-header h2 { font-size: clamp(34px,5vw,58px); margin-top: 18px; }
.curr-intro { font-size: 15px; line-height: 1.8; color: var(--muted); font-weight: 300; }

.xnp-block {
  background: var(--charcoal);
  padding: clamp(32px,4vw,52px);
  margin-bottom: 48px;
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) { .xnp-block { grid-template-columns: 1fr; } }
.xnp-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(196,152,90,0.65); margin-bottom: 14px; }
.xnp-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,4vw,46px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 18px; }
.xnp-title em { font-style: italic; color: var(--gold-lt); }
.xnp-p { font-size: 14px; color: rgba(255,255,255,0.44); line-height: 1.8; font-weight: 300; }
.xnp-p em { font-style: italic; color: rgba(255,255,255,0.65); }
.xnp-analogy { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; padding: 28px; }
.xnp-analogy-lbl { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.xnp-analogy-q { font-family: 'Cormorant Garamond', serif; font-size: clamp(17px,2vw,21px); font-weight: 300; font-style: italic; line-height: 1.5; color: rgba(255,255,255,0.8); }

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
}
@media (max-width: 860px) { .topics-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px)  { .topics-grid { grid-template-columns: 1fr; } }
.topic-card { background: var(--white); padding: clamp(22px,3vw,36px); transition: background 0.3s; position: relative; overflow: hidden; }
.topic-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.topic-card:hover { background: var(--cream); }
.topic-card:hover::after { transform: scaleX(1); }
.topic-n { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; font-weight: 400; }
.topic-card h3 { font-size: clamp(17px,1.9vw,21px); font-weight: 400; color: var(--charcoal); margin-bottom: 10px; line-height: 1.25; }
.topic-card p { font-size: 14px; line-height: 1.72; }

.plant-note { margin-top: 20px; padding: 16px 20px; background: var(--cream2); border: 1px solid var(--border); border-radius: 3px; display: flex; gap: 14px; align-items: flex-start; }
.plant-note-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.plant-note-text { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.plant-note-text strong { font-weight: 500; color: var(--charcoal); }

/* ═════════════════════════════════════
   RETREAT PAGE — WHY COSTA RICA
═════════════════════════════════════ */
.costarica-section {
  background: var(--jungle);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.costarica-section::before {
  content: 'Pura Vida';
  position: absolute;
  bottom: -40px; right: clamp(24px,5vw,60px);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px,14vw,200px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.costarica-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,7vw,90px); align-items: center; position: relative; }
@media (max-width: 860px) { .costarica-grid { grid-template-columns: 1fr; } }
.costarica-text .label-light { margin-bottom: 22px; }
.costarica-text h2 { color: var(--white); font-size: clamp(34px,5vw,58px); margin-bottom: 22px; }
.costarica-text p { color: rgba(255,255,255,0.44); margin-bottom: 16px; font-size: 15px; }
.costarica-text em { font-style: italic; color: rgba(255,255,255,0.72); }
.pura-vida { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,3vw,34px); font-weight: 300; font-style: italic; color: var(--gold-lt); margin: 24px 0 8px; line-height: 1.2; }
.pura-vida-def { font-size: 13px; color: rgba(255,255,255,0.32); letter-spacing: 0.05em; }
.costarica-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 6px; }
.mosaic-img { overflow: hidden; border-radius: 2px; background: rgba(255,255,255,0.05); }
.mosaic-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.mosaic-img:hover img { transform: scale(1.06); }
.mosaic-img-tall { grid-row: 1 / 3; }

/* ═════════════════════════════════════
   RETREAT PAGE — VENUE
═════════════════════════════════════ */
.venue-section { background: var(--cream2); }
.venue-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 52px; align-items: end; }
@media (max-width: 768px) { .venue-header { grid-template-columns: 1fr; } }
.venue-header h2 { font-size: clamp(34px,5vw,58px); margin-top: 18px; }
.venue-amenities { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 52px; }
@media (max-width: 860px) { .venue-amenities { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px)  { .venue-amenities { grid-template-columns: 1fr; } }
.amenity-card { background: var(--white); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
.amenity-img { height: 180px; overflow: hidden; background: var(--cream3); }
.amenity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.amenity-card:hover .amenity-img img { transform: scale(1.05); }
.amenity-body { padding: 18px 20px; }
.amenity-body h3 { font-family: 'Instrument Sans', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: -0.01em; color: var(--charcoal); margin-bottom: 6px; line-height: 1.3; }
.amenity-body p { font-size: 13px; line-height: 1.65; }

/* ═════════════════════════════════════
   RETREAT PAGE — LODGING
═════════════════════════════════════ */
.lodging-section { background: var(--white); }
.lodging-header { margin-bottom: 48px; }
.lodging-header h2 { font-size: clamp(34px,5vw,58px); margin-top: 18px; }
.lodging-note { font-size: 14px; color: var(--muted); margin-top: 12px; }
.lodging-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); margin-bottom: 28px; }
@media (max-width: 860px) { .lodging-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px)  { .lodging-grid { grid-template-columns: 1fr; } }
.lodging-card { background: var(--white); transition: background 0.3s; position: relative; overflow: hidden; }
.lodging-card:hover { background: var(--cream); }
.lodging-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.lodging-card:hover::after { transform: scaleX(1); }
.lodging-img { height: 200px; overflow: hidden; background: var(--cream3); }
.lodging-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.lodging-card:hover .lodging-img img { transform: scale(1.05); }
.lodging-body { padding: clamp(18px,2.5vw,28px); }
.lodging-body h3 { font-size: clamp(18px,2vw,22px); font-weight: 400; color: var(--charcoal); margin-bottom: 8px; line-height: 1.2; }
.lodging-body p { font-size: 13px; line-height: 1.7; }
.lodging-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 28px; background: var(--cream); border: 1px solid var(--border); border-radius: 2px; }
.lodging-cta-text { font-size: 14px; color: var(--muted); line-height: 1.6; }
.lodging-cta-text strong { color: var(--charcoal); font-weight: 500; }

/* ═════════════════════════════════════
   RETREAT PAGE — ABOUT ANDREW
═════════════════════════════════════ */
.andrew-section { background: var(--cream); }
.andrew-grid { display: grid; grid-template-columns: 340px 1fr; gap: clamp(48px,7vw,90px); align-items: start; }
@media (max-width: 860px) { .andrew-grid { grid-template-columns: 1fr; } }
.andrew-photo { position: relative; }
.andrew-frame { overflow: hidden; border-radius: 2px; aspect-ratio: 3/4; max-height: 500px; background: var(--cream2); }
.andrew-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 8%; }
.andrew-accent { position: absolute; bottom: -12px; right: -12px; width: 50%; height: 50%; border: 1px solid var(--cream3); border-radius: 2px; z-index: -1; }
.andrew-content .label { margin-bottom: 22px; }
.andrew-content h2 { font-size: clamp(30px,4vw,50px); margin-bottom: 24px; }
.andrew-content p { margin-bottom: 17px; }
.andrew-michelangelo { margin: 24px 0; padding: 22px 26px; background: var(--white); border-left: 2px solid var(--gold); border-radius: 0 3px 3px 0; }
.andrew-michelangelo-q { font-family: 'Cormorant Garamond', serif; font-size: clamp(17px,2vw,21px); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--ink); }
.andrew-michelangelo-attr { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 10px; }
.andrew-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.cred-tag { font-size: 12px; font-weight: 400; letter-spacing: 0.04em; color: var(--muted); background: var(--cream2); border: 1px solid var(--border); padding: 6px 14px; border-radius: 20px; }

/* ═════════════════════════════════════
   RETREAT PAGE — PRICING
═════════════════════════════════════ */
.pricing-section { background: var(--charcoal); color: var(--white); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,7vw,90px); align-items: start; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: clamp(32px,4vw,52px); position: sticky; top: calc(var(--nav-h) + 24px); }
.price-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(196,152,90,0.6); margin-bottom: 14px; }
.price-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(56px,8vw,88px); font-weight: 300; color: var(--white); line-height: 1; letter-spacing: -0.02em; }
.price-num sup { font-size: 0.42em; vertical-align: top; margin-top: 14px; display: inline-block; color: rgba(255,255,255,0.45); font-weight: 300; }
.price-sub { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 8px; line-height: 1.55; font-weight: 300; }
.price-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.08); margin: 24px 0; }
.price-inc-title { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.inc-row { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.inc-row:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 8px; }
.inc-check { color: var(--gold-lt); font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.inc-txt { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; font-weight: 300; }
.btn-reserve { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; margin-top: 20px; padding: 16px; background: var(--gold); color: var(--white); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 40px; border: none; cursor: pointer; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; }
.btn-reserve:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(158,120,64,0.35); }
.price-spots { text-align: center; margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.28); }
.price-payment { text-align: center; margin-top: 10px; font-size: 12px; color: rgba(255,255,255,0.28); letter-spacing: 0.02em; }
.price-payment a { color: var(--gold-lt); border-bottom: 1px solid rgba(196,152,90,0.3); padding-bottom: 1px; transition: border-color 0.2s; }
.price-payment a:hover { border-color: var(--gold-lt); }
.inclusions-content .label-light { margin-bottom: 22px; }
.inclusions-content h2 { color: var(--white); font-size: clamp(30px,4vw,50px); margin-bottom: 20px; }
.inclusions-content > p { color: rgba(255,255,255,0.42); margin-bottom: 16px; }
.inc-list { margin-top: 28px; display: flex; flex-direction: column; }
.inc-item { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.07); align-items: flex-start; }
.inc-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.inc-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; line-height: 1.5; }
.inc-wrap { flex: 1; }
.inc-title { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.82); margin-bottom: 3px; }
.inc-desc { font-size: 13px; color: rgba(255,255,255,0.36); line-height: 1.62; font-weight: 300; }
.not-included { margin-top: 28px; padding: 18px 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 3px; }
.not-inc-lbl { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 10px; }
.not-inc-items { display: flex; flex-wrap: wrap; gap: 8px; }
.not-inc-tag { font-size: 12px; color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 4px 12px; border-radius: 20px; }

/* ═════════════════════════════════════
   RETREAT PAGE — FINAL CTA
═════════════════════════════════════ */
.cta-section { background: var(--jungle); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(158,120,64,0.1), transparent 70%); pointer-events: none; }
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; }
.cta-inner .label-center { margin-bottom: 28px; color: rgba(196,152,90,0.7); }
.cta-inner h2 { font-size: clamp(36px,6.5vw,80px); color: var(--white); line-height: 1.04; margin-bottom: 20px; }
.cta-inner h2 em { font-style: italic; color: var(--gold-lt); }
.cta-inner p { color: rgba(255,255,255,0.42); max-width: 460px; margin: 0 auto 36px; font-size: 16px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-details { margin-top: 30px; font-size: 12px; color: rgba(255,255,255,0.22); letter-spacing: 0.04em; line-height: 1.7; }
.cta-details a { color: rgba(196,152,90,0.5); border-bottom: 1px solid rgba(196,152,90,0.2); padding-bottom: 1px; }

/* ═════════════════════════════════════
   RETREAT PAGE — FAQ extra
   (.faq-section layout already defined above;
    this covers retreat-specific overrides)
═════════════════════════════════════ */
.faq-left-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.faq-left-link:hover { opacity: 0.7; }
.faq-answer a { color: var(--gold); border-bottom: 1px solid rgba(158,120,64,0.3); padding-bottom: 1px; }

/* ═════════════════════════════════════
   ABOUT PAGE — HERO
═════════════════════════════════════ */
.about-hero {
  background: var(--charcoal);
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 40px) clamp(20px, 5vw, 72px) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: 'Andrew';
  position: absolute;
  bottom: -60px;
  right: clamp(20px, 4vw, 60px);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}

.about-hero-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 860px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-photo { display: none; }
}

.about-hero-eyebrow { margin-bottom: 24px; }
.about-hero-eyebrow .label { color: rgba(196,152,90,0.7); }
.about-hero-eyebrow .label::before { background: rgba(196,152,90,0.45); }

.about-hero h1 {
  color: var(--white);
  font-size: clamp(44px, 7vw, 92px);
  margin-bottom: 24px;
}
.about-hero h1 em { font-style: italic; color: var(--gold-lt); }

.about-hero-sub {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(255,255,255,0.44);
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 36px;
}

.about-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.about-hero-pill {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 40px;
}

.about-hero-photo { position: relative; align-self: end; }
.about-hero-photo-frame {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3/4;
  max-height: 480px;
  background: rgba(255,255,255,0.04);
}
.about-hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  animation: photoIn 1.2s ease both;
  animation-delay: 0.3s;
}
.about-hero-photo-badge {
  position: absolute;
  bottom: 20px;
  left: -16px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(28,26,22,0.3);
}
@media (max-width: 860px) { .about-hero-photo-badge { left: 16px; } }
.phb-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--white);
}
.phb-sub {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

/* hero-consistency-v1: entrance animation for about-hero pages */
.about-hero h1 {
  opacity: 0;
  animation: riseIn 0.9s ease 0.25s both;
}
.about-hero .label {
  opacity: 0;
  animation: riseIn 0.8s ease 0.1s both;
}
.about-hero .hero-body,
.about-hero p {
  opacity: 0;
  animation: riseIn 0.8s ease 0.45s both;
}
.about-hero .about-hero-pills {
  opacity: 0;
  animation: riseIn 0.8s ease 0.6s both;
}

/* ═════════════════════════════════════
   ABOUT PAGE — BIOGRAPHY
═════════════════════════════════════ */
.bio-section { background: var(--white); }
.bio-grid { max-width: 720px; }
.bio-text .label { margin-bottom: 22px; }
.bio-text h2 { margin-bottom: 28px; }
.bio-text p { margin-bottom: 18px; }

.section-h2 { margin-top: 20px; margin-bottom: 28px; }
@media (max-width: 768px) { .section-h2 { margin-bottom: 20px; } }

.approach-pull {
  margin-top: 32px;
  border-left: 2px solid var(--gold);
  padding-left: clamp(20px, 3vw, 32px);
}
.approach-pull-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
}
.approach-pull-attr {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═════════════════════════════════════
   ABOUT PAGE — WHAT HE BELIEVES
═════════════════════════════════════ */
.believes-section { background: var(--cream2); }
.believes-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
@media (max-width: 768px) { .believes-grid { display: block; } }
.believes-body p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 17px;
}

/* ── LETTER ESSAY (first-person piece) ── */
.letter-essay {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 48px 0 0;
  border-top: 1px solid var(--cream3);
}
.letter-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.letter-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin: 0 0 36px;
}
.letter-essay > p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.letter-essay > p strong {
  font-weight: 500;
  color: var(--charcoal);
}
.letter-sign-off {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--cream3);
}

/* ═════════════════════════════════════
   ABOUT PAGE — CREDENTIALS
═════════════════════════════════════ */
.creds-section { background: var(--white); }
.creds-header { margin-bottom: 52px; }
@media (max-width: 768px) { .creds-header { margin-bottom: 0; } }
.creds-table { border-top: 1px solid var(--border); }
.cred-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
@media (max-width: 640px) { .cred-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; } }
.cred-key {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
}
.cred-val {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 300;
}

/* ═════════════════════════════════════
   ABOUT PAGE — PRACTICE CTA
═════════════════════════════════════ */
.practice-cta-section { background: var(--cream2); }
.practice-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
@media (max-width: 640px) { .practice-cta-grid { grid-template-columns: 1fr; } }
.practice-cta-grid .label { margin-bottom: 16px; }
.practice-cta-grid h2 { margin-bottom: 18px; }
.practice-cta-grid p { font-size: 15px; max-width: 540px; }

/* ═════════════════════════════════════
   CONDITION PAGES
═════════════════════════════════════ */

/* Breadcrumb */
.cond-breadcrumb {
  background: var(--cream);
  padding: calc(var(--nav-h) + 28px) clamp(20px, 5vw, 72px) 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cond-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.cond-breadcrumb a:hover { color: var(--gold); }
.cond-breadcrumb span { margin: 0 10px; opacity: 0.4; }

/* Hero */
.cond-hero {
  background: var(--cream);
  padding: 32px clamp(20px, 5vw, 72px) clamp(60px, 9vw, 108px);
}
.cond-hero .label { margin-bottom: 20px; }
.cond-hero h1 {
  font-size: clamp(44px, 6.5vw, 86px);
  max-width: 820px;
  margin-bottom: 24px;
  line-height: 1.05;
}
.cond-hero-sub {
  font-size: 18px;
  line-height: 1.78;
  color: var(--muted);
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 40px;
}

/* hero-consistency-v1: entrance animation for cond-hero specialty pages */
.cond-hero .label {
  opacity: 0;
  animation: riseIn 0.7s ease 0.05s both;
}
.cond-hero h1 {
  opacity: 0;
  animation: riseIn 0.9s ease 0.2s both;
}
.cond-hero .cond-hero-sub {
  opacity: 0;
  animation: riseIn 0.8s ease 0.38s both;
}
.cond-hero .pill,
.cond-hero .hero-pills {
  opacity: 0;
  animation: riseIn 0.7s ease 0.52s both;
}
.cond-hero .btn-primary,
.cond-hero .cond-cta {
  opacity: 0;
  animation: riseIn 0.7s ease 0.65s both;
}

/* Symptoms */
.cond-symptoms {
  background: var(--charcoal);
  padding: clamp(60px, 9vw, 96px) clamp(20px, 5vw, 72px);
}
.cond-symptoms .label { color: rgba(196,152,90,0.7); }
.cond-symptoms .label::before { background: rgba(196,152,90,0.45); }
.cond-symptoms h2 { color: var(--white); margin-top: 16px; margin-bottom: 48px; }
.cond-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 860px) { .cond-symptoms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .cond-symptoms-grid { grid-template-columns: 1fr; } }
.cond-symptom {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
}
.cond-symptom-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.cond-symptom p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
  margin: 0;
}

/* Body content */
.cond-body {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 96px) clamp(20px, 5vw, 72px);
}
.cond-body h2 { margin-bottom: 24px; }
.cond-body h3 { margin-top: 52px; margin-bottom: 16px; }
.cond-body p {
  font-size: 16px;
  line-height: 1.88;
  color: var(--muted);
  margin-bottom: 20px;
}
.cond-body ul {
  margin: 20px 0 28px 0;
  list-style: none;
  padding: 0;
}
.cond-body ul li {
  padding: 11px 0 11px 22px;
  position: relative;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  border-bottom: 1px solid var(--border);
}
.cond-body ul li:first-child { border-top: 1px solid var(--border); }
.cond-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 300;
}
.cond-pull {
  margin: 44px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.52;
}

/* CTA strip */
.cond-cta {
  background: var(--charcoal);
  padding: clamp(60px, 9vw, 96px) clamp(20px, 5vw, 72px);
  text-align: center;
}
.cond-cta h2 {
  color: var(--white);
  margin-bottom: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cond-cta p {
  color: rgba(255,255,255,0.48);
  font-size: 15px;
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cond-reviewed {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 18px clamp(24px, 5.5vw, 72px);
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────
   RELATED CONCERNS (cross-links)
───────────────────────────────────── */
.cond-related {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 72px) clamp(20px, 5vw, 72px);
}
.cond-related .label { margin-bottom: 12px; }
.cond-related h2 { margin-bottom: 36px; }
.cond-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.cond-related-card {
  display: block;
  background: var(--cream);
  padding: clamp(22px, 3vw, 32px);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.cond-related-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.cond-related-card:hover { background: var(--white); }
.cond-related-card:hover::after { transform: scaleX(1); }
.cond-related-n {
  display: block;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
  font-family: 'Cormorant Garamond', serif;
}
.cond-related-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
}
.cond-related-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.cond-related-card:hover .cond-related-more { opacity: 1; transform: translateY(0); }

#how-he-works { background: var(--cream); }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--white);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-lt); }

/* ═════════════════════════════════════
   CONTACT PAGE
═════════════════════════════════════ */

/* Single-column hero override */
.contact-hero-inner {
  grid-template-columns: 1fr !important;
  max-width: 1180px; /* was 800px — caused ~320px left-offset on wide viewports (hero-consistency-v1) */
}

/* What to expect section */
.expect-section { background: var(--cream2); }

.expect-wrap { max-width: 680px; margin: 0 auto; text-align: center; }

.expect-heading {
  font-size: clamp(32px, 4.5vw, 54px);
  margin-bottom: 48px;
  color: var(--charcoal);
}
.expect-heading em { font-style: italic; color: var(--gold); }

.expect-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
}

.expect-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.expect-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
}

.expect-step p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--muted);
  font-weight: 300;
  margin: 0;
  padding-top: 6px;
}

.expect-step p strong {
  display: block;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 4px;
}

@media (max-width: 520px) {
  .expect-step { gap: 16px; }
  .expect-num { font-size: 32px; min-width: 38px; }
}

/* Map section */
.map-section {
  background: var(--charcoal);
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5.5vw, 72px);
}

.map-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 720px) {
  .map-inner {
    grid-template-columns: 1fr;
  }
}

.map-address-block .label {
  margin-bottom: 20px;
}

.map-address-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
  margin: 0 0 10px;
}

.map-address-sub {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.32);
  margin: 0 0 28px;
}

.map-directions-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-directions-sep {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
}
.map-directions-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  transition: color 0.2s;
}
.map-directions-link:hover { color: var(--white); }

.map-frame {
  border-radius: 2px;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(255,255,255,0.06);
}

.map-frame iframe {
  filter: grayscale(85%) sepia(8%) contrast(0.88) brightness(1.08);
  transition: filter 0.4s ease;
}

.map-frame:hover iframe {
  filter: grayscale(0%) sepia(0%) contrast(1) brightness(1);
}

@media (max-width: 720px) {
  .map-frame { height: 280px; }
}
