/* ============================================================
   Dr. Erin M. Beal — Clinical Psychology
   Shared design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* ---- Colour ---- */
  --paper:        #FBFAF6;   /* warm bone page bg */
  --paper-2:      #F4F1E9;   /* deeper warm well */
  --surface:      #FFFFFF;
  --ink:          #1A2733;   /* deep navy charcoal */
  --ink-soft:     #3C4B59;
  --muted:        #657481;
  --faint:        #95A0AC;

  --accent:       #2F6690;   /* ocean blue */
  --accent-deep:  #234E72;
  --accent-soft:  #6394B8;
  --accent-tint:  #E9F0F7;   /* pale wash */
  --accent-tint2: #D8E6F1;
  --accent-line:  #C2D5E6;

  --sand:         #B79A75;   /* warm secondary, used sparingly */
  --sand-tint:    #F0E9DC;

  --border:       #E6E2D8;   /* warm hairline */
  --border-soft:  #EFEBE1;

  --danger:       #B23B3B;
  --danger-tint:  #F6ECEA;

  /* ---- Type ---- */
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* ---- Geometry ---- */
  --maxw: 1180px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(26,39,51,.04), 0 1px 3px rgba(26,39,51,.05);
  --shadow-md: 0 4px 16px rgba(26,39,51,.06), 0 1px 4px rgba(26,39,51,.05);
  --shadow-lg: 0 24px 60px -20px rgba(26,39,51,.22), 0 8px 24px -12px rgba(26,39,51,.12);

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.12;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--accent-soft);
  display: inline-block;
}
.eyebrow--center::after {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--accent-soft);
  display: inline-block;
}

.lede {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  margin: 18px 0 0;
}

.muted { color: var(--muted); }

/* ---- Buttons ---- */
.btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, #36719E, var(--accent) 55%, #2A5D84);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 1px 2px rgba(26,39,51,.2), 0 4px 14px -6px rgba(47,102,144,.5);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #2C628D, var(--accent-deep) 55%, #1E455F);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 2px 4px rgba(26,39,51,.18), 0 10px 22px -8px rgba(47,102,144,.55);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent-soft); color: var(--accent-deep); background: var(--surface); }
.btn-quiet { background: transparent; color: var(--accent-deep); padding: 12px 4px; }
.btn-quiet:hover { color: var(--accent); }

.btn svg { width: 17px; height: 17px; stroke-width: 1.9; }
.btn-quiet svg { transition: transform .18s var(--ease); }
.btn-quiet:hover svg { transform: translateX(4px); }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  transition: background .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease), height .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251,250,246,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--border);
  height: 66px;
  box-shadow: 0 10px 30px -18px rgba(26,39,51,.22);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, #3B74A1, var(--accent) 48%, var(--accent-deep));
  color: #fff;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .02em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 2px 6px -2px rgba(35,78,114,.4);
}
.brand-name { font-family: var(--serif); font-size: 19px; font-weight: 600; letter-spacing: -.01em; line-height: 1.05; white-space: nowrap; }
.brand-sub { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a.navlink {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  padding: 9px 15px; border-radius: 999px;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav a.navlink:hover { color: var(--accent-deep); background: var(--accent-tint); }
.nav-cta { margin-left: 12px; }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center;
  color: var(--ink);
}
.menu-toggle svg { width: 24px; height: 24px; stroke-width: 1.8; }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  height: 100vh; height: 100dvh;
  background: var(--paper);
  display: flex; flex-direction: column;
  padding: 26px 32px calc(28px + env(safe-area-inset-bottom));
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform .42s var(--ease);
  visibility: hidden;
}
.mobile-nav.open { transform: translateY(0); visibility: visible; }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-top: 48px; }
.mobile-nav-links a {
  font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: auto; flex: none; }
.mobile-nav-links { margin-bottom: 32px; }

