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

:root {
  --orange:    #D45428;        /* logo orange */
  --plum:      #7C406C;        /* logo plum */
  --plum-deep: #3A1F33;        /* warm dark anchor */
  --mauve:     #B889A4;        /* soft tint of plum */
  --cream:     #FAF5F0;        /* alternating warm bg */
  --blush:     #F4EBE4;        /* warm accent bg (contact) */
  --gray-mid:  #A9A9A9;
  --gray-light:#E6E6E6;
  --bg:        #FAF5F0;
  --white:     #FFFFFF;
  --text:      #3a2e36;        /* warm dark body text */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── ACCESSIBILITY ──────────────────────────────── */
.skip-link {
  position: absolute; top: -48px; left: 1rem;
  background: var(--plum); color: #fff;
  padding: .6rem 1rem; border-radius: 6px;
  text-decoration: none; font-size: .85rem; font-weight: 600;
  z-index: 1000; transition: top .2s;
}
.skip-link:focus { top: .8rem; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

/* ─── UTILITY ─────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 10%; }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--plum);
}
.label::before {
  content: ''; display: block;
  width: 26px; height: 2px; background: var(--plum);
}
.label--center { justify-content: center; }
.label--center::before { display: none; }
.label--light { color: var(--mauve); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--plum-deep);
}
.section-title em { font-style: italic; color: var(--orange); }
.section-title--light { color: #fff; }
.section-title--centered { text-align: center; }

.section-sub {
  font-size: .975rem; line-height: 1.78;
  color: #6e5a64; margin-top: .75rem;
}
.section-sub--light { color: rgba(255,255,255,.72); }
.section-sub--center { text-align: center; }
.section-sub--narrow { max-width: 560px; }

.label + .section-title { margin-top: 0.6rem; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .8rem 1.7rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem; font-weight: 600;
  letter-spacing: .02em; cursor: pointer;
  text-decoration: none; transition: all .25s ease;
  border: 2px solid transparent;
}
.btn-plum {
  background: var(--plum); color: #fff;
  border-color: var(--plum);
}
.btn-plum:hover {
  background: #6a3257; border-color: #6a3257;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(124,64,108,.32);
}
.btn-orange {
  background: var(--orange); color: #fff;
  border-color: var(--orange);
}
.btn-orange:hover {
  background: #b9461f; border-color: #b9461f;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212,84,40,.36);
}
.btn-ghost {
  background: transparent; color: var(--plum);
  border-color: var(--plum);
}
.btn-ghost:hover {
  background: var(--plum); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(124,64,108,.22);
}
.btn-lg { padding: .95rem 2.4rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SCROLL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── NAV ─────────────────────────────────────────── */
#nav {
  position: fixed; inset: 0 0 auto;
  z-index: 200; height: 78px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 4px 28px rgba(58,31,51,.08); }
#navCta { display: inline-flex; }

.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-brand-img {
  height: 50px; width: auto; display: block;
}

.nav-links {
  display: flex; align-items: center;
  gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: .875rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--plum); }

.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); transition: all .3s;
}

/* ─── HERO ────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--white);
  display: flex; align-items: center;
  padding: 130px 10% 90px;
  position: relative; overflow: hidden;
}

.hero-glow-a {
  position: absolute; top: -10%; right: -8%;
  width: 580px; height: 580px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(184,137,164,.20), transparent 70%);
}
.hero-glow-b {
  position: absolute; bottom: -12%; left: -6%;
  width: 460px; height: 460px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(212,84,40,.10), transparent 70%);
}
.hero-grid-lines { display: none; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--plum); margin-bottom: 1.3rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--plum);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  font-weight: 700; line-height: 1.14;
  color: var(--plum-deep); margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--orange); }

.hero-lead {
  font-size: 1.05rem; line-height: 1.78;
  color: #6e5a64;
  max-width: 520px; margin-bottom: 2rem;
}

.hero-actions {
  display: flex; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.hero-note {
  font-size: .86rem; color: #6e5a64;
  margin-top: 1rem; font-style: italic;
  max-width: 460px;
}

.hero-badges {
  display: flex; flex-wrap: wrap;
  gap: .55rem; margin-top: 2rem;
}
.badge {
  padding: .38rem .95rem;
  border: 1px solid rgba(124,64,108,.22);
  border-radius: 100px;
  font-size: .72rem; color: var(--plum);
  letter-spacing: .04em;
  background: rgba(124,64,108,.04);
}

/* Hero right (photo) */
.hero-right { position: relative; }
.hero-photo-wrap {
  position: relative;
  width: 100%; aspect-ratio: 4/5;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 30px 70px -22px rgba(58,31,51,.32);
}
.hero-photo-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(58,31,51,.28));
  pointer-events: none; z-index: 1;
  border-radius: 24px;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  border-radius: 24px;
}

