/* ===================================================================
   Believe. Trust. Build. — Shared Stylesheet
   Spiritually grounded, present-focused life coaching
   =================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:           #FAF7F2;
  --warm-white:      #FDF9F4;
  --sand:            #EDE8DF;
  --sage:            #8A9E8C;
  --sage-light:      #C2D0C3;
  --sage-dark:       #4A6650;
  --terracotta:      #C4785A;
  --terracotta-light:#E8C4B4;
  --charcoal:        #2E2A26;
  --charcoal-mid:    #5C5650;
  --charcoal-light:  #9A948E;
  --gold:            #B8986A;
  --font-display:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Jost', sans-serif;
  --ease:            cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: inherit; }

/* ── ENTRANCE ANIMATION ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal { animation: fadeUp 0.9s var(--ease) both; }
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.18s; }
.reveal-3 { animation-delay: 0.31s; }
.reveal-4 { animation-delay: 0.44s; }

/* ── NAV ────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
nav.scrolled { border-color: var(--sand); }

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 1.9rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  text-decoration: none;
  transition: color 0.25s var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.current { color: var(--terracotta); }
.nav-links a.current::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--terracotta);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-cta:hover { background: var(--terracotta); color: #fff; }

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

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--terracotta);
  padding: 0.95rem 2.3rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.btn-primary:hover { background: var(--charcoal); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.btn-secondary::after { content: '→'; transition: transform 0.2s var(--ease); }
.btn-secondary:hover { color: var(--terracotta); }
.btn-secondary:hover::after { transform: translateX(4px); }

/* ── SHARED SECTION PRIMITIVES ──────────────────────────────────── */
section { padding: 6rem 4rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--charcoal-light);
}
.section-label.centered { justify-content: center; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-heading em { font-style: italic; color: var(--terracotta); }

.section-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.9;
  max-width: 600px;
}
.section-body + .section-body { margin-top: 1.25rem; }

/* ── INTERIOR PAGE HEADER ───────────────────────────────────────── */
.page-header {
  padding: 11rem 4rem 4rem;
  text-align: center;
  background: var(--warm-white);
  border-bottom: 1px solid var(--sand);
  position: relative;
  overflow: hidden;
}
.page-header-ghost {
  position: absolute;
  top: 55%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 300;
  color: var(--sand);
  opacity: 0.45;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header .section-label { justify-content: center; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
}
.page-header h1 em { font-style: italic; color: var(--terracotta); }
.page-header .page-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.85;
  max-width: 560px;
  margin: 1.75rem auto 0;
}

/* ── HOME HERO ──────────────────────────────────────────────────── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6rem 4rem 0;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%; right: -2rem;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 28vw;
  font-weight: 300;
  color: var(--sand);
  opacity: 0.5;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.hero-content { position: relative; z-index: 1; max-width: 560px; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--sage);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.hero-headline em { font-style: italic; color: var(--terracotta); }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.85;
  margin-bottom: 3rem;
  max-width: 460px;
}

.hero-btns { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: flex-end; align-items: center; position: relative; z-index: 1; }
.hero-framework { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-end; }

.framework-pill {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  padding: 1.2rem 1.8rem 1.2rem 1.4rem;
  min-width: 280px;
  animation: fadeSlideIn 0.8s var(--ease) both;
}
.framework-pill:nth-child(1) { animation-delay: 0.2s; }
.framework-pill:nth-child(2) { animation-delay: 0.35s; margin-right: 2.5rem; }
.framework-pill:nth-child(3) { animation-delay: 0.5s; margin-right: 1rem; }

.pill-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--terracotta-light);
  line-height: 1;
  min-width: 2rem;
}
.pill-word {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.pill-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.4;
}

/* ── TWO-COLUMN SECTION (shared) ────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.split.tinted { background: var(--warm-white); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }

/* ── PHILOSOPHY LIST ────────────────────────────────────────────── */
.philosophy-grid { display: flex; flex-direction: column; }
.philosophy-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--sand);
}
.philosophy-item:last-child { border-bottom: none; }
.philosophy-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 0.65rem;
  flex-shrink: 0;
}
.philosophy-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ── FRAMEWORK BANNER (dark) ────────────────────────────────────── */
.framework-banner {
  background: var(--charcoal);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  align-items: center;
}
.banner-label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: var(--terracotta-light);
  line-height: 1.4;
}
.framework-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.framework-cell { background: rgba(255,255,255,0.04); padding: 2rem 1.75rem; }
.framework-cell-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--terracotta-light);
  margin-bottom: 0.75rem;
}
.framework-cell-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}

