/* ============================================
   THE INTEGRAL PATH — Design System v2
   Refined minimalism + grounded warmth
   ============================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
input, textarea { font: inherit; }

/* --- Design Tokens --- */
:root {
  /* Colors */
  --cream: #F5EFE6;
  --cream-deep: #EDE4D6;
  --charcoal: #1F1B16;
  --charcoal-soft: #3D362D;
  --earth: #8B6F47;
  --earth-deep: #6B5535;
  --terracotta: #A85D3D;
  --terracotta-soft: #C17855;
  --muted: #8A8074;
  --line: rgba(31, 27, 22, 0.12);
  --line-soft: rgba(31, 27, 22, 0.06);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Container */
  --max-content: 1240px;
  --max-prose: 680px;
  --max-narrow: 560px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --- Base Typography --- */
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; }
h3 { font-size: clamp(1.4rem, 2.8vw, 2rem); line-height: 1.2; }
h4 { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.3; }

p { font-size: clamp(1rem, 1.2vw, 1.125rem); color: var(--charcoal-soft); }
.lead { font-size: clamp(1.15rem, 1.6vw, 1.35rem); line-height: 1.5; color: var(--charcoal-soft); }

em, .italic { font-style: italic; }
strong { font-weight: 600; color: var(--charcoal); }

/* --- Eyebrow / Caps Label --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: var(--space-md);
  display: inline-block;
}

/* --- Layout --- */
.container { max-width: var(--max-content); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--max-prose); margin: 0 auto; padding: 0 1.5rem; }
.container-tight { max-width: var(--max-narrow); margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }
section.section-tight { padding: 3.25rem 0; }

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  section.section-tight { padding: 2.5rem 0; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(168, 93, 61, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px;
  transition: all 0.25s var(--ease);
}
.btn-link:hover { color: var(--earth-deep); border-color: var(--earth-deep); }

.btn-arrow::after {
  content: "→";
  margin-left: 0.4rem;
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line-soft); }

.nav-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo with mark + wordmark */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.logo img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo em { font-style: italic; color: var(--earth); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

@media (max-width: 600px) {
  .logo img { width: 30px; height: 30px; }
  .logo { font-size: 1.1rem; }
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--earth);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem 1.5rem 3rem;
    gap: 1.5rem;
    align-items: flex-start;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 12px 30px rgba(31, 27, 22, 0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.05rem; }
}

/* --- Hero --- */
.hero {
  padding: calc(var(--space-2xl) + 4rem) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: stretch;
}
/* Stretch column wrappers so the photo can match the text column height */
.hero-grid > .reveal { display: flex; flex-direction: column; justify-content: center; min-width: 0; }

.hero h1 {
  margin-bottom: var(--space-md);
}
.hero h1 .italic-accent {
  font-style: italic;
  color: var(--earth);
}

.hero-lead {
  margin-bottom: var(--space-lg);
  max-width: 32rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Real photo — fills the column so its height matches the text block
   (top aligned with the eyebrow, bottom aligned with the CTA button) */
.hero-photo {
  width: 100%;
  height: 100%;
  max-height: 560px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(31, 27, 22, 0.15);
  filter: contrast(1.02) saturate(0.95);
}

@media (max-width: 940px) {
  .hero { padding-top: calc(var(--space-2xl) + 3rem); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-lg); align-items: center; }
  .hero-photo { height: auto; aspect-ratio: 4 / 5; max-width: 420px; max-height: none; margin: 0 auto; }
}

/* --- Sections --- */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-md);
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--earth);
}

.section-title {
  margin-bottom: var(--space-lg);
  max-width: 36rem;
}

.section-intro {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--charcoal-soft);
  max-width: var(--max-prose);
  line-height: 1.55;
  margin-bottom: var(--space-xl);
}

/* --- Arc / "From X to Y" block --- */
.arc {
  background: var(--charcoal);
  color: var(--cream);
  padding: var(--space-3xl) 0;
}
.arc .container-narrow { text-align: left; }
.arc-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.7;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.arc-list {
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  font-style: italic;
}
.arc-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
  color: var(--cream);
}
.arc-list li:last-child { border-bottom: none; }
.arc-list .from {
  color: var(--cream); opacity: 0.55; font-style: normal;
  font-family: var(--font-body); font-size: 0.7em;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-right: 0.5em;
}