.hero-photo-badge {
  position: absolute; z-index: 2;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(58,31,51,.18);
  display: flex;
}
.hero-photo-badge--years {
  bottom: -1.4rem; left: -1.4rem;
  flex-direction: column;
  padding: 1.05rem 1.25rem;
  max-width: 220px;
  font-family: 'Playfair Display', serif;
}
.hero-photo-badge--years .num {
  font-size: 2.2rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.hero-photo-badge--years .lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: .76rem; color: var(--text);
  margin-top: .35rem; line-height: 1.42;
}
.hero-photo-badge--since {
  top: 1rem; right: 1rem;
  flex-direction: row; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: .5rem .9rem; border-radius: 100px;
  box-shadow: 0 6px 18px rgba(58,31,51,.14);
}
.hero-photo-badge--since .num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--orange);
  line-height: 1;
}
.hero-photo-badge--since .lbl {
  font-size: .66rem; color: var(--plum);
  letter-spacing: .06em; text-transform: uppercase;
}

/* ─── PAIN / WHO WE WORK WITH ─────────────────────── */
#pain {
  background: var(--cream);
  padding: 6rem 10%;
}
.who-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.checklist { list-style: none; margin-top: 2rem; }
.checklist li {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .85rem 0; border-bottom: 1px solid rgba(124,64,108,.14);
  font-size: .94rem; color: var(--text); line-height: 1.55;
}
.checklist li:last-child { border-bottom: none; }
.chk {
  width: 22px; height: 22px; min-width: 22px;
  background: linear-gradient(135deg, var(--orange), var(--plum));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; flex-shrink: 0;
}
.chk svg { width: 11px; height: 11px; }

.who-card {
  background: var(--white); border-radius: 22px;
  padding: 2.5rem;
  box-shadow: 0 14px 50px rgba(58,31,51,.08);
  position: relative;
}
.who-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--orange), var(--plum));
}
.who-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--plum-deep); margin: 1rem 0 .7rem;
}
.who-card p { font-size: .9rem; line-height: 1.75; color: #6e5a64; }
.who-card-p-top { margin-top: .9rem; }

/* ─── WHO / WHAT SUCCESS LOOKS LIKE ──────────────── */
#who {
  padding: 6rem 10%;
  background: var(--white);
  position: relative; overflow: hidden;
}
#who::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(184,137,164,.07));
  pointer-events: none;
}
.outcomes-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.4rem; max-width: 1160px; margin: 0 auto;
  position: relative; z-index: 1;
}
.out-item {
  padding: 1.85rem; background: var(--cream);
  border: 1px solid rgba(124,64,108,.08); border-radius: 16px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.out-item:hover {
  border-color: var(--mauve);
  box-shadow: 0 14px 32px rgba(124,64,108,.12);
  transform: translateY(-3px);
}
.out-n {
  font-family: 'Playfair Display', serif;
  font-size: .72rem; font-weight: 700;
  color: var(--mauve); letter-spacing: .12em;
  margin-bottom: .8rem;
}
.out-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.06rem; font-weight: 600;
  color: var(--plum-deep); margin-bottom: .5rem;
}
.out-item p { font-size: .87rem; line-height: 1.7; color: #6e5a64; }

/* ─── SERVICES / HOW WE WORK ─────────────────────── */
#services {
  background: var(--cream);
  padding: 6rem 10%;
}
.services-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.4rem; max-width: 1160px; margin: 0 auto;
}
.svc-card {
  padding: 2.4rem; border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(124,64,108,.08);
  position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--plum));
  transition: width .4s ease;
}
.svc-card:hover {
  border-color: transparent;
  box-shadow: 0 18px 50px rgba(58,31,51,.12);
  transform: translateY(-5px);
}
.svc-card:hover::after { width: 100%; }
.svc-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--orange); line-height: 1;
  margin-bottom: 1rem;
}
.svc-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem; font-weight: 600;
  color: var(--plum-deep); margin-bottom: .7rem;
}
.svc-card p { font-size: .88rem; line-height: 1.72; color: #6e5a64; margin-bottom: 1.2rem; }
.svc-outcome {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600;
  color: var(--orange); letter-spacing: .03em;
}

/* ─── PROCESS / MUSTARDSEED ADVANTAGE ────────────── */
#process {
  background: linear-gradient(160deg, var(--plum-deep) 0%, #2a1326 100%);
  padding: 6rem 10%;
  position: relative; overflow: hidden;
}
#process::before {
  content: '';
  position: absolute; top: -10%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(184,137,164,.18), transparent 70%);
}
#process::after {
  content: '';
  position: absolute; bottom: -10%; left: -8%;
  width: 360px; height: 360px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(212,84,40,.14), transparent 70%);
}
.process-header { text-align: center; max-width: 600px; margin: 0 auto 4.5rem; position: relative; z-index: 1; }
.adv-em { font-style: italic; color: var(--orange); }

