/* ============================================================
   ORT MANUAL THERAPY — style.css
   Single stylesheet. No build step. No dependencies.

   PALETTE — taken from the previous ORT site (ortjustfixit.com)
   ------------------------------------------------------------
     #2F4B67  slate blue    page ground
     #26405A  deep slate    alternating bands
     #37556F  soft slate    card surfaces
     #0F181F  near-black    header, footer, feature bands
     #E6DECA  cream         primary button fill
     #D89679  salmon        accent / action links
     #FFFFFF  white         body + heading text

   All colors are defined once, in the :root block below.
   Change them there and the whole site follows.
   ============================================================ */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

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

/* ---------- 2. Tokens ---------- */
:root {
  /* surfaces */
  --bg:          #2F4B67;   /* page ground — slate blue */
  --bg-alt:      #26405A;   /* alternating section band */
  --surface:     #37556F;   /* cards sitting on --bg */
  --surface-2:   #2E4A66;   /* cards sitting on --bg-alt */
  --ink:         #0F181F;   /* near-black — header, footer, feature bands */
  --ink-2:       #23282D;

  /* brand */
  --cream:       #E6DECA;   /* primary button fill */
  --cream-d:     #D8CDB2;   /* button hover */
  --accent:      #D89679;   /* brand salmon — the accent on the slate-blue ground */
  --accent-rgb:  216, 150, 121;
  --accent-text: #E7BFAD;   /* same hue, lifted for small text on slate (WCAG AA) */
  --accent-d:    #F2D2C3;   /* accent hover */

  /* On the near-black ground the accent becomes the logo's royal blue.
     #0080FF is sampled straight out of assets/ort-logo.png and clears
     4.7:1 against #0F181F, so it is safe for small text as-is. */
  --accent-navy:      #0080FF;
  --accent-navy-rgb:  0, 128, 255;
  --accent-navy-text: #3D9BFF;   /* slightly lifted for the smallest labels */

  /* type */
  --text:        #FFFFFF;
  --text-soft:   rgba(255, 255, 255, .84);
  --muted:       #BEC9D3;   /* secondary text on slate */
  --muted-ink:   #9E9E9E;   /* secondary text on near-black */

  /* lines */
  --line:        rgba(255, 255, 255, .20);
  --line-soft:   rgba(255, 255, 255, .11);

  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1120px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 3px;
  --shadow: 0 1px 2px rgba(0,0,0,.18), 0 10px 30px rgba(0,0,0,.22);

  --sp-section: clamp(4rem, 9vw, 7.5rem);
}

/* ---------- 3. Base typography ---------- */
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  letter-spacing: .001em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.012em;
  color: var(--text);
}

h1 { font-size: clamp(2.1rem, 6.6vw, 4.25rem); overflow-wrap: break-word; }
h2 { font-size: clamp(1.95rem, 4.4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); line-height: 1.25; }
h4 { font-size: 1.125rem; line-height: 1.35; }

p + p { margin-top: 1.05em; }

a { text-decoration-thickness: 1px; text-underline-offset: .18em; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 760px; }
.wrap--mid { max-width: 900px; }

.skip-link {
  position: absolute; left: 0; top: 0;
  transform: translateY(-120%);
  background: var(--cream); color: var(--ink);
  padding: .75rem 1.25rem; z-index: 200;
  font-size: .9rem; letter-spacing: .04em;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- 4. Shared bits ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.lede {
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  line-height: 1.62;
  color: var(--text-soft);
}

.rule {
  width: 44px; height: 1px;
  background: var(--accent);
  margin: 1.6rem 0;
  border: 0;
}
.rule--center { margin-inline: auto; }

.section { padding-block: var(--sp-section); }
.section--sand { background: var(--bg-alt); }
.section--cream { background: var(--bg); }
.section--charcoal { background: var(--ink); }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1.1rem; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.85rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }

/* Cream fill with dark text — the old site's Contact button */
.btn--primary { background: var(--cream); color: var(--ink); }
.btn--primary:hover { background: var(--cream-d); }

.btn--outline { border-color: var(--line); color: var(--text); background: transparent; }
.btn--outline:hover { border-color: var(--cream); background: rgba(230,222,202,.09); }

.btn--light { border-color: rgba(230,222,202,.45); color: var(--cream); background: transparent; }
.btn--light:hover { background: rgba(230,222,202,.12); border-color: var(--cream); }