/* ── "FOR YOU" LIST ─────────────────────────────────────────────── */
.for-you-list { display: flex; flex-direction: column; gap: 1.1rem; }
.for-you-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--sand);
  transition: border-color 0.25s var(--ease);
}
.split.tinted .for-you-item { background: var(--warm-white); }
.for-you-item:hover { border-color: var(--terracotta-light); }
.for-you-icon {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: -0.1rem;
}
.for-you-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.65;
}

/* ── STEPS (home preview + method page) ─────────────────────────── */
.steps-inner { max-width: 1200px; margin: 0 auto; }
.steps-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
}
.step-card {
  background: var(--cream);
  padding: 2rem 1.5rem;
  position: relative;
  transition: background 0.25s var(--ease);
}
.step-card:hover { background: var(--warm-white); }
.step-accent {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--terracotta);
  transition: height 0.35s var(--ease);
}
.step-card:hover .step-accent { height: 100%; }
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.step-sub {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.65;
}

/* ── METHOD PAGE — JOURNEY ──────────────────────────────────────── */
.journey { max-width: 820px; margin: 0 auto; }
.journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--sand);
}
.journey-step:last-child { border-bottom: none; }
.journey-marker { position: relative; text-align: center; }
.journey-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--terracotta-light);
  line-height: 1;
}
.journey-line {
  width: 1px;
  background: var(--sand);
  margin: 0.75rem auto 0;
  height: calc(100% - 3.4rem);
}
.journey-step:last-child .journey-line { display: none; }
.journey-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.journey-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.journey-body {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.85;
}
.journey-shift {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.cycle-note {
  max-width: 820px;
  margin: 3.5rem auto 0;
  padding: 2.25rem 2.5rem;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-left: 2px solid var(--sage);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── MIND YOUR PERSON ───────────────────────────────────────────── */
.mind {
  background: var(--sage-light);
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mind::before {
  content: 'Mind Your Person';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 14vw;
  font-weight: 300;
  color: rgba(255,255,255,0.32);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}
.mind-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.mind-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
}
.mind-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1.9;
  opacity: 0.88;
}

/* ── OFFERING / WORK WITH ME ────────────────────────────────────── */
.offering-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  padding: 3rem;
}
.offering-tag {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.offering-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.offering-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.offering-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--sand);
}
.offering-features li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.offering-features li::before { content: '—'; color: var(--terracotta); flex-shrink: 0; }

/* arc of five sessions */
.arc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  margin-top: 1rem;
}
.arc-cell { background: var(--cream); padding: 1.75rem 1.4rem; }
.arc-session {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 0.6rem;
}
.arc-step {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.arc-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.6;
}

/* ── ABOUT ──────────────────────────────────────────────────────── */
.about-portrait {
  aspect-ratio: 3 / 4;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-portrait .portrait-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--charcoal-light);
  letter-spacing: 0.08em;
  text-align: center;
  white-space: pre-line;
}
.about-portrait .portrait-mark {
  position: absolute;
  bottom: 1.75rem; right: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(196,120,90,0.16);
  line-height: 1;
}
.about-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  border-left: 2px solid var(--terracotta);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* reflective theme strip */
.themes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
}
.theme-cell { background: var(--warm-white); padding: 2.25rem 2rem; }
.theme-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.theme-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.8;
}

