/* ============================================================
   Jeffrey Man — Counselling & Play Therapy
   Warm editorial: oxblood on cream
   ============================================================

   🔒 LOCKED TYPE SETTINGS — do not change without Jeff's say-so
   ------------------------------------------------------------
   TYPEFACES: only two, ever.
     • Fraunces  → all headings + wordmark (var: --serif)
     • Open Sans → all body, labels, buttons (var: --sans)
     No third typeface. Do not swap or add fonts.

   HEADING WEIGHTS (scope to the element — never bump globally):
     • h1  = 700  → HERO ONLY. The only h1 on the page.
     • h2  = 420  → About / Services / FAQ / Empathy. Keep light.
     • h3  = 420  → service & step titles. Keep light.
     If asked to make ONE heading thicker, change only that
     element — do NOT raise the shared h1/h2/h3 weight, or every
     heading on the site changes at once (and shifts layout).

   UPPERCASE LABELS: letter-spacing 0.14em (wordmark-sub,
     hero-langs, creds section labels). Keep consistent.

   COLOURS (refreshed 2026-06-15 — was heavy oxblood red, now green+rose):
     • --oxblood       #3F5247  deep forest green (PRIMARY anchor: headings,
                                buttons, wordmark, contact section). Var name
                                kept as --oxblood for historical reasons.
     • --oxblood-deep  #2E3D34  darkest green (contact bg)
     • --copper        #BF8A82  dusty rose (accent: labels, language line)
     • --blush         #E9D0CA  soft blush (empathy/notes section bg)
     • --cream #FBF7F3 / --cream-deep #F3E8E2 / --ink #3A332E
     • Services bg     #6B4F4B  warm rose-mauve (hardcoded)
     • Footer bg       #4A3A39  deep mauve-brown (hardcoded; intentionally
                                DIFFERENT from the green contact section)
     Keep green + dusty-rose balance; don't reintroduce the old red.
   ============================================================ */

:root {
  /* Palette refreshed 2026-06-15: deep forest green anchor + dusty rose
     (was oxblood red — kept the --oxblood/--copper var NAMES, new values) */
  --cream:        #FBF7F3;
  --cream-deep:   #F3E8E2;
  --blush:        #E9D0CA;
  --oxblood:      #3F5247;   /* deep forest green — primary anchor */
  --oxblood-deep: #2E3D34;   /* darkest green — dark sections */
  --ink:          #3A332E;
  --ink-soft:     #6E625A;
  --copper:       #BF8A82;   /* dusty rose — warm accent */
  --hairline:     rgba(63, 82, 71, 0.18);

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Open Sans", "Helvetica Neue", sans-serif;

  --space-section: clamp(5rem, 12vw, 9rem);
  --pad-x: clamp(1.25rem, 5vw, 4rem);
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--oxblood);
  text-wrap: balance;
  line-height: 1.08;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.05rem); font-weight: 700; font-variation-settings: "opsz" 100; letter-spacing: -0.022em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 420; font-variation-settings: "opsz" 60; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 420; line-height: 1.3; }

p { text-wrap: pretty; }


.skip-link {
  position: absolute;
  left: -200vw;
  top: 0;
  background: var(--oxblood);
  color: var(--cream);
  padding: 0.6rem 1rem;
  z-index: 3000;
}
.skip-link:focus { left: 0; }