/* ---- Pills / chips ---- */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--accent-deep);
  background: var(--accent-tint);
  border: 1px solid var(--accent-line);
  padding: 6px 13px; border-radius: 999px;
}
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.svc-chip { font-family: var(--serif); font-size: 13px; font-weight: 500; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--border); padding: 5px 11px; border-radius: var(--r-sm); white-space: nowrap; }

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}

/* ---- Footer ---- */
.site-footer {
  background:
    radial-gradient(55% 70% at 100% 0%, rgba(47,102,144,.18), transparent 60%),
    linear-gradient(180deg, var(--ink), #141E28);
  color: #DBE3EC; padding: 72px 0 36px;
}
.site-footer a { color: #DBE3EC; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
.footer-brand .brand-name { color: #fff; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 15px; color: #AEC0D2; padding: 6px 0; transition: color .15s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: #8F9FB2;
}
.footer-creds { font-family: var(--sans); }

/* ---- Reveal on load / scroll ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .wrap { padding: 0 22px; }
  .nav { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .site-header .brand-sub { display: none; }
  .site-header .brand-name { font-size: 18px; }
}

/* ============================================================
   PAGE STYLES — homepage (from index.html)
   ============================================================ */
/* ============ HERO ============ */
.hero { position: relative; padding: 150px 0 96px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 82% 8%, rgba(47,102,144,.07), transparent 70%),
    radial-gradient(48% 44% at 8% 96%, rgba(183,154,117,.10), transparent 70%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,39,51,.05) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(70% 60% at 70% 30%, #000, transparent 78%);
          mask-image: radial-gradient(70% 60% at 70% 30%, #000, transparent 78%);
  opacity: .5;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 22px 0 0;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--accent-deep); }
.hero-creds {
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin: 22px 0 0;
}
.hero-lede { margin: 26px 0 0; max-width: 30em; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; align-items: center; }

/* portrait */
.portrait-wrap { position: relative; }
.portrait-frame {
  position: relative; z-index: 2;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
}
.portrait-frame image-slot { width: 100%; height: 540px; display: block; }
.portrait-deco {
  position: absolute; z-index: 1; inset: 22px -22px -22px 22px;
  border-radius: var(--r-xl);
  background: var(--accent-tint);
  border: 1px solid var(--accent-line);
}
.portrait-badge {
  position: absolute; z-index: 3; left: -26px; bottom: 34px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 13px; max-width: 230px;
}
.portrait-badge .pb-mark {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-deep);
  display: grid; place-items: center;
}
.portrait-badge .pb-mark svg { width: 20px; height: 20px; stroke-width: 1.8; }
.portrait-badge .pb-t { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.portrait-badge .pb-s { font-size: 12px; color: var(--muted); }

/* ============ TRUST STRIP ============ */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.trust-inner { display: flex; align-items: center; gap: 40px; padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap; justify-content: space-between; }
.trust-label { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.trust-items { display: flex; align-items: center; gap: 38px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 11px; }
.trust-item .ti-mono { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--accent-deep); letter-spacing: -.01em; }
.trust-item .ti-txt { font-size: 13px; line-height: 1.3; color: var(--ink-soft); font-weight: 500; max-width: 14em; }

/* ============ SECTION HEAD ============ */
.sec-head { max-width: 640px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head .lede { margin-top: 18px; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }
.about-figure { position: relative; }
.about-figure image-slot { width: 100%; height: 460px; display: block; border-radius: var(--r-lg); border: 1px solid var(--border); }
.about-figure .signature {
  position: absolute; bottom: -18px; right: -10px;
  font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--accent-deep);
  background: var(--paper); padding: 4px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.about-body p + p { margin-top: 20px; }
.about-body .pull {
  font-family: var(--serif); font-size: 24px; line-height: 1.45; color: var(--ink);
  font-weight: 400; border-left: 2px solid var(--accent); padding-left: 24px; margin: 28px 0;
}
.about-facts { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.fact .fact-n { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 34px); font-weight: 600; color: var(--accent-deep); line-height: 1.1; }
.fact .fact-l { font-size: 14px; color: var(--muted); margin-top: 8px; max-width: 12em; }

/* ============ SERVICES ============ */
.services { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.svc-card {
  position: relative; background: var(--paper);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 34px 30px; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-line); }
.svc-ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent-deep); border: 1px solid var(--accent-line);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.svc-card:hover .svc-ic { background: var(--accent); color: #fff; border-color: var(--accent); }
.svc-ic svg { width: 26px; height: 26px; stroke-width: 1.7; }
.svc-card h3 { font-size: 25px; margin-top: 24px; }
.svc-card .svc-guide { font-size: 12px; font-weight: 600; letter-spacing: .08em; color: var(--accent); text-transform: uppercase; margin-top: 10px; }
.svc-card p { color: var(--ink-soft); font-size: 16px; margin-top: 14px; flex: 1; }
.svc-tools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.svc-chip { font-family: var(--serif); font-size: 13px; font-weight: 500; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--border); padding: 5px 11px; border-radius: var(--r-sm); }
.svc-card .svc-link { margin-top: 24px; font-size: 15px; font-weight: 600; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 7px; }
.svc-card .svc-link svg { width: 16px; height: 16px; stroke-width: 2; transition: transform .18s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ============ APPROACH ============ */
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 56px; }
.appr-card {
  padding: 36px; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface);
  display: flex; gap: 22px; align-items: flex-start;
}
.appr-card .ac-ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--ink); color: var(--paper); }
.appr-card .ac-ic svg { width: 22px; height: 22px; stroke-width: 1.7; }
.appr-card h3 { font-size: 21px; }
.appr-card p { color: var(--ink-soft); font-size: 16px; margin-top: 12px; }
.appr-card.wide { grid-column: 1 / -1; }
.appr-card ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.appr-card ul li { position: relative; padding-left: 22px; font-size: 15px; color: var(--ink-soft); }
.appr-card ul li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ============ JOURNEY ============ */
.journey { background: var(--paper-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.journey-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; counter-reset: step; }
.jstep { position: relative; padding: 0 26px 0 0; }
.jstep::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--accent);
  display: inline-block; padding: 4px 0; letter-spacing: .04em;
}
.jstep .jline { height: 1px; background: linear-gradient(90deg, var(--accent-line) 55%, transparent); position: relative; margin: 14px 0 22px; }
.jstep .jline::after { content: ""; position: absolute; left: 0; top: -3.5px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.jstep h3 { font-size: 20px; }
.jstep p { font-size: 15px; color: var(--ink-soft); margin-top: 10px; }

/* ============ RESOURCES ============ */
.res-banner {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--danger-tint); border: 1px solid #E7CFCB; border-radius: var(--r-lg);
  padding: 26px 28px; margin-top: 12px;
}
.res-banner .rb-ic { width: 42px; height: 42px; flex: none; border-radius: 50%; background: #fff; color: var(--danger); display: grid; place-items: center; border: 1px solid #E7CFCB; }
.res-banner .rb-ic svg { width: 22px; height: 22px; stroke-width: 1.9; }
.res-banner h3 { font-size: 19px; color: #7E2B2B; font-family: var(--sans); font-weight: 700; }
.res-banner p { color: #6B3A38; font-size: 15.5px; margin-top: 6px; }
.res-banner strong { color: #7E2B2B; }
.res-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.res-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px 26px; }
.res-card h4 { font-family: var(--sans); font-size: 16px; font-weight: 700; color: var(--ink); }
.res-card .res-num { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--accent-deep); margin: 8px 0 4px; }
.res-card p { font-size: 14.5px; color: var(--muted); }
.res-card a { color: var(--accent-deep); font-weight: 600; }

/* ============ CONTACT ============ */
.contact {
  background:
    radial-gradient(70% 90% at 85% -10%, rgba(47,102,144,.34), transparent 62%),
    radial-gradient(50% 70% at 0% 110%, rgba(47,102,144,.16), transparent 65%),
    linear-gradient(180deg, #1B2935, var(--ink));
  color: #E7EDF4;
}
.contact .eyebrow { color: var(--accent-soft); }
.contact .eyebrow::before { background: var(--accent-soft); }
.contact h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 16px; }
.contact-lede { color: #B6C6D8; font-size: 19px; line-height: 1.6; margin-top: 22px; max-width: 26em; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail .cd-ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: rgba(255,255,255,.06); color: var(--accent-soft); display: grid; place-items: center; }
.contact-detail .cd-ic svg { width: 20px; height: 20px; stroke-width: 1.8; }
.contact-detail .cd-l { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #8F9FB2; font-weight: 600; }
.contact-detail .cd-v { font-size: 17px; color: #fff; margin-top: 3px; font-weight: 500; }

.form { background: var(--surface); border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-lg); }
.form h3 { color: var(--ink); font-size: 24px; }
.form .field { margin-top: 18px; }
.form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; letter-spacing: .01em; }
.form input, .form select, .form textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 12px 14px; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47,102,144,.14); background: #fff;
}
.form textarea { resize: vertical; min-height: 100px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .btn { width: 100%; margin-top: 22px; }
.form-note { font-size: 14px; color: var(--accent-deep); margin-top: 14px; display: none; align-items: center; gap: 8px; }
.form-note.show { display: flex; }
.form-note svg { width: 17px; height: 17px; stroke-width: 2; }
.form-fine { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.5; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .portrait-frame image-slot { height: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .appr-card ul { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .res-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .hero { padding: 124px 0 64px; }
  .hero-art .ha-cap { display: none; }
  .trust-inner { gap: 22px; }
  .journey-steps { grid-template-columns: 1fr; gap: 32px; }
  .form .row2 { grid-template-columns: 1fr; }
  .portrait-badge { left: 0; }
}

/* ============================================================
   PAGE STYLES — services (from Services.html)
   ============================================================ */
/* ---- Sub-page hero ---- */
.subhero { padding: 150px 0 64px; position: relative; overflow: hidden; }
.subhero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 88% 0%, rgba(47,102,144,.07), transparent 70%); }
.subhero .wrap { position: relative; z-index: 1; }
.crumb { font-size: 13px; color: var(--muted); display: flex; gap: 9px; align-items: center; }
.crumb a { color: var(--muted); } .crumb a:hover { color: var(--accent-deep); }
.crumb span { color: var(--faint); }
.subhero h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 500; letter-spacing: -.025em; margin: 22px 0 0; max-width: 13ch; }
.subhero .lede { margin-top: 24px; max-width: 34em; }

/* ---- Service detail rows ---- */
.svc-row { display: grid; grid-template-columns: 340px 1fr; gap: 56px; padding: 72px 0; border-top: 1px solid var(--border); align-items: start; }
.svc-row:first-of-type { border-top: none; }
.svc-aside { position: sticky; top: 96px; }
.svc-num { font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--accent); letter-spacing: .04em; }
.svc-aside h2 { font-size: 34px; margin: 14px 0 0; }
.svc-aside .guide-pill { margin-top: 18px; }
.svc-aside .aside-tools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.svc-aside image-slot { width: 100%; height: 210px; display: block; border-radius: var(--r-md); border: 1px solid var(--border); margin-top: 26px; }

