/* === v4 patch — cache bust target === */
/* ===========================================================
     ANCHOR MEN'S THERAPY — CITY PAGE TEMPLATE
     Example city: Toronto
     Token system below maps cleanly to a tokens.css for Next.js.
     =========================================================== */
  :root {
    /* Brand — Navy */
    --navy: #30364F;
    --navy-deep: #232839;
    --navy-light: #424A66;

    /* Brand — Accent (weathered blue-grey) */
    --accent: #ACBAC4;
    --accent-deep: #8a9ba8;

    /* Brand — Cream / Paper */
    --cream: #F0F0DB;
    --cream-soft: #F6F4E3;
    --paper: #FDFAF0;

    /* Neutrals */
    --ink: #2d343c;
    --slate: #5a6470;
    --mute: #8a929c;
    --line: #d9d3bb;
    --line-soft: #ece6cc;
    --white: #ffffff;

    /* Type */
    --serif: 'Cormorant Garamond', 'Georgia', serif;
    --sans:  'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono:  'IBM Plex Mono', 'SFMono-Regular', monospace;

    /* Shadows (used sparingly) */
    --shadow-soft: 0 1px 2px rgba(35,40,57,.04), 0 16px 40px rgba(35,40,57,.06);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; }
  ::selection { background: var(--navy); color: var(--cream-soft); }

  /* ---------- Typography primitives ---------- */
  .eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--slate);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
  }
  .eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
  }
  .eyebrow.center {
    justify-content: center;
  }
  .eyebrow.center::after {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
  }

  .section-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--navy);
  }
  .section-title em { font-style: italic; color: var(--accent-deep); font-weight: 400; }

  /* ---------- Layout ---------- */
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
  .wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 48px; }
  section { position: relative; }
  .pad     { padding: 140px 0; }
  .pad-sm  { padding: 96px 0; }

  /* ---------- CTA button ---------- */
  .cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--cream-soft);
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--navy);
    transition: background .25s ease, color .25s, transform .25s, border-color .25s;
    cursor: pointer;
  }
  .cta:hover { background: var(--navy-deep); border-color: var(--navy-deep); transform: translateY(-2px); }
  .cta .arr { display: inline-block; transition: transform .25s; }
  .cta:hover .arr { transform: translateX(4px); }

  .cta.outline { background: transparent; color: var(--navy); border-color: var(--navy); }
  .cta.outline:hover { background: var(--navy); color: var(--cream-soft); }

  .cta.outline-light { background: transparent; color: var(--cream-soft); border-color: rgba(246,244,227,0.55); }
  .cta.outline-light:hover { background: var(--cream-soft); color: var(--navy); border-color: var(--cream-soft); }

  .cta.accent { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--navy-deep); }
  .cta.accent:hover { background: var(--accent); border-color: var(--accent); }

  /* ===========================================================
     HEADER
     =========================================================== */
  header.site {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 22px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .3s ease, padding .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
  }
  header.site.solid {
    background: rgba(253, 250, 240, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line-soft);
    padding: 14px 48px;
  }
  .brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
  }
  .footer-brand .brand img {
    height: 44px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }
  header.site .brand img {
    height: 42px;
    width: auto;
    display: block;
    transition: filter .3s ease;
    /* On the dark hero, lift the logo so it reads on the photo. */
    filter: brightness(0) invert(1);
  }
  header.site.solid .brand img {
    filter: none;
    height: 36px;
  }
  /* Legacy brand-mark/brand-text styles kept for compatibility; not used. */
  .brand-mark {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  /* Anchor glyph — abstract, custom (not a clipart anchor) */
  .brand-mark svg { width: 18px; height: 18px; }
  .brand-text { display: flex; flex-direction: column; line-height: 1.05; }
  .brand-name {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.005em;
  }
  .brand-sub {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 4px;
  }

  nav.primary {
    display: flex;
    align-items: center;
    gap: 38px;
  }
  nav.primary > a,
  nav.primary > .nav-item > .nav-trigger {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    color: rgba(246, 244, 227, 0.88);
    letter-spacing: 0.005em;
    transition: color .2s;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  header.site.solid nav.primary > a,
  header.site.solid nav.primary > .nav-item > .nav-trigger { color: var(--ink); }
  nav.primary > a:hover,
  nav.primary > .nav-item > .nav-trigger:hover { color: var(--accent); }
  header.site.solid nav.primary > a:hover,
  header.site.solid nav.primary > .nav-item > .nav-trigger:hover { color: var(--navy-light); }

  /* Dropdown */
  .nav-item { position: relative; }
  .nav-trigger .caret {
    width: 8px; height: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform .25s ease;
    margin-left: 2px;
  }
  .nav-item.open .nav-trigger .caret,
  .nav-item:hover .nav-trigger .caret {
    transform: rotate(-135deg) translate(-1px, -1px);
  }
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, -6px);
    min-width: 220px;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 60;
  }
  .nav-dropdown::before {
    content: '';
    position: absolute;
    left: -16px; right: -16px;
    top: -18px;
    height: 24px;
  }
  .nav-item:hover .nav-dropdown,
  .nav-item.open .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .nav-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink) !important;
    text-decoration: none;
    letter-spacing: 0.005em;
    transition: background .18s, color .18s;
  }
  .nav-dropdown a .nav-dd-meta {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mute);
    transition: color .18s;
  }
  .nav-dropdown a:hover {
    background: var(--cream-soft);
    color: var(--navy) !important;
  }
  .nav-dropdown a:hover .nav-dd-meta { color: var(--navy); }

  .header-cta {
    padding: 11px 22px;
    font-size: 10.5px;
    border-radius: 999px;
    background: var(--cream-soft);
    color: var(--navy-deep);
    border: 1px solid var(--cream-soft);
    font-family: var(--sans);
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s, color .25s, transform .25s;
  }
  .header-cta:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
  header.site.solid .header-cta { background: var(--navy); color: var(--cream-soft); border-color: var(--navy); }
  header.site.solid .header-cta:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--navy-deep); }

  /* ----- Header right-side (CTA + hamburger) ----- */
  .header-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .hamburger {
    display: none;
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--cream-soft);
    transition: transform .3s ease, opacity .25s ease, background .3s ease;
    transform-origin: center;
  }
  header.site.solid .hamburger span { background: var(--navy); }
  .hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

  /* ----- Mobile menu overlay ----- */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 49;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
    overflow-y: auto;
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu-inner {
    padding: 110px 28px 48px;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-link,
  .mobile-group-label {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    color: var(--navy);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    display: block;
    transition: color .2s, padding-left .2s;
  }
  .mobile-link:hover { color: var(--accent-deep); padding-left: 6px; }
  .mobile-group { display: flex; flex-direction: column; }
  .mobile-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    color: var(--navy);
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    transition: color .2s;
    text-align: left;
  }
  .mobile-group-toggle:hover { color: var(--accent-deep); }
  .mobile-group-toggle .mobile-arrow {
    width: 12px; height: 12px;
    border-right: 2px solid var(--mute);
    border-bottom: 2px solid var(--mute);
    transform: rotate(45deg);
    transition: transform .25s ease;
    flex-shrink: 0;
    margin-right: 4px;
  }
  .mobile-group.open .mobile-group-toggle .mobile-arrow {
    transform: rotate(-135deg);
  }
  .mobile-group-subs {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .mobile-group.open .mobile-group-subs {
    max-height: 600px;
  }
  .mobile-sublink {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 16px;
    color: var(--navy);
    text-decoration: none;
    padding: 14px 0 14px 18px;
    border-bottom: 1px solid var(--line-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color .2s, padding-left .2s;
  }
  .mobile-sublink:hover { color: var(--accent-deep); padding-left: 22px; }
  .mobile-meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mute);
  }
  .mobile-cta {
    margin-top: 40px;
    align-self: flex-start;
    background: var(--navy) !important;
    color: var(--cream-soft) !important;
    border-color: var(--navy) !important;
  }

  /* ===========================================================
     HERO
     =========================================================== */
  .hero {
    position: relative;
    min-height: min(94vh, 920px);
    overflow: hidden;
    color: var(--cream-soft);
  }
  .hero-img {
    position: absolute; inset: 0;
    background:
      url('/assets/hero.jpg') center 35% / cover no-repeat,
      linear-gradient(135deg, #2a2f44 0%, #3b4566 60%, #565f7a 100%);
    background-color: var(--navy-deep);
  }
  .hero-img::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg,
        rgba(35,40,57,0.42) 0%,
        rgba(35,40,57,0.18) 38%,
        rgba(35,40,57,0.78) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 56px;
    padding: 160px 48px 56px;
    max-width: 1240px;
    margin: 0 auto;
  }
  .hero-eyebrow {
    color: var(--accent);
    margin-bottom: 28px;
  }
  .hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(46px, 7vw, 92px);
    line-height: 1.02;
    letter-spacing: -0.022em;
    max-width: 15ch;
    margin-bottom: 32px;
    color: var(--cream-soft);
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }
  .hero-sub {
    max-width: 50ch;
    font-size: 16.5px;
    line-height: 1.8;
    color: rgba(246, 244, 227, 0.82);
    margin-bottom: 40px;
    font-weight: 300;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero-actions .cta {
    background: var(--cream-soft);
    color: var(--navy-deep);
    border-color: var(--cream-soft);
  }
  .hero-actions .cta:hover { background: var(--accent); border-color: var(--accent); }
  .hero-actions .cta.outline-light:hover { color: var(--navy-deep); }

  .hero-foot {
    align-self: end;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(246, 244, 227, 0.20);
  }
  .hero-foot-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .hero-foot-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(246, 244, 227, 0.55);
  }
  .hero-foot-val {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--cream-soft);
    line-height: 1.2;
  }
  .hero-foot-val em { font-style: italic; color: var(--accent); }

  /* ===========================================================
     SECTION 03 — EMOTIONAL COPY ("It Takes Strength to Be Here")
     =========================================================== */
  .strength { background: var(--paper); }
  .strength-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .strength .eyebrow { color: var(--navy); margin-bottom: 32px; }
  .strength .section-title { margin-bottom: 48px; max-width: 18ch; }
  .strength p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--slate);
    max-width: 62ch;
    font-weight: 400;
  }
  .strength p + p { margin-top: 22px; }
  .strength p em {
    font-style: italic;
    font-family: var(--serif);
    font-size: 19px;
    color: var(--ink);
  }

  /* ===========================================================
     SECTION 04 — ISSUES WE HELP WITH (CARD GRID)
     =========================================================== */
  .issues { background: var(--cream); }
  .issues-head {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 80px;
  }
  .issues-head .eyebrow { color: var(--navy); margin-bottom: 24px; }
  .issues-head .section-title { max-width: 14ch; }
  .issues-head .intro {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--slate);
    max-width: 44ch;
    padding-bottom: 8px;
  }
  .issues-section + .issues-section { margin-top: 64px; }
  .issues-section-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
  }
  .issues-section-head::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--navy);
    flex-shrink: 0;
  }
  .issues-section-head h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.005em;
  }
  .issues-section-head h3 em { font-style: italic; color: var(--accent-deep); font-weight: 400; }
  .issue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .issue-card {
    background: var(--paper);
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
    border-radius: 4px;
    position: relative;
    min-height: 260px;
  }
  .issue-card:hover {
    transform: translateY(-3px);
    background: var(--cream-soft);
    box-shadow: 0 6px 24px rgba(35,40,57,0.08);
  }
  .issue-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .issue-card-icon svg { width: 20px; height: 20px; }
  .issue-card-name {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--navy);
  }
  .issue-card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--slate);
    flex-grow: 1;
  }
  .issue-card-link {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.35;
    color: var(--navy);
    transition: gap .25s ease;
  }
  .issue-card:hover .issue-card-link { gap: 18px; }
  .issue-card-link .arr {
    flex-shrink: 0;
    transition: transform .25s ease;
  }
  .issue-card:hover .issue-card-link .arr { transform: translateX(4px); }

  /* ===========================================================
     SECTION 05 — TRANSFORMATION / OUTCOMES
     =========================================================== */
  .outcomes { background: var(--paper); }
  .outcomes-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
  }
  .outcomes-image-wrap {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--cream);
    overflow: visible;
  }
  .outcomes-image-wrap > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .outcomes-image-wrap::after {
    content: '';
    position: absolute;
    right: -32px; bottom: -32px;
    width: 80px; height: 80px;
    border: 1px solid var(--navy);
    background: var(--paper);
  }
  .image-placeholder {
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(45deg,
        rgba(48, 54, 79, 0.06) 0 12px,
        transparent 12px 26px),
      var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    padding: 16px;
  }
  .outcomes-text .eyebrow { color: var(--navy); margin-bottom: 24px; }
  .outcomes-text .section-title { margin-bottom: 32px; max-width: 16ch; }
  .outcomes-text p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--slate);
    max-width: 44ch;
  }
  .outcomes-text p + p { margin-top: 16px; }
  .outcomes-list {
    list-style: none;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
  }
  .outcomes-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 15.5px;
    color: var(--ink);
    line-height: 1.55;
  }
  .outcomes-list li:last-child { border-bottom: none; }
  .outcomes-list li::before {
    content: '';
    width: 14px; height: 1px;
    background: var(--accent-deep);
    margin-top: 13px;
    flex-shrink: 0;
  }

  /* ===========================================================
     SECTION 06 — MID-PAGE CTA BAND
     =========================================================== */
  .cta-band {
    background: var(--navy);
    color: var(--cream-soft);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    top: 50%; left: -80px;
    transform: translateY(-50%);
    width: 320px; height: 320px;
    border: 1px solid rgba(172, 186, 196, 0.18);
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-band-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 40px;
    align-items: center;
  }
  .cta-band h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: var(--cream-soft);
    max-width: 22ch;
  }
  .cta-band h2 em { font-style: italic; color: var(--accent); }
  .cta-band .cta { background: var(--cream-soft); color: var(--navy-deep); border-color: var(--cream-soft); }
  .cta-band .cta:hover { background: var(--accent); border-color: var(--accent); }

  /* ===========================================================
     SECTION 07 — FOUNDER STORY
     Dead-simple single-column layout. Image fills container, text below.
     Same shape at every screen size.
     =========================================================== */
  .founder { background: var(--paper); }
  .founder-grid {
    display: block;
    max-width: 720px;
    margin: 0 auto;
  }
  .founder-image-wrap {
    width: 100%;
    margin: 0 0 48px;
    aspect-ratio: auto;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--cream);
  }
  .founder-image-wrap > img {
    position: static !important;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center 20%;
  }
  .founder-image-wrap::after { content: none !important; display: none !important; }
  .founder-text { width: 100%; }
  .founder-text .eyebrow { color: var(--navy); margin-bottom: 18px; }
  .founder-text .section-title { margin-bottom: 32px; max-width: 22ch; }
  .founder-text .lede {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.5;
    color: var(--ink);
    font-style: italic;
    font-weight: 400;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
    max-width: 36ch;
  }
  .founder-text .body p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--slate);
  }
  .founder-text .body p + p { margin-top: 18px; }
  .founder-text .body p em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    color: var(--ink);
  }
  .founder-text h4 {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy);
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 500;
  }
  .founder-sig {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .founder-sig .name {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    color: var(--navy);
    line-height: 1.2;
  }
  .founder-sig .role {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 6px;
  }
  .founder-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
    align-items: center;
  }
  .founder-social a:not(.founder-bio-link) {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
  }
  .founder-social a:not(.founder-bio-link):hover { background: var(--navy); color: var(--cream-soft); border-color: var(--navy); }
  .founder-social svg { width: 14px; height: 14px; }
  .founder-bio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 4px;
    transition: border-color .2s, color .2s;
  }
  .founder-bio-link:hover { color: var(--navy-deep); border-color: var(--navy); }
  .founder-bio-link .arr { transition: transform .25s; }
  .founder-bio-link:hover .arr { transform: translateX(3px); }

