/* The New Natural: design system
   Palette taken from the practice logo (terracotta and espresso) and brand photography (blush). */
:root {
  --bg: #fbf8f4;
  --paper: #f4ede5;
  --sand: #e9ddd1;
  --blush: #b78375;
  --ink: #1f1512;
  --espresso: #63351e;
  --espresso-2: #4e2915;
  --terra: #c45f3f;
  --terra-text: #a34a2d;
  --muted: #5f514a;
  --line: rgba(31, 21, 18, 0.14);
  --line-strong: rgba(31, 21, 18, 0.28);
  --on-dark: #f6efe8;
  --on-dark-muted: #cdbcb0;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);
  --gap: 24px;
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px; --s5: 48px; --s6: 64px;
  --section: clamp(72px, 9vw, 120px);
  --header: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header) + 16px); }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; margin: 0; letter-spacing: -0.02em; font-variation-settings: "opsz" 72, "SOFT" 30; color: var(--ink); }
fieldset { min-width: 0; border: 0; padding: 0; margin: 0; }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }

.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 12px 18px; text-decoration: none; }
.skip:focus { top: 12px; }

/* Layout */
.wrap { width: 100%; max-width: calc(var(--max) + 2 * var(--pad)); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--section) 0; }
.section + .section.tight-top { padding-top: 0; }
.bg-paper { background: var(--paper); }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* Type */
.eyebrow { display: flex; align-items: center; gap: 12px; font: 600 12px/1 var(--sans); letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra-text); margin: 0 0 20px; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.h1 { font-size: clamp(2.5rem, 5.4vw, 4.6rem); line-height: 1.02; font-weight: 650; }
.h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.06; }
.h3 { font-size: clamp(1.35rem, 1.8vw, 1.6rem); line-height: 1.2; }
.lede { font-size: clamp(1.08rem, 1.35vw, 1.22rem); line-height: 1.6; color: var(--muted); max-width: 40em; }
.muted { color: var(--muted); }
.small { font-size: 14px; line-height: 1.55; }
.note { font-size: 14px; color: var(--muted); border-left: 2px solid var(--terra); padding: 2px 0 2px 14px; max-width: 46em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px; min-width: 220px;
  font: 600 13px/1 var(--sans); letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; text-align: center;
  border: 1px solid var(--espresso); border-radius: 2px; cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--espresso); color: #fff; }