.btn--sm { padding: .7rem 1.1rem; font-size: .71rem; letter-spacing: .1em; }
.btn--full { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

.textlink {
  font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-text); text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent-rgb),.45);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.textlink:hover { color: var(--accent-d); border-color: var(--accent-d); }

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 24, 31, .95);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck {
  border-bottom-color: rgba(255,255,255,.12);
  box-shadow: 0 1px 20px rgba(0,0,0,.35);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
}

.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand-logo {
  height: 64px; width: auto; display: block;
}
.site-footer .brand-logo { height: 104px; }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  padding: .55rem .8rem;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer;
}

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.nav-links { display: flex; align-items: center; gap: 1.15rem; }
.nav-links a {
  text-decoration: none; font-size: .81rem; color: rgba(255,255,255,.86);
  white-space: nowrap; transition: color .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Between the drawer breakpoint and a comfortable desktop, the phone number
   is dropped from the bar so the brand never has to wrap. It is still in
   the hero, the contact section and the footer. */
@media (min-width: 1025px) and (max-width: 1199px) {
  .nav-phone { display: none; }
}
.nav-phone {
  font-size: .84rem; text-decoration: none; color: var(--text);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--accent); }

/* Small phones: keep the logo + Menu button on one line */
@media (max-width: 430px) {
  .header-inner { gap: .6rem; min-height: 74px; }
  .brand-logo { height: 48px; }
  .site-footer .brand-logo { height: 84px; }
  .nav-toggle { padding: .5rem .7rem; }
}
@media (max-width: 340px) {
  .brand-logo { height: 36px; }
  .nav-toggle { padding: .5rem .6rem; font-size: .68rem; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.75rem;
    display: none;
    box-shadow: 0 18px 30px rgba(0,0,0,.4);
  }
  .site-header.is-open .site-nav { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a {
    padding: .95rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem;
  }
  .nav-actions { flex-direction: column; align-items: stretch; gap: .85rem; margin-top: 1.4rem; }
  .nav-phone { text-align: center; padding: .5rem 0; }
}

/* ---------- 7. Hero ---------- */
.hero {
  padding-top: clamp(3.5rem, 9vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  background: linear-gradient(170deg, #294057 0%, var(--bg) 55%, #35566F 100%);
}
.hero-inner { max-width: 800px; }
.hero h1 { margin-bottom: 1.5rem; }
.hero .tagline {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: var(--accent-text);
  letter-spacing: .01em;
  margin-bottom: 1.5rem;
}
.hero .lede { max-width: 60ch; }

/* ---------- 8. Trust strip ---------- */
.trust {
  background: var(--ink);
  color: rgba(255,255,255,.92);
  padding-block: 1.5rem;
}
.trust ul {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
}
.trust li {
  font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
}
.trust li + li::before {
  content: "";
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); margin-right: clamp(1.5rem, 4vw, 3.5rem);
  vertical-align: middle;
}
@media (max-width: 720px) {
  .trust li + li::before { display: none; }
  .trust ul { flex-direction: column; }
}

/* ---------- 9. Start-here band ---------- */
.starthere { background: var(--bg-alt); }
.starthere-card {
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 4.5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) { .starthere-card { grid-template-columns: 1fr; } }

.starthere-card h2 { margin-bottom: 1.1rem; }
.starthere-card p { color: var(--text-soft); }
.price-block { border-left: 2px solid var(--accent); padding-left: 1.4rem; }
.price-block .price {
  font-family: var(--serif); font-size: 2.6rem; line-height: 1; display: block; color: var(--cream);
}
.price-block .meta {
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  margin-top: .6rem;
}
.philosophy {
  font-family: var(--serif); font-style: italic; font-size: 1.35rem;
  color: var(--accent-text) !important; margin-top: 1.6rem;
}
.checklist { margin-top: 1.5rem; display: grid; gap: .6rem; }
.checklist li { position: relative; padding-left: 1.5rem; font-size: .97rem; color: var(--text-soft); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border: 1px solid var(--accent); border-radius: 50%;
}

/* ---------- 10. Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.35rem);
  display: flex; flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow); transform: translateY(-2px); border-color: rgba(var(--accent-rgb),.4);
}

.service-card__top {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--line-soft); margin-bottom: 1.25rem;
}
.service-card__top h3 { flex: 1; }
.service-card__price {
  font-family: var(--serif); font-size: 1.5rem; color: var(--cream); white-space: nowrap;
}
.service-card .service-card__tag {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: var(--accent-text); margin-bottom: .9rem;
}
.service-card p { font-size: .97rem; color: var(--text-soft); }
.service-card__foot { margin-top: auto; padding-top: 1.6rem; }
.service-card .textlink { display: inline-block; margin-bottom: 1.1rem; }

.results-vary {
  display: block;
  font-size: .74rem;
  line-height: 1.55;
  letter-spacing: .04em;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  padding-top: .9rem;
  margin-top: 1.1rem;
}

/* ---------- 11. Feature band ---------- */
.feature { background: var(--ink); }
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }
.feature h2 { margin-bottom: 1.3rem; }
.feature .tagline {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--accent); margin-bottom: 1.5rem;
}
.feature p { color: rgba(255,255,255,.8); }
.feature-list { display: grid; gap: .85rem; }
.feature-list li {
  font-size: .95rem; color: rgba(255,255,255,.86);
  padding-left: 1.6rem; position: relative;
}
.feature-list li::before {
  content: "—"; position: absolute; left: 0; color: var(--accent);
}