.advantage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; max-width: 1160px; margin: 0 auto;
  position: relative; z-index: 1;
}
.adv-card {
  padding: 2rem; border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color .3s, background .3s, transform .3s;
}
.adv-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(212,84,40,.4);
  transform: translateY(-3px);
}
.adv-icon {
  font-size: 1.8rem; display: block;
  margin-bottom: .9rem;
}
.adv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem; font-weight: 600;
  color: #fff; margin-bottom: .5rem;
}
.adv-card p {
  font-size: .875rem; line-height: 1.72;
  color: rgba(255,255,255,.68);
}

/* ─── ABOUT ───────────────────────────────────────── */
#about {
  padding: 7rem 10%;
  background: var(--white);
}
.about-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 5rem; align-items: start;
}

.about-img-wrap { position: relative; }
.about-img-box {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 22px; overflow: hidden;
  background: var(--cream);
  position: relative;
  box-shadow: 0 20px 50px -16px rgba(58,31,51,.22);
}
.about-img-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  position: absolute; inset: 0;
  border-radius: 22px;
}
.about-img-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(212,84,40,.16), transparent 65%);
  pointer-events: none; z-index: 1;
}

.about-award-badge {
  position: absolute; bottom: -1.4rem; right: -1.4rem;
  background: var(--white); border-radius: 14px;
  padding: .9rem 1.1rem;
  box-shadow: 0 12px 36px rgba(58,31,51,.16);
  display: flex; align-items: center; gap: .7rem;
  max-width: 220px;
}
.award-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #ffd58a, var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.award-info strong {
  display: block; font-size: .78rem; font-weight: 600;
  color: var(--plum-deep); line-height: 1.3;
}
.award-info span { font-size: .7rem; color: var(--gray-mid); }

.about-text .label { margin-bottom: .5rem; }
.about-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 700; line-height: 1.22;
  color: var(--plum-deep); margin-bottom: 1.6rem;
}
.about-h2 em { font-style: italic; color: var(--orange); }
.about-text p {
  font-size: .96rem; line-height: 1.82;
  color: #5a4a52; margin-bottom: 1.2rem;
}

.cred-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: .9rem; margin-top: 2rem;
}
.cred {
  padding: .95rem; background: var(--cream);
  border: 1px solid rgba(124,64,108,.10); border-radius: 12px;
  text-align: center;
}
.cred .ic { font-size: 1.4rem; display: block; margin-bottom: .4rem; }
.cred strong {
  display: block; font-size: .72rem; font-weight: 600;
  color: var(--plum-deep); line-height: 1.4;
}

/* ─── PROOF / CLIENT STORIES ─────────────────────── */
#proof {
  background: var(--cream);
  padding: 6rem 10%;
}
.proof-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.proof-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.4rem; max-width: 1160px; margin: 0 auto;
}
.t-card {
  padding: 2.2rem 2rem; background: var(--white);
  border-radius: 18px; position: relative;
  box-shadow: 0 10px 32px rgba(58,31,51,.06);
}
.t-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4.4rem; font-weight: 900; line-height: 1; font-style: italic;
  color: rgba(124,64,108,.16);
  position: absolute; top: .4rem; left: 1.4rem;
}
.t-text {
  font-size: .94rem; line-height: 1.78;
  color: var(--text);
  padding-top: 1.6rem; margin-bottom: 1.5rem;
}
.t-author { display: flex; align-items: center; gap: .7rem; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--plum), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 600; color: #fff;
}
.t-author strong {
  display: block; font-size: .86rem; font-weight: 600;
  color: var(--plum-deep);
}
.t-author span { font-size: .76rem; color: var(--gray-mid); }

