/* ==========================================================================
   site.css, Bright Beginnings. Direction: Clean Clinical.
   Tokens in :root; components below only read tokens. No hex below :root.
   ========================================================================== */

@font-face { font-family: 'Manrope'; font-weight: 400; font-display: swap;
  src: url('/fonts/manrope-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-weight: 500; font-display: swap;
  src: url('/fonts/manrope-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-weight: 700; font-display: swap;
  src: url('/fonts/manrope-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-weight: 800; font-display: swap;
  src: url('/fonts/manrope-latin-800-normal.woff2') format('woff2'); }

:root {
  /* Brand, sampled from the logo */
  --brand-teal:       #1DAECD;   /* logo line art; rules, icons, marks only (fails AA as text on white) */
  --brand-peach:      #FB924F;   /* logo wordmark; the one accent, CTA buttons */
  --brand-peach-deep: #D9691F;   /* peach dark enough to read as text on white */
  --brand-ink:        #0F5F73;   /* deep teal: headings, links, nav */
  --brand-ink-deep:   #0B4756;   /* hover, dark bands */
  --brand-mist:       #E9F6F9;   /* tinted panels */
  --brand-mist-2:     #F5FBFC;   /* soft section ground */

  --ink:        var(--brand-ink);
  --text:       #1F2A2E;         /* body copy */
  --soft:       #566569;         /* secondary text */
  --accent:     var(--brand-peach);
  --accent-ink: #1F2A2E;         /* text on the peach button */
  --link:       var(--brand-ink);
  --link-hover: var(--brand-ink-deep);
  --paper:      #FFFFFF;
  --panel:      var(--brand-mist);
  --panel-soft: var(--brand-mist-2);
  --rule:       #D9E6EA;
  --band:       var(--brand-ink-deep);
  --band-text:  #CFE7EE;
  --band-body:  #E6F3F7;
  --star:       #E8A317;
  --focus:      var(--brand-peach-deep);
  --warn-bg:    #FFF6EE;
  --warn-rule:  #F6D9C2;

  --display: 'Manrope', system-ui, -apple-system, "Segoe UI", sans-serif;
  --body:    'Manrope', system-ui, -apple-system, "Segoe UI", sans-serif;
  --body-size: 17px;
  --body-lh: 1.65;

  --h-weight: 800;
  --h1-size: clamp(2rem, 1.4rem + 2.2vw, 3rem);
  --h2-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.1rem);
  --h3-size: 1.25rem;
  --h4-size: 1.08rem;
  --h-ls: -0.015em;

  --wrap: 1140px;
  --measure: none;       /* Mark, 9/22/26: prose fills the wrap; no reading-measure cap on any site */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(15, 95, 115, .10);
  --header-h: 208px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-anchor: none; -webkit-text-size-adjust: 100%; }
body { font-family: var(--body); background: var(--paper); color: var(--text);
  font-size: var(--body-size); line-height: var(--body-lh); -webkit-font-smoothing: antialiased; }
img, svg, picture { max-width: 100%; }
img { height: auto; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: var(--h-weight); color: var(--ink);
  letter-spacing: var(--h-ls); line-height: 1.18; margin: 2rem 0 1rem; text-wrap: balance; }
h1 { font-size: var(--h1-size); margin-top: 0; }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); line-height: 1.3; }
h4 { font-size: var(--h4-size); line-height: 1.35; }
section > .wrap > :first-child, .prose > :first-child { margin-top: 0; }

p { margin: 0 0 1.1rem; max-width: var(--measure); }
p.lede { font-size: 1.15rem; color: var(--soft); line-height: 1.55; }
a { color: var(--link); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--link-hover); }
ul, ol { margin: 0 0 1.1rem 1.25rem; max-width: var(--measure); }
li { margin-bottom: .45rem; }
strong { font-weight: 700; color: var(--ink); }
.kicker { font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-peach-deep); margin-bottom: .6rem; }
.prose { max-width: var(--measure); }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.note { font-size: .92rem; color: var(--soft); }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 18px; z-index: 300; font-weight: 700; }
.skip:focus { left: 0; }