/* ---- accent swap on the near-black ground ----
   Salmon reads as the accent on the slate-blue ground. On the navy/near-black
   surfaces it is replaced by the logo's royal blue. Redefining the tokens on
   these containers means every descendant — text, rules, dots, tints, borders
   — follows automatically, with no per-element overrides. */
.site-header,
.trust,
.feature,
.site-footer,
.callout-band,
.toc,
.section--charcoal {
  --accent:      var(--accent-navy);
  --accent-rgb:  var(--accent-navy-rgb);
  --accent-text: var(--accent-navy-text);
}

/* eyebrows on those surfaces use the full-strength accent, not the lifted one */
.trust .eyebrow,
.feature .eyebrow,
.site-footer .eyebrow,
.callout-band .eyebrow,
.section--charcoal .eyebrow { color: var(--accent); }

/* ---------- 12. Disclaimer callout ---------- */
.disclaimer {
  border: 1px solid rgba(var(--accent-rgb),.45);
  border-left: 3px solid var(--accent);
  background: rgba(var(--accent-rgb),.10);
  padding: 1.35rem 1.6rem;
  border-radius: var(--radius);
  font-size: .92rem;
  line-height: 1.62;
  color: rgba(255,255,255,.92);
}
.disclaimer strong {
  display: block;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-text); margin-bottom: .5rem; font-weight: 600;
}
.disclaimer p { color: inherit; }

/* ---------- 13. Placeholder blocks (REMOVE WHEN FILLED) ---------- */
.placeholder {
  border: 2px dashed rgba(var(--accent-rgb),.55);
  background: rgba(var(--accent-rgb),.07);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.placeholder__label {
  font-size: .7rem; letter-spacing: .17em; text-transform: uppercase;
  font-weight: 600; color: var(--accent-text); margin-bottom: .9rem;
}
.placeholder p { font-size: .95rem; color: rgba(255,255,255,.86); }
.placeholder ul { margin-top: .8rem; display: grid; gap: .35rem; }
.placeholder ul li { font-size: .92rem; color: rgba(255,255,255,.86); padding-left: 1.1rem; position: relative; }
.placeholder ul li::before { content: "·"; position: absolute; left: .25rem; }
.placeholder code {
  font-size: .88em; background: rgba(0,0,0,.28); padding: .1em .35em; border-radius: 2px;
}

/* ---------- 14. Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: clamp(1.5rem, 4vw, 3rem); }
.step__num {
  font-family: var(--serif); font-size: 2.4rem; color: var(--accent-text); opacity: .7;
  line-height: 1; margin-bottom: .9rem;
}
.step h3 { margin-bottom: .7rem; }
.step p { font-size: .97rem; color: var(--text-soft); }

/* ---------- 15. Two-column generic ---------- */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 820px) { .cols-2 { grid-template-columns: 1fr; } }

/* ---------- 16. Contact ---------- */
.contact-list { display: grid; gap: 1.6rem; margin-top: 2rem; }
.contact-item__label {
  font-size: .7rem; letter-spacing: .17em; text-transform: uppercase; color: var(--accent-text); margin-bottom: .4rem;
}
.contact-item a, .contact-item p {
  font-family: var(--serif); font-size: 1.35rem; text-decoration: none; line-height: 1.35;
}
.contact-item a:hover { color: var(--accent-text); }
.contact-item .note { font-family: var(--sans); font-size: .88rem; color: var(--muted); margin-top: .45rem; line-height: 1.55; }