/* ─── OUTCOMES / WHAT THIS MEANS FOR YOU ─────────── */
#outcomes {
  padding: 6rem 10%;
  background: var(--white);
}
.outcomes-header { margin-bottom: 3.5rem; max-width: 600px; margin-left: auto; margin-right: auto; text-align: center; }
.outcomes-header .label { justify-content: center; }
.outcomes-header .label::before { display: none; }
.means-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem; max-width: 1000px; margin: 0 auto;
}
.means-item {
  display: flex; align-items: flex-start;
  gap: 1rem; padding: 1.6rem;
  background: var(--cream);
  border: 1px solid rgba(124,64,108,.08);
  border-radius: 14px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.means-item:hover {
  border-color: var(--mauve);
  box-shadow: 0 14px 32px rgba(124,64,108,.12);
  transform: translateY(-2px);
}
.means-check {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--plum));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; font-weight: 700;
  flex-shrink: 0;
}
.means-item strong {
  display: block; font-size: .95rem; font-weight: 600;
  color: var(--plum-deep); margin-bottom: .4rem;
}
.means-item p {
  font-size: .85rem; line-height: 1.68;
  color: #6e5a64; margin: 0;
}

/* ─── RESOURCES / PODCASTS ───────────────────────── */
#resources {
  background: var(--cream);
  padding: 6rem 10%;
}
.resources-header {
  text-align: center;
  max-width: 600px; margin: 0 auto 3rem;
}
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px; margin: 0 auto;
}
.podcast-card {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: 22px;
  border: 1px solid rgba(124,64,108,.08);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(58,31,51,.06);
  transition: transform .3s, box-shadow .3s;
}
.podcast-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(58,31,51,.12);
}
.podcast-thumb-link { display: block; position: relative; overflow: hidden; }
.podcast-img { width: 100%; display: block; transition: transform .35s; }
.podcast-thumb-link:hover .podcast-img { transform: scale(1.04); }
.podcast-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(58,31,51,.18);
  transition: background .25s;
}
.podcast-thumb-link:hover .podcast-play { background: rgba(58,31,51,.06); }
.podcast-play svg {
  width: 64px; height: 64px;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.4));
}
.podcast-info {
  padding: 1.7rem; flex: 1;
  display: flex; flex-direction: column;
}
.podcast-info .label { margin-bottom: .4rem; }
.podcast-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--plum-deep); margin: .5rem 0 .8rem;
}
.podcast-desc {
  font-size: .88rem; line-height: 1.75;
  color: #6e5a64; margin-bottom: 1.4rem; flex: 1;
}

/* ─── CONTACT SECTION ─────────────────────────────── */
.contact-section {
  background: var(--blush);
  padding: 6rem 10%;
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(124,64,108,.10), transparent 70%);
}
.contact-section .label--light { color: var(--plum); }
.contact-wrap {
  max-width: 640px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700; line-height: 1.2;
  color: var(--plum-deep); margin: 1rem 0 1.3rem;
}
.cta-h2 em { font-style: italic; color: var(--orange); }
.cta-sub {
  font-size: 1rem; line-height: 1.75;
  color: #6e5a64; margin-bottom: 2.5rem;
}
.contact-wrap .contact-form { text-align: left; margin-top: 2.4rem; }
.form-optional {
  font-weight: 400; font-size: .78rem;
  color: var(--gray-mid); margin-left: .3rem;
}
.form-result {
  margin-top: 1.2rem; font-size: .9rem;
  font-weight: 500; text-align: center;
  min-height: 1.4rem;
}

