/*
  Aesthetx Haus shared theme. Loaded on every page by site/snippets/head/ah-theme.html.
  Every rule is scoped under .ah-page (the class on each page's <main>), so it can never
  touch the nav, footer, homepage (#ah-home keeps its own inline CSS) or blog.
  Not content-hashed: never give /assets/css/ an immutable cache rule in engine/lib/vercel_config.py.
  Tokens mirror site/pages/home.html. Change a token here and in home.html together.
*/
.ah-page {
  --rouge: #6F2827; --rouge-deep: #5A1F1E; --ink: #3A3633; --text: #665D55; --muted: #776E67;
  --sand: #D9B797; --stone: #B3ACA6; --cream: #F6F2E9; --line: #EAE6E7; --white: #FFFFFF; --night: #1F1A18;
  --wrap: 1280px; --gutter: clamp(20px, 5vw, 64px); --section: clamp(80px, 10vw, 152px);
  --ease: cubic-bezier(.2,.7,.2,1);
  font-family: 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1.0625rem; line-height: 1.7; color: var(--text); background: var(--white);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  display: block; overflow-x: clip;
}
.ah-page *, .ah-page *::before, .ah-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.ah-page img, .ah-page video { display: block; max-width: 100%; }
.ah-page a { color: inherit; text-decoration: none; }
.ah-page button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.ah-page :focus-visible { outline: 2px solid var(--rouge); outline-offset: 4px; }
.ah-page h1, .ah-page h2, .ah-page h3, .ah-page h4 { font-weight: 500; color: var(--ink); letter-spacing: -.02em; text-wrap: balance; }
.ah-page p { text-wrap: pretty; }
.ah-page strong { font-weight: 600; color: var(--ink); }

/* ---------- Layout ---------- */
.ah-page .ah-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.ah-page .ah-narrow { max-width: 820px; }
.ah-page .ah-section { padding: var(--section) 0; position: relative; }
.ah-page .ah-section.ah-tight { padding: clamp(56px, 7vw, 96px) 0; }
.ah-page .ah-cream { background: var(--cream); }
.ah-page .ah-night { background: var(--night); color: rgba(246,242,233,.84); }
.ah-page .ah-night h2, .ah-page .ah-night h3 { color: var(--cream); }
.ah-page .ah-center { text-align: center; }
.ah-page .ah-center .ah-eyebrow::after { content: ""; width: 32px; height: 1px; background: currentColor; opacity: .7; }
.ah-page .ah-arch { border-radius: 999px 999px 0 0; overflow: hidden; }

/* ---------- Type ---------- */
.ah-page .ah-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-size: .75rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--rouge); }
.ah-page .ah-eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; opacity: .7; }
.ah-page .ah-h1 { font-size: clamp(2.375rem, 5vw, 4.5rem); line-height: 1.04; letter-spacing: -.025em; }
.ah-page .ah-h2 { font-size: clamp(1.875rem, 3.6vw, 3.25rem); line-height: 1.08; }
.ah-page .ah-h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.25; }
.ah-page .ah-lede { font-size: clamp(1.125rem, 1.4vw, 1.3125rem); line-height: 1.6; color: var(--ink); font-weight: 300; }
.ah-page .ah-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.ah-page .ah-head .ah-h2 { margin-top: 22px; }
.ah-page .ah-head p { margin-top: 20px; }
.ah-page .ah-center.ah-head, .ah-page .ah-head.ah-center { margin-left: auto; margin-right: auto; }
.ah-page .ah-prose > * + * { margin-top: 20px; }
.ah-page .ah-prose h2 { margin-top: 48px; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.2; }
.ah-page .ah-prose h3 { margin-top: 32px; font-size: 1.25rem; }
.ah-page .ah-prose ul, .ah-page .ah-prose ol { padding-left: 1.25em; display: grid; gap: 8px; }
.ah-page .ah-prose a { color: var(--rouge); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.ah-page .ah-prose a:hover { color: var(--rouge-deep); }

/* ---------- Buttons ---------- */
.ah-page .ah-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 30px;
  font-size: .75rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap;
  border: 1px solid transparent; transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.ah-page .ah-btn svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.ah-page .ah-btn:hover svg { transform: translateX(4px); }
.ah-page .ah-btn-primary { background: var(--rouge); color: var(--cream); border-color: var(--rouge); }
.ah-page .ah-btn-primary:hover { background: var(--rouge-deep); border-color: var(--rouge-deep); }
.ah-page .ah-on-dark.ah-btn-primary { border-color: rgba(246,242,233,.4); }
.ah-page .ah-btn-ghost { color: var(--ink); border-color: rgba(58,54,51,.35); }
.ah-page .ah-btn-ghost:hover { border-color: var(--ink); }
.ah-page .ah-btn-ghost-light { color: var(--cream); border-color: rgba(246,242,233,.55); }
.ah-page .ah-btn-ghost-light:hover { background: rgba(246,242,233,.12); border-color: var(--cream); }
.ah-page .ah-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.ah-page .ah-center .ah-btns { justify-content: center; }
.ah-page .ah-textlink {
  display: inline-flex; align-items: center; gap: 12px; padding-bottom: 6px;
  font-size: .75rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--rouge);
  background: linear-gradient(currentColor, currentColor) left bottom / 100% 1px no-repeat;
}
.ah-page .ah-textlink svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.ah-page .ah-textlink:hover svg { transform: translateX(4px); }

