:root {
  --bg: #f6f1e9;
  --bg-warm: #f1eadd;
  --bg-card: #fbf7ef;
  --bg-deep: #ebe2d0;
  --text: #2f3a32;
  --text-soft: #5e6b5f;
  --text-mute: #696b5e;
  --sage: #8ea58a;
  --sage-deep: #6d8569;
  --sage-faint: rgba(142, 165, 138, 0.10);
  --sage-wash: rgba(142, 165, 138, 0.22);
  --rose: #c9a193;
  --rose-deep: #b88572;
  --rose-faint: rgba(201, 161, 147, 0.12);
  --rule: #d8d0c2;
  --rule-soft: #e6ddcc;
  --max-narrow: 640px;
  --max-width: 680px;
  --max-wide: 1040px;
  --serif: 'Fraunces', 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', system-ui, sans-serif;
  --shadow-soft: 0 1px 2px rgba(60, 70, 60, 0.03), 0 6px 18px -10px rgba(60, 70, 60, 0.08);
  --shadow-portrait: 0 32px 80px -36px rgba(45, 55, 45, 0.45), 0 6px 18px -8px rgba(45, 55, 45, 0.12);
  --ease-out: cubic-bezier(.2, .6, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
}

/* ============ Header ============ */
header.site-header {
  padding: 36px 0 28px;
  background: #f9f4f0;
  position: relative;
  z-index: 2;
}

.letterhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 12px;
  margin: -12px 0;
  cursor: pointer;
  color: var(--text-soft);
  transition: color 180ms ease;
}

.nav-toggle:hover {
  color: var(--sage-deep);
}

.nav-toggle:focus-visible {
  color: var(--sage-deep);
  outline: 2px solid var(--sage-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-toggle .hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 14px;
  vertical-align: middle;
}

.nav-toggle .hamburger span {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transform-origin: center;
  transition: transform 280ms var(--ease-out), opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(6.25px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-6.25px) rotate(-45deg);
}

.logo-link {
  display: inline-block;
  border-bottom: none;
  line-height: 0;
}

.logo-link:hover { border-bottom: none; }

.logo-link img {
  display: block;
  max-width: 240px;
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.primary-nav a {
  color: var(--text-soft);
  border-bottom: none;
  padding: 2px 0;
  transition: color 160ms ease;
}

.primary-nav a:hover {
  color: var(--sage-deep);
  border-bottom: none;
}

.primary-nav .sep {
  color: var(--rule);
  user-select: none;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  header.site-header { padding: 24px 0 20px; }
  .letterhead {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .logo-link img { max-width: 200px; }

  .nav-toggle { display: inline-flex; }

  .primary-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 14px;
    padding-top: 4px;
    border-top: 1px solid var(--rule-soft);
  }

  .primary-nav[data-open="true"] {
    display: flex;
    animation: nav-drop 280ms var(--ease-out);
  }

  .primary-nav a {
    padding: 14px 2px;
    font-size: 1rem;
    border-bottom: 1px solid var(--rule-soft);
  }

  .primary-nav a:last-of-type {
    border-bottom: none;
  }

  .primary-nav .sep {
    display: none;
  }

  @keyframes nav-drop {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
  }
}

section[id] { scroll-margin-top: 16px; }

/* ============ Reveal-on-scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============ Editorial kicker ============ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 18px;
  font-variation-settings: "opsz" 14, "SOFT" 0;
}

.kicker svg {
  width: 13px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.95;
}

.kicker em {
  font-style: normal;
  color: var(--rose-deep);
  letter-spacing: 0.18em;
  font-variation-settings: "opsz" 14, "SOFT" 0;
  margin-right: 2px;
}

/* ============ Section base ============ */
section {
  padding: 88px 0 80px;
  position: relative;
}

section.hero {
  padding-top: 56px;
  padding-bottom: 88px;
}

section.alt {
  background: var(--bg-warm);
}

section + section.alt,
section.alt + section,
section.alt + section.alt {
  border-top: 1px solid var(--rule-soft);
}

@media (max-width: 820px) {
  section { padding: 64px 0 56px; }
  section.hero { padding-top: 40px; padding-bottom: 60px; }
}

/* ============ Typography ============ */
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 22px;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 72, "SOFT" 35;
}

h1 {
  font-size: clamp(2.4rem, 5.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.25rem);
  line-height: 1.15;
  margin-bottom: 26px;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 72, "SOFT" 35;
}

h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}