/* ---------- 17. Footer ---------- */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.78);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .92rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.14);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; } }
.footer-tagline {
  font-family: var(--serif); font-style: italic; color: var(--accent); margin-top: 1.1rem; font-size: 1.05rem;
}
.footer-col h4 {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem; font-weight: 600;
}
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,.82); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.68);
}
.footer-disclaimer {
  max-width: 68ch; font-size: .8rem; line-height: 1.65; color: rgba(255,255,255,.68);
  padding-top: 2rem;
}

/* ---------- 18. Page header (sub-pages) ---------- */
.page-hero {
  background: linear-gradient(170deg, #294057 0%, var(--bg) 100%);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.breadcrumb {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-text); }

.price-inline {
  display: inline-flex; align-items: baseline; gap: .7rem;
  font-family: var(--serif); font-size: 1.9rem; color: var(--cream); margin-top: 1.75rem;
}
.price-inline span { font-family: var(--sans); font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

/* ---------- 19. Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chips li {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .5rem 1.1rem;
  font-size: .88rem;
  background: var(--surface-2);
  color: var(--text-soft);
}

/* ---------- 20. Numbered technique cards ---------- */
.technique-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.technique {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.1rem);
}
.technique__num {
  font-family: var(--serif); font-size: .95rem; color: var(--accent-text);
  letter-spacing: .1em; margin-bottom: .8rem;
}
.technique h3 { font-size: 1.25rem; margin-bottom: .7rem; }
.technique p { font-size: .95rem; color: var(--text-soft); }

/* ---------- 21. Policy / long-form pages ---------- */
.longform p { margin-top: 1rem; color: var(--text-soft); }
.longform h2 { margin-top: 3rem; margin-bottom: 1rem; font-size: clamp(1.4rem, 2.6vw, 1.75rem); scroll-margin-top: 110px; }
.longform h2:first-of-type { margin-top: 0; }
.longform h3 { margin-top: 2rem; margin-bottom: .8rem; font-size: 1.15rem; }
.longform ul { margin-top: 1rem; display: grid; gap: .5rem; }
.longform ul li { padding-left: 1.4rem; position: relative; color: var(--text-soft); }
.longform ul li::before { content: ""; position: absolute; left: .1rem; top: .72em; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.longform .updated { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.longform strong { color: var(--text); }

.toc {
  background: var(--ink); border-radius: var(--radius); padding: 1.75rem 2rem; margin-bottom: 3rem;
}
.toc h2 { font-family: var(--sans); font-size: .7rem !important; letter-spacing: .17em; text-transform: uppercase; color: var(--accent); margin: 0 0 1rem; font-weight: 600; }
.toc ol { counter-reset: toc; display: grid; gap: .45rem; }
.toc li { counter-increment: toc; font-size: .94rem; color: var(--text-soft); }
.toc li::before { content: counter(toc) "."; color: var(--accent); margin-right: .5rem; }
.toc a { text-decoration: none; }
.toc a:hover { color: var(--accent); text-decoration: underline; }

.policy-summary { display: grid; gap: 1rem; }
.policy-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start;
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.35rem 1.6rem;
}
.policy-item__key {
  font-family: var(--serif); font-size: 1.15rem; color: var(--accent-text); white-space: nowrap;
  min-width: 5.5rem;
}
.policy-item p { font-size: .96rem; margin: 0; color: var(--text-soft); }
.policy-item h4 { margin-bottom: .3rem; }
@media (max-width: 620px) {
  .policy-item { grid-template-columns: 1fr; gap: .5rem; }
}

.callout-band {
  background: var(--ink); border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}
.callout-band p { max-width: 55ch; margin-inline: auto; color: var(--text-soft); }

/* ---------- 22. Final CTA ---------- */
.cta-final { text-align: center; }
.cta-final h2 { margin-bottom: 1.2rem; }
.cta-final p { max-width: 52ch; margin-inline: auto; color: var(--text-soft); }
.cta-final .btn-row { justify-content: center; }

/* ---------- 22b. About / practitioner ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) 1.22fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  /* stacked, the portrait shouldn't run the full column width */
  .about-portrait img { max-width: 420px; }
}

.about-portrait img {
  width: 100%; height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--surface);
}
.portrait-placeholder {
  border: 2px dashed rgba(var(--accent-rgb),.55);
  background: rgba(var(--accent-rgb),.07);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  aspect-ratio: 4 / 5;
  display: flex; flex-direction: column; justify-content: center;
}
.portrait-placeholder p { font-size: .92rem; color: rgba(255,255,255,.86); }
.portrait-placeholder code {
  font-size: .88em; background: rgba(0,0,0,.28); padding: .1em .35em; border-radius: 2px;
}

.about-body .about-role {
  font-size: .8rem; letter-spacing: .11em; text-transform: uppercase;
  color: var(--accent-text); margin-top: .9rem;
}
.about-subhead {
  font-size: 1.2rem; margin-top: 2.25rem; margin-bottom: 1rem; color: var(--cream);
}
.about-body > p { color: var(--text-soft); }
.about-body .checklist li strong { color: var(--text); font-weight: 600; }

.about-lower {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 880px) { .about-lower { grid-template-columns: 1fr; } }
.about-lower p { color: var(--text-soft); }
.about-lower .about-subhead:first-child { margin-top: 0; }

.creds { display: grid; gap: .85rem; }
.creds li {
  font-size: .95rem; color: var(--text-soft);
  padding-left: 1.15rem; position: relative; line-height: 1.5;
}
.creds li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; background: var(--accent); border-radius: 50%;
}
.creds li span {
  display: block; color: var(--text); font-weight: 600;
  font-size: .97rem; letter-spacing: .005em;
}