/* a soft editorial note for placeholder content */
.editor-note {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: var(--warm-white);
  border: 1px dashed var(--sage);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1.7;
}

/* ── INSIGHTS ───────────────────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.insight-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.insight-card:hover { border-color: var(--terracotta-light); transform: translateY(-4px); }
.insight-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--sage-dark);
}
.insight-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.35;
}
.insight-excerpt {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.75;
  flex: 1;
}
.insight-status {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

/* ── QUOTE BANNER ───────────────────────────────────────────────── */
.quote-banner {
  background: var(--terracotta);
  padding: 6rem 4rem;
  text-align: center;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}
.quote-attr {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── CTA STRIP ──────────────────────────────────────────────────── */
.cta-strip {
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--sand);
}
.cta-strip .section-heading { margin-bottom: 2rem; }

/* ── CONTACT ────────────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}
.form-input, .form-textarea {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s var(--ease);
  resize: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--terracotta); }
.form-textarea { min-height: 130px; }
.form-submit {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--charcoal);
  border: none;
  padding: 0.95rem 2.5rem;
  cursor: pointer;
  transition: background 0.25s var(--ease);
  align-self: flex-start;
}
.form-submit:hover { background: var(--terracotta); }
.form-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.contact-info { display: flex; flex-direction: column; gap: 2.25rem; }
.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 0.4rem;
}
.contact-detail-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--charcoal);
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
}
.footer-tagline {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.36);
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.footer-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-top: 0.6rem;
  letter-spacing: 0.01em;
}
.footer-links { display: flex; gap: 1.75rem; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.46);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: rgba(255,255,255,0.88); }
.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── PRICING TILE INSIDE OFFERING CARD ──────────────────────────── */
.offering-price {
  margin: -0.25rem 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  text-align: center;
}
.offering-price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.offering-price-detail {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-top: 0.6rem;
}

/* ── CONTINUING THE WORK ────────────────────────────────────────── */
.continuing {
  background: var(--cream);
  border-top: 1px solid var(--sand);
}
.continuing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.continuing-header { margin-bottom: 0; }
.continuing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.continuing-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  padding: 2.5rem 2rem;
  text-align: center;
}
.continuing-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}
.continuing-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.continuing-unit {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin: 0.6rem 0 1.5rem;
}
.continuing-desc {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.55;
  margin: 0;
}

/* ── CLARITY CALL LIST ──────────────────────────────────────────── */
.clarity-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.5rem;
  max-width: 620px;
  text-align: left;
}
.clarity-list li {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.65;
  padding: 0.85rem 0 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(196, 120, 90, 0.18);
  position: relative;
}
.clarity-list li:last-child { border-bottom: none; }
.clarity-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 10px;
  height: 1px;
  background: var(--terracotta);
}

/* ── ATMOSPHERIC IMAGE BAND PLACEHOLDERS ──────────────────────── */
.image-band {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.image-band-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-light);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0 2rem;
}
.image-band-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 1.15rem 2rem; }
  section { padding: 5rem 2rem; }
  #home { padding: 7rem 2rem 3rem; grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .steps-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .framework-banner { grid-template-columns: 1fr; padding: 4rem 2rem; }
  .arc-grid { grid-template-columns: 1fr; }
  .page-header { padding: 9rem 2rem 3.5rem; }
  .quote-banner, .mind { padding: 5rem 2rem; }
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--terracotta);
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── BACK TO TOP ────────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--cream);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--charcoal-mid);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
              background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease);
  z-index: 99;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

/* ── SCROLL REVEAL SYSTEM ───────────────────────────────────────── */
/* Only active when JS has loaded — prevents flash of hidden content */
.js-loaded .js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js-loaded .js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger: parent hides children, observer adds visible to parent */
.js-loaded .js-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.js-loaded .js-stagger.visible > *:nth-child(1)  { transition-delay: 0.00s; }
.js-loaded .js-stagger.visible > *:nth-child(2)  { transition-delay: 0.09s; }
.js-loaded .js-stagger.visible > *:nth-child(3)  { transition-delay: 0.18s; }
.js-loaded .js-stagger.visible > *:nth-child(4)  { transition-delay: 0.27s; }
.js-loaded .js-stagger.visible > *:nth-child(5)  { transition-delay: 0.36s; }
.js-loaded .js-stagger.visible > *:nth-child(6)  { transition-delay: 0.45s; }
.js-loaded .js-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── SITE-WIDE GRAIN TEXTURE ────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.55;
}