.svc-detail h3 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.svc-detail p.intro { font-size: 20px; line-height: 1.55; color: var(--ink); font-family: var(--serif); font-weight: 400; }
.svc-block { margin-top: 34px; }
.svc-list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 0; }
.svc-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border-soft); font-size: 16px; color: var(--ink-soft); }
.svc-list li:last-child { border-bottom: none; }
.svc-list .li-ic { width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--accent-tint); color: var(--accent-deep); display: grid; place-items: center; margin-top: 1px; }
.svc-list .li-ic svg { width: 13px; height: 13px; stroke-width: 2.4; }
.who-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.who-pill { font-size: 14px; font-weight: 500; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--border); padding: 9px 15px; border-radius: 999px; }

/* ---- Included strip ---- */
.included { background: var(--paper-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.inc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.inc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; }
.inc-card .inc-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-tint); border: 1px solid var(--accent-line); color: var(--accent-deep); display: grid; place-items: center; }
.inc-card .inc-ic svg { width: 23px; height: 23px; stroke-width: 1.7; }
.inc-card h3 { font-size: 20px; margin-top: 20px; }
.inc-card p { font-size: 15px; color: var(--ink-soft); margin-top: 10px; }

/* ---- Fees note ---- */
.fees { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
.fees-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 34px; }
.fees-card h3 { font-size: 23px; }
.fees-card p { font-size: 16px; color: var(--ink-soft); margin-top: 12px; }