/* ---------- Breadcrumbs ---------- */
.ah-page .ah-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.ah-page .ah-crumbs li { display: inline-flex; align-items: center; gap: 10px; }
.ah-page .ah-crumbs li + li::before { content: ""; width: 14px; height: 1px; background: currentColor; opacity: .6; }
.ah-page .ah-crumbs a:hover { color: var(--rouge); }
.ah-page .ah-crumbs [aria-current] { color: var(--rouge); }

/* ---------- Page hero ---------- */
.ah-page .ah-phero { background: var(--cream); padding: clamp(56px, 8vw, 120px) 0 clamp(64px, 8vw, 120px); position: relative; overflow: hidden; }
.ah-page .ah-phero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 104px); align-items: center; }
.ah-page .ah-phero .ah-crumbs { margin-bottom: clamp(28px, 4vw, 56px); }
.ah-page .ah-phero .ah-h1 { margin-top: 24px; }
.ah-page .ah-phero-intro { margin-top: 28px; max-width: 58ch; }
.ah-page .ah-phero-meta { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(58,54,51,.14); display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.ah-page .ah-phero-meta li { padding: 8px 14px; border: 1px solid rgba(58,54,51,.2); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.ah-page .ah-phero-media { position: relative; }
.ah-page .ah-phero-media .ah-arch { aspect-ratio: 4 / 5; background: var(--white); position: relative; z-index: 1; }
.ah-page .ah-phero-media img { width: 100%; height: 100%; object-fit: cover; }
.ah-page .ah-phero-media::before { content: ""; position: absolute; inset: 24px -24px -24px 24px; border: 1px solid rgba(111,40,39,.28); border-radius: 999px 999px 0 0; }
.ah-page .ah-phero-media.is-square .ah-arch { border-radius: 0; aspect-ratio: 1 / 1; }
.ah-page .ah-phero-media.is-square::before { border-radius: 0; }
.ah-page .ah-phero.is-compact .ah-phero-grid { grid-template-columns: 1fr; }
.ah-page .ah-phero.is-compact .ah-h1 { max-width: 20ch; }

/* ---------- Split (heading/body or media/body) ---------- */
.ah-page .ah-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
.ah-page .ah-split.is-center { align-items: center; }
.ah-page .ah-split .ah-h2 { margin-top: 22px; }
.ah-page .ah-split-media { position: relative; }
.ah-page .ah-split-media .ah-arch, .ah-page .ah-split-media .ah-frame { aspect-ratio: 4 / 5; overflow: hidden; position: relative; z-index: 1; background: var(--white); }
.ah-page .ah-split-media .ah-frame { aspect-ratio: 1 / 1; }
.ah-page .ah-split-media img { width: 100%; height: 100%; object-fit: cover; }
.ah-page .ah-split-media figcaption { margin-top: 18px; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.ah-page .ah-split.is-reverse > :first-child { order: 2; }

/* ---------- Treatment cards ---------- */
.ah-page .ah-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); list-style: none; }
.ah-page .ah-cards.is-two { grid-template-columns: repeat(2, 1fr); }
.ah-page .ah-card { background: var(--white); }
.ah-page .ah-cream .ah-card { background: var(--cream); }
.ah-page .ah-card > a, .ah-page .ah-card > div { display: flex; flex-direction: column; gap: 14px; height: 100%; padding: clamp(28px, 3vw, 44px); transition: background-color .4s var(--ease); }
.ah-page .ah-card > a:hover { background: var(--cream); }
.ah-page .ah-cream .ah-card > a:hover { background: var(--white); }
.ah-page .ah-card .ah-card-kicker { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.ah-page .ah-card h3 { font-size: clamp(1.3125rem, 1.8vw, 1.625rem); line-height: 1.2; transition: color .3s var(--ease); }
.ah-page .ah-card > a:hover h3 { color: var(--rouge); }
.ah-page .ah-card p { font-size: .96875rem; line-height: 1.65; }
.ah-page .ah-card .ah-textlink { margin-top: auto; align-self: flex-start; }
.ah-page .ah-card-img { aspect-ratio: 4 / 3; overflow: hidden; margin: calc(clamp(28px, 3vw, 44px) * -1) calc(clamp(28px, 3vw, 44px) * -1) 8px; }
.ah-page .ah-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.ah-page .ah-card > a:hover .ah-card-img img { transform: scale(1.04); }

/* ---------- Steps ---------- */
.ah-page .ah-steps { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0; border-top: 1px solid rgba(58,54,51,.14); }
.ah-page .ah-steps li { counter-increment: step; padding: 32px 28px 8px 0; position: relative; }
.ah-page .ah-steps li::before { content: counter(step, decimal-leading-zero); display: block; font-size: .8125rem; letter-spacing: .1em; color: var(--rouge); margin-bottom: 18px; font-variant-numeric: tabular-nums; }
.ah-page .ah-steps li::after { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--rouge); }
.ah-page .ah-steps h3 { font-size: 1.25rem; margin-bottom: 10px; }
.ah-page .ah-steps p { font-size: .96875rem; line-height: 1.65; }

/* ---------- Checklist ---------- */
.ah-page .ah-checks { list-style: none; display: grid; gap: 0; border-top: 1px solid rgba(58,54,51,.14); }
.ah-page .ah-checks li { position: relative; padding: 16px 0 16px 40px; border-bottom: 1px solid rgba(58,54,51,.14); color: var(--ink); }
.ah-page .ah-checks li::before { content: ""; position: absolute; left: 4px; top: 22px; width: 14px; height: 8px; border-left: 1.5px solid var(--rouge); border-bottom: 1.5px solid var(--rouge); transform: rotate(-45deg); }
.ah-page .ah-note { margin-top: 28px; padding: 22px 26px; border-left: 2px solid var(--sand); background: rgba(217,183,151,.14); color: var(--ink); }
.ah-page .ah-white .ah-note, .ah-page .ah-note.on-white { background: var(--cream); }

/* ---------- Compare ---------- */
.ah-page .ah-compare { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.ah-page .ah-compare > div { padding: clamp(28px, 3.5vw, 48px); background: var(--white); }
.ah-page .ah-compare > div + div { border-left: 1px solid var(--line); }
.ah-page .ah-compare h3 { font-size: 1.5rem; margin-bottom: 16px; }
.ah-page .ah-compare ul { list-style: none; display: grid; gap: 10px; }
.ah-page .ah-compare li { padding-left: 20px; position: relative; }
.ah-page .ah-compare li::before { content: ""; position: absolute; left: 0; top: .8em; width: 8px; height: 1px; background: var(--rouge); }

/* ---------- Tables ---------- */
.ah-page .ah-table-wrap { overflow-x: auto; }
.ah-page .ah-table { width: 100%; border-collapse: collapse; }
.ah-page .ah-table th, .ah-page .ah-table td { text-align: left; padding: 18px 20px 18px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.ah-page .ah-table thead th { font-size: .75rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); border-bottom-color: rgba(58,54,51,.3); }
.ah-page .ah-table tbody th { font-weight: 500; color: var(--ink); font-size: 1.125rem; white-space: nowrap; }

/* ---------- Cost panel ---------- */
.ah-page .ah-cost { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 96px); padding: clamp(36px, 5vw, 72px); background: var(--white); border: 1px solid var(--line); }
.ah-page .ah-cream .ah-cost { background: var(--white); border-color: transparent; }
.ah-page .ah-cost .ah-h2 { margin-top: 20px; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.ah-page .ah-cost-body > * + * { margin-top: 18px; }
.ah-page .ah-cost .ah-textlink + .ah-textlink { margin-left: 28px; }

/* ---------- Provider band ---------- */
.ah-page .ah-provider { background: var(--rouge); color: rgba(246,242,233,.86); overflow: hidden; }
.ah-page .ah-provider h2, .ah-page .ah-provider h3 { color: var(--cream); }
.ah-page .ah-provider .ah-eyebrow { color: var(--sand); }
.ah-page .ah-provider-grid { display: grid; grid-template-columns: minmax(240px, 34%) 1fr; gap: clamp(40px, 7vw, 112px); align-items: center; }
.ah-page .ah-provider-photo { position: relative; }
.ah-page .ah-provider-photo .ah-arch { aspect-ratio: 3 / 4; position: relative; z-index: 1; }
.ah-page .ah-provider-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.ah-page .ah-provider-photo::before { content: ""; position: absolute; inset: 22px -22px -22px 22px; border: 1px solid rgba(217,183,151,.5); border-radius: 999px 999px 0 0; }
.ah-page .ah-provider .ah-h2 { margin-top: 22px; }
.ah-page .ah-provider p { margin-top: 22px; max-width: 60ch; }
.ah-page .ah-creds { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.ah-page .ah-creds li { padding: 8px 14px; border: 1px solid rgba(246,242,233,.28); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream); }
.ah-page .ah-provider .ah-textlink { margin-top: 34px; color: var(--cream); }
.ah-page .ah-pull { margin-top: 36px; padding-top: 30px; border-top: 1px solid rgba(246,242,233,.2); }
.ah-page .ah-pull p { font-size: clamp(1.3125rem, 2vw, 1.75rem); line-height: 1.4; color: var(--cream); margin-top: 0; }
.ah-page .ah-pull footer { margin-top: 16px; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sand); }

/* ---------- Reviews ---------- */
.ah-page .ah-reviews-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; }
.ah-page .ah-reviews-head .ah-h2 { margin-top: 22px; max-width: 18ch; }
.ah-page .ah-arrows { display: none; gap: 10px; }
.ah-page .ah-arrows button { width: 48px; height: 48px; border: 1px solid rgba(58,54,51,.3); display: grid; place-items: center; }
.ah-page .ah-arrows button:hover { border-color: var(--ink); }
.ah-page .ah-arrows svg { width: 16px; height: 16px; }
.ah-page .ah-quotes { margin-top: clamp(40px, 5vw, 72px); display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; list-style: none; }
.ah-page .ah-quote { padding: clamp(28px, 3vw, 44px); border: 1px solid var(--line); background: var(--white); display: flex; flex-direction: column; }
.ah-page .ah-cream .ah-quote { border-color: transparent; }
.ah-page .ah-quote svg { width: 30px; height: 23px; color: var(--sand); margin-bottom: 22px; flex: none; }
.ah-page .ah-quote blockquote p { font-size: 1.0625rem; line-height: 1.65; font-weight: 300; color: var(--ink); }
.ah-page .ah-quote footer { margin-top: auto; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.ah-page .ah-quote footer strong { font-weight: 500; color: var(--rouge); white-space: nowrap; }
.ah-page .ah-quote footer span { white-space: nowrap; }
.ah-page .ah-quote footer span::before { content: "·"; margin-right: 12px; color: var(--stone); }

/* ---------- FAQ ---------- */
.ah-page .ah-faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 104px); align-items: start; }
.ah-page .ah-faq-grid .ah-head { position: sticky; top: 120px; }
.ah-page .ah-faq { border-top: 1px solid rgba(58,54,51,.16); }
.ah-page .ah-faq details { border-bottom: 1px solid rgba(58,54,51,.16); }
.ah-page .ah-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; }
.ah-page .ah-faq summary::-webkit-details-marker { display: none; }
.ah-page .ah-faq summary h3 { font-size: clamp(1.0625rem, 1.4vw, 1.25rem); line-height: 1.35; transition: color .25s var(--ease); }
.ah-page .ah-faq summary:hover h3 { color: var(--rouge); }
.ah-page .ah-faq summary::after { content: ""; flex: none; width: 14px; height: 14px; background:
  linear-gradient(var(--rouge), var(--rouge)) center / 14px 1.5px no-repeat,
  linear-gradient(var(--rouge), var(--rouge)) center / 1.5px 14px no-repeat; transition: transform .3s var(--ease); }