/* --- Pillars / Service Grid --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; gap: var(--space-md); }
  .grid-2 { grid-template-columns: 1fr; gap: var(--space-md); }
}

.pillar {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--line);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--earth);
  margin-bottom: 0.75rem;
}
.pillar h3 { margin-bottom: 0.75rem; }
.pillar p { color: var(--charcoal-soft); }

/* --- Process Steps --- */
.steps {
  display: grid;
  gap: var(--space-md);
  counter-reset: step;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--earth);
  line-height: 1;
}
.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.step-content h3 .step-name {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--earth);
  display: block;
  margin-bottom: 0.4rem;
  font-style: normal;
}

@media (max-width: 600px) {
  .step { grid-template-columns: 50px 1fr; gap: var(--space-sm); }
  .step-num { font-size: 1.6rem; }
}

/* --- Quote block --- */
.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--charcoal);
  padding-left: var(--space-md);
  border-left: 2px solid var(--earth);
  margin: var(--space-lg) 0;
}

/* --- Bullet list (styled) --- */
.list-styled {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}
.list-styled li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
}
.list-styled li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--earth);
  font-weight: 500;
}

/* Checkmark variant */
.list-check li::before {
  content: "✓";
  color: var(--terracotta);
  font-weight: 600;
}
.list-x li::before {
  content: "✕";
  color: var(--muted);
}

/* --- CTA block --- */
.cta-block {
  text-align: center;
  background: var(--cream-deep);
  padding: var(--space-3xl) var(--space-md);
  border-radius: 4px;
}
.cta-block h2 { margin-bottom: var(--space-md); max-width: 36rem; margin-inline: auto; }
.cta-block p { max-width: 40rem; margin: 0 auto var(--space-lg); }

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: var(--space-2xl) 0 var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.footer h4 {
  color: var(--cream);
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  color: var(--cream);
}
.footer-logo img { width: 32px; height: 32px; }
.footer-logo em { font-style: italic; color: var(--terracotta-soft); }
.footer p { color: rgba(245, 239, 230, 0.7); font-size: 0.95rem; }
.footer ul { list-style: none; }
.footer ul li { padding: 0.35rem 0; }
.footer a {
  color: rgba(245, 239, 230, 0.75);
  font-size: 0.95rem;
  transition: color 0.25s var(--ease);
}
.footer a:hover { color: var(--terracotta-soft); }
.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.5);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

/* --- Forms --- */
.form-field { margin-bottom: var(--space-md); }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--charcoal-soft);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  border-radius: 2px;
  transition: border-color 0.25s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--earth);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: calc(var(--space-2xl) + 4rem) 0 var(--space-2xl);
  text-align: center;
}
.page-hero .eyebrow { display: block; margin-bottom: var(--space-md); }
.page-hero h1 { margin-bottom: var(--space-md); }
.page-hero .lead { max-width: var(--max-prose); margin: 0 auto; }

/* --- About story --- */
.story-block {
  max-width: var(--max-prose);
  margin: 0 auto;
}
.story-block p { margin-bottom: 1.5rem; }
.story-block h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

/* About photo block (different from hero) */
.about-photo {
  max-width: 480px;
  margin: 0 auto var(--space-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(31, 27, 22, 0.18);
}

/* --- Resource card --- */
.resource-card {
  padding: var(--space-lg);
  background: var(--cream-deep);
  border-radius: 4px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.06);
}
.resource-card .eyebrow { color: var(--terracotta); margin-bottom: 0.75rem; }
.resource-card h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.resource-card p { font-size: 0.98rem; flex-grow: 1; margin-bottom: var(--space-md); }

/* --- Newsletter inline form --- */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 460px;
  margin: var(--space-md) 0 0;
}
.newsletter-form input {
  flex: 1;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 2px;
  font-family: var(--font-body);
}
.newsletter-form input:focus { outline: none; border-color: var(--earth); }
.newsletter-form button {
  padding: 0.95rem 1.5rem;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.25s var(--ease);
}
.newsletter-form button:hover { background: var(--terracotta); }
@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
}