/* ===========================================================
     SECTION 08 — WHY CHOOSE US (3-COLUMN CREAM)
     =========================================================== */
  .why { background: var(--cream); padding: 140px 0; }
  .why-head { text-align: center; margin-bottom: 88px; }
  .why-head .eyebrow { color: var(--navy); margin-bottom: 22px; }
  .why-head .section-title { max-width: 22ch; margin: 0 auto; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--navy);
  }
  .why-col {
    padding: 48px 36px 0 0;
    border-right: 1px solid rgba(48, 54, 79, 0.16);
  }
  .why-col:nth-child(2) { padding-left: 36px; }
  .why-col:last-child { padding-left: 36px; border-right: none; padding-right: 0; }
  .why-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    margin-bottom: 32px;
  }
  .why-icon svg { width: 20px; height: 20px; }
  .why-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 16px;
    max-width: 16ch;
  }
  .why-desc {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--slate);
    max-width: 32ch;
  }

  /* ===========================================================
     SECTION 09 — THERAPIST PROFILES
     =========================================================== */
  .team { background: var(--paper); }
  .team-head {
    text-align: center;
    margin-bottom: 80px;
  }
  .team-head .eyebrow { color: var(--navy); margin-bottom: 22px; }
  .team-head .section-title { max-width: 22ch; margin: 0 auto 24px; }
  .team-head .intro {
    max-width: 52ch;
    margin: 0 auto;
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--slate);
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .therapist {
    background: var(--cream-soft);
    padding: 22px 22px 32px;
    transition: transform .4s ease;
  }
  .therapist:hover { transform: translateY(-4px); }
  .therapist-photo {
    aspect-ratio: 4/5;
    background: var(--cream);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .therapist-photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: saturate(0.92) contrast(1.02);
  }
  .therapist-body { padding: 0 12px; }
  .therapist-name {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 26px;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .therapist-cred {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .therapist-bio {
    font-size: 14px;
    line-height: 1.75;
    color: var(--slate);
  }

  /* ===========================================================
     SECTION 10 — FAQ
     =========================================================== */
  .faq { background: var(--cream); }
  .faq-head { text-align: center; margin-bottom: 72px; }
  .faq-head .eyebrow { color: var(--navy); margin-bottom: 22px; }
  .faq-head .section-title { max-width: 22ch; margin: 0 auto; }
  .faq-list {
    max-width: 880px;
    margin: 0 auto;
    border-top: 1px solid var(--navy);
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 32px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    text-align: left;
    cursor: pointer;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.25;
    color: var(--navy);
    transition: color .2s;
  }
  .faq-q:hover { color: var(--navy-light); }
  .faq-q em { font-style: italic; color: var(--accent-deep); }
  .faq-q .plus {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--navy);
    position: relative;
    transition: background .25s, transform .3s;
  }
  .faq-q .plus::before,
  .faq-q .plus::after {
    content: '';
    position: absolute;
    background: var(--navy);
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }
  .faq-q .plus::before { width: 10px; height: 1px; }
  .faq-q .plus::after  { width: 1px; height: 10px; transition: transform .3s; }
  .faq-item.open .faq-q .plus { background: var(--navy); }
  .faq-item.open .faq-q .plus::before,
  .faq-item.open .faq-q .plus::after { background: var(--cream-soft); }
  .faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }
  .faq-a-inner {
    padding: 0 8px 32px 8px;
    max-width: 64ch;
  }
  .faq-a p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--slate);
  }
  .faq-a p + p { margin-top: 12px; }
  .faq-item.open .faq-a { max-height: 600px; }

  /* ===========================================================
     SECTION 11 — FINAL CTA
     =========================================================== */
  .final-cta {
    background: var(--paper);
    text-align: center;
    padding: 140px 0;
  }
  .final-cta .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-deep);
    margin: 0 auto 32px;
  }
  .final-cta h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.08;
    color: var(--navy);
    letter-spacing: -0.015em;
    max-width: 18ch;
    margin: 0 auto 28px;
  }
  .final-cta h2 em { font-style: italic; color: var(--accent-deep); font-weight: 400; }
  .final-cta p {
    max-width: 50ch;
    margin: 0 auto 44px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate);
  }
  .final-cta-actions {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* ===========================================================
     FOOTER
     =========================================================== */
  footer.site {
    background: var(--navy-deep);
    color: rgba(246, 244, 227, 0.72);
    padding: 88px 0 28px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(246, 244, 227, 0.12);
  }
  .footer-brand .brand { color: var(--cream-soft); }
  .footer-brand .brand-mark { border-color: var(--accent); color: var(--accent); }
  .footer-brand .brand-name { color: var(--cream-soft); font-size: 22px; }
  .footer-brand .brand-sub { color: rgba(246, 244, 227, 0.55); }
  .footer-brand p {
    margin-top: 28px;
    max-width: 34ch;
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(246, 244, 227, 0.7);
  }
  .footer-col h5 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .footer-col a {
    color: rgba(246, 244, 227, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-contact-inline {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(246, 244, 227, 0.12);
  }
  .footer-contact-inline h5 {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-soft);
    margin: 0 0 14px;
  }
  .footer-contact-inline .addr {
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 14px;
    color: rgba(246, 244, 227, 0.72);
  }
  .footer-contact-inline .meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
  }
  .footer-contact-inline .email {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    color: var(--cream-soft);
    text-decoration: none;
    display: block;
  }
  .footer-contact .addr {
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 14px;
    color: rgba(246, 244, 227, 0.72);
  }
  .footer-contact .meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
  }
  .footer-contact .email {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    color: var(--cream-soft);
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(246, 244, 227, 0.4);
  }
  .footer-bottom a {
    color: inherit;
    text-decoration: none;
    margin-left: 18px;
  }
  .footer-bottom a:hover { color: var(--accent); }

  /* ===========================================================
     {CITY} PLACEHOLDER
     .var spans remain in the markup as semantic find/replace
     anchors for the templating system, but render as plain text.
     =========================================================== */
  .var { /* no visual treatment */ }

  /* ===========================================================
     RESPONSIVE
     =========================================================== */
  @media (max-width: 1024px) {
    .wrap, header.site, .pad, .pad-sm { padding-left: 32px; padding-right: 32px; }
    header.site.solid { padding-left: 32px; padding-right: 32px; }
    .issues-head, .outcomes-grid, .footer-top {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .issue-grid { grid-template-columns: repeat(2, 1fr); }
    .issues-cat, .strength-inner { position: static; }
    .why-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .why-col, .why-col:nth-child(2), .why-col:last-child {
      padding: 36px 0 0 0;
      border-right: none;
      border-top: 1px solid rgba(48,54,79,0.16);
    }
    .why-col:first-child { border-top: none; padding-top: 0; }
    .hero-foot { grid-template-columns: 1fr; gap: 18px; }
    .cta-band-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    nav.primary { display: none; }
    .header-cta-desktop { display: none; }
    .hamburger { display: flex; }
    header.site, header.site.solid { padding: 14px 20px; }
    .wrap, .wrap-narrow, .strength-inner { padding: 0 20px; }
    .pad, .pad-sm, .why, .cta-band, .final-cta, footer.site { padding-left: 20px; padding-right: 20px; }
    .pad { padding-top: 96px; padding-bottom: 96px; }
    .hero-content { padding: 130px 20px 40px; }
    .why-grid, .team-grid { grid-template-columns: 1fr; }
    .why-grid { border-top: none; }
    .issue-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
    .footer-bottom > div:last-child a:first-child { margin-left: 0; }
  }