.ah-page .ah-faq details[open] summary::after { transform: rotate(45deg); }
.ah-page .ah-faq .ah-faq-a { padding: 0 48px 26px 0; }
.ah-page .ah-faq .ah-faq-a p + p { margin-top: 14px; }
.ah-page .ah-faq .ah-faq-a a { color: var(--rouge); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Related ---------- */
.ah-page .ah-related { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; list-style: none; border-top: 1px solid rgba(58,54,51,.16); }
.ah-page .ah-related a { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 84px; padding: 16px 20px 16px 0; border-bottom: 1px solid rgba(58,54,51,.16); font-size: 1.1875rem; font-weight: 500; color: var(--ink); letter-spacing: -.01em; transition: color .25s var(--ease); }
.ah-page .ah-related a svg { width: 16px; height: 16px; color: var(--rouge); flex: none; transition: transform .3s var(--ease); }
.ah-page .ah-related a:hover { color: var(--rouge); }
.ah-page .ah-related a:hover svg { transform: translateX(5px); }

/* ---------- Final CTA ---------- */
.ah-page .ah-final { background: var(--night); color: rgba(246,242,233,.84); text-align: center; }
.ah-page .ah-final-media { position: relative; overflow: hidden; aspect-ratio: 21 / 8; }
.ah-page .ah-final-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.ah-page .ah-final-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(31,26,24,0) 50%, var(--night) 100%); }
.ah-page .ah-final-inner { padding-top: clamp(56px, 7vw, 104px); padding-bottom: clamp(80px, 10vw, 144px); display: flex; flex-direction: column; align-items: center; }
.ah-page .ah-final-media + .ah-final-inner { padding-top: clamp(8px, 2vw, 24px); }
.ah-page .ah-final .ah-eyebrow { color: var(--sand); }
.ah-page .ah-final .ah-eyebrow::after { content: ""; width: 32px; height: 1px; background: currentColor; opacity: .7; }
.ah-page .ah-final h2 { margin-top: 22px; color: var(--cream); font-size: clamp(2.125rem, 4.6vw, 4rem); line-height: 1.05; max-width: 18ch; }
.ah-page .ah-final p { margin-top: 24px; max-width: 54ch; }
.ah-page .ah-final .ah-nap { margin-top: 28px; font-size: .875rem; color: rgba(246,242,233,.6); }