/* --- Misc utility --- */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }
.divider {
  height: 1px;
  background: var(--line);
  margin: var(--space-2xl) 0;
}

/* Subtle background texture for hero */
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: -5%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(168, 93, 61, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   NEW IN v2 — Services Roll-Out Cards
   ============================================ */

.service-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  min-height: 480px;
}

.service-choice-card {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--cream);
  position: relative;
  transition: background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.service-choice-card:first-child {
  border-right: 1px solid var(--line);
}

.service-choice-card:hover {
  background: var(--cream-deep);
}

.service-choice-card .eyebrow {
  color: var(--earth);
  margin-bottom: var(--space-md);
}

.service-choice-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: var(--space-sm);
  line-height: 1.15;
}

.service-choice-card .program-name {
  font-style: italic;
  color: var(--earth);
}

.service-choice-card .service-lead {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.service-choice-card .service-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
  margin: 0;
}

.service-choice-card:hover .service-detail,
.service-choice-card:focus-within .service-detail,
.service-choice-card.active .service-detail {
  max-height: 320px;
  opacity: 1;
  margin: var(--space-md) 0 var(--space-lg);
}

.service-choice-card .service-detail ul {
  list-style: none;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}
.service-choice-card .service-detail ul li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}
.service-choice-card .service-detail ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--earth);
}

.service-choice-card .cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: var(--space-md);
}

@media (max-width: 760px) {
  .service-choice {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-choice-card:first-child {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  /* On mobile, always show detail */
  .service-choice-card .service-detail {
    max-height: 320px;
    opacity: 1;
    margin: var(--space-md) 0 var(--space-lg);
  }
}

/* ============================================
   Social Icon Links
   ============================================ */
.socials {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--charcoal);
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.social-link:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}
.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Footer socials variant */
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-sm);
}
.footer-socials .social-link {
  width: 38px;
  height: 38px;
  background: rgba(245, 239, 230, 0.08);
  color: rgba(245, 239, 230, 0.7);
  border-color: rgba(245, 239, 230, 0.1);
}
.footer-socials .social-link:hover {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.footer-socials .social-link svg { width: 16px; height: 16px; }

/* ============================================
   Cal.com Embed Wrapper
   ============================================ */
.cal-embed {
  width: 100%;
  min-height: 640px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 8px 30px rgba(31, 27, 22, 0.06);
}
.cal-embed iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
  display: block;
}

/* ============================================
   Process Visual (Core Shift)
   ============================================ */
.process-visual {
  margin: var(--space-2xl) 0;
  padding: var(--space-lg);
  background: var(--charcoal);
  border-radius: 4px;
}
.process-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.symbols-strip {
  margin: var(--space-xl) auto;
  max-width: 900px;
  padding: var(--space-md) var(--space-lg);
  background: var(--charcoal);
  border-radius: 4px;
}
.symbols-strip img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.05) sepia(0.15) hue-rotate(-10deg);
}

/* ============================================
   Coming Soon / Waitlist
   ============================================ */
.waitlist-box {
  background: var(--cream-deep);
  padding: var(--space-2xl) var(--space-lg);
  border-radius: 4px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.waitlist-box .eyebrow { color: var(--terracotta); }
.waitlist-box h2 { margin-bottom: var(--space-md); }
.waitlist-box p { margin-bottom: var(--space-lg); }

/* ============================================
   Testimonials wrapper (Senja embed)
   ============================================ */
.senja-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.senja-wrapper iframe {
  width: 100% !important;
  border: 0;
  display: block;
}

/* ============================================
   Brand mark (small icon usage)
   ============================================ */
.brand-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: block;
  opacity: 0.85;
}