/* ---------- Header: sticky, compresses on scroll ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper);
  border-bottom: 1px solid var(--rule); }
.masthead { display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr auto;
  column-gap: 32px; row-gap: 10px; align-items: center; min-height: var(--header-h); padding: 12px 0;
  transition: padding .2s ease; }
.site-header.compact .masthead { min-height: 0; padding: 6px 0; row-gap: 4px; }
.logo { grid-column: 1; grid-row: 1 / span 2; display: flex; align-items: center; align-self: center; line-height: 1; }
.logo-img { display: block; height: 176px; width: auto; transition: height .2s ease; }
.site-header.compact .logo-img { height: 84px; }
.masthead-actions { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.site-header.compact .masthead-actions { flex-direction: row; align-items: center; justify-content: flex-end; gap: 22px; }
.logo-words { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; text-align: right; }
.logo-words b { font-family: var(--display); font-weight: 800; font-size: 1.55rem; color: var(--brand-ink); letter-spacing: -.01em; line-height: 1; }
.logo-words i { font-style: normal; font-weight: 600; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-peach-deep); }
.site-header.compact .logo-words b { font-size: 1.25rem; }
.site-header nav { grid-column: 2; grid-row: 2; display: flex; align-items: center; gap: 2px; justify-content: flex-end; flex-wrap: nowrap; }
.site-header nav a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: .95rem;
  padding: 8px 12px; border-radius: 999px; white-space: nowrap; }
.site-header nav a:hover { background: var(--panel); }
.site-header nav a[aria-current="page"] { background: var(--panel); color: var(--brand-ink-deep); }
.site-header nav a.nav-phone, .site-header nav a.nav-book { display: none; }
.masthead-actions .phone-top { font-weight: 800; font-size: 1.15rem; color: var(--brand-ink); text-decoration: none; white-space: nowrap; }
.masthead-actions .phone-top:hover { color: var(--brand-peach-deep); }
/* Dropdown: hover, keyboard focus, or click (JS toggles .open) */
.nav-sub { position: relative; }
.nav-sub-btn { font: inherit; font-weight: 700; font-size: .95rem; color: var(--ink); background: none; border: 0;
  padding: 8px 12px; border-radius: 999px; cursor: pointer; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.nav-sub-btn::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .15s ease; }
.nav-sub-btn:hover, .nav-sub.is-here .nav-sub-btn { background: var(--panel); }
.nav-sub.is-here .nav-sub-btn { color: var(--brand-ink-deep); }
.nav-sub-panel { display: none; position: absolute; top: 100%; right: 0; min-width: 190px; background: var(--paper);
  border: 1px solid var(--rule); border-radius: 14px; box-shadow: 0 14px 34px rgba(11, 71, 86, .14); padding: 8px; z-index: 110; }
.nav-sub-panel a { display: block; border-radius: 10px; padding: 10px 12px; }
.nav-sub:hover .nav-sub-panel, .nav-sub:focus-within .nav-sub-panel, .nav-sub.open .nav-sub-panel { display: block; }
.nav-sub:hover .nav-sub-btn::after, .nav-sub.open .nav-sub-btn::after { transform: rotate(225deg) translateY(-2px); }
.nav-toggle { display: none; }
.nav-book { display: none; }

/* ---------- Buttons: an anchor, so every link-colour rule is scoped :not(.btn) ---------- */
.btn { display: inline-block; background: var(--ink); color: #fff; padding: 14px 24px;
  text-decoration: none; font-family: var(--display); font-weight: 800; font-size: .98rem;
  line-height: 1.2; letter-spacing: .01em; border-radius: 999px; border: 0; cursor: pointer;
  text-align: center; transition: background .15s ease, transform .15s ease, box-shadow .15s ease; }
