
  :root {
    --primary: #2B6B60;
    --primary-dark: #1F524A;
    --primary-rgb: 43,107,96;
    --ink: #26241F;
    --ink-2: #5A5551;
    --ink-3: #8A857F;
    --accent: #A8801E;           /* deeper gold */
    --accent-rgb: 168,128,30;
    --bg: #F7F3EC;               /* warmer paper */
    --bg-2: #EFE9DF;             /* band */
    --bg-3: #E6DFD2;
    --rule: #D9D1C1;
    --serif: 'Libre Baskerville', 'Georgia', serif;
    --sans: 'Nunito Sans', system-ui, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 17px; scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; }

  /* ---------- shared type ---------- */
  .eyebrow {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-3);
    display: inline-block;
  }
  .eyebrow.on-dark { color: rgba(255,255,255,0.55); }
  .eyebrow.accent { color: var(--accent); }

  h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.15;
    text-wrap: balance;
  }
  h1 { font-size: clamp(2.8rem, 5.2vw, 4.6rem); line-height: 1.05; letter-spacing: -0.025em; }
  h2 { font-size: clamp(1.75rem, 2.8vw, 2.5rem); }
  h3 { font-size: clamp(1.25rem, 1.7vw, 1.55rem); }

  .lede { font-size: 1.18rem; color: var(--ink-2); line-height: 1.65; max-width: 36em; }
  .body-copy { color: var(--ink-2); font-size: 1.02rem; }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2.5rem;
  }

  /* Underline link */
  .ulink {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: gap 0.25s ease, color 0.2s;
  }
  .ulink:hover { gap: 0.7rem; color: var(--primary-dark); }
  .ulink::after { content: '→'; font-weight: 400; transition: transform 0.25s; }
  .ulink:hover::after { transform: translateX(3px); }

  /* Buttons — single primary, single ghost; gold reserved for "book" only */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.4rem;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .btn-primary { background: var(--accent); color: #fff; }
  .btn-primary:hover { background: #8d6a15; }
  .btn-primary-dark { background: var(--primary); color: #fff; }
  .btn-primary-dark:hover { background: var(--primary-dark); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-ghost:hover { background: var(--ink); color: var(--bg); }
  .btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
  .btn-ghost-light:hover { background: #fff; color: var(--primary-dark); border-color: #fff; }

  /* =====================================================
     HEADER
     ===================================================== */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247,243,236,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
  }
  /* Offset the sticky header below the WordPress admin bar (logged-in/admin views only;
     real visitors never see the admin bar, so this rule is inert for them). */
  .admin-bar .site-header { top: 32px; }
  @media screen and (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
  }
  .site-header .inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.9rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .brand {
    text-decoration: none;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    line-height: 1;
  }
  .brand .mark {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }
  .brand .dash {
    width: 18px;
    height: 1px;
    background: var(--ink-3);
    display: inline-block;
  }
  .brand .sub {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 600;
  }
  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .nav a {
    text-decoration: none;
    color: var(--ink-2);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.15s;
    position: relative;
  }
  .nav a:hover { color: var(--ink); }
  .nav .btn { padding: 0.65rem 1.15rem; font-size: 0.74rem; }
  .nav .btn-primary-dark { color: #fff; }
  .nav .btn-primary-dark:hover { color: #fff; }
  .nav .btn-primary { color: #fff; }
  .nav .btn-primary:hover { color: #fff; }

  /* =====================================================
     HERO — editorial two-column
     ===================================================== */
  .hero {
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
    background-color: var(--bg);
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-mountains.jpg');
    background-size: cover;
    background-position: 50% 49%;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247,243,236,0.55) 0%, rgba(247,243,236,0.25) 40%, rgba(247,243,236,0.75) 100%);
    z-index: 0;
    pointer-events: none;
  }
  .hero-grid { position: relative; z-index: 1; }
  .hero-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
  }
  .hero-copy .eyebrow { margin-bottom: 1.4rem; }
  .hero-copy h1 {
    font-size: clamp(2.6rem, 4.6vw, 3.8rem);
    margin-bottom: 1.5rem;
  }
  .hero-copy h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--primary-dark);
  }
  .hero-copy .lede { margin-bottom: 2rem; }
  .hero-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.8rem;
    margin-top: 2rem;
    border-top: 1px solid var(--rule);
    font-size: 0.85rem;
    color: var(--ink-3);
  }
  .hero-meta strong { color: var(--ink); font-weight: 700; letter-spacing: 0.04em; }
  .hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }

  .hero-btns { display: flex; gap: 0.7rem; flex-wrap: wrap; }

  .hero-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 620px;
    overflow: hidden;
    background: var(--bg-3);
  }
  .hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .hero-portrait::before {
    /* subtle vignette so text on portrait always reads */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
  }
  .hero-portrait .caption {
    position: absolute;
    left: 1.2rem;
    bottom: 1.1rem;
    color: #fff;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  }

  /* decorative fern behind portrait — one big, quiet moment */
  .hero .fern-bg {
    position: absolute;
    right: -120px;
    top: -80px;
    width: 520px;
    opacity: 0.11;
    pointer-events: none;
    transform: scaleX(-1);
    mix-blend-mode: multiply;
  }

  /* =====================================================
     LOCATIONS STRIP — quiet, informative
     ===================================================== */
  .locations-strip {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--bg-2);
  }
  .locations-strip .inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr 1fr auto;
    gap: 2.5rem;
    align-items: center;
  }
  .loc-label {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-2);
    font-size: 0.95rem;
  }
  .loc-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.88rem;
  }
  .loc-item .city {
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--ink);
  }
  .loc-item .addr { color: var(--ink-2); }
  .loc-item a { color: var(--primary); text-decoration: none; font-weight: 600; }
  .loc-item a:hover { text-decoration: underline; }

  /* =====================================================
     INTRO — what is osteopathy (editorial paragraph)
     ===================================================== */
  .intro {
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
  }
  .intro .cedar-bg {
    position: absolute;
    left: -80px;
    bottom: -60px;
    width: 380px;
    opacity: 0.10;
    pointer-events: none;
    mix-blend-mode: multiply;
  }
  .intro-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: start;
  }
  .intro-grid h2 {
    position: sticky;
    top: 6rem;
  }
  .intro-body p { font-size: 1.18rem; color: var(--ink-2); line-height: 1.7; margin-bottom: 1.3rem; }
  .intro-body p:first-child::first-letter {
    font-family: var(--serif);
    font-size: 3.6rem;
    float: left;
    line-height: 0.92;
    padding: 0.3rem 0.5rem 0 0;
    color: var(--primary-dark);
  }
  .intro-body .ulink { margin-top: 0.5rem; }

  /* =====================================================
     CONDITIONS — restrained index, not bento
     ===================================================== */
  .conditions {
    background: var(--bg-2);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }
  .conditions .cedar-bg {
    position: absolute;
    right: -60px;
    bottom: -40px;
    width: 420px;
    opacity: 0.13;
    pointer-events: none;
    mix-blend-mode: multiply;
    transform: scaleX(-1);
  }
  .conditions .head {
    max-width: 1180px;
    margin: 0 auto 3rem;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
  }
  .conditions .head h2 { margin-top: 0.6rem; max-width: 10ch; }
  .conditions .head p { color: var(--ink-2); font-size: 1.05rem; max-width: 38ch; }

  .cond-list {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5rem;
    row-gap: 0;
    border-top: 1px solid var(--rule);
  }
  .cond-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--rule);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    position: relative;
  }
  .cond-item:hover { background: rgba(255,255,255,0.4); }
  .cond-item:hover .cond-name { color: var(--primary-dark); }
  .cond-item:hover .cond-arrow { opacity: 1; transform: translateX(2px); }
  .cond-num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-3);
    font-size: 0.9rem;
    font-weight: 400;
  }
  .cond-name {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--ink);
    font-weight: 700;
    transition: color 0.2s;
  }
  .cond-sub {
    display: block;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--ink-2);
    margin-top: 0.2rem;
    letter-spacing: 0;
  }
  .cond-arrow {
    font-size: 1.1rem;
    color: var(--ink-3);
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
  }

  /* =====================================================
     PULL QUOTE — minimal band
     ===================================================== */
  .pullquote {
    padding: 6rem 0;
    text-align: center;
    background: var(--bg);
    position: relative;
  }
  .pullquote .q {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2.5rem;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.35;
    color: var(--ink);
  }
  .pullquote .q::before {
    content: '“';
    display: block;
    font-size: 4rem;
    line-height: 0.5;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }

  /* =====================================================
     ABOUT ELI — full-bleed portrait, dark overlay band
     ===================================================== */
  .about {
    background: var(--primary-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .about-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 7rem 2.5rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .about-statement {
    /* was sticky — caused visible empty space below the short left column */
  }
  .about-statement .eyebrow { margin-bottom: 1.5rem; }
  .about-statement h2 {
    color: #fff;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 0;
  }
  .about-statement h2 em {
    font-style: italic;
    font-weight: 400;
    color: #E8D38C;
  }
  .about-statement .signature {
    margin-top: 2.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-family: var(--serif);
    font-style: italic;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 24ch;
  }
  .about .cedar-bg {
    position: absolute;
    right: -80px;
    top: -60px;
    width: 560px;
    opacity: 0.14;
    pointer-events: none;
  }
  .about-photo {
    display: none;
  }
  .about-copy h2 { color: #fff; margin-bottom: 1.4rem; max-width: 14ch; }
  .about-copy .eyebrow { margin-bottom: 1.2rem; }
  .about-copy p {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 38ch;
  }
  .credentials {
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255,255,255,0.18);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .credentials .cred {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  .credentials .num {
    font-family: var(--serif);
    font-size: 2rem;
    color: #fff;
  }
  .credentials .label {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
  }
  .about-copy .ulink {
    color: #E8D38C;
    border-bottom-color: rgba(232,211,140,0.5);
    margin-top: 2rem;
  }
  .about-copy .ulink:hover { color: #fff; }

  /* =====================================================
     APPROACH — photo + offset text, editorial
     ===================================================== */
  .approach {
    padding: 7rem 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
  }
  .approach .fern-bg {
    position: absolute;
    right: -80px;
    top: -40px;
    width: 440px;
    opacity: 0.09;
    pointer-events: none;
    mix-blend-mode: multiply;
  }
  .approach-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
  }
  .approach-photo {
    aspect-ratio: 5 / 4;
    overflow: hidden;
    position: relative;
  }
  .approach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .approach-photo:hover img { transform: scale(1.03); }
  .approach-copy .eyebrow { margin-bottom: 1.2rem; }
  .approach-copy h2 { margin-bottom: 1.3rem; max-width: 12ch; }
  .approach-copy p { font-size: 1.08rem; color: var(--ink-2); line-height: 1.7; margin-bottom: 1rem; max-width: 38ch; }
  .approach-copy .ulink { margin-top: 1rem; }

  /* =====================================================
     TESTIMONIALS — quiet grid, not marquee
     ===================================================== */
  .testimonials {
    background: var(--bg-2);
    padding: 6rem 0 7rem;
    position: relative;
    overflow: hidden;
  }
  .testimonials .fern-bg {
    position: absolute;
    left: -100px;
    top: 40%;
    width: 480px;
    opacity: 0.11;
    pointer-events: none;
    mix-blend-mode: multiply;
  }
  .testimonials .head {
    max-width: 1180px;
    margin: 0 auto 3rem;
    padding: 0 2.5rem;
  }
  .testimonials h2 { margin-top: 0.6rem; max-width: 18ch; }
  .t-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .t-card {
    background: var(--bg);
    padding: 2rem 2rem 1.75rem;
    border: 1px solid var(--rule);
    position: relative;
  }
  .t-card blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 1.25rem;
  }
  .t-card cite {
    font-style: normal;
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
  }
  .t-card .stars {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
  }
  .testimonials .more {
    text-align: center;
    margin-top: 3rem;
  }

  /* =====================================================
     CTA — dark, centered, single action
     ===================================================== */
  .cta {
    background: var(--ink);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta .inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
  }
  .cta .eyebrow { margin: 0 auto 1.5rem; justify-content: center; }
  .cta h2 { color: #fff; margin-bottom: 1.2rem; }
  .cta p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 38em; margin: 0 auto 2rem; }
  .cta .btn-group { display: inline-flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; }

  /* =====================================================
     FOOTER — one-line address, quiet
     ===================================================== */
  .site-footer {
    background: var(--bg);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--rule);
  }
  .site-footer .inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 3rem;
  }
  .site-footer .f-brand {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }
  .site-footer .f-tag {
    font-size: 0.88rem;
    color: var(--ink-3);
    max-width: 32ch;
    line-height: 1.6;
  }
  .site-footer h4 {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .site-footer a {
    display: block;
    color: var(--ink-2);
    text-decoration: none;
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
  }
  .site-footer a:hover { color: var(--primary); }
  .f-legal {
    max-width: 1180px;
    margin: 3rem auto 0;
    padding: 1.2rem 2.5rem 0;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--ink-3);
  }
  .f-disclaimer {
    max-width: 1180px;
    margin: 3rem auto 0;
    padding: 0 2.5rem;
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--ink-3);
  }
  .f-disclaimer + .f-legal { margin-top: 1.2rem; }

  /* =====================================================
     MEDICAL DISCLAIMER (condition pages + articles)
     ===================================================== */
  .medical-disclaimer {
    max-width: 720px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--ink-3);
  }

  /* =====================================================
     REVEAL
     ===================================================== */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* =====================================================
     RESPONSIVE
     ===================================================== */
  @media (max-width: 980px) {
    .about-statement { position: static; }
    .hero { padding: 2.5rem 0 3.5rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-portrait { max-height: 480px; aspect-ratio: 5 / 4; }
    .nav a:not(.btn) { display: none; }
    .nav { gap: 0.7rem; }
    .locations-strip .inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .loc-label { grid-column: 1 / -1; }
    .intro, .approach { padding: 4rem 0; }
    .intro-grid, .approach-grid, .conditions .head { grid-template-columns: 1fr; gap: 2rem; }
    .intro-grid h2 { position: static; }
    .conditions .head { align-items: start; }
    .cond-list { grid-template-columns: 1fr; column-gap: 0; }
    .about-grid { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 2.5rem; }
    .about-photo { max-height: 420px; aspect-ratio: 5/4; }
    .credentials { grid-template-columns: 1fr 1fr; }
    .t-grid { grid-template-columns: 1fr; }
    .site-footer .inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  @media (max-width: 640px) {
    html { font-size: 16px; }
    .container, .site-header .inner, .hero-grid, .locations-strip .inner, .intro-grid, .approach-grid, .about-grid, .t-grid, .testimonials .head, .conditions .head, .cond-list, .cta .inner, .site-footer .inner, .f-legal {
      padding-left: 1.5rem; padding-right: 1.5rem;
    }
    h1 { font-size: 2.4rem; }
    .brand .sub { display: none; }
    .hero-meta { flex-wrap: wrap; gap: 0.7rem; }
    .credentials { grid-template-columns: 1fr; gap: 1rem; }
    .site-footer .inner { grid-template-columns: 1fr; }
    .f-legal { flex-direction: column; gap: 0.5rem; text-align: left; padding-top: 1rem; }
  }


  /* =====================================================
     CONDITION PAGE
     ===================================================== */
  .page-hero {
    padding: 4rem 0 3.5rem;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
  }
  .page-hero .fern-bg {
    position: absolute;
    right: -140px;
    top: -60px;
    width: 500px;
    opacity: 0.05;
    pointer-events: none;
    mix-blend-mode: multiply;
  }
  .page-hero .inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
  }
  .page-hero.has-photo .inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
  }
  .page-hero-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--bg-3);
    position: relative;
  }
  .page-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  @media (max-width: 880px) {
    .page-hero.has-photo .inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .page-hero-photo { aspect-ratio: 3 / 2; order: -1; }
  }
  .breadcrumb {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink-3);
    margin-bottom: 2rem;
  }
  .breadcrumb a { color: var(--ink-3); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--primary); }
  .breadcrumb .sep { margin: 0 0.7rem; }
  .page-hero h1 {
    max-width: 16ch;
    margin-bottom: 1.5rem;
  }
  .page-hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--primary-dark);
  }
  .page-hero .lede { max-width: 40em; font-size: 1.24rem; }
  .page-hero .cond-index {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
  }

  /* article body */
  .article-body {
    padding: 5rem 0 6rem;
    background: var(--bg);
  }
  .article-body .inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2.5rem;
  }

  .section-jumps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rule);
  }
  .section-jumps .eyebrow {
    width: 100%;
    margin-bottom: 0.8rem;
  }
  .section-jumps a {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-2);
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--rule);
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .section-jumps a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }

  .prose { max-width: none; }
  .prose h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    max-width: 18ch;
  }
  .prose h2:first-child { margin-top: 0; }
  .prose p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--ink-2);
    margin-bottom: 1.2rem;
  }
  .prose p:first-of-type { font-size: 1.2rem; color: var(--ink); }
  .prose ul {
    margin: 0.5rem 0 1.5rem 1.2rem;
    padding: 0;
  }
  .prose ul li {
    font-size: 1.08rem;
    color: var(--ink-2);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 0.3rem;
  }
  .prose ul li::marker { color: var(--accent); }
  .prose .callout {
    margin: 2.5rem 0;
    padding: 1.8rem 2rem;
    background: var(--bg-2);
    border-left: 3px solid var(--accent);
  }
  .prose .callout p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.5;
    margin: 0;
    max-width: none;
  }

  /* inline anatomical diagram figure (condition pages + articles) */
  .prose .cond-diagram,
  .prose .article-figure {
    margin: 2.5rem 0;
    padding: 0;
  }
  .prose .cond-diagram img,
  .prose .article-figure img {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    border-radius: 2px;
  }
  .prose .cond-diagram figcaption,
  .prose .article-figure figcaption {
    margin: 0.8rem auto 0;
    max-width: 640px;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--ink-3);
    line-height: 1.55;
  }

  /* session timeline */
  .session-steps {
    margin: 2rem 0 2.5rem;
    padding: 0;
    list-style: none;
    counter-reset: step;
  }
  .session-steps li {
    counter-increment: step;
    padding: 1.4rem 0 1.4rem 3.5rem;
    border-top: 1px solid var(--rule);
    position: relative;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink-2);
  }
  .session-steps li:last-child { border-bottom: 1px solid var(--rule); }
  .session-steps li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 1.3rem;
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-size: 1rem;
  }
  .session-steps li strong {
    display: block;
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }

  /* related conditions */
  .related {
    background: var(--bg-2);
    padding: 5rem 0;
    border-top: 1px solid var(--rule);
  }
  .related .inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2.5rem;
  }
  .related h2 { margin-bottom: 2.5rem; max-width: 14ch; }
  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .related-card {
    display: block;
    padding: 1.8rem;
    background: var(--bg);
    border: 1px solid var(--rule);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
  }
  .related-card:hover { border-color: var(--primary); transform: translateY(-2px); }
  .related-card .num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-3);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.4rem;
  }
  .related-card .name {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.3rem;
    display: block;
  }
  .related-card .sub {
    font-size: 0.88rem;
    color: var(--ink-2);
    line-height: 1.5;
  }

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

  /* =====================================================
     CONDITIONS INDEX PAGE
     ===================================================== */
  .cond-index-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 5rem 2.5rem 6rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.75rem 2.25rem;
  }
  .cond-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
  }
  .cond-card:hover { transform: translateY(-3px); }
  .cond-card-photo {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--bg-3);
    margin-bottom: 1.4rem;
    position: relative;
  }
  .cond-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .cond-card:hover .cond-card-photo img { transform: scale(1.03); }
  .cond-card-meta {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  .cond-card-meta .dash { flex: 1; height: 1px; background: var(--rule); transform: translateY(-0.35em); }
  .cond-card h3 {
    font-family: var(--serif);
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 0.7rem;
    transition: color 0.2s;
  }
  .cond-card:hover h3 { color: var(--primary-dark); }
  .cond-card p {
    color: var(--ink-2);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 1rem;
    max-width: 38ch;
  }
  .cond-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    color: var(--ink-3);
  }
  .cond-card .tags span { display: inline-flex; align-items: center; gap: 0.5rem; }
  .cond-card .tags span + span::before {
    content: "·";
    color: var(--ink-3);
    opacity: 0.5;
    margin-right: 0.3rem;
  }

  /* closing "not sure?" block on conditions index */
  .cond-unsure {
    background: var(--bg-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 5rem 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .cond-unsure .inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .cond-unsure .cedar-bg {
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 420px;
    opacity: 0.06;
    pointer-events: none;
    mix-blend-mode: multiply;
  }
  .cond-unsure h2 {
    margin-bottom: 1.2rem;
    font-size: 2.1rem;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }
  .cond-unsure p {
    color: var(--ink-2);
    max-width: 52ch;
    margin: 0 auto 2rem;
    font-size: 1.08rem;
  }

  @media (max-width: 780px) {
    .cond-index-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem 4rem; }
  }

  /* =====================================================
     DECORATIVE BOTANICALS — soften image rectangle edges
     so fern/cedar PNGs fade out naturally instead of
     showing the hard bounding-box edge inside the viewport.
     Applies to every .fern-bg / .cedar-bg site-wide.
     ===================================================== */
  .fern-bg, .cedar-bg {
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 75%);
            mask-image: radial-gradient(ellipse 70% 70% at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 75%);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
  }

  /* =====================================================
     Article cards + sections (lifted from articles.html
     <style> block so the homepage "Latest articles" strip
     and any /articles archive use the same styling).
     ===================================================== */
  .art-section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .art-section:nth-of-type(even) { background: var(--bg-2); }
  .art-section .head {
    max-width: 1180px; margin: 0 auto 3rem;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: end;
  }
  .art-section .head .num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .art-section .head h2 {
    max-width: 14ch;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }
  .art-section .head h2 em { font-style: italic; font-weight: 400; color: var(--primary-dark); }
  .art-section .head p {
    color: var(--ink-2); font-size: 1.05rem;
    line-height: 1.7; max-width: 44em;
  }
  .art-grid {
    max-width: 1180px; margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .art-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--rule);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .art-section:nth-of-type(even) .art-card { background: var(--bg); }
  .art-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
  }
  .art-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 2px 2px 0 0;
  }
  .art-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
    padding: 1.6rem 1.8rem;
  }
  .art-card h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    line-height: 1.3;
    color: var(--ink);
    margin: 0;
  }
  .art-card h3 em { font-style: italic; font-weight: 400; color: var(--primary-dark); }
  .art-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-2);
    margin: 0;
    flex: 1;
  }
  .art-card .read {
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid var(--rule);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
  }
  .art-card .read::after { content: ' →'; }

  @media (max-width: 960px) {
    .art-section .head { grid-template-columns: 1fr; gap: 1.5rem; }
    .art-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .art-grid { grid-template-columns: 1fr; }
    .art-section .head, .art-grid { padding-left: 1.5rem; padding-right: 1.5rem; }
  }

  /* Article meta line (used in single.php page hero — lifted
     from per-article <style> blocks in design-v3/articles/*.html). */
  .article-meta {
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 700;
    margin-bottom: 0.7rem;
  }
  .article-meta .tag { color: var(--accent); }
  .article-meta .sep { color: var(--rule); margin: 0 0.6rem; }

  /* Drop-cap on article body first paragraph. */
  .article-body .prose > p:first-of-type::first-letter {
    font-family: var(--serif);
    font-style: italic;
    float: left;
    font-size: 3.6rem;
    line-height: 0.9;
    margin: 0.3rem 0.6rem -0.2rem 0;
    color: var(--primary-dark);
  }

  /* =====================================================
     "When to seek care" callout (template-parts/warning-signs.php)
     Calm, on-brand attention box — warm ochre accent, no harsh red.
     ===================================================== */
  .warning-box {
    margin: 2.5rem 0;
    padding: 1.8rem 2rem;
    background: var(--bg-2);
    border-left: 3px solid var(--accent);
    border-radius: 2px;
  }
  .warning-box h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 0 0 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
  }
  .warning-box ul {
    margin: 0;
    padding-left: 1.4rem;
    list-style: disc;
  }
  .warning-box li {
    font-size: 1.02rem;
    color: var(--ink-2);
    line-height: 1.65;
    margin-bottom: 0.5rem;
    padding-left: 0.3rem;
  }
  .warning-box li:last-child { margin-bottom: 0; }
  .warning-box li::marker { color: var(--accent); }

  /* =====================================================
     Author bio card (template-parts/author-bio.php)
     Horizontal card — circular avatar + name/credentials/copy/buttons.
     ===================================================== */
  .author-bio {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    margin: 3rem 0 0;
    padding: 2rem;
    background: var(--bg-2);
    border-top: 1px solid var(--rule);
    border-radius: 2px;
  }
  .author-bio > img {
    flex: 0 0 auto;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: cover;
  }
  .author-bio-text h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--ink);
    margin: 0 0 0.3rem;
  }
  .author-bio-text .credentials {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.9rem;
  }
  .author-bio-text p {
    color: var(--ink-2);
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 0 1.3rem;
    max-width: 52ch;
  }
  .author-bio-text .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  @media (max-width: 640px) {
    .author-bio {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.8rem 1.5rem;
    }
    .author-bio-text p { margin-left: auto; margin-right: auto; }
    .author-bio-text .btn-group { justify-content: center; }
  }

  /* =====================================================
     HEADER BOOK MENU — native <details> location chooser
     ===================================================== */
  .book-menu { position: relative; }
  /* Summary styled exactly like the nav Book button (.nav .btn.btn-primary-dark). */
  .book-menu summary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.15rem;
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid transparent;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  }
  .book-menu summary::-webkit-details-marker { display: none; }
  .book-menu summary:hover { background: var(--primary-dark); color: #fff; }
  .book-menu summary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  .book-menu summary .caret {
    font-size: 0.7em;
    line-height: 1;
    transition: transform 0.2s ease;
  }
  .book-menu[open] summary .caret { transform: rotate(180deg); }
  .book-menu-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    min-width: 200px;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 0.4rem;
    z-index: 200;
  }
  .book-menu-panel a {
    display: block;
    padding: 0.6rem 0.8rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-2);
    border-radius: 2px;
    transition: background 0.15s, color 0.15s;
  }
  .book-menu-panel a:hover,
  .book-menu-panel a:focus-visible {
    background: var(--bg-2);
    color: var(--accent);
  }
  /* Mobile: text nav links collapse but the Book control stays. Keep the panel
     pinned to the right edge so it never overflows the viewport on narrow screens. */
  @media (max-width: 640px) {
    .book-menu-panel {
      right: 0;
      left: auto;
      max-width: calc(100vw - 3rem);
    }
  }