/* ============ buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-solid {
  background: var(--oxblood);
  color: var(--cream);
  box-shadow: 0 1px 0 rgba(46, 61, 52, 0.4);
}
.btn-solid:hover { background: var(--oxblood-deep); box-shadow: 0 8px 24px rgba(46, 61, 52, 0.25); }

.btn-ghost {
  color: var(--oxblood);
  border: 1px solid var(--hairline);
}
.btn-ghost:hover { border-color: var(--oxblood); background: rgba(63, 82, 71, 0.05); }

.btn-light {
  background: var(--cream);
  color: var(--oxblood);
}
.btn-light:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); }

.btn-ghost-light {
  color: var(--cream);
  border: 1px solid rgba(251, 246, 239, 0.4);
}
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(251, 246, 239, 0.08); }

/* ============ header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 246, 239, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--oxblood);
  text-decoration: none;
  line-height: 1.1;
}
.wordmark-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 0.15rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.site-nav a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  position: relative;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--oxblood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  color: var(--cream) !important;
  background: var(--oxblood);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  transition: background 0.25s ease;
}
.nav-cta:hover { background: var(--oxblood-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 36px;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--oxblood);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ============ hero ============ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -12%;
  width: 60vw;
  height: 60vw;
  max-width: 820px;
  max-height: 820px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, rgba(233, 208, 202, 0) 68%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad-x) clamp(3.5rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  position: relative;
}
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  margin-top: 1.5rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.hero-langs {
  margin-top: 2.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--copper);
}

.hero-photo {
  position: relative;
  justify-self: end;
  width: min(100%, 420px);
}
.arch {
  position: relative;
  z-index: 1;
  border-radius: 999px 999px 12px 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(46, 61, 52, 0.18);
}
.arch img {
  width: 100%;
  aspect-ratio: 17 / 20;
  object-fit: cover;
  display: block;
}
.arch-shadow {
  position: absolute;
  inset: 0;
  transform: translate(-1.4rem, 1.4rem);
  border-radius: 999px 999px 12px 12px;
  border: 1px solid var(--hairline);
  background: var(--blush);
  z-index: 0;
}

/* hero load-in */
.load-1, .load-2, .load-3, .load-4, .load-5, .load-photo {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.load-1 { animation-delay: 0.05s; }
.load-2 { animation-delay: 0.16s; }
.load-3 { animation-delay: 0.28s; }
.load-4 { animation-delay: 0.4s; }
.load-5 { animation-delay: 0.52s; }
.load-photo { animation-delay: 0.3s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ empathy ============ */
.empathy {
  background: var(--blush);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.empathy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--space-section) + 3rem) var(--pad-x) var(--space-section);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.empathy-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.ecol-back,
.ecol-front {
  position: absolute;
  margin: 0;
}
.ecol-back {
  bottom: 0;
  left: 0;
  width: 62%;
}
.ecol-front {
  top: 0;
  right: 0;
  width: 70%;
  z-index: 1;
}
.ecol-back img,
.ecol-front img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(46, 61, 52, 0.18);
}
.ecol-back img { object-position: 60% center; }
.ecol-front img {
  object-position: center 22%;
  box-shadow: 0 24px 54px rgba(46, 61, 52, 0.26);
}
.empathy-text h2 { margin-bottom: 1.4rem; }
.empathy-text p { font-size: 1.1rem; color: var(--ink-soft); max-width: 56ch; }

/* ============ about ============ */
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.about-copy p {
  margin-top: 1.15rem;
  max-width: 62ch;
}
.about-copy p:first-child { margin-top: 1.6rem; }
.about-main h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); }

.about-creds {
  background:
    linear-gradient(168deg, #FCF8F2 0%, var(--cream-deep) 62%, #F0E2D2 100%);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  position: sticky;
  top: 6rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 34px -20px rgba(191, 138, 130, 0.4);
}
.about-creds h3 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.6rem;
}
.about-creds h3 + ul { margin-bottom: 1.1rem; }
.about-creds ul { list-style: none; }
.about-creds ul:last-child { margin-bottom: 0; }
/* second section heading gets breathing room (no divider line) */
.about-creds ul + h3 { padding-top: 0.95rem; }
.about-creds li { padding: 0.38rem 0; }
.about-creds li:first-child { padding-top: 0; }
/* qualification / role — the title line */
.cred-title {
  display: block;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}
/* institution — softer subline */
.cred-org {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--ink-soft);
}

/* ============ what I work with ============ */
.works {
  background: var(--cream-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.works-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--pad-x);
}
.works h2 { margin-bottom: 1.1rem; }
.works-intro {
  color: var(--ink-soft);
  max-width: 56ch;
  font-size: 1.08rem;
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
}
.works-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.works-list li {
  font-size: 0.98rem;
  color: var(--ink);
  background: rgba(251, 247, 243, 0.75);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
}