/* ---------- Membership tiers ---------- */
.ah-page .ah-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; align-items: stretch; }
.ah-page .ah-tier { position: relative; display: flex; flex-direction: column; padding: clamp(32px, 3.5vw, 48px); background: var(--white); border: 1px solid var(--line); }
.ah-page .ah-tier.is-featured { background: var(--rouge); border-color: var(--rouge); color: rgba(246,242,233,.86); }
.ah-page .ah-tier.is-featured h3, .ah-page .ah-tier.is-featured .ah-tier-price { color: var(--cream); }
.ah-page .ah-tier-flag { position: absolute; top: -13px; left: clamp(32px, 3.5vw, 48px); padding: 5px 12px; background: var(--sand); color: var(--ink); font-size: .6875rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.ah-page .ah-tier h3 { font-size: 1.75rem; }
.ah-page .ah-tier-for { margin-top: 8px; font-size: .9375rem; }
.ah-page .ah-tier-price { margin-top: 28px; font-size: clamp(2.75rem, 4vw, 3.5rem); font-weight: 500; color: var(--ink); letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.ah-page .ah-tier-price small { font-size: 1rem; font-weight: 400; letter-spacing: 0; color: var(--muted); margin-left: 6px; }
.ah-page .ah-tier.is-featured .ah-tier-price small { color: rgba(246,242,233,.7); }
.ah-page .ah-tier ul { list-style: none; margin: 28px 0 32px; border-top: 1px solid var(--line); }
.ah-page .ah-tier.is-featured ul { border-color: rgba(246,242,233,.2); }
.ah-page .ah-tier li { padding: 13px 0 13px 28px; border-bottom: 1px solid var(--line); position: relative; font-size: .96875rem; }
.ah-page .ah-tier.is-featured li { border-color: rgba(246,242,233,.2); }
.ah-page .ah-tier li::before { content: ""; position: absolute; left: 2px; top: 20px; width: 11px; height: 6px; border-left: 1.5px solid var(--rouge); border-bottom: 1.5px solid var(--rouge); transform: rotate(-45deg); }
.ah-page .ah-tier.is-featured li::before { border-color: var(--sand); }
.ah-page .ah-tier .ah-btn { margin-top: auto; width: 100%; }
.ah-page .ah-tier.is-featured .ah-btn-primary { background: var(--cream); color: var(--rouge); border-color: var(--cream); }
.ah-page .ah-tier.is-featured .ah-btn-primary:hover { background: var(--white); }
.ah-page .ah-fineprint { margin-top: 24px; font-size: .8125rem; color: var(--muted); }

/* ---------- Forms ---------- */
.ah-page .ah-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.ah-page .ah-field { display: flex; flex-direction: column; gap: 8px; }
.ah-page .ah-field.is-full { grid-column: 1 / -1; }
.ah-page .ah-field label { font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.ah-page .ah-field label span { color: var(--rouge); }
.ah-page .ah-field input, .ah-page .ah-field select, .ah-page .ah-field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--white); border: 1px solid rgba(58,54,51,.25);
  border-radius: 0; min-height: 52px; padding: 12px 16px; width: 100%; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.ah-page .ah-field select { background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 44px; }
.ah-page .ah-field textarea { min-height: 150px; resize: vertical; }
.ah-page .ah-field input:focus, .ah-page .ah-field select:focus, .ah-page .ah-field textarea:focus { outline: none; border-color: var(--rouge); box-shadow: 0 0 0 3px rgba(111,40,39,.14); }
.ah-page .ah-field [aria-invalid="true"] { border-color: #A3322F; }
.ah-page .ah-field .ah-err { font-size: .8125rem; color: #A3322F; min-height: 0; }
.ah-page .ah-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ah-page .ah-form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 6px; }
.ah-page .ah-form-foot .ah-btn[disabled] { opacity: .55; cursor: progress; }
.ah-page .ah-form-status { grid-column: 1 / -1; padding: 18px 22px; border-left: 2px solid var(--rouge); background: var(--white); color: var(--ink); }
.ah-page .ah-form-status[hidden] { display: none; }
.ah-page .ah-form-status.is-ok { border-color: #4E6B4A; }
.ah-page .ah-form-privacy { grid-column: 1 / -1; font-size: .8125rem; color: var(--muted); }
.ah-page .ah-form-privacy a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Visit card / hours ---------- */
.ah-page .ah-visit-card { background: var(--white); padding: clamp(32px, 4vw, 52px); }
.ah-page .ah-cream .ah-visit-card { background: var(--white); }
.ah-page .ah-visit-card h2, .ah-page .ah-visit-card h3 { font-size: .75rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--rouge); }
.ah-page .ah-visit-card address { font-style: normal; margin-top: 12px; font-size: 1.1875rem; line-height: 1.55; color: var(--ink); }
.ah-page .ah-visit-card .ah-block + .ah-block { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.ah-page .ah-visit-card .ah-textlink { margin-top: 20px; }
.ah-page .ah-hours { margin-top: 12px; width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.ah-page .ah-hours th, .ah-page .ah-hours td { padding: 10px 0; text-align: left; font-weight: 400; border-bottom: 1px solid var(--line); vertical-align: top; }
.ah-page .ah-hours th { color: var(--ink); }
.ah-page .ah-hours td { text-align: right; }
.ah-page .ah-hours-note { margin-top: 12px; font-size: .875rem; }
.ah-page .ah-contact-lines { margin-top: 12px; display: grid; gap: 2px; }
.ah-page .ah-contact-lines a { font-size: 1.1875rem; color: var(--ink); min-height: 44px; display: inline-flex; align-items: center; }
.ah-page .ah-contact-lines a:hover { color: var(--rouge); }
.ah-page .ah-map { aspect-ratio: 16 / 10; width: 100%; border: 0; display: block; background: var(--line); filter: grayscale(.35) contrast(.95); }

/* ---------- Gallery ---------- */
.ah-page .ah-chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.ah-page .ah-chips a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border: 1px solid rgba(58,54,51,.25); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.ah-page .ah-chips a:hover { background: var(--rouge); border-color: var(--rouge); color: var(--cream); }
.ah-page .ah-ba-section { scroll-margin-top: 100px; }
.ah-page .ah-ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; }
.ah-page .ah-ba figure { background: var(--white); }
.ah-page .ah-ba .ah-ba-img { aspect-ratio: 1 / 1; overflow: hidden; background: var(--line); }
.ah-page .ah-ba img { width: 100%; height: 100%; object-fit: cover; }
.ah-page .ah-ba figcaption { padding: 14px 0 0; font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.ah-page .ah-ba-section + .ah-ba-section { margin-top: clamp(64px, 8vw, 112px); }
.ah-page .ah-ba-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid rgba(58,54,51,.16); }
.ah-page .ah-ba-head h2 { font-size: clamp(1.625rem, 2.6vw, 2.25rem); }

/* ---------- Legal ---------- */
.ah-page .ah-legal { max-width: 760px; }
.ah-page .ah-legal .ah-updated { font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---------- Reveal ---------- */
.ah-js .ah-page [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.ah-js .ah-page [data-reveal].is-in { opacity: 1; transform: none; }
.ah-js .ah-page [data-reveal="img"] { transform: none; clip-path: inset(8% 0 0 0); transition: opacity 1s var(--ease), clip-path 1.2s var(--ease); }
.ah-js .ah-page [data-reveal="img"].is-in { clip-path: inset(0 0 0 0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ah-page .ah-phero-grid, .ah-page .ah-split, .ah-page .ah-provider-grid, .ah-page .ah-faq-grid, .ah-page .ah-cost { grid-template-columns: 1fr; }
  .ah-page .ah-split.is-reverse > :first-child { order: 0; }
  .ah-page .ah-phero-media { max-width: 440px; margin-right: 24px; }
  .ah-page .ah-split-media { max-width: 520px; margin-right: 22px; }
  .ah-page .ah-provider-photo { max-width: 400px; margin-right: 22px; }
  .ah-page .ah-faq-grid .ah-head { position: static; margin-bottom: 8px; }
  .ah-page .ah-cards { grid-template-columns: repeat(2, 1fr); }
  .ah-page .ah-tiers { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 32px; }
  .ah-page .ah-ba-grid { grid-template-columns: repeat(2, 1fr); }
  .ah-page .ah-reviews-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .ah-page .ah-cards, .ah-page .ah-cards.is-two, .ah-page .ah-compare { grid-template-columns: 1fr; }
  .ah-page .ah-compare > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .ah-page .ah-btns .ah-btn { flex: 1 1 100%; }
  .ah-page .ah-form { grid-template-columns: 1fr; }
  .ah-page .ah-steps { grid-template-columns: 1fr; }
  .ah-page .ah-steps li { padding: 28px 0 8px; }
  .ah-page .ah-arrows { display: flex; }
  .ah-page .ah-quotes { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); padding: 0 var(--gutter) 8px; scrollbar-width: none; }
  .ah-page .ah-quotes::-webkit-scrollbar { display: none; }
  .ah-page .ah-quote { flex: 0 0 86%; scroll-snap-align: start; }
  .ah-page .ah-ba-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ah-page .ah-ba figcaption { font-size: .6875rem; }
  .ah-page .ah-final-media { aspect-ratio: 4 / 3; }
  .ah-page .ah-table tbody th { white-space: normal; }
  .ah-page .ah-hours tr { display: grid; padding: 10px 0; border-bottom: 1px solid var(--line); }
  .ah-page .ah-hours th, .ah-page .ah-hours td { padding: 0; border: 0; text-align: left; }
  .ah-page .ah-faq .ah-faq-a { padding-right: 0; }
  .ah-page .ah-cost .ah-textlink + .ah-textlink { margin-left: 0; margin-top: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .ah-page *, .ah-page *::before, .ah-page *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .ah-js .ah-page [data-reveal] { opacity: 1; transform: none; clip-path: none; }
}

/* ---------- Lists and link rows (used by scaffolded pages) ---------- */
.ah-page .ah-list { list-style: none; display: grid; gap: 0; border-top: 1px solid rgba(58,54,51,.14); padding-left: 0 !important; }
.ah-page .ah-list li { padding: 14px 0 14px 22px; border-bottom: 1px solid rgba(58,54,51,.14); position: relative; }
.ah-page .ah-list li::before { content: ""; position: absolute; left: 0; top: 1.45em; width: 8px; height: 1px; background: var(--rouge); }
.ah-page ol.ah-list { counter-reset: li; }
.ah-page .ah-linklist { list-style: none; display: grid; gap: 0; border-top: 1px solid rgba(58,54,51,.16); padding-left: 0 !important; }
.ah-page .ah-linklist a { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(58,54,51,.16); color: var(--ink); text-decoration: none !important; transition: color .25s var(--ease); }
.ah-page .ah-linklist a svg { width: 16px; height: 16px; color: var(--rouge); flex: none; transition: transform .3s var(--ease); }
.ah-page .ah-linklist a:hover { color: var(--rouge); }
.ah-page .ah-linklist a:hover svg { transform: translateX(5px); }
.ah-page .ah-links { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.ah-page .ah-links a.ah-textlink { text-decoration: none; }
.ah-page .ah-section > .ah-wrap > .ah-links { margin-top: 32px; }
.ah-page .ah-cost-body p:last-child { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.ah-page .ah-cost .ah-textlink + .ah-textlink { margin-left: 0; }
.ah-page .ah-final .ah-btns { margin-top: 32px; }
.ah-page .ah-provider .ah-prose p, .ah-page .ah-provider p a { color: inherit; }
.ah-page .ah-provider p a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Refinements after exemplar review ---------- */
.ah-page .ah-split > div > .ah-h2 + p, .ah-page .ah-split > div > p + p { margin-top: 18px; }
.ah-page .ah-cards > .ah-card:last-child:nth-child(3n+1) { grid-column: 1 / -1; }
.ah-page .ah-cards > .ah-card:last-child:nth-child(3n+2) { grid-column: span 2; }
.ah-page .ah-card .ah-links { margin-top: auto; }
.ah-page .ah-card .ah-links .ah-textlink { margin-top: 0; }
@media (max-width: 1024px) {
  .ah-page .ah-cards > .ah-card:last-child:nth-child(3n+1), .ah-page .ah-cards > .ah-card:last-child:nth-child(3n+2) { grid-column: auto; }
  .ah-page .ah-cards > .ah-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .ah-page .ah-cards > .ah-card:last-child:nth-child(odd) { grid-column: auto; }
  .ah-page .ah-h1 { font-size: clamp(2rem, 8.4vw, 2.5rem); }
  .ah-page .ah-crumbs li:not(:first-child):not(:last-child) { display: none; }
  .ah-page .ah-steps { border-top: 0; }
  .ah-page .ah-steps li { border-top: 1px solid rgba(58,54,51,.14); padding: 24px 0 16px; }
  .ah-page .ah-steps li::after { display: none; }
  .ah-page .ah-steps li::before { margin-bottom: 10px; }
}

/* ---------- Services hub rows ---------- */
.ah-page .ah-svc-cat { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); padding: clamp(48px, 6vw, 80px) 0; border-top: 1px solid rgba(58,54,51,.14); }
.ah-page .ah-svc-cat:first-child { border-top: 0; padding-top: 0; }
.ah-page .ah-svc-cat .ah-h2 { margin-top: 18px; position: sticky; top: 120px; }
.ah-page .ah-svc-list { list-style: none; display: grid; gap: 20px; }
.ah-page .ah-svc-item a { display: grid; grid-template-columns: 148px 1fr; gap: 28px; align-items: center; padding: 20px; background: var(--white); border: 1px solid var(--line); transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.ah-page .ah-cream .ah-svc-item a { border-color: transparent; }
.ah-page .ah-svc-item a:hover { border-color: rgba(111,40,39,.35); box-shadow: 0 24px 48px -32px rgba(31,26,24,.35); }
.ah-page .ah-svc-item .ah-svc-img { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 999px 999px 0 0; }
.ah-page .ah-svc-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.ah-page .ah-svc-item a:hover img { transform: scale(1.05); }
.ah-page .ah-svc-item h3 { font-size: clamp(1.3125rem, 1.9vw, 1.625rem); line-height: 1.2; transition: color .3s var(--ease); }
.ah-page .ah-svc-item a:hover h3 { color: var(--rouge); }
.ah-page .ah-svc-item p { margin-top: 10px; font-size: .96875rem; line-height: 1.65; }
.ah-page .ah-svc-item .ah-textlink { margin-top: 16px; }
.ah-page .ah-band { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.ah-page .ah-band .ah-h2 { margin-top: 20px; }
.ah-page .ah-cherry-logo { width: 150px; height: auto; margin-top: 28px; }
@media (max-width: 1024px) {
  .ah-page .ah-svc-cat, .ah-page .ah-band { grid-template-columns: 1fr; }
  .ah-page .ah-svc-cat .ah-h2 { position: static; }
}
@media (max-width: 560px) {
  .ah-page .ah-svc-item a { grid-template-columns: 96px 1fr; gap: 18px; padding: 16px; }
}

/* ---------- About, bio, contact extras ---------- */
.ah-page .ah-numbered { list-style: none; counter-reset: n; border-top: 1px solid rgba(58,54,51,.14); }
.ah-page .ah-numbered li { counter-increment: n; display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(58,54,51,.14); }
.ah-page .ah-numbered li::before { content: counter(n, decimal-leading-zero); font-size: .8125rem; letter-spacing: .1em; color: var(--rouge); padding-top: 5px; font-variant-numeric: tabular-nums; }
.ah-page .ah-numbered h3 { font-size: clamp(1.1875rem, 1.6vw, 1.4375rem); margin-bottom: 6px; }
.ah-page .ah-bigquote { padding: clamp(32px, 4vw, 56px); background: var(--rouge); color: var(--cream); position: relative; }
.ah-page .ah-bigquote svg { width: 38px; height: 29px; color: var(--sand); }
.ah-page .ah-bigquote p { margin-top: 20px; font-size: clamp(1.375rem, 2.2vw, 1.875rem); line-height: 1.35; font-weight: 400; color: var(--cream); letter-spacing: -.01em; }
.ah-page .ah-bigquote footer { margin-top: 20px; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sand); }
.ah-page .ah-awards { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; }
.ah-page .ah-awards img { width: 104px; height: 104px; object-fit: contain; }
.ah-page .ah-awards p { font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); max-width: 22ch; line-height: 1.6; }
.ah-page .ah-contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; grid-template-areas: "intro form" "visit form"; grid-template-rows: auto 1fr; gap: 40px clamp(40px, 6vw, 96px); align-items: start; }
.ah-page .ah-contact-intro { grid-area: intro; }
.ah-page .ah-contact-visit { grid-area: visit; }
.ah-page .ah-contact-formcol { grid-area: form; align-self: stretch; display: flex; flex-direction: column; }
.ah-page .ah-contact-mark { flex: 1; display: flex; align-items: center; justify-content: center; padding: clamp(40px, 5vw, 72px) 0 0; }
.ah-page .ah-contact-mark span { display: block; width: clamp(140px, 16vw, 220px); aspect-ratio: 1143 / 1131; background: var(--rouge); -webkit-mask: url("/assets/brand/AH-LogoMark-Light@4x.svg") center / contain no-repeat; mask: url("/assets/brand/AH-LogoMark-Light@4x.svg") center / contain no-repeat; }
.ah-page .ah-form-card { background: var(--white); padding: clamp(28px, 4vw, 56px); box-shadow: 0 40px 80px -60px rgba(31,26,24,.45); }
.ah-page .ah-form-card .ah-h2 { font-size: clamp(1.625rem, 2.6vw, 2.25rem); margin: 18px 0 28px; }
.ah-page .ah-form-status:focus { outline: none; }
.ah-page .ah-social { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; }
.ah-page .ah-social a { display: inline-flex; align-items: center; gap: 12px; min-height: 52px; padding: 0 22px; border: 1px solid rgba(58,54,51,.25); color: var(--ink); font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; transition: border-color .25s var(--ease), color .25s var(--ease); }
.ah-page .ah-social a:hover { border-color: var(--rouge); color: var(--rouge); }
.ah-page .ah-social svg { width: 18px; height: 18px; }
.ah-page .ah-gallery-link { margin-top: 22px; }
@media (max-width: 1024px) { .ah-page .ah-contact-grid { grid-template-columns: 1fr; grid-template-areas: "intro" "form" "visit"; grid-template-rows: none; } .ah-page .ah-contact-mark { display: none; } }
.ah-page .ah-prose h2.ah-h2 { font-size: clamp(1.875rem, 3.6vw, 3.25rem); line-height: 1.08; }
.ah-page .ah-quotes:has(> li:nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .ah-page .ah-quotes:has(> li:nth-child(4):last-child) { grid-template-columns: none; } }

/* ---------- See also: related treatments block (generated by page_build.add_related_block) ---------- */
.ah-page .ah-seealso { border-top: 1px solid var(--line); }
.ah-page .ah-seealso .ah-h2 { margin-top: 20px; font-size: clamp(1.625rem, 2.6vw, 2.25rem); }
.ah-page .ah-seealso .ah-chips { margin-top: 32px; }
.ah-page .ah-seealso .ah-links { margin-top: 28px; }
.ah-page .ah-seealso-area { margin-top: 28px; max-width: 62ch; color: var(--muted); }
.ah-page .ah-seealso-area a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--sand); text-underline-offset: 4px; }
.ah-page .ah-seealso-area a:hover { color: var(--rouge); }

/* ---------- Treatment index on /services/ (generated by page_build.fill_treatment_index) ---------- */
.ah-page .ah-az { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 40px 48px; margin-top: 48px; }
.ah-page .ah-az-group h3 { font-size: .75rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--rouge); padding-bottom: 14px; border-bottom: 1px solid rgba(58,54,51,.16); }
.ah-page .ah-az-group h3 a:hover { color: var(--ink); }
.ah-page .ah-az-group ul { list-style: none; padding: 0; margin-top: 10px; }
.ah-page .ah-az-group li a { display: block; padding: 8px 0; color: var(--ink); font-size: 1rem; }
.ah-page .ah-az-group li a:hover { color: var(--rouge); }

/* ---------- Screen-reader-only text ---------- */
.ah-page .ah-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.ah-page .ah-prose .ah-table { font-size: .9375rem; }
.ah-page .ah-table tbody th { font-weight: 500; color: var(--ink); }
.ah-page .ah-reviewed { margin-top: 18px; font-size: .8125rem; color: var(--muted); }
.ah-page .ah-reviewed a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--sand); text-underline-offset: 3px; }

/* ---------- Product comparison table (neuromodulators hub) ---------- */
.ah-page .ah-product-table .ah-table { min-width: 860px; font-size: .9375rem; line-height: 1.55; }
.ah-page .ah-product-table thead th { color: var(--rouge); }
.ah-page .ah-product-table tbody th { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); white-space: normal; width: 16%; }
.ah-page .ah-product-table td { width: 21%; color: var(--ink); }
.ah-page .ah-product-notes { max-width: 72ch; }
.ah-page .ah-product-notes p + p { margin-top: 14px; }
.ah-page .ah-product-sources { font-size: .8125rem; color: var(--muted); }
.ah-page .ah-product-sources a, .ah-page .ah-product-notes a { text-decoration: underline; text-decoration-color: var(--sand); text-underline-offset: 3px; }
@media (max-width: 900px) {
  .ah-page .ah-product-table tbody th, .ah-page .ah-product-table thead th:first-child { position: sticky; left: 0; background: var(--white); z-index: 1; padding-right: 14px; box-shadow: 8px 0 12px -10px rgba(31,26,24,.25); }
}