.contact-form {
  max-width: 560px; margin: 2rem auto 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex; flex-direction: column; gap: .4rem;
}
.form-group label {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .05em;
  color: var(--plum);
  text-align: left;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  padding: .85rem 1rem; border-radius: 10px;
  border: 1px solid rgba(124,64,108,.18);
  background: var(--white);
  color: var(--plum-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(58,31,51,.32);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,84,40,.12);
}
.form-group textarea { resize: vertical; }
.contact-form .btn { align-self: center; margin-top: .5rem; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--plum-deep);
  padding: 2.8rem 10%;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.4rem;
}
.footer-brand {
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.footer-brand-img {
  height: 56px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: .9;
  transition: opacity .2s;
}
.footer-brand:hover .footer-brand-img,
.footer-brand:focus-visible .footer-brand-img { opacity: 1; }
.footer-nav { display: flex; gap: 1.8rem; list-style: none; }
.footer-nav a {
  font-size: .8rem; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .2s;
}
.footer-nav a:hover { color: rgba(255,255,255,.95); }
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

/* ── Large tablet / small laptop ─────────────────── */
@media (max-width: 1100px) {
  .hero-inner { gap: 2.5rem; }
  .who-inner  { gap: 3rem; }
  .about-inner { gap: 3rem; }
  .hero-photo-badge--years { padding: .85rem 1.05rem; }
  .hero-photo-badge--years .num { font-size: 1.9rem; }
  .hero-photo-badge--years .lbl { font-size: .72rem; }
}

/* ── Tablet ───────────────────────────────────────── */
@media (max-width: 960px) {
  /* Nav */
  #navCta { display: none; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 78px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    padding: 1.2rem 10%; gap: 1.2rem;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 8px 24px rgba(58,31,51,.08);
  }
  .nav-hamburger { display: flex; }
  .nav-brand-img { height: 44px; }

  /* Hero — single column, photo hidden on mobile/tablet */
  #hero { padding: 110px 10% 70px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-lead { max-width: 100%; }
  .hero-right { display: none; }

  /* Section vertical padding */
  #pain, #who, #services, #process,
  #about, #proof, #outcomes, #resources,
  .contact-section { padding-top: 5rem; padding-bottom: 5rem; }
  footer { padding-top: 2.2rem; padding-bottom: 2.2rem; }

  /* Grids */
  .who-inner     { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .about-award-badge { right: 0; }
  .proof-grid    { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .cred-grid     { grid-template-columns: 1fr 1fr; }
  .advantage-grid { grid-template-columns: 1fr 1fr; }
  .means-grid    { grid-template-columns: 1fr; }
  .podcast-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
}

/* ── Small mobile ─────────────────────────────────── */
@media (max-width: 560px) {
  .nav-brand-img { height: 38px; }
  .nav-links.open { padding: 1rem 8%; }

  #hero { padding: 96px 8% 56px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-lead { font-size: .96rem; }
  .hero-note { font-size: .82rem; }
  .hero-photo-badge--years {
    bottom: -.8rem; left: -.6rem; padding: .75rem .95rem;
  }
  .hero-photo-badge--years .num { font-size: 1.65rem; }
  .hero-photo-badge--years .lbl { font-size: .68rem; }
  .hero-photo-badge--since { top: .7rem; right: .7rem; padding: .42rem .75rem; }
  .hero-photo-badge--since .num { font-size: .92rem; }
  .hero-photo-badge--since .lbl { font-size: .6rem; }

  #pain, #who, #services, #process,
  #about, #proof, #outcomes, #resources,
  .contact-section {
    padding: 4rem 8%;
  }
  footer { padding: 1.8rem 8%; }

  .outcomes-grid  { grid-template-columns: 1fr; }
  .proof-grid     { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .means-grid     { grid-template-columns: 1fr; }
  .cred-grid      { grid-template-columns: 1fr 1fr; }

  .about-img-box { aspect-ratio: 4/5; }

  .podcast-play svg { width: 52px; height: 52px; }
  .podcast-title { font-size: 1.1rem; }

  .contact-form .btn { width: 100%; justify-content: center; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav   { justify-content: center; flex-wrap: wrap; gap: .5rem 1.4rem; }
}

/* ── Tiny mobile ──────────────────────────────────── */
@media (max-width: 400px) {
  #hero { padding: 88px 6% 44px; }
  #pain, #who, #services, #process,
  #about, #proof, #outcomes, #resources,
  .contact-section, footer { padding-left: 6%; padding-right: 6%; }

  .hero-badges { display: none; }
  .cred-grid   { grid-template-columns: 1fr; }
  .means-item  { flex-direction: column; }
}