/* ============ services ============ */
.services {
  background: #6B4F4B; /* warm rose-mauve — gives the dusty-rose family a major block */
  color: var(--cream);
}
.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--pad-x);
}
.services h2 { color: var(--cream); margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: clamp(1.8rem, 3.5vw, 2.6rem) 0;
  border-top: 1px solid rgba(251, 246, 239, 0.22);
  transition: background 0.3s ease;
}
.service-row:last-child { border-bottom: 1px solid rgba(251, 246, 239, 0.22); }

.service-num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 350;
  color: var(--blush);
  opacity: 0.85;
  line-height: 1;
}
.service-head h3 {
  color: var(--cream);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-bottom: 0.5rem;
}
.service-meta {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blush);
}
.service-desc {
  color: rgba(251, 246, 239, 0.85);
  max-width: 58ch;
}
.service-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blush);
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 208, 202, 0.45);
  transition: border-color 0.2s ease;
}
.service-link:hover { border-color: var(--blush); }

/* ============ getting started ============ */
.begin-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--pad-x);
}
.begin h2 { margin-bottom: clamp(2rem, 4vw, 3rem); }

.begin-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.begin-photo { margin: 0; max-width: 340px; }
.begin-photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(46, 61, 52, 0.12);
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: 65% center;
}

.steps { list-style: none; }
.steps li {
  padding: 1.4rem 0;
  border-top: 1px solid var(--hairline);
}
.steps li:last-child { border-bottom: 1px solid var(--hairline); }
.step-n {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  color: var(--oxblood);
}
.steps h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.steps p { color: var(--ink-soft); font-size: 0.98rem; }

.begin-cta { margin-top: clamp(2rem, 4vw, 3rem); }

/* ============ FAQ ============ */
.faq {
  background: var(--cream-deep);
  border-top: 1px solid var(--hairline);
}
.faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section) var(--pad-x);
}
.faq h2 { margin-bottom: clamp(2rem, 4vw, 3rem); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.faq-col { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--hairline);
}
.faq-col .faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-size: 1.08rem;
  font-weight: 450;
  color: var(--oxblood);
  transition: color 0.2s ease;
}
.faq-item summary:hover h3 { color: var(--copper); }
.faq-mark {
  flex: 0 0 auto;
  position: relative;
  width: 15px;
  height: 15px;
}
.faq-mark::before, .faq-mark::after {
  content: "";
  position: absolute;
  background: var(--copper);
  transition: transform 0.3s ease;
}
.faq-mark::before { left: 0; top: 6.5px; width: 15px; height: 2px; }
.faq-mark::after { left: 6.5px; top: 0; width: 2px; height: 15px; }
.faq-item[open] .faq-mark::after { transform: scaleY(0); }

.faq-body { padding: 0 0 1.5rem; }
.faq-body p { color: var(--ink-soft); font-size: 0.98rem; }

@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; }
  /* avoid a doubled hairline where the two columns meet when stacked */
  .faq-col:last-child .faq-item:first-child { border-top: none; }
}

/* ============ notes / testimonials ============ */
.notes {
  background: var(--blush);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.notes-inner {
  max-width: 940px;
  margin: 0 auto;
  padding: var(--space-section) var(--pad-x);
  text-align: center;
}
.notes-sub {
  margin: 1.2rem auto 0;
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.notes-gallery {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 2.75rem);
}
.note-card {
  margin: 0;
  width: min(100%, 380px);
  background: #FFFDFA;
  padding: 12px;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 44px -12px rgba(46, 61, 52, 0.28);
}
.note-card img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* ============ contact ============ */
.contact {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(191, 138, 130, 0.35) 0%, rgba(191, 138, 130, 0) 55%),
    var(--oxblood-deep);
  color: var(--cream);
  text-align: center;
}
.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-section) var(--pad-x);
}
.contact h2 {
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.contact-sub {
  margin-top: 1.4rem;
  font-size: 1.12rem;
  color: rgba(251, 246, 239, 0.85);
}
.contact-actions {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.contact-email {
  margin-top: 1.8rem;
  font-size: 0.98rem;
  color: rgba(251, 246, 239, 0.75);
}
.contact-email a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============ footer ============ */
.site-footer {
  background: #4A3A39; /* deep warm mauve-brown — distinct from the green contact section */
  color: rgba(251, 246, 239, 0.7);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2.8rem, 5vw, 4rem) var(--pad-x) 2.2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.1;
}
.footer-tag {
  margin-top: 0.3rem;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush);
}
.footer-reg {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 34ch;
  color: rgba(251, 246, 239, 0.6);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.9rem;
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.55rem;
}
.footer-col p:first-of-type { margin-top: 0; }
.footer-touch p { margin-top: 0.3rem; }
.footer-col a {
  color: rgba(251, 246, 239, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.footer-place {
  display: block;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.1rem;
}
.footer-bottom {
  margin-top: clamp(2.2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(251, 246, 239, 0.6);
}
.footer-bottom p:last-child { letter-spacing: 0.04em; }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============ play therapy page ============ */
.pt-intro-inner,
.pt-who-inner,
.pt-process-inner,
.pt-closing-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-section) var(--pad-x);
}
.pt-back { margin-bottom: 2rem; }
.pt-back a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
}
.pt-back a:hover { color: var(--oxblood); }