p {
  margin: 0 0 18px;
  color: var(--text);
  max-width: 60ch;
}

p:last-child { margin-bottom: 0; }

a {
  color: var(--sage-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  transition: color 160ms ease, border-color 160ms ease;
}

a:hover {
  color: var(--rose-deep);
  border-bottom-color: var(--rose);
}

/* ============ Focus visibility ============ */
a:focus-visible,
.logo-link:focus-visible,
.hero .cta:focus-visible,
.email-link:focus-visible,
summary:focus-visible,
.bacp-badge-link:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px -10% -40px -10%;
  background:
    radial-gradient(55% 55% at 28% 34%, var(--sage-wash), transparent 72%),
    radial-gradient(40% 45% at 78% 68%, rgba(201, 161, 147, 0.10), transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.hero-text {
  max-width: 46ch;
}

.hero .kicker { margin-bottom: 22px; }

.hero h1 {
  margin-bottom: 24px;
}

.hero p.intro {
  max-width: 42ch;
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.05rem;
}

.hero p.intro:last-of-type {
  margin-bottom: 32px;
}

.hero .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: transparent;
  padding: 13px 26px;
  border: 1px solid var(--sage);
  border-radius: 999px;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.hero .cta::after {
  content: "\2192";
  display: inline-block;
  transition: transform 220ms var(--ease-out);
}

.hero .cta:hover {
  background: var(--sage-deep);
  color: var(--bg);
  border-color: var(--sage-deep);
}

.hero .cta:hover::after {
  transform: translateX(4px);
}

/* ----- Portrait frame ----- */
.hero-portrait {
  margin: 0;
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 300px;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  isolation: isolate;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--sage);
  opacity: 0.32;
  border-radius: 4px;
  z-index: 0;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(142, 165, 138, 0.55);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.portrait-frame img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 4px;
  filter: none;
  box-shadow: var(--shadow-portrait);
  z-index: 1;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-portrait {
    justify-self: start;
    max-width: 280px;
  }
  .hero-text { max-width: none; }
  .hero p.intro { max-width: 50ch; }
}

@media (max-width: 480px) {
  .hero-portrait { max-width: 240px; }
  .portrait-frame::before { inset: 12px -12px -12px 12px; }
}

/* ============ About ============ */
.about .lede {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.55rem);
  line-height: 1.4;
  color: var(--text);
  margin: 0 0 22px;
  max-width: 28ch;
  font-variation-settings: "opsz" 48, "SOFT" 40;
  letter-spacing: -0.012em;
}

.about p { max-width: 58ch; }

/* ============ Approach ============ */
.approach .lede {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 22px;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--sage);
  font-variation-settings: "opsz" 36, "SOFT" 40;
  letter-spacing: -0.008em;
  max-width: 50ch;
}

.approach p { max-width: 58ch; }

/* ============ Help cards ============ */
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 8px 0 24px;
}

@media (max-width: 640px) {
  .help-grid { grid-template-columns: 1fr; }
}

.help-card {
  background: var(--bg-card);
  padding: 24px 24px 22px;
  border-radius: 4px;
  border: 1px solid var(--rule-soft);
  transition: transform 240ms var(--ease-out), border-color 240ms ease, box-shadow 240ms ease;
}

.help-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
  box-shadow: var(--shadow-soft);
}

.help-card h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--sage-deep);
  letter-spacing: -0.005em;
}

.help-card p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: none;
}

.help-note {
  margin-top: 26px;
  color: var(--text-soft);
  font-size: 1.05rem;
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 24, "SOFT" 35;
  max-width: 56ch;
}

/* ============ Sessions ============ */
.sessions h2 { margin-bottom: 32px; }

.session-details {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 64ch;
}

.session-details > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--rule-soft);
  align-items: baseline;
}

.session-details > div:last-child {
  border-bottom: 1px solid var(--rule-soft);
}

.session-details dt {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-variation-settings: "opsz" 14, "SOFT" 0;
  margin: 0;
}

.session-details dd {
  margin: 0;
  color: var(--text);
  max-width: 52ch;
}

@media (max-width: 600px) {
  .session-details > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
}

/* ============ Fees ============ */
.fees h2 { margin-bottom: 32px; }

.fees-list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 64ch;
}

.fees-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--rule-soft);
  align-items: baseline;
}