/* ── IMAGE BAND — LINEN TEXTURE ─────────────────────────────────── */
.image-band {
  background-color: var(--sand);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 18px,
      rgba(46, 42, 38, 0.028) 18px,
      rgba(46, 42, 38, 0.028) 19px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(46, 42, 38, 0.018) 18px,
      rgba(46, 42, 38, 0.018) 19px
    );
  min-height: 340px;
  position: relative;
}
.image-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 247, 242, 0.18) 0%,
    transparent 30%,
    transparent 70%,
    rgba(250, 247, 242, 0.18) 100%
  );
  pointer-events: none;
}
.image-band-label {
  position: relative;
  z-index: 1;
}

/* ── ENHANCED INSIGHT CARDS ─────────────────────────────────────── */
.insight-card {
  position: relative;
  overflow: hidden;
}
.insight-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--terracotta);
  transition: height 0.35s var(--ease);
}
.insight-card:hover::before { height: 100%; }

/* ── ENHANCED JOURNEY STEPS ─────────────────────────────────────── */
.journey-step {
  transition: background 0.25s var(--ease);
  border-radius: 0;
}
.journey-step:hover .journey-name { color: var(--terracotta); }
.journey-name { transition: color 0.25s var(--ease); }

/* ── PHILOSOPHY ITEMS — HOVER ACCENT ────────────────────────────── */
.philosophy-item { transition: padding-left 0.25s var(--ease); }
.philosophy-item:hover { padding-left: 0.4rem; }

/* ── FRAMEWORK CELLS — SUBTLE HOVER ─────────────────────────────── */
.framework-cell {
  transition: background 0.25s var(--ease);
  cursor: default;
}
.framework-cell:hover { background: rgba(255, 255, 255, 0.09); }

/* ── ARC CELLS — HOVER ACCENT ───────────────────────────────────── */
.arc-cell { position: relative; overflow: hidden; transition: background 0.25s var(--ease); }
.arc-cell::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.arc-cell:hover { background: var(--warm-white); }
.arc-cell:hover::after { transform: scaleX(1); }

/* ── CONTINUING CARDS ───────────────────────────────────────────── */
.continuing-card {
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.continuing-card:hover {
  border-color: var(--terracotta-light);
  transform: translateY(-3px);
}

/* ── FOR-YOU ITEMS — ICON COLOR SHIFT ──────────────────────────── */
.for-you-icon { transition: color 0.25s var(--ease); }
.for-you-item:hover .for-you-icon { color: var(--sage-dark); }

/* ── OFFERING CARD HOVER ────────────────────────────────────────── */
.offering-card {
  transition: box-shadow 0.3s var(--ease);
}
.offering-card:hover {
  box-shadow: 0 8px 40px rgba(46, 42, 38, 0.08);
}

/* ── HERO SECTION — BOTTOM FADE ─────────────────────────────────── */
#home {
  background: linear-gradient(
    to bottom,
    var(--cream) 0%,
    var(--warm-white) 100%
  );
}

/* ── NAV BRAND HOVER ────────────────────────────────────────────── */
.nav-brand {
  transition: opacity 0.2s var(--ease);
}
.nav-brand:hover { opacity: 0.75; }