.btn:hover { background: var(--brand-ink-deep); color: #fff; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { background: var(--brand-peach-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 1.4rem; }

/* ---------- Sections ---------- */
section { padding: 60px 0; }
section.tint { background: var(--panel-soft); }
section.mist { background: var(--panel); }
section.final { background: var(--band); color: #fff; }
section.final h2 { color: #fff; }
section.final .lede { color: var(--band-body); }
section.final a:not(.btn) { color: var(--band-text); }
section.final .btn-ghost { color: #fff; box-shadow: inset 0 0 0 2px #fff; }
section.final .btn-ghost:hover { background: #fff; color: var(--ink); }
.aside-note { font-size: .9rem; color: var(--band-text); margin-top: 16px; }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.two-col.flip > :first-child { order: 2; }
.two-col figure { margin: 0; }

/* ---------- Home hero ---------- */
.hero { padding: 56px 0 64px; background: linear-gradient(180deg, var(--panel) 0%, var(--paper) 100%); }
.hero .two-col { align-items: center; }
.hero h1 { margin-bottom: 1rem; }
.hero .lede { font-size: 1.2rem; color: var(--text); }
.hero-proof { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 1.6rem; padding: 0; list-style: none; }
.hero-proof li { font-size: .9rem; font-weight: 700; color: var(--ink); margin: 0; display: flex; align-items: center; gap: 8px; }
.hero-proof li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--brand-teal); flex: 0 0 auto; }
.hero-photo img { border-radius: var(--radius); box-shadow: var(--shadow); display: block; width: 100%; }
.hero-photo { position: relative; }
.hero-badge { position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap; bottom: 18px; background: var(--paper); border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: .86rem; font-weight: 700; color: var(--ink); box-shadow: var(--shadow); }

/* ---------- Interior hero ---------- */
.page-hero { background: var(--panel); padding: 44px 0 40px; }
.page-hero h1 { margin-bottom: .6rem; }
.page-hero .lede { color: var(--text); margin-bottom: 0; }
.crumbs { font-size: .84rem; color: var(--soft); margin-bottom: 14px; }
.crumbs a { color: var(--soft); text-decoration: none; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.crumbs .sep { opacity: .5; margin: 0 6px; }

/* ---------- Cards ---------- */
.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 1.6rem; }
.cards.family { gap: 24px; }
.cards.family figure { flex: 0 1 calc((100% - 24px) / 2); max-width: 420px; margin: 0; }
.cards > .card { flex: 0 1 calc((100% - 40px) / 3); min-width: 260px; max-width: calc((100% - 40px) / 3); }
@media (max-width: 900px) { .cards > .card { flex-basis: calc((100% - 20px) / 2); max-width: calc((100% - 20px) / 2); } }
@media (max-width: 600px) { .cards > .card { flex-basis: 100%; max-width: 100%; min-width: 0; } }
.card { border: 1px solid var(--rule); border-radius: var(--radius); padding: 26px 26px 24px; background: var(--paper); }
.card h3 { margin-top: 0; margin-bottom: .5rem; }
.card p { font-size: .98rem; margin-bottom: .8rem; }
.card-link { text-decoration: none; color: var(--text); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--brand-teal); color: var(--text); }
.card-link .more { margin-top: auto; font-weight: 800; color: var(--ink); font-size: .92rem; }
.card-link .more::after { content: " \2192"; }
.card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--panel); display: flex;
  align-items: center; justify-content: center; margin-bottom: 14px; color: var(--ink); }
.card-icon svg { width: 24px; height: 24px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 1.6rem; }
.step { position: relative; padding: 22px 22px 18px 22px; background: var(--paper); border-radius: var(--radius); border: 1px solid var(--rule); }
.step::before { counter-increment: step; content: counter(step); display: inline-flex; width: 36px; height: 36px;
  align-items: center; justify-content: center; border-radius: 50%; background: var(--ink); color: #fff;
  font-weight: 800; margin-bottom: 12px; }
.step h3 { margin: 0 0 .4rem; font-size: 1.1rem; }
.step p { font-size: .96rem; margin: 0; }

/* ---------- Condition page: at-a-glance aside ---------- */
.cond-top { align-items: start; grid-template-columns: 1.25fr .75fr; }
.glance { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: 26px; position: sticky; top: 96px; }
.glance dl { margin: 0 0 1.2rem; }
.glance dt { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--soft); font-weight: 800; margin-top: .8rem; }
.glance dd { margin: .15rem 0 0; color: var(--text); font-weight: 500; }
.glance .btn { width: 100%; }
.glance .note { margin: 12px 0 0; text-align: center; }
.glance .note a:not(.btn) { font-weight: 700; }
.prose figure.shot.right { width: 40%; margin-top: 0; }

/* ---------- Photo figures ---------- */
figure.shot { margin: 28px 0; }
figure.shot img { display: block; width: 100%; border-radius: var(--radius); }
figure.shot figcaption { font-size: .9rem; color: var(--soft); line-height: 1.5; margin-top: 10px;
  border-left: 3px solid var(--brand-teal); padding-left: 12px; max-width: var(--measure); }
figure.shot.right { float: right; width: 42%; margin: 6px 0 20px 32px; }
figure.portrait img { aspect-ratio: 3/4; object-fit: cover; }
figure.portrait { max-width: 440px; }