/* ---- CTA band ---- */
.cta-band {
  background:
    radial-gradient(60% 110% at 50% -30%, rgba(47,102,144,.36), transparent 68%),
    linear-gradient(180deg, #1B2935, var(--ink));
  color: #E7EDF4; text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.4vw, 48px); max-width: 16ch; margin: 0 auto; }
.cta-band p { color: #B6C6D8; font-size: 19px; margin: 20px auto 0; max-width: 40ch; }
.cta-band .btn { margin-top: 34px; }

@media (max-width: 900px) {
  .svc-row { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .svc-aside { position: static; }
  .svc-aside image-slot { display: none; }
  .inc-grid { grid-template-columns: 1fr; }
  .fees { grid-template-columns: 1fr; }
}

/* ============================================================
   ADDED — "Who I work with", FAQ accordion, helpers
   ============================================================ */
.who { background: var(--paper-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.who-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; }
.who-cloud .who-pill { font-size: 16px; padding: 11px 19px; }

.faq-list { margin-top: 44px; max-width: 860px; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:first-child { border-top: 1px solid var(--border); }
.acc-head {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink);
  transition: color .15s var(--ease);
}
.acc-head:hover { color: var(--accent-deep); }
.acc-head .acc-plus { flex: none; width: 26px; height: 26px; position: relative; color: var(--accent); }
.acc-head .acc-plus::before, .acc-head .acc-plus::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}
.acc-head .acc-plus::before { top: 12px; left: 4px; width: 18px; height: 2px; }
.acc-head .acc-plus::after { left: 12px; top: 4px; width: 2px; height: 18px; }
.acc-item.open .acc-plus::after { transform: rotate(90deg); opacity: 0; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .32s var(--ease); }
.acc-body-inner { padding: 0 0 28px; }
.acc-body p { color: var(--ink-soft); font-size: 16.5px; }
.acc-body p + p { margin-top: 14px; }

/* FAQ sub-page intro list reuse */
.subhero .crumb a:hover { color: var(--accent-deep); }

/* ============================================================
   ADDED — Hero designed visual (replaces a second photo)
   ============================================================ */
.hero-art {
  position: relative; height: 540px; overflow: hidden;
  background: linear-gradient(170deg, #FDFCF9 0%, #EFF4F9 58%, #E3EDF5 100%);
}
.hero-art .ha-field { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-art .ha-cap {
  position: absolute; left: 24px; right: 24px; top: 24px; text-align: center;
  color: var(--muted); font-family: var(--sans);
  font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
}
@media (max-width: 980px) { .hero-art { height: 460px; } }

/* ============================================================
   ADDED — Practice status / closed notice
   ============================================================ */
.status-notice { max-width: 720px; margin: 0 auto; text-align: center; }
.sn-ic {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--accent-tint); color: var(--accent-deep);
  display: grid; place-items: center; border: 1px solid var(--accent-line);
}
.sn-ic svg { width: 28px; height: 28px; stroke-width: 1.7; }
.status-notice .sn-tag { margin-bottom: 18px; }
.status-notice h2 { font-size: clamp(26px, 3vw, 34px); }
.status-notice p { color: var(--ink-soft); font-size: 17px; margin: 14px auto 0; max-width: 48ch; }

/* ============ LEGAL / PROSE PAGES ============ */
.legal { max-width: 72ch; }
.legal h2 {
  font-family: var(--serif, 'Spectral', serif); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 27px); color: var(--ink);
  margin: 44px 0 14px; padding-top: 28px; border-top: 1px solid var(--border);
}
.legal h3 {
  font-family: var(--serif, 'Spectral', serif); font-weight: 500;
  font-size: 20px; color: var(--ink); margin: 30px 0 10px;
}
.legal p { color: var(--ink-soft); font-size: 16px; line-height: 1.75; margin: 0 0 16px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { color: var(--ink-soft); font-size: 16px; line-height: 1.75; margin-bottom: 10px; }
.legal a { color: var(--accent-deep); font-weight: 600; text-decoration: underline; text-decoration-color: var(--accent-line); text-underline-offset: 3px; }
.legal a:hover { text-decoration-color: var(--accent-deep); }
.legal strong { color: var(--ink); }

/* ============================================================
   POLISH PASS — craft details
   ============================================================ */

/* Branded text selection */
::selection { background: var(--accent-tint2); color: var(--accent-deep); }
.contact ::selection, .cta-band ::selection, .site-footer ::selection { background: rgba(99,148,184,.45); color: #fff; }

/* Keyboard focus — visible, branded */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 2px; }

/* Hygiene */
img { max-width: 100%; }

/* Paper grain — barely-there tactile texture */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .032; mix-blend-mode: multiply;
}

/* Active page in the nav */
.nav a.navlink.is-active { color: var(--accent-deep); background: var(--accent-tint); }
.mobile-nav-links a.is-active { color: var(--accent-deep); }

/* Pills come alive on hover */
.who-pill { transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease); }
.who-pill:hover { border-color: var(--accent-soft); color: var(--accent-deep); background: var(--accent-tint); transform: translateY(-1px); }

/* Quiet card lifts across the site */
.res-card, .inc-card, .fees-card {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.res-card:hover, .inc-card:hover, .fees-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-line);
}

/* Trust strip marks warm up on hover */
.trust-item .ti-mono { transition: color .2s var(--ease); }
.trust-item:hover .ti-mono { color: var(--accent); }

/* Footer links — underline glide instead of bare colour shift */
.footer-col a { width: fit-content; position: relative; }
.footer-col a::after {
  content: ""; position: absolute; left: 0; bottom: 3px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.footer-col a:hover::after { transform: scaleX(1); }

/* Open accordion heading takes the accent */
.acc-item.open .acc-head { color: var(--accent-deep); }

/* Sub-page hero gets the same dotted field as the homepage hero */
.subhero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,39,51,.05) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(60% 80% at 85% 10%, #000, transparent 75%);
          mask-image: radial-gradient(60% 80% at 85% 10%, #000, transparent 75%);
  opacity: .5;
}

/* Hero artwork — the chestnut leaf sways gently, orbit rings drift */
.hero-art .ha-fan {
  transform-box: fill-box; transform-origin: 50% 97%;
  animation: haSway 12s ease-in-out infinite alternate;
}
.hero-art .ha-rings {
  transform-box: fill-box; transform-origin: 50% 50%;
  animation: haDrift 140s linear infinite;
}
@keyframes haSway { from { transform: rotate(-1.2deg); } to { transform: rotate(1.2deg); } }
@keyframes haDrift { to { transform: rotate(360deg); } }

/* Signature settles in slightly rotated, like a real sign-off */
.about-figure .signature { transform: rotate(-2deg); }

/* ---- Contact map ---- */
.map-band {
  margin-top: 56px; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04);
}
.map-band iframe { width: 100%; height: 340px; display: block; border: 0; }
.map-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 14px 20px; font-size: 14px; color: #B6C6D8;
}
.map-meta a { color: #fff; font-weight: 600; white-space: nowrap; }
.map-meta a:hover { color: var(--accent-soft); }
@media (max-width: 560px) { .map-band iframe { height: 260px; } }

/* Contact detail rows must be able to shrink (long address lines) */
.contact-detail > div:last-child { min-width: 0; }
.contact-detail .cd-v { overflow-wrap: break-word; }