/* ---------- 22c. Testimonials ---------- */
.quote-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: start;
}
.quote {
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.2vw, 2.5rem);
  margin: 0;
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 4.5rem; line-height: 1;
  color: var(--accent); opacity: .35;
  position: absolute; top: .55rem; left: 1.15rem;
}
.quote blockquote { margin: 0; padding-top: 1.4rem; }
.quote blockquote p { font-size: .99rem; line-height: 1.68; color: var(--text-soft); }
.quote figcaption {
  margin-top: 1.6rem; padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--serif); font-size: 1.1rem; color: var(--text);
}
.quote figcaption span {
  display: block; font-family: var(--sans);
  font-size: .7rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--accent-text); margin-top: .35rem;
}

/* ---------- 22d. Video ----------
   Works for a self-hosted <video> or an embedded <iframe>; the wrapper holds
   the aspect ratio so nothing jumps while the media loads.              */
.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line-soft);
}
.video > video,
.video > iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block; border: 0;
  object-fit: cover;
}
/* phone-shot footage */
.video--portrait { aspect-ratio: 9 / 16; max-width: 380px; margin-inline: auto; }
.video-caption { font-size: .88rem; color: var(--muted); margin-top: .8rem; line-height: 1.55; }

.video-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

/* Silent looping clip behind the hero. The overlay keeps the headline at
   full contrast no matter what the footage is doing underneath. */
.hero--video { position: relative; overflow: hidden; }
.hero--video > video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero--video::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,24,31,.74) 0%, rgba(47,75,103,.84) 100%);
}
.hero--video > .wrap { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .hero--video > video { display: none; }
}

/* ---------- 22e. Client results ----------
   Each supplied image is already a before/after composite, so the figure
   holds one image. Heights are left natural: cropping a before/after to
   tidy up a grid changes what the photograph shows.                    */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: start;
}
.result {
  margin: 0;
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.result img {
  width: 100%; height: auto; display: block;
  background: var(--ink);
}
.result figcaption {
  padding: 1.1rem 1.35rem 1.35rem;
}
.result figcaption span {
  display: block;
  font-size: .7rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--accent-text); margin-bottom: .45rem; font-weight: 600;
}
.result figcaption em {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: var(--text); display: block;
}
.result figcaption small {
  display: block; margin-top: .5rem;
  font-size: .8rem; color: var(--muted); letter-spacing: .02em;
}

/* ---------- 23. Print ----------
   The screen design is dark. Printing it would flood the page with ink,
   so print gets a plain black-on-white document. This is what makes
   "Print -> Save as PDF" usable for the cancellation policy.          */
@media print {
  .site-header, .site-footer, .btn, .btn-row, .skip-link, .toc, .breadcrumb, .no-print,
  .video, .hero--video > video { display: none !important; }

  html, body { background: #fff !important; }
  body { color: #000 !important; font-size: 11pt; line-height: 1.5; }

  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .section, .page-hero { padding-block: .5rem; }
  .wrap { max-width: 100%; padding-inline: 0; }
  .longform h2 { page-break-after: avoid; margin-top: 1.5rem; font-size: 13pt; }
  .longform ul li::before { background: #000 !important; }
  .rule { background: #000 !important; }
  a { text-decoration: none; }
  .disclaimer { border: 1px solid #000 !important; }
  .policy-item, .service-card, .technique, .starthere-card, .placeholder, .quote { border: 1px solid #999 !important; }
  .portrait-placeholder { display: none !important; }
}