/* ---------- Panels, pull quotes, price table ---------- */
.panel { background: var(--panel); border-radius: var(--radius); padding: 24px 28px; margin: 24px 0; max-width: var(--measure); }
.panel > :last-child { margin-bottom: 0; }
.panel.warn { background: var(--warn-bg); border: 1px solid var(--warn-rule); }
.quote { border-left: 4px solid var(--brand-peach); padding: 6px 0 6px 20px; margin: 28px 0; max-width: var(--measure); }
.quote p { font-size: 1.15rem; color: var(--ink); font-weight: 500; margin-bottom: .5rem; }
.quote cite { font-style: normal; font-size: .9rem; color: var(--soft); }

table.prices { width: 100%; max-width: 760px; border-collapse: collapse; margin: 22px 0; }
table.prices th, table.prices td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--rule); vertical-align: top; }
table.prices thead th { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--soft); font-weight: 800; }
table.prices td.price { white-space: nowrap; font-weight: 800; color: var(--ink); }
table.prices td.desc { color: var(--soft); font-size: .95rem; }

/* ---------- Checklist ---------- */
ul.check { list-style: none; margin-left: 0; }
ul.check li { padding-left: 30px; position: relative; }
ul.check li::before { content: ""; position: absolute; left: 0; top: .42em; width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand-teal); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.4-4-4 1.4-1.4 2.6 2.6 5.6-5.6 1.4 1.4-7 7z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.4-4-4 1.4-1.4 2.6 2.6 5.6-5.6 1.4 1.4-7 7z'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ---------- Towns strip ---------- */
.towns { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 1rem 0 0; }
.towns li { background: var(--paper); border: 1px solid var(--rule); border-radius: 999px; padding: 8px 16px; font-weight: 700; color: var(--ink); font-size: .95rem; margin: 0; }

/* ---------- FAQ accordion (details/summary, no JS) ---------- */
.faqs { margin-top: 1rem; }
details.faq { border-top: 1px solid var(--rule); }
details.faq:last-child { border-bottom: 1px solid var(--rule); }
details.faq summary { list-style: none; cursor: pointer; padding: 18px 44px 18px 0; position: relative;
  font-weight: 800; color: var(--ink); font-size: 1.05rem; line-height: 1.35; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: ""; position: absolute; right: 8px; top: 24px; width: 10px; height: 10px;
  border-right: 2.5px solid var(--brand-peach-deep); border-bottom: 2.5px solid var(--brand-peach-deep);
  transform: rotate(45deg); transition: transform .2s ease; }
details.faq[open] summary::after { transform: rotate(225deg); top: 28px; }
details.faq summary:hover { color: var(--brand-ink-deep); }
.faq-a { padding: 0 0 18px; color: var(--text); }
.faq-a p { margin-bottom: .6rem; }

/* ---------- Star ratings and review cards ---------- */
.rate { display: inline-flex; align-items: center; gap: 8px; }
.stars { position: relative; display: inline-block; line-height: 0; white-space: nowrap; }
.stars .s-bg, .stars .s-fg { display: block; white-space: nowrap; }
.stars .s-fg { position: absolute; inset: 0 auto 0 0; overflow: hidden; }
.stars svg { width: 17px; height: 17px; display: inline-block; }
.stars .s-bg svg { fill: var(--rule); }
.stars .s-fg svg { fill: var(--star); }
.rate-text { font-size: .84rem; font-weight: 700; color: var(--soft); white-space: nowrap; }
.revs { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 26px; }
.rev { margin: 0; background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: 22px 24px;
  display: flex; flex-direction: column; }
.rev blockquote { margin: 12px 0 16px; }
.rev blockquote p { margin: 0; color: var(--text); font-size: .98rem; line-height: 1.6; }
.rev figcaption { margin-top: auto; border-top: 1px solid var(--rule); padding-top: 12px; }
.rev figcaption b { display: block; font-weight: 800; color: var(--ink); }
.rev figcaption span { font-size: .82rem; color: var(--soft); }
.rev-all { margin: 22px 0 0; font-weight: 700; }