/* ── QUOTE BANNER — SUBTLE OVERLAY ──────────────────────────────── */
.quote-banner {
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '\201C';
  position: absolute;
  font-family: var(--font-display);
  font-size: 28vw;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote-text, .quote-attr { position: relative; z-index: 1; }

/* ── MIND SECTION — FLOATING DOTS ──────────────────────────────── */
.mind {
  background: linear-gradient(
    135deg,
    var(--sage-light) 0%,
    #b8cbb9 100%
  );
}

/* ── SECTION LABEL LINE ANIMATION ───────────────────────────────── */
.section-label::before {
  transition: width 0.4s var(--ease);
}
.js-reveal.visible .section-label::before,
.section-label::before {
  width: 1.5rem;
}

/* ── CTA STRIP — CENTER ALIGNMENT FIX ──────────────────────────── */
.cta-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.cta-strip .section-label { justify-content: center; margin-bottom: 1.5rem; }
.cta-strip .section-heading { text-align: center; margin-bottom: 2rem; }
.cta-strip .section-body { text-align: center; }

/* ── PAGE HEADER — RICHER BACKGROUND ───────────────────────────── */
.page-header {
  background: linear-gradient(
    to bottom,
    var(--warm-white) 0%,
    var(--cream) 100%
  );
}

/* ── ABOUT PORTRAIT HOVER ───────────────────────────────────────── */
.about-portrait {
  transition: box-shadow 0.35s var(--ease);
}
.about-portrait:hover {
  box-shadow: inset 0 0 0 3px var(--terracotta-light);
}

/* ── FORM FIELD FOCUS LIFT ──────────────────────────────────────── */
.form-field {
  transition: transform 0.2s var(--ease);
}
.form-field:focus-within {
  transform: translateY(-2px);
}

/* ── HERO CTA CONTEXT NOTE ──────────────────────────────────────── */
.hero-cta-note {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-top: 1rem;
}

/* ── SOCIAL PROOF / TESTIMONIALS ────────────────────────────────── */
.testimonial-band {
  background: var(--warm-white);
  border-top: 1px solid var(--sand);
  padding: 6rem 4rem;
}
.testimonial-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 2.25rem 2rem 2rem;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.testimonial-card:hover {
  border-color: var(--terracotta-light);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--terracotta-light);
  position: absolute;
  top: 0.75rem;
  left: 1.75rem;
  line-height: 1;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1.75rem;
}
.testimonial-name {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}
.testimonial-placeholder {
  text-align: center;
  padding: 1.25rem 0 2.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal-light);
}

/* ── FAQ SECTION ─────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 1.6rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  cursor: default;
}
.faq-a {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.85;
}

/* ── PRIVACY NOTE ────────────────────────────────────────────────── */
.privacy-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-top: 0.25rem;
}
.privacy-note a { text-decoration: underline; color: var(--charcoal-light); }

/* ── CTA CONTEXT NOTE ────────────────────────────────────────────── */
.cta-context {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin-top: 0.75rem;
  display: block;
}
.cta-context.dark {
  color: var(--charcoal-light);
}

/* ── SESSION OUTCOME LIST ────────────────────────────────────────── */
.arc-outcome {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1.55;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(138, 158, 140, 0.25);
  font-style: italic;
}

@media (max-width: 1024px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-band { padding: 4rem 2rem; }
}

/* ── FOOTER — SUBTLE TOP BORDER ACCENT ──────────────────────────── */
footer {
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 4rem; right: 4rem;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--terracotta) 30%,
    var(--terracotta) 70%,
    transparent
  );
  opacity: 0.25;
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--warm-white);
    border-left: 1px solid var(--sand);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 3rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: -20px 0 50px rgba(46,42,38,0.08);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 0.95rem; letter-spacing: 0.14em; }
  .nav-links .nav-cta { font-size: 0.8rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .steps-row { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .continuing-grid { grid-template-columns: 1fr; }
  .framework-table { grid-template-columns: 1fr; }
  .themes { grid-template-columns: 1fr; }
  .journey-step { grid-template-columns: 1fr; gap: 0.75rem; }
  .journey-line { display: none; }
  .hero-headline { font-size: 2.5rem; }
  footer { flex-direction: column; align-items: flex-start; }
}