.fees-list > div:last-child {
  border-bottom: 1px solid var(--rule-soft);
}

.fees-list dt {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-variation-settings: "opsz" 14, "SOFT" 0;
  margin: 0;
}

.fees-list dd {
  margin: 0;
  color: var(--text);
  max-width: 52ch;
}

.fees-list .price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--text);
  font-variation-settings: "opsz" 36, "SOFT" 35;
  letter-spacing: -0.012em;
  margin-right: 6px;
}

@media (max-width: 600px) {
  .fees-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }
}

/* ============ FAQ ============ */
details.faq {
  border-bottom: 1px solid var(--rule);
}

details.faq:first-of-type {
  border-top: 1px solid var(--rule);
}

details.faq > summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 40px 18px 0;
  font-weight: 500;
  color: var(--text);
  position: relative;
  font-size: 1.02rem;
  transition: color 160ms ease;
}

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

details.faq > summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rose-deep);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 240ms var(--ease-out);
}

details.faq[open] > summary::after {
  content: "\2212";
}

details.faq > summary:hover { color: var(--sage-deep); }

details.faq .answer {
  padding: 0 0 20px;
  color: var(--text-soft);
  max-width: 60ch;
}

details.faq .answer p:last-child { margin-bottom: 0; }

/* ============ Testimonials ============ */
.testimonials .lede {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.35rem, 2.7vw, 1.7rem);
  line-height: 1.5;
  color: var(--text);
  text-align: left;
  max-width: 32ch;
  margin: 0 0 44px;
  position: relative;
  padding-left: 36px;
  font-variation-settings: "opsz" 60, "SOFT" 40;
  letter-spacing: -0.01em;
}

.testimonials .lede::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -10px;
  font-family: var(--serif);
  font-style: normal;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--rose);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .quote-grid { grid-template-columns: 1fr; }
}

blockquote.quote {
  margin: 0;
  padding: 22px 24px;
  background: var(--bg-card);
  border-radius: 4px;
  border-left: 2px solid var(--sage);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--text);
  position: relative;
}

details.more-stories {
  margin-top: 18px;
  text-align: center;
}

details.more-stories > summary {
  cursor: pointer;
  display: inline-block;
  color: var(--sage-deep);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  list-style: none;
  border: 1px solid var(--sage);
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease;
}

details.more-stories > summary::-webkit-details-marker { display: none; }

details.more-stories > summary:hover {
  background: var(--sage-deep);
  color: var(--bg);
}

details.more-stories > summary::after { content: " \2192"; margin-left: 6px; }
details.more-stories[open] > summary::after { content: " \2191"; }

details.more-stories[open] > summary { margin-bottom: 28px; }

details.more-stories .quote-grid { text-align: left; }

/* ============ Contact ============ */
.contact .intro {
  max-width: 50ch;
  margin-bottom: 26px;
  font-size: 1.05rem;
}

.contact .email-link {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1rem, 4.6vw, 1.7rem);
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--text);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 4px;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 48, "SOFT" 35;
  letter-spacing: -0.012em;
  transition: color 200ms ease, border-color 200ms ease;
}

.contact .email-link:hover {
  color: var(--rose-deep);
  border-bottom-color: var(--rose-deep);
}

.contact .meta {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-top: 10px;
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 18, "SOFT" 35;
}

/* ============ Footer ============ */
footer.site-footer {
  border-top: 1px solid var(--rule);
  padding: 36px 0 48px;
  font-size: 0.85rem;
  color: var(--text-soft);
  text-align: left;
  background: var(--bg-warm);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}

footer.site-footer p {
  margin: 4px 0;
  color: var(--text-soft);
  max-width: none;
}

footer.site-footer .bacp-link {
  color: var(--text-soft);
  border-bottom-color: var(--rule);
}

footer.site-footer .bacp-link:hover {
  color: var(--sage-deep);
  border-bottom-color: var(--sage);
}

.bacp-badge-link {
  display: inline-block;
  border-bottom: none;
  flex-shrink: 0;
  margin: 0;
  padding: 16px 22px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  line-height: 0;
  transition: box-shadow 220ms ease, transform 220ms var(--ease-out);
}

.bacp-badge-link:hover {
  border-bottom: none;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(60, 70, 60, 0.04), 0 14px 30px -14px rgba(60, 70, 60, 0.16);
}

.bacp-badge {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
}

::selection {
  background: var(--rose);
  color: #fff;
}