/* ---------- Contact form ---------- */
.form-grid.inner { margin: 0; }
.form-error { background: #FFF1EA; border: 1px solid var(--brand-peach); color: #8A3E12; border-radius: var(--radius-sm); padding: 12px 16px; font-weight: 600; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 700; font-size: .92rem; color: var(--ink); margin-bottom: 6px; }
label .opt { font-weight: 500; color: var(--soft); }
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%; font: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm); background: var(--paper); color: var(--text); }
input:focus, select:focus, textarea:focus { border-color: var(--brand-teal); outline: none; box-shadow: 0 0 0 3px var(--panel); }
textarea { min-height: 150px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .88rem; color: var(--soft); margin-top: 10px; }
.contact-side { background: var(--panel); border-radius: var(--radius); padding: 28px; }
.contact-side p { margin-bottom: .8rem; }
.contact-side .big { font-size: 1.35rem; font-weight: 800; }
.contact-side a:not(.btn) { color: var(--ink); }

/* ---------- Blog ---------- */
.post-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 1.4rem; }
.post-card { border: 1px solid var(--rule); border-radius: var(--radius); padding: 24px; background: var(--paper); text-decoration: none; color: var(--text); display: block; }
.post-card:hover { box-shadow: var(--shadow); color: var(--text); }
.post-card h3 { margin: 0 0 .4rem; }
.post-card time { font-size: .82rem; color: var(--soft); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.post-meta { color: var(--soft); font-size: .9rem; margin-bottom: 1.5rem; }
.post-body { max-width: var(--measure); }
.post-body img { border-radius: var(--radius); }

/* ---------- Footer ---------- */
footer { background: var(--panel-soft); border-top: 1px solid var(--rule); padding: 48px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr 1fr; gap: 36px; }
.foot-brand .logo-img { height: 120px; }
.foot-words { align-items: flex-start; text-align: left; margin: 14px 0 10px; }
.foot-words b { font-size: 1.5rem; }
.foot-doctor { color: var(--soft); font-size: .95rem; }
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.foot-social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 50%; background: #fff; border: 1px solid var(--rule); color: var(--brand-ink-deep); }
.foot-social a:hover { background: var(--brand-ink-deep); color: #fff; border-color: var(--brand-ink-deep); }
.foot-social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.foot-h { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); margin: 0 0 14px; font-weight: 800; }
.foot-list { list-style: none; margin: 0; }
.foot-list li { margin-bottom: .5rem; }
.foot-list a, .foot-meta a:not(.btn) { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; }
.foot-list a:hover, .foot-meta a:not(.btn):hover { text-decoration: underline; }
.foot-meta p { margin-bottom: .5rem; font-size: .95rem; color: var(--soft); }
.foot-links { margin-top: 14px; }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .card-link:hover { transform: none; }
  .masthead, .logo-img { transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .site-header nav a { padding: 8px 8px; font-size: .88rem; }
  .logo-img { height: 150px; }
}
@media (max-width: 1100px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  /* Mobile header (Mark, 9/22/26): centred stack. Logo dominant, then the
     meet-and-greet button, then the phone, then the Menu toggle. */
  :root { --header-h: 0px; }
  .masthead { display: flex; flex-direction: column; flex-wrap: nowrap; align-items: center; gap: 8px; padding: 12px 0 8px; min-height: 0; }
  .site-header.compact .masthead { padding: 8px 0 6px; gap: 6px; }
  .logo { flex: 0 0 auto; order: 1; }
  .logo-img { height: 132px; }
  .site-header.compact .logo-img { height: 72px; }
  .site-header .logo-words { display: none; }
  .masthead-actions, .site-header.compact .masthead-actions { order: 2; flex-direction: column; align-items: center; gap: 6px; }
  .masthead-actions .btn { font-size: .82rem; padding: 8px 16px; }
  .masthead-actions .phone-top { font-size: .95rem; order: 2; }
  .masthead-actions .btn { order: 1; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 10px; background: none; border: 0;
    color: var(--ink); font-family: var(--display); font-weight: 800; font-size: 1rem; padding: 8px 4px 4px;
    order: 3; cursor: pointer; }
  .bars { display: inline-block; width: 22px; height: 2px; background: var(--ink); position: relative; }
  .bars::before, .bars::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); }
  .bars::before { top: -7px; } .bars::after { top: 7px; }
  .site-header nav { display: none; order: 4; width: 100%; flex-direction: column; align-items: stretch; gap: 0;
    flex-wrap: nowrap; justify-content: flex-start; padding: 6px 0 12px; border-top: 1px solid var(--rule);
    max-height: calc(100dvh - 260px); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
  .site-header.open nav { display: flex; }
  .site-header nav a { padding: 13px 6px; border-radius: 0; border-bottom: 1px solid var(--rule); font-size: 1.02rem; }
  .site-header nav a:last-child { border-bottom: 0; }
  .nav-sub { position: static; }
  .nav-sub-btn { display: block; width: 100%; text-align: left; padding: 13px 6px; border-radius: 0; border-bottom: 1px solid var(--rule);
    font-size: 1.02rem; color: var(--soft); cursor: default; }
  .nav-sub-btn::after { display: none; }
  .nav-sub-btn:hover, .nav-sub.is-here .nav-sub-btn { background: none; }
  .nav-sub-panel, .nav-sub:hover .nav-sub-panel, .nav-sub.open .nav-sub-panel { display: block; position: static; min-width: 0; background: none;
    border: 0; border-radius: 0; box-shadow: none; padding: 0; }
  .site-header nav .nav-sub-panel a { padding-left: 24px; border-radius: 0; }
  .site-header nav .nav-sub-panel a:last-child { border-bottom: 1px solid var(--rule); }
  .two-col, .two-col.flip, .cond-top { grid-template-columns: 1fr; gap: 28px; }
  .glance { position: static; }
  .two-col.flip > :first-child { order: 0; }
  figure.shot.right { float: none; width: 100%; margin: 24px 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  section { padding: 48px 0; }
  .hero { padding: 36px 0 44px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cta-row .btn { width: 100%; }
}
@media print {
  .site-header, .nav-toggle, .skip, section.final { display: none; }
  body { font-size: 12pt; }
}

/* ---- Google review carousel (home) ---- */
.rc-band { background: var(--band); color: #fff; padding: 64px 0 60px; }
.rc-band h2 { color: #fff; text-align: center; }
.rc-band .lede { color: var(--band-body); text-align: center; margin-left: auto; margin-right: auto; }
.rc-carousel { position: relative; margin-top: 44px; }
.rc-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 30px 4px 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.rc-track::-webkit-scrollbar { display: none; }
.rc-track:focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; }
.rc { flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start; position: relative; background: #fff; color: var(--text);
  border-radius: 14px; padding: 46px 24px 22px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.rc-ava { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); width: 60px; height: 60px; border-radius: 50%;
  color: #fff; font-weight: 800; font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.rc-g { position: absolute; right: -8px; bottom: -4px; width: 24px; height: 24px; background: #fff; border-radius: 50%; padding: 3px; box-sizing: border-box; box-shadow: 0 1px 4px rgba(0,0,0,.25); }
.rc-name { margin: 0; font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.rc-when { margin: 2px 0 8px; font-size: .82rem; color: var(--soft); min-height: 1em; }
.rc-stars { margin: 0 0 12px; display: flex; justify-content: center; gap: 2px; }
.rc-stars svg { width: 20px; height: 20px; fill: #F5B400; }
.rc-text { margin: 0; font-size: .96rem; line-height: 1.6; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.rc.is-open .rc-text { display: block; -webkit-line-clamp: unset; }
.rc-more { margin-top: 10px; background: none; border: 0; padding: 0; font: inherit; font-size: .9rem; font-weight: 700; color: var(--ink); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.rc-more:hover { color: var(--brand); }
.rc.no-more .rc-more { display: none; }
.rc-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: #fff; color: var(--ink); font-size: 2rem; line-height: 1; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,.25); display: flex; align-items: center; justify-content: center; padding-bottom: 4px; }
.rc-nav:hover { background: var(--brand); color: #fff; }
.rc-nav[disabled] { opacity: .35; cursor: default; }
.rc-prev { left: -22px; } .rc-next { right: -22px; }
.rc-cta { margin: 34px 0 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.rc-cta .btn { background: var(--accent); color: var(--accent-ink); }
.rc-cta .btn:hover { background: #fff; color: var(--ink); }
.rc-all { color: var(--band-text); font-weight: 700; }
@media (max-width: 1240px) { .rc-prev { left: 4px; } .rc-next { right: 4px; } }
@media (max-width: 900px) { .rc { flex-basis: calc((100% - 22px) / 2); } }
@media (max-width: 600px) { .rc { flex-basis: 100%; } .rc-band { padding: 52px 0 48px; } }
@media (max-width: 700px) {
  .rc-carousel { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
  .rc-track { width: 100%; order: 1; padding-left: 0; padding-right: 0; }
  .rc-nav { position: static; transform: none; order: 2; }
}