/* ============================================
   Nav dropdown for Services (v3)
   ============================================ */
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.1);
  min-width: 260px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s 0.25s;
  z-index: 110;
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s;
}
.nav-links .dropdown li { display: block; }
.nav-links .dropdown a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-links .dropdown a:hover { background: var(--cream-deep); color: var(--terracotta); }
.nav-links .dropdown a::after { display: none; }
.nav-links .dropdown a .drop-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.15rem;
}
/* Hover bridge so dropdown doesn't close in the gap */
.nav-links .has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
/* Mobile: inline expanded list */
@media (max-width: 940px) {
  .nav-links .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.5rem 0 0 1rem;
    min-width: 0;
    transition: none;
  }
  .nav-links .has-dropdown::after { display: none; }
  .nav-links .dropdown a { padding: 0.5rem 0; font-size: 0.95rem; }
}

/* ============================================
   v4 — Three-tier hero for program pages
   ============================================ */
.hero-three-tier { text-align: center; max-width: 900px; margin: 0 auto; }
.hero-three-tier .program-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: var(--space-lg);
  display: block;
  font-weight: 500;
}
.hero-three-tier .h-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  font-weight: 400;
}
.hero-three-tier .h-mid {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--charcoal-soft);
  margin-bottom: var(--space-md);
  font-style: italic;
  font-weight: 400;
}
.hero-three-tier .h-small {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  color: var(--charcoal-soft);
  margin-bottom: var(--space-lg);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   v4 — Homepage Principles section (A.C.T.)
   ============================================ */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.principle-card {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--line);
}
.principle-letter {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  color: var(--earth);
  line-height: 1;
  margin-bottom: var(--space-sm);
  display: block;
}
.principle-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.principle-card .principle-name {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--earth);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.principle-card p {
  color: var(--charcoal-soft);
  font-size: 1rem;
  line-height: 1.55;
}
@media (max-width: 860px) {
  .principles-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

/* ============================================
   v4 — About Me hero (two-column with photo)
   ============================================ */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-hero-grid .h1-greeting {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: var(--space-md);
}
.about-hero-grid .h1-greeting em { color: var(--earth); font-style: italic; }
.about-hero-grid .about-hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(31, 27, 22, 0.15);
}
@media (max-width: 860px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .about-hero-grid .about-hero-photo { max-width: 420px; margin: 0 auto; }
}

/* Smaller homepage h1 (size down per request) */
.hero h1 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); line-height: 1.15; }

/* Use bullet character (•) for the about teacher list */
.about-list-bullet {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}
.about-list-bullet li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
}
.about-list-bullet li::before {
  content: "•";
  position: absolute;
  left: 0.2rem;
  color: var(--earth);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
}

/* About brief intro under the photo block */
.about-brief {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
}
.about-brief strong { color: var(--charcoal); font-weight: 600; }

/* ============================================
   v5 — Footer Connect column (socials + book call)
   ============================================ */
.footer-connect .footer-socials { margin-top: 0; margin-bottom: var(--space-md); }
.footer-connect .btn-link { color: rgba(245, 239, 230, 0.85); border-color: rgba(245, 239, 230, 0.4); }
.footer-connect .btn-link:hover { color: var(--terracotta-soft); border-color: var(--terracotta-soft); }

/* ============================================
   v5 — Native Testimonials (replaces Senja)
   ============================================ */
.tm-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}
.tm-video-card {
  background: var(--cream-deep);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.08);
}
.tm-stage {
  width: 100%;
  height: 460px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tm-stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--charcoal);
}
.tm-video-meta {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.tm-video-meta .tm-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
}
.tm-video-meta .tm-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--earth);
}
@media (max-width: 760px) {
  .tm-videos { grid-template-columns: 1fr; gap: var(--space-md); margin-bottom: var(--space-xl); }
  .tm-stage { height: 58vh; max-height: 520px; }
}

/* Image testimonials — masonry */
.tm-masonry {
  column-count: 3;
  column-gap: var(--space-lg);
}
.tm-item {
  break-inside: avoid;
  margin-bottom: var(--space-lg);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(31, 27, 22, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tm-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(31, 27, 22, 0.1);
}
.tm-item img { width: 100%; height: auto; display: block; }
@media (max-width: 980px) { .tm-masonry { column-count: 2; } }
@media (max-width: 600px) { .tm-masonry { column-count: 1; column-gap: var(--space-md); } .tm-item { margin-bottom: var(--space-md); } }