/* intro becomes two columns with a photo */
.pt-intro-inner {
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.pt-intro-photo { margin: 0; }
.pt-intro-photo img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 65% center;
  box-shadow: 0 22px 54px -26px rgba(46, 61, 52, 0.4);
}
.pt-feature { margin: 0 0 clamp(2.5rem, 5vw, 3.5rem); }
.pt-feature img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 22px 54px -26px rgba(46, 61, 52, 0.4);
}
@media (max-width: 760px) {
  .pt-intro-inner { grid-template-columns: 1fr; }
  .pt-intro-photo { max-width: 440px; }
}

.pt-intro { background: var(--cream); }
.pt-intro h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  font-weight: 700;
  font-variation-settings: "opsz" 100;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}
.pt-lede {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.4rem;
  max-width: 40ch;
}
.pt-intro p:not(.pt-lede):not(.pt-back) {
  color: var(--ink-soft);
  max-width: 62ch;
}

.pt-who {
  background: var(--blush);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.pt-who h2 { margin-bottom: 1.2rem; }
.pt-who > .pt-who-inner > p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.pt-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.6rem;
}
.pt-tags li {
  font-size: 0.95rem;
  color: var(--ink);
  background: rgba(251, 247, 243, 0.7);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
}
.pt-facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
}
.pt-fact {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--oxblood);
  line-height: 1.2;
}
.pt-fact span {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.45rem;
}

.pt-process { background: var(--cream); }
.pt-process h2 { margin-bottom: clamp(2.2rem, 5vw, 3.2rem); }
.pt-steps { display: flex; flex-direction: column; gap: clamp(2rem, 4vw, 3rem); }
.pt-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
}
.pt-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 350;
  color: var(--copper);
  line-height: 1;
}
.pt-step-meta {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
}
.pt-step-body h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.pt-step-body p { color: var(--ink-soft); max-width: 58ch; }

.pt-closing {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(191, 138, 130, 0.35) 0%, rgba(191, 138, 130, 0) 55%),
    var(--oxblood-deep);
  color: var(--cream);
  text-align: center;
}
.pt-closing h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
}
.pt-closing-sub {
  margin-top: 1.2rem;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: rgba(251, 247, 243, 0.8);
}
.pt-closing-cta { margin-top: 2.4rem; }

@media (max-width: 640px) {
  .pt-step { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ============ scroll reveals ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .load-1, .load-2, .load-3, .load-4, .load-5, .load-photo { animation: none; opacity: 1; transform: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ============ responsive ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { justify-self: center; order: -1; width: min(70vw, 320px); }
  .hero-text { text-align: center; }
  .hero-actions { justify-content: center; }

  .empathy-inner { grid-template-columns: 1fr; }
  .empathy-collage { max-width: 420px; margin: 0 auto; }

  .about-inner { grid-template-columns: 1fr; }
  .about-creds { position: static; }

  .service-row { grid-template-columns: 56px 1fr; }
  .service-desc { grid-column: 2; }

  .begin-layout { grid-template-columns: 1fr; }
  .begin-photo { max-width: 420px; }
}

@media (max-width: 720px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem var(--pad-x) 1.6rem;
    gap: 1.1rem;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }

  h1 br, .contact h2 br, .contact-sub br { display: none; }
}