.btn-primary:hover { background: var(--espresso-2); border-color: var(--espresso-2); }
.btn-outline { background: transparent; color: var(--espresso); }
.btn-outline:hover { background: var(--espresso); color: #fff; }
.btn-light { background: var(--on-dark); color: var(--espresso); border-color: var(--on-dark); }
.btn-light:hover { background: #fff; }
.btn-ghost-light { background: transparent; color: var(--on-dark); border-color: rgba(246,239,232,.5); }
.btn-ghost-light:hover { border-color: var(--on-dark); background: rgba(246,239,232,.08); }
.btn-sm { height: 44px; min-width: 0; padding: 0 20px; font-size: 12px; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.link { font-weight: 600; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; color: var(--espresso); border-bottom: 1px solid var(--line-strong); padding-bottom: 3px; transition: border-color .2s; }
.link:hover { border-color: var(--espresso); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,248,244,.97); border-bottom: 1px solid var(--line); }
.hdr { display: flex; align-items: center; justify-content: space-between; height: var(--header); gap: 24px; }
.logo { display: block; flex: none; }
.logo img { height: 38px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: 14px; font-weight: 500; letter-spacing: .04em; text-decoration: none; color: var(--ink); padding: 6px 0; border-bottom: 1px solid transparent; }
.nav a:hover { border-color: var(--line-strong); }
.nav a[aria-current="page"] { border-color: var(--terra); }
.hdr-cta { display: flex; align-items: center; gap: 20px; }
.hdr-phone { font-size: 14px; font-weight: 600; text-decoration: none; color: var(--espresso); white-space: nowrap; }
.menu-btn { display: none; width: 48px; height: 48px; border: 1px solid var(--line-strong); background: transparent; border-radius: 2px; cursor: pointer; align-items: center; justify-content: center; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after { display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; content: ""; }
.menu-btn span::before { position: absolute; top: -6px; }
.menu-btn span::after { position: absolute; top: 6px; }

.mobile-menu { position: fixed; inset: 0; z-index: 60; background: var(--bg); display: flex; flex-direction: column; padding: 0 var(--pad) 24px; overflow-y: auto; }
.mobile-menu .hdr { flex: none; }
.mobile-menu nav { border-top: 1px solid var(--line); margin-top: 0; }
.mobile-menu nav a { display: flex; justify-content: space-between; align-items: center; font: 600 26px/1.2 var(--serif); letter-spacing: -.01em; text-decoration: none; padding: 18px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .mm-foot { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; }
.mobile-menu .mm-foot .btn { width: 100%; }
.close-btn { width: 48px; height: 48px; border: 1px solid var(--line-strong); background: transparent; font-size: 26px; line-height: 1; cursor: pointer; border-radius: 2px; color: var(--ink); }
body.menu-open { overflow: hidden; }

/* Mobile action bar */
.mbar { display: none; }

/* Hero */
.hero { border-bottom: 1px solid var(--line); overflow: hidden; }
html, body { overflow-x: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); min-height: min(760px, calc(100vh - var(--header))); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px 64px 72px 0; }
.hero-copy .lede { margin: 28px 0 40px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.hero-meta strong { color: var(--ink); font-weight: 600; }
.hero-img { position: relative; background: var(--blush); overflow: hidden; margin-right: calc(-1 * var(--pad)); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
@media (min-width: 1337px) { .hero-img { margin-right: calc((100vw - var(--max)) / -2); } }

/* Intro */
.intro .grid > .col-head { grid-column: 1 / span 5; }
.intro .grid > .col-body { grid-column: 7 / span 6; }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); margin-top: var(--s6); }
.pillars > div { padding: 32px 32px 0 0; }
.pillars > div + div { padding-left: 32px; border-left: 1px solid var(--line); }
.pillars .num { font: 600 13px/1 var(--sans); color: var(--terra-text); letter-spacing: .1em; margin-bottom: 16px; }
.pillars h3 { font-size: 1.35rem; margin-bottom: 10px; }
.pillars p { color: var(--muted); font-size: 16px; }

/* Section head */
.shead { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--gap); align-items: end; margin-bottom: var(--s5); }
.shead .lede { justify-self: end; }

/* Category tabs */
.cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.cats button { height: 40px; padding: 0 16px; border: 1px solid var(--line-strong); background: transparent; font: 500 14px/1 var(--sans); color: var(--ink); cursor: pointer; border-radius: 2px; }
.cats button[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Service cells */
.svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.svc { display: flex; flex-direction: column; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); min-height: 300px; transition: background-color .2s ease; }
.bg-paper .svc { background: var(--paper); }
.svc:hover { background: #fff; }
.svc .cat { font: 600 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--terra-text); margin-bottom: 20px; }
.svc h3 { font-size: 1.5rem; line-height: 1.15; }
.svc h3 a { text-decoration: none; }
.svc .sub { font-size: 14px; color: var(--muted); margin-top: 6px; }
.svc p.d { color: var(--muted); font-size: 16px; margin: 16px 0 28px; }
.svc .row { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.svc .row a { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: var(--espresso); }
.svc .row a.book { color: var(--terra-text); }
.svc .row a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Category blocks on services page */
.catblock { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: var(--gap); padding: var(--s6) 0; border-top: 1px solid var(--line); }
.catblock:first-of-type { border-top: 0; padding-top: 0; }
.catblock .side { padding-right: 32px; }
.catblock .side h2 { font-size: clamp(1.8rem, 2.6vw, 2.3rem); margin-bottom: 14px; }
.catblock .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.catblock .side .sticky { position: sticky; top: calc(var(--header) + 32px); }

/* Split feature */
.split { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: 0; align-items: stretch; }
.split .media { position: relative; overflow: hidden; background: var(--sand); min-height: 520px; }
.split .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split .copy { padding: 72px 0 72px 72px; display: flex; flex-direction: column; justify-content: center; }
.split.rev .copy { padding: 72px 72px 72px 0; order: -1; }
.split .copy .h2 { margin-bottom: 24px; }
.split .copy .actions { margin-top: 36px; }
.cred { margin-top: 32px; border-top: 1px solid var(--line); }
.cred li { display: grid; grid-template-columns: 28px minmax(0, 1fr); padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.cred li::before { content: ""; width: 8px; height: 8px; background: var(--terra); margin-top: 9px; }

/* Steps (dark) */
.dark { background: var(--espresso); color: var(--on-dark); }
.dark h1, .dark h2, .dark h3 { color: var(--on-dark); }
.dark .eyebrow { color: #e7a58c; }
.dark .lede, .dark .muted { color: var(--on-dark-muted); }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(246,239,232,.22); }
.steps li { padding: 32px 28px 0 0; }
.steps li + li { padding-left: 28px; border-left: 1px solid rgba(246,239,232,.22); }
.steps .n { font: 600 44px/1 var(--serif); color: #e7a58c; margin-bottom: 28px; font-variant-numeric: tabular-nums; }
.steps h3 { font-size: 1.35rem; margin-bottom: 12px; }
.steps p { color: var(--on-dark-muted); font-size: 16px; }
.light-steps { border-top-color: var(--line); }
.light-steps li + li { border-left-color: var(--line); }
.light-steps .n { color: var(--terra); }
.light-steps p { color: var(--muted); }

/* Page header */
.phead { padding: 72px 0 56px; border-bottom: 1px solid var(--line); }
.phead .grid > div:first-child { grid-column: 1 / span 8; }
.phead .grid > div:last-child { grid-column: 9 / span 4; align-self: end; }
.phead .h1 { margin-bottom: 20px; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 8px; opacity: .5; }

/* Treatment detail */
.tx-top { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: var(--gap); padding: 64px 0 56px; border-bottom: 1px solid var(--line); }
.tx-top .h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.tx-top .sub { font: 500 1.1rem/1.4 var(--sans); color: var(--terra-text); margin-top: 14px; }
.tx-top .lede { margin-top: 24px; }
.facts { border: 1px solid var(--line); background: #fff; align-self: end; }
.facts dl { margin: 0; }
.facts dl > div { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 16px; padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: 15px; }
.facts dt { font: 600 11px/1.6 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 0; }
.facts .fa { padding: 20px 22px; display: grid; gap: 10px; }
.facts .fa .btn { width: 100%; min-width: 0; }
.tx-body { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: var(--gap); padding: 64px 0 var(--section); }
.toc { position: sticky; top: calc(var(--header) + 32px); align-self: start; font-size: 14px; }
.toc a { display: block; text-decoration: none; color: var(--muted); padding: 8px 0 8px 14px; border-left: 1px solid var(--line); }
.toc a:hover { color: var(--ink); border-color: var(--terra); }
.tx-sec { padding: 0 0 48px; margin-bottom: 48px; border-bottom: 1px solid var(--line); max-width: 780px; }
.tx-sec:last-child { border-bottom: 0; margin-bottom: 0; }
.tx-sec h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); margin-bottom: 20px; }
.tx-sec p { font-size: 17px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { border: 1px solid var(--line-strong); padding: 8px 14px; font-size: 15px; background: #fff; }
.ticks li { position: relative; padding: 12px 0 12px 28px; border-bottom: 1px solid var(--line); }
.ticks li:first-child { border-top: 1px solid var(--line); }
.ticks li::before { content: ""; position: absolute; left: 2px; top: 22px; width: 12px; height: 1.5px; background: var(--terra); }
.kv { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.kv > div { padding: 20px 20px 20px 0; border-bottom: 1px solid var(--line); }
.kv > div:nth-child(2n) { padding-left: 20px; border-left: 1px solid var(--line); }
.kv .k { font: 600 11px/1.4 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.cta-band { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--gap); align-items: center; padding: 56px 0; }
.cta-band .actions { justify-content: flex-end; }

/* Sticky treatment CTA */
.stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: var(--ink); color: #fff; transform: translateY(100%); transition: transform .25s ease; }
.stickybar.show { transform: none; }
.stickybar .in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.stickybar strong { font: 600 18px/1.2 var(--serif); }

/* Quote */
.philosophy { text-align: left; }
.philosophy blockquote { margin: 0; font: 600 clamp(1.7rem, 3.2vw, 2.7rem)/1.18 var(--serif); letter-spacing: -.015em; max-width: 22ch; }
.philosophy .by { margin-top: 28px; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: calc(var(--gap) * 3); }
.cblock { border-top: 1px solid var(--line); }
.cblock > div { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cblock .k { font: 600 11px/1.8 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.cblock a { text-decoration: none; font-weight: 600; color: var(--espresso); }
.cblock a:hover { text-decoration: underline; }
.hours { display: grid; grid-template-columns: auto 1fr; column-gap: 24px; row-gap: 4px; font-size: 15px; font-variant-numeric: tabular-nums; }
.hours dt { color: var(--muted); }
.hours dd { margin: 0; }
.map { position: relative; border: 1px solid var(--line); background: var(--sand); aspect-ratio: 16 / 9; overflow: hidden; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.6) contrast(1.02); transition: filter .3s; }
.map:hover iframe { filter: none; }
.map-foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 16px 0; font-size: 15px; }

/* Forms */
.form { display: grid; gap: 20px; }
.form .two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field label { display: block; font: 600 12px/1.4 var(--sans); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; font: 400 16px/1.4 var(--sans); color: var(--ink); background: #fff; border: 1px solid var(--line-strong); border-radius: 2px; padding: 14px 16px; min-height: 52px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--espresso); box-shadow: 0 0 0 3px rgba(196,95,63,.15); }
.field [aria-invalid="true"] { border-color: #a3282a; }
.field .err { color: #a3282a; font-size: 14px; margin-top: 6px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { padding: 24px; border: 1px solid var(--line); background: #fff; }
.form-status h3 { margin-bottom: 10px; }
.form-status .actions { margin-top: 20px; }
.consent { font-size: 14px; color: var(--muted); }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; padding: 22px 0; font: 600 1.2rem/1.3 var(--serif); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 400 24px/1 var(--sans); color: var(--terra); }
.faq details[open] summary::after { content: "\2212"; }
.faq .a { padding: 0 0 24px; color: var(--muted); max-width: 46em; }

/* Closing CTA */
.closing { text-align: left; }
.closing .grid > div:first-child { grid-column: 1 / span 7; }
.closing .grid > div:last-child { grid-column: 9 / span 4; align-self: end; display: grid; gap: 12px; }
.closing .grid > div:last-child .btn { width: 100%; }

/* Footer */
.site-footer { background: var(--ink); color: var(--on-dark-muted); font-size: 15px; }
.site-footer a { text-decoration: none; color: var(--on-dark); }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ft-top { display: grid; grid-template-columns: minmax(0, 3.4fr) minmax(0, 2fr) minmax(0, 2.2fr) minmax(0, 1.8fr) minmax(0, 2.8fr); gap: var(--gap); padding: 80px 0 56px; }
.ft-brand .name { font: 600 28px/1.1 var(--serif); color: var(--on-dark); letter-spacing: -.01em; }
.ft-brand p { margin: 16px 0 28px; max-width: 30ch; }
.ft-top h2 { font: 600 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 20px; }
.ft-top li { margin-bottom: 10px; }
.ft-top .hours dt { color: var(--on-dark-muted); }
.ft-top .hours dd { color: var(--on-dark); }
.ft-bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 24px 0 32px; border-top: 1px solid rgba(246,239,232,.16); font-size: 13px; }
.ft-bot nav { display: flex; gap: 24px; }

/* Legal */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }

/* Motion */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }
.no-js .rv { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* Tablet */
@media (max-width: 1100px) {
  .nav { gap: 22px; }
  .hdr-phone { display: none; }
  .ft-top { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  :root { --header: 68px; }
  .nav, .hdr-cta .btn { display: none; }
  .menu-btn { display: inline-flex; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .hero-copy { padding: 56px 0 48px; }
  .hero-img { margin: 0 calc(-1 * var(--pad)); aspect-ratio: 4 / 3; }
  .hero-img img { object-position: 60% 25%; }
  .intro .grid > .col-head, .intro .grid > .col-body { grid-column: 1 / -1; }
  .intro .grid > .col-body { margin-top: 28px; }
  .shead { grid-template-columns: minmax(0, 1fr); }
  .shead .lede { justify-self: start; }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catblock { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .catblock .side { padding-right: 0; }
  .split { grid-template-columns: minmax(0, 1fr); }
  .split .media { min-height: 0; aspect-ratio: 4 / 3; }
  .split .copy, .split.rev .copy { padding: 48px 0 0; order: 0; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps li:nth-child(3) { padding-left: 0; border-left: 0; }
  .steps li { padding-bottom: 32px; }
  .phead .grid > div:first-child, .phead .grid > div:last-child { grid-column: 1 / -1; }
  .phead .grid > div:last-child { margin-top: 24px; }
  .tx-top { grid-template-columns: minmax(0, 1fr); }
  .tx-body { grid-template-columns: minmax(0, 1fr); }
  .toc { display: none; }
  .cta-band { grid-template-columns: minmax(0, 1fr); }
  .cta-band .actions { justify-content: flex-start; }
  .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .closing .grid > div:first-child, .closing .grid > div:last-child { grid-column: 1 / -1; }
  .closing .grid > div:last-child { margin-top: 32px; }
  .mbar { display: grid; grid-template-columns: 1fr 2fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: var(--bg); border-top: 1px solid var(--line); padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
  .mbar .btn { min-width: 0; height: 50px; padding: 0 12px; }
  body { padding-bottom: 72px; }
  .stickybar { display: none; }
}

/* Phone */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .h1 { font-size: clamp(2.35rem, 10.5vw, 3rem); line-height: 1.04; }
  .h2 { font-size: clamp(1.85rem, 8vw, 2.3rem); }
  .actions .btn { width: 100%; min-width: 0; }
  .pillars { grid-template-columns: minmax(0, 1fr); }
  .pillars > div, .pillars > div + div { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .svc-grid, .catblock .svc-grid { grid-template-columns: minmax(0, 1fr); }
  .svc { padding: 28px 22px; min-height: 0; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .steps li, .steps li + li { padding: 28px 0; border-left: 0; border-bottom: 1px solid rgba(246,239,232,.22); }
  .light-steps li, .light-steps li + li { border-bottom-color: var(--line); }
  .steps .n { font-size: 34px; margin-bottom: 16px; }
  .kv { grid-template-columns: minmax(0, 1fr); }
  .kv > div:nth-child(2n) { padding-left: 0; border-left: 0; }
  .form .two { grid-template-columns: minmax(0, 1fr); }
  .cblock > div { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .facts dl > div { grid-template-columns: 96px minmax(0, 1fr); padding: 14px 18px; }
  .ft-top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); padding-top: 56px; }
  .ft-top > div:last-child { grid-column: 1 / -1; }
  .phead { padding: 48px 0 40px; }
  .tx-top { padding: 40px 0; }
  .section { padding: 64px 0; }
  .logo img { height: 32px; }
}

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }


.site-footer .btn-light, .site-footer .btn-light:hover { color: var(--espresso); text-decoration: none; }
.hours dd { white-space: nowrap; }

.lede-404 { margin: 20px 0 32px; }
@media (max-width: 960px) { .grid > * { grid-column: 1 / -1; } }

