/*
  Shared page theme for this site. Loaded on every page by site/snippets/head/reb-theme.html.
  Every rule is scoped under .reb-page (the class on each page's <main>), so it can never touch the nav,
  footer or blog. The homepage is a .reb-page too; its page-only rules live inline under #reb-home.
  Not content-hashed: never give /assets/css/ an immutable cache rule in engine/lib/vercel_config.py.

  BRAND TOKENS. The same hex values are repeated in site/components/nav.html, site/components/footer.html,
  site/snippets/head/reb-loader.html, the inline #reb-home block in site/pages/home.html and blog.tokens in
  site/site.config.json. Some rules below use rgba() of these colours: ink 10,58,64 / ivory 247,242,234 /
  teal 11,101,111 / gold 194,165,107 / night 7,44,49.

    --accent       deep teal ink: primary buttons, links    --accent-deep  hover state of --accent
    --accent-soft  champagne gold, used on dark backgrounds, hairlines and rules (never small text on light)
    --bronze       gold dark enough for small text on light backgrounds (AA on --white and --cream)
    --ink          headings    --text  body copy    --muted  captions and meta
    --cream        ivory section background (.reb-cream)    --white  paper    --line  hairlines
    --night        darkest teal: final CTA and footer

  Type: Italiana for display headings, Cormorant Garamond italic for the accent words inside them (<em>),
  Hanken Grotesk for everything else. Self-hosted in site/assets/fonts/.

  The engine injects markup that this file styles: .reb-crumbs (breadcrumbs), .reb-seealso with .reb-chips
  (related treatments), .reb-az (the A to Z on /services/) and .reb-reviewed. Keep those rules.
  This comment ships in the public CSS: never name a client here.
*/
.reb-page {
  --accent: #0A3A40; --accent-deep: #072C31; --ink: #0A3A40; --text: #3F4B4C; --muted: #56625F; --teal: #0B656F;
  --accent-soft: #C2A56B; --bronze: #7E6433; --stone: #B3ACA6; --cream: #F7F2EA; --line: #E6DDCF; --white: #FBF8F3; --night: #072C31;
  --wrap: 1280px; --gutter: clamp(20px, 5vw, 64px); --section: clamp(80px, 10vw, 152px);
  --ease: cubic-bezier(.2,.7,.2,1);
  font-family: 'Hanken Grotesk', 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;
}
.reb-page *, .reb-page *::before, .reb-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.reb-page img, .reb-page video { display: block; max-width: 100%; }
.reb-page a { color: inherit; text-decoration: none; }
.reb-page button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.reb-page :focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.reb-page h1, .reb-page h2, .reb-page h3, .reb-page h4 { font-weight: 500; color: var(--ink); letter-spacing: -.02em; text-wrap: balance; }
.reb-page p { text-wrap: pretty; }
.reb-page strong { font-weight: 600; color: var(--ink); }

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

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

/* ---------- Buttons ---------- */
.reb-page .reb-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);
}
.reb-page .reb-btn svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.reb-page .reb-btn:hover svg { transform: translateX(4px); }
.reb-page .reb-btn-primary { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.reb-page .reb-btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.reb-page .reb-on-dark.reb-btn-primary { border-color: rgba(247,242,234,.4); }
.reb-page .reb-btn-ghost { color: var(--ink); border-color: rgba(10,58,64,.35); }
.reb-page .reb-btn-ghost:hover { border-color: var(--ink); }
.reb-page .reb-btn-ghost-light { color: var(--cream); border-color: rgba(247,242,234,.55); }
.reb-page .reb-btn-ghost-light:hover { background: rgba(247,242,234,.12); border-color: var(--cream); }
.reb-page .reb-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.reb-page .reb-center .reb-btns { justify-content: center; }
.reb-page .reb-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(--accent);
  background: linear-gradient(currentColor, currentColor) left bottom / 100% 1px no-repeat;
}
.reb-page .reb-textlink svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.reb-page .reb-textlink:hover svg { transform: translateX(4px); }

/* ---------- Breadcrumbs ---------- */
.reb-page .reb-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); }
.reb-page .reb-crumbs li { display: inline-flex; align-items: center; gap: 10px; }
.reb-page .reb-crumbs li + li::before { content: ""; width: 14px; height: 1px; background: currentColor; opacity: .6; }
.reb-page .reb-crumbs a:hover { color: var(--accent); }
.reb-page .reb-crumbs [aria-current] { color: var(--accent); }

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

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

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

/* ---------- Steps ---------- */
.reb-page .reb-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(10,58,64,.14); }
.reb-page .reb-steps li { counter-increment: step; padding: 32px 28px 8px 0; position: relative; }
.reb-page .reb-steps li::before { content: counter(step, decimal-leading-zero); display: block; font-size: .8125rem; letter-spacing: .1em; color: var(--accent); margin-bottom: 18px; font-variant-numeric: tabular-nums; }
.reb-page .reb-steps li::after { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.reb-page .reb-steps h3 { font-size: 1.25rem; margin-bottom: 10px; }
.reb-page .reb-steps p { font-size: .96875rem; line-height: 1.65; }

/* ---------- Checklist ---------- */
.reb-page .reb-checks { list-style: none; display: grid; gap: 0; border-top: 1px solid rgba(10,58,64,.14); }
.reb-page .reb-checks li { position: relative; padding: 16px 0 16px 40px; border-bottom: 1px solid rgba(10,58,64,.14); color: var(--ink); }
.reb-page .reb-checks li::before { content: ""; position: absolute; left: 4px; top: 22px; width: 14px; height: 8px; border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(-45deg); }
.reb-page .reb-note { margin-top: 28px; padding: 22px 26px; border-left: 2px solid var(--accent-soft); background: rgba(194,165,107,.14); color: var(--ink); }
.reb-page .reb-white .reb-note, .reb-page .reb-note.on-white { background: var(--cream); }

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

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

/* ---------- Cost panel ---------- */
.reb-page .reb-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); }
.reb-page .reb-cream .reb-cost { background: var(--white); border-color: transparent; }
.reb-page .reb-cost .reb-h2 { margin-top: 20px; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.reb-page .reb-cost-body > * + * { margin-top: 18px; }
.reb-page .reb-cost .reb-textlink + .reb-textlink { margin-left: 28px; }

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

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

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

/* ---------- Related ---------- */
.reb-page .reb-related { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; list-style: none; border-top: 1px solid rgba(10,58,64,.16); }
.reb-page .reb-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(10,58,64,.16); font-size: 1.1875rem; font-weight: 500; color: var(--ink); letter-spacing: -.01em; transition: color .25s var(--ease); }
.reb-page .reb-related a svg { width: 16px; height: 16px; color: var(--accent); flex: none; transition: transform .3s var(--ease); }
.reb-page .reb-related a:hover { color: var(--accent); }
.reb-page .reb-related a:hover svg { transform: translateX(5px); }

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

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

/* ---------- Forms ---------- */
.reb-page .reb-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.reb-page .reb-field { display: flex; flex-direction: column; gap: 8px; }
.reb-page .reb-field.is-full { grid-column: 1 / -1; }
.reb-page .reb-field label { font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.reb-page .reb-field label span { color: var(--accent); }
.reb-page .reb-field input, .reb-page .reb-field select, .reb-page .reb-field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--white); border: 1px solid rgba(10,58,64,.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;
}
.reb-page .reb-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; }
.reb-page .reb-field textarea { min-height: 150px; resize: vertical; }
.reb-page .reb-field input:focus, .reb-page .reb-field select:focus, .reb-page .reb-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(11,101,111,.14); }
.reb-page .reb-field [aria-invalid="true"] { border-color: #A3322F; }
.reb-page .reb-field .reb-err { font-size: .8125rem; color: #A3322F; min-height: 0; }
.reb-page .reb-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.reb-page .reb-form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 6px; }
.reb-page .reb-form-foot .reb-btn[disabled] { opacity: .55; cursor: progress; }
.reb-page .reb-form-status { grid-column: 1 / -1; padding: 18px 22px; border-left: 2px solid var(--accent); background: var(--white); color: var(--ink); }
.reb-page .reb-form-status[hidden] { display: none; }
.reb-page .reb-form-status.is-ok { border-color: #4E6B4A; }
.reb-page .reb-form-privacy { grid-column: 1 / -1; font-size: .8125rem; color: var(--muted); }
.reb-page .reb-form-privacy a { text-decoration: underline; text-underline-offset: 3px; }

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

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

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

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

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

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

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

/* Two-column card grid (.is-two): the 3-column "span the last card" rules above would push the second of two
   cards onto its own row. Here a last card spans the row only when the count is odd. */
.reb-page .reb-cards.is-two > .reb-card:last-child:nth-child(n) { grid-column: auto; }
.reb-page .reb-cards.is-two > .reb-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
@media (max-width: 760px) { .reb-page .reb-cards.is-two > .reb-card:last-child:nth-child(odd) { grid-column: auto; } }

/* ---------- Services hub rows ---------- */
.reb-page .reb-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(10,58,64,.14); }
.reb-page .reb-svc-cat:first-child { border-top: 0; padding-top: 0; }
.reb-page .reb-svc-cat .reb-h2 { margin-top: 18px; position: sticky; top: 120px; }
.reb-page .reb-svc-list { list-style: none; display: grid; gap: 20px; }
.reb-page .reb-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); }
.reb-page .reb-cream .reb-svc-item a { border-color: transparent; }
.reb-page .reb-svc-item a:hover { border-color: rgba(11,101,111,.35); box-shadow: 0 24px 48px -32px rgba(7,44,49,.35); }
.reb-page .reb-svc-item .reb-svc-img { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 999px 999px 0 0; }
.reb-page .reb-svc-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.reb-page .reb-svc-item a:hover img { transform: scale(1.05); }
.reb-page .reb-svc-item h3 { font-size: clamp(1.3125rem, 1.9vw, 1.625rem); line-height: 1.2; transition: color .3s var(--ease); }
.reb-page .reb-svc-item a:hover h3 { color: var(--accent); }
.reb-page .reb-svc-item p { margin-top: 10px; font-size: .96875rem; line-height: 1.65; }
.reb-page .reb-svc-item .reb-textlink { margin-top: 16px; }
.reb-page .reb-band { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.reb-page .reb-band .reb-h2 { margin-top: 20px; }
.reb-page .reb-partner-logo { width: 150px; height: auto; margin-top: 28px; }
@media (max-width: 1024px) {
  .reb-page .reb-svc-cat, .reb-page .reb-band { grid-template-columns: 1fr; }
  .reb-page .reb-svc-cat .reb-h2 { position: static; }
}
@media (max-width: 560px) {
  .reb-page .reb-svc-item a { grid-template-columns: 96px 1fr; gap: 18px; padding: 16px; }
}

/* ---------- About, bio, contact extras ---------- */
.reb-page .reb-numbered { list-style: none; counter-reset: n; border-top: 1px solid rgba(10,58,64,.14); }
.reb-page .reb-numbered li { counter-increment: n; display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(10,58,64,.14); }
.reb-page .reb-numbered li::before { content: counter(n, decimal-leading-zero); font-size: .8125rem; letter-spacing: .1em; color: var(--accent); padding-top: 5px; font-variant-numeric: tabular-nums; }
.reb-page .reb-numbered h3 { font-size: clamp(1.1875rem, 1.6vw, 1.4375rem); margin-bottom: 6px; }
.reb-page .reb-bigquote { padding: clamp(32px, 4vw, 56px); background: var(--accent); color: var(--cream); position: relative; }
.reb-page .reb-bigquote svg { width: 38px; height: 29px; color: var(--accent-soft); }
.reb-page .reb-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; }
.reb-page .reb-bigquote footer { margin-top: 20px; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-soft); }
.reb-page .reb-awards { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; }
.reb-page .reb-awards img { width: 104px; height: 104px; object-fit: contain; }
.reb-page .reb-awards p { font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); max-width: 22ch; line-height: 1.6; }
.reb-page .reb-contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.reb-page .reb-form-card { background: var(--white); padding: clamp(28px, 4vw, 56px); box-shadow: 0 40px 80px -60px rgba(7,44,49,.45); }
.reb-page .reb-form-card .reb-h2 { font-size: clamp(1.625rem, 2.6vw, 2.25rem); margin: 18px 0 28px; }
.reb-page .reb-form-status:focus { outline: none; }
.reb-page .reb-social { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; }
.reb-page .reb-social a { display: inline-flex; align-items: center; gap: 12px; min-height: 52px; padding: 0 22px; border: 1px solid rgba(10,58,64,.25); color: var(--ink); font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; transition: border-color .25s var(--ease), color .25s var(--ease); }
.reb-page .reb-social a:hover { border-color: var(--accent); color: var(--accent); }
.reb-page .reb-social svg { width: 18px; height: 18px; }
.reb-page .reb-gallery-link { margin-top: 22px; }
@media (max-width: 1024px) { .reb-page .reb-contact-grid { grid-template-columns: 1fr; } }
.reb-page .reb-prose h2.reb-h2 { font-size: clamp(1.875rem, 3.6vw, 3.25rem); line-height: 1.08; }
.reb-page .reb-quotes:has(> li:nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .reb-page .reb-quotes:has(> li:nth-child(4):last-child) { grid-template-columns: none; } }

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

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

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

/* ---------- Product comparison table (neuromodulators hub) ---------- */
.reb-page .reb-product-table .reb-table { min-width: 860px; font-size: .9375rem; line-height: 1.55; }
.reb-page .reb-product-table thead th { color: var(--accent); }
.reb-page .reb-product-table tbody th { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); white-space: normal; width: 16%; }
.reb-page .reb-product-table td { width: 21%; color: var(--ink); }
.reb-page .reb-product-notes { max-width: 72ch; }
.reb-page .reb-product-notes p + p { margin-top: 14px; }
.reb-page .reb-product-sources { font-size: .8125rem; color: var(--muted); }
.reb-page .reb-product-sources a, .reb-page .reb-product-notes a { text-decoration: underline; text-decoration-color: var(--accent-soft); text-underline-offset: 3px; }
@media (max-width: 900px) {
  .reb-page .reb-product-table tbody th, .reb-page .reb-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(7,44,49,.25); }
}

/* =====================================================================================================
   Luxury layer. Display type, gold details, refined controls and motion. Loaded after the base rules above
   so it wins on equal specificity; every rule is still scoped under .reb-page.
   ===================================================================================================== */
.reb-page { --ease-out: cubic-bezier(.16,1,.3,1); --ease-in-out: cubic-bezier(.65,0,.35,1); background: var(--white); }
.reb-page ::selection { background: rgba(194,165,107,.35); color: var(--ink); }
.reb-page :focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 4px; }

/* Type: Italiana carries display sizes only; small headings stay in the sans for legibility. */
.reb-page h1, .reb-page h2, .reb-page h3 { font-family: 'Italiana', 'Didot', 'Bodoni 72', Georgia, serif; font-weight: 400; letter-spacing: -.005em; }
.reb-page h1 em, .reb-page h2 em, .reb-page h3 em, .reb-page .reb-display em {
  font-family: 'Cormorant Garamond', 'Didot', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -.01em; color: var(--teal);
}
.reb-page .reb-night h2 em, .reb-page .reb-final h2 em, .reb-page .reb-provider h2 em { color: var(--accent-soft); }
.reb-page .reb-h1 { font-size: clamp(2.75rem, 6vw, 5.5rem); line-height: 1; letter-spacing: -.01em; }
.reb-page .reb-h2 { font-size: clamp(2.25rem, 4.4vw, 4.25rem); line-height: 1.02; letter-spacing: -.005em; }
.reb-page .reb-h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.15; }
.reb-page .reb-faq summary h3, .reb-page .reb-visit-card h2, .reb-page .reb-visit-card h3, .reb-page .reb-az-group h3,
.reb-page .reb-steps h3, .reb-page .reb-numbered h3, .reb-page .reb-tier h3, .reb-page .reb-compare h3 {
  font-family: 'Hanken Grotesk', system-ui, sans-serif; font-weight: 500; letter-spacing: 0;
}
.reb-page .reb-eyebrow { color: var(--bronze); letter-spacing: .28em; }
.reb-page .reb-eyebrow::before, .reb-page .reb-center .reb-eyebrow::after { background: var(--accent-soft); opacity: 1; width: 40px; }
.reb-page .reb-night .reb-eyebrow, .reb-page .reb-final .reb-eyebrow, .reb-page .reb-provider .reb-eyebrow { color: var(--accent-soft); }
.reb-page .reb-lede { color: var(--text); }

/* Buttons: a champagne fill slides in on hover; the label colour follows. */
.reb-page .reb-btn { position: relative; overflow: hidden; isolation: isolate; min-height: 54px; padding: 0 32px; letter-spacing: .2em; transition: color .45s var(--ease-out), border-color .45s var(--ease-out), transform .2s var(--ease-out); touch-action: manipulation; }
.reb-page .reb-btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--accent-soft); transform: scaleX(0); transform-origin: right; transition: transform .55s var(--ease-out); }
.reb-page .reb-btn:hover::before { transform: scaleX(1); transform-origin: left; }
.reb-page .reb-btn:active { transform: scale(.98); }
.reb-page .reb-btn-primary { background: var(--accent); border-color: var(--accent); color: var(--white); }
.reb-page .reb-btn-primary:hover { background: var(--accent); color: var(--night); border-color: var(--accent-soft); }
.reb-page .reb-btn-gold { background: var(--accent-soft); color: var(--night); border: 1px solid var(--accent-soft); font-weight: 600; }
.reb-page .reb-btn-gold::before { background: var(--white); }
.reb-page .reb-btn-gold:hover { color: var(--night); }
.reb-page .reb-btn-ghost { border-color: rgba(10,58,64,.35); color: var(--ink); }
.reb-page .reb-btn-ghost:hover { border-color: var(--accent-soft); color: var(--night); }
.reb-page .reb-btn-ghost-light { color: var(--white); border-color: rgba(247,242,234,.45); }
.reb-page .reb-btn-ghost-light:hover { color: var(--night); border-color: var(--accent-soft); background: transparent; }
.reb-page .reb-textlink { color: var(--ink); background: linear-gradient(var(--accent-soft), var(--accent-soft)) left bottom / 100% 1px no-repeat; transition: background-size .45s var(--ease-out), color .3s var(--ease-out); }
.reb-page .reb-textlink:hover { background-size: 0 1px; background-position: right bottom; }
.reb-page .reb-night .reb-textlink, .reb-page .reb-final .reb-textlink { color: var(--white); }
.reb-page a, .reb-page button, .reb-page summary { cursor: pointer; }

/* Surfaces */
.reb-page .reb-night { background: var(--night); color: rgba(247,242,234,.8); }
.reb-page .reb-night h2, .reb-page .reb-night h3 { color: var(--white); }
.reb-page .reb-final { background: radial-gradient(120% 90% at 50% 0%, #0E4A51 0%, var(--accent) 45%, var(--night) 100%); }
.reb-page .reb-final h2 { color: var(--white); }
.reb-page .reb-provider { background: var(--accent); }
.reb-page .reb-card, .reb-page .reb-quote, .reb-page .reb-tier { background: var(--white); }
.reb-page .reb-phero-media::before, .reb-page .reb-provider-photo::before { border-color: rgba(194,165,107,.55); }
.reb-page .reb-steps li::before, .reb-page .reb-numbered li::before { color: var(--bronze); }
.reb-page .reb-steps li::after { background: var(--accent-soft); }
.reb-page .reb-field input:focus, .reb-page .reb-field select:focus, .reb-page .reb-field textarea:focus { border-color: var(--accent-soft); box-shadow: 0 0 0 3px rgba(194,165,107,.22); }
.reb-page .reb-field label span { color: var(--bronze); }

/* Gold hairline rule that draws in when revealed. */
.reb-page .reb-rule { display: block; height: 1px; background: var(--accent-soft); transform-origin: left; }

/* ---------- Motion ---------- */
.reb-js .reb-page [data-reveal] { transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out), clip-path 1.3s var(--ease-out); }
.reb-js .reb-page [data-reveal="arch"] { transform: none; clip-path: inset(100% 0 0 0 round 999px 999px 0 0); opacity: 1; }
.reb-js .reb-page [data-reveal="arch"].is-in { clip-path: inset(0 0 0 0 round 999px 999px 0 0); }
.reb-js .reb-page [data-reveal="img"] { clip-path: inset(0 0 100% 0); opacity: 1; transform: none; }
.reb-js .reb-page [data-reveal="img"].is-in { clip-path: inset(0 0 0 0); }
.reb-js .reb-page [data-reveal="rule"] { opacity: 1; transform: scaleX(0); transition: transform 1.2s var(--ease-out); }
.reb-js .reb-page [data-reveal="rule"].is-in { transform: scaleX(1); }
.reb-js .reb-page [data-reveal="fade"] { transform: none; }
.reb-page .reb-zoom img { transition: transform 1.4s var(--ease-out); }
.reb-page .reb-zoom:hover img { transform: scale(1.045); }

@media (prefers-reduced-motion: reduce) {
  .reb-js .reb-page [data-reveal], .reb-js .reb-page [data-reveal="arch"], .reb-js .reb-page [data-reveal="img"], .reb-js .reb-page [data-reveal="rule"] {
    opacity: 1; transform: none; clip-path: none;
  }
  .reb-page .reb-btn::before { transition: none; }
  .reb-page .reb-zoom:hover img { transform: none; }
}

/* =====================================================================================================
   Nocturne layer (2026-09-17). The interior-page vocabulary promoted out of the homepage and contact page:
   night heroes over a photo, gold-hairline ledgers, frosted glass panels, roman-numeral cards, glass step
   cards over a photo band, a night reviews band with the score, and the closing form floating over the map.
   Class prefix reb-n. Every rule is still scoped under .reb-page except #reb-dock, the floating booking dock
   that site/components/footer.html appends after the footer so it exists on every page.
   ===================================================================================================== */
.reb-page.reb-nocturne { --g-bg: rgba(247,242,234,.07); --g-edge: rgba(194,165,107,.28); --g-blur: 22px; --ivory-72: rgba(247,242,234,.72); --ivory-12: rgba(247,242,234,.14); background: var(--white); }
.reb-page .reb-nglass { background: var(--g-bg); border: 1px solid var(--g-edge); -webkit-backdrop-filter: blur(var(--g-blur)); backdrop-filter: blur(var(--g-blur)); box-shadow: inset 0 1px 0 rgba(247,242,234,.12); }
.reb-page .reb-nnoise { position: relative; isolation: isolate; }
.reb-page .reb-nnoise::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .09; mix-blend-mode: soft-light; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* Buttons and links: the fill slides up from below (the homepage idiom). */
.reb-page .reb-nbtns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.reb-page .reb-nbtn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 58px; padding: 0 34px; font-size: .6875rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; white-space: nowrap; border: 1px solid var(--accent-soft); color: var(--accent-soft); overflow: hidden; isolation: isolate; cursor: pointer; font-family: inherit; transition: color .45s var(--ease-out), border-color .45s var(--ease-out); touch-action: manipulation; }
.reb-page .reb-nbtn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--accent-soft); transform: translateY(101%); transition: transform .5s var(--ease-out); }
.reb-page .reb-nbtn:hover { color: var(--night); }
.reb-page .reb-nbtn:hover::before { transform: none; }
.reb-page .reb-nbtn svg { width: 14px; height: 14px; }
.reb-page .reb-nbtn-solid { background: var(--accent-soft); color: var(--night); }
.reb-page .reb-nbtn-solid::before { background: var(--white); }
.reb-page .reb-nbtn-ink { border-color: var(--ink); color: var(--ink); }
.reb-page .reb-nbtn-ink::before { background: var(--ink); }
.reb-page .reb-nbtn-ink:hover { color: var(--white); }
.reb-page .reb-nbtn-call { border-color: rgba(194,165,107,.4); color: var(--white); }
.reb-page .is-ivory .reb-nbtn-call, .reb-page .is-cream .reb-nbtn-call, .reb-page .reb-nvisit .reb-nbtn-call { border-color: rgba(10,58,64,.3); color: var(--ink); }
.reb-page .reb-nbtn[disabled] { opacity: .55; cursor: progress; }
.reb-page .reb-nlink { display: inline-flex; align-items: center; gap: 12px; font-size: .6875rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--white); border-bottom: 1px solid var(--accent-soft); padding-bottom: 6px; }
.reb-page .reb-nlink.is-ink, .reb-page .is-ivory .reb-nlink, .reb-page .is-cream .reb-nlink { color: var(--ink); }
.reb-page .reb-nlink svg { width: 13px; height: 13px; color: var(--accent-soft); transition: transform .3s var(--ease-out); }
.reb-page .reb-nlink:hover svg { transform: translateX(4px); }
.reb-page .reb-nlinks { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 8px; }

/* Night hero over a photo. Pages carry data-reb-hero, so the nav sits transparent over it. */
.reb-page .reb-nhero { position: relative; isolation: isolate; overflow: hidden; background: var(--night); color: var(--white); padding: calc(88px + clamp(40px, 6vw, 88px)) 0 clamp(64px, 8vw, 120px); }
.reb-page .reb-nhero-img { position: absolute; inset: 0; z-index: -3; }
.reb-page .reb-nhero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: saturate(.85); }
.reb-page .reb-nhero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(7,44,49,.98) 0%, rgba(7,44,49,.94) 48%, rgba(7,44,49,.6) 100%); }
.reb-page .reb-nhero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(40px, 6vw, 104px); align-items: end; }
.reb-page .reb-nhero .reb-crumbs ol { color: var(--ivory-72); }
.reb-page .reb-nhero .reb-crumbs a:hover, .reb-page .reb-nhero .reb-crumbs [aria-current] { color: var(--accent-soft); }
.reb-page .reb-nhero .reb-eyebrow { margin-top: clamp(28px, 4vw, 48px); color: var(--accent-soft); letter-spacing: .32em; font-size: .6875rem; }
.reb-page .reb-nhero .reb-eyebrow::before { background: var(--accent-soft); width: 28px; }
.reb-page .reb-nhero .reb-h1 { margin-top: 22px; font-size: clamp(2.5rem, 4.4vw, 4.25rem); line-height: .98; letter-spacing: 0; color: var(--white); max-width: 16ch; text-wrap: balance; }
.reb-page .reb-nhero .reb-h1 em { color: var(--accent-soft); }
.reb-page .reb-nhero .reb-phero-intro { margin-top: 24px; max-width: 52ch; font-size: 1.0625rem; line-height: 1.7; font-weight: 300; color: rgba(247,242,234,.82); }
.reb-page .reb-nhero .reb-phero-intro a, .reb-page .reb-nhero .reb-reviewed a { color: var(--white); border-bottom: 1px solid var(--accent-soft); }
.reb-page .reb-nhero .reb-reviewed { margin-top: 14px; font-size: .8125rem; color: var(--ivory-72); }
.reb-page .reb-nhero-side { display: grid; gap: 22px; }
.reb-page .reb-nhero-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--accent); }
.reb-page .reb-nhero-photo img { width: 100%; height: 100%; object-fit: cover; }
.reb-page .reb-nhero-photo::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(194,165,107,.55); pointer-events: none; }

/* Ledger: gold labels, hairline rows. .is-ink is the light twin. */
.reb-page .reb-nledger { border-top: 1px solid var(--g-edge, rgba(194,165,107,.28)); }
.reb-page .reb-nledger > div { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(247,242,234,.14); font-size: .9375rem; line-height: 1.55; font-weight: 300; }
.reb-page .reb-nledger dt { padding-top: 4px; font-size: .625rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--accent-soft); }
.reb-page .reb-nledger dd { color: var(--white); font-variant-numeric: tabular-nums; }
.reb-page .reb-nledger dd small { display: block; font-size: .8125rem; color: var(--ivory-72, rgba(247,242,234,.72)); }
.reb-page .reb-nledger dd a { border-bottom: 1px solid rgba(194,165,107,.45); transition: color .3s var(--ease-out); }
.reb-page .reb-nledger dd a:hover { color: var(--accent-soft); }
.reb-page .reb-nledger.is-ink { border-top-color: rgba(194,165,107,.5); }
.reb-page .reb-nledger.is-ink > div { border-bottom-color: rgba(10,58,64,.12); }
.reb-page .reb-nledger.is-ink dt { color: var(--bronze); }
.reb-page .reb-nledger.is-ink dd { color: var(--ink); }
.reb-page .reb-nledger.is-ink dd small { color: var(--muted); }
.reb-page .reb-nledger.is-ink dd a { border-bottom-color: rgba(194,165,107,.6); }
.reb-page .reb-nledger.is-ink dd a:hover { color: var(--teal); }

/* Stat band: the homepage ledger of numbers (about, testimonials). */
.reb-page .reb-nstats { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); border-top: 1px solid rgba(194,165,107,.35); border-bottom: 1px solid rgba(194,165,107,.35); }
.reb-page .reb-nstats li { padding: clamp(24px, 2.6vw, 36px) clamp(12px, 2vw, 28px); }
.reb-page .reb-nstats li + li { border-left: 1px solid rgba(194,165,107,.2); }
.reb-page .reb-nstats li:first-child { padding-left: 0; }
.reb-page .reb-nstats b { display: block; font-family: 'Italiana', 'Didot', Georgia, serif; font-weight: 400; font-size: clamp(2.25rem, 3.4vw, 3.5rem); line-height: .9; color: var(--white); font-variant-numeric: tabular-nums; white-space: nowrap; }
.reb-page .reb-nstats b small { font-size: .5em; letter-spacing: .04em; color: var(--accent-soft); margin-left: 4px; }
.reb-page .reb-nstats li > span { display: block; margin-top: 10px; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,242,234,.6); line-height: 1.5; }

/* Sections and surfaces */
.reb-page .reb-nsec { position: relative; padding: clamp(72px, 9vw, 136px) 0; }
.reb-page .reb-nsec.is-tight { padding: clamp(48px, 6vw, 88px) 0; }
.reb-page .reb-nsec.is-ivory { background: var(--white); color: var(--text); }
.reb-page .reb-nsec.is-cream { background: var(--cream); color: var(--text); }
.reb-page .reb-nsec.is-night { background: var(--night); color: rgba(247,242,234,.82); }
.reb-page .reb-nsec.is-night h1, .reb-page .reb-nsec.is-night h2, .reb-page .reb-nsec.is-night h3 { color: var(--white); }
.reb-page .reb-nsec.is-night .reb-h2 em, .reb-page .reb-nsec.is-night h3 em { color: var(--accent-soft); }
.reb-page .reb-nsec.is-night .reb-eyebrow { color: var(--accent-soft); }
.reb-page .reb-nsec.is-night .reb-eyebrow::before { background: var(--accent-soft); }
.reb-page .reb-nsec.is-night .reb-prose a, .reb-page .reb-nsec.is-night .reb-nnote a, .reb-page .reb-nsec.is-night p a { color: var(--white); text-decoration: none; border-bottom: 1px solid var(--accent-soft); }
.reb-page .reb-nsec.is-night .reb-prose a:hover { color: var(--accent-soft); }
.reb-page .reb-nsec.is-night .reb-list, .reb-page .reb-nsec.is-night .reb-linklist, .reb-page .reb-nsec.is-night .reb-checks { border-top-color: rgba(194,165,107,.35); }
.reb-page .reb-nsec.is-night .reb-list li, .reb-page .reb-nsec.is-night .reb-linklist a, .reb-page .reb-nsec.is-night .reb-checks li { border-bottom-color: rgba(194,165,107,.16); color: var(--white); }
.reb-page .reb-nsec.is-night .reb-list li::before { background: var(--accent-soft); }
.reb-page .reb-nsec.is-night .reb-checks li::before { border-color: var(--accent-soft); }
.reb-page .reb-nsec.is-night .reb-linklist a svg { color: var(--accent-soft); }
.reb-page .reb-nsec.is-night .reb-linklist a:hover { color: var(--accent-soft); }
.reb-page .reb-nsec.is-night .reb-textlink { color: var(--white); }
.reb-page .reb-nsec.is-ivory + .reb-nsec.is-ivory, .reb-page .reb-nsec.is-cream + .reb-nsec.is-cream { border-top: 1px solid rgba(10,58,64,.12); }
.reb-page .reb-nsec.is-night + .reb-nsec.is-night { border-top: 1px solid rgba(194,165,107,.2); }
.reb-page .reb-nhead { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.reb-page .reb-nhead .reb-h2, .reb-page .reb-nsplit-head .reb-h2 { margin-top: 20px; }
.reb-page .reb-nhead .reb-eyebrow + .reb-h2 { margin-top: 20px; }
.reb-page .reb-nsec .reb-h2 { font-size: clamp(2.25rem, 4.2vw, 4rem); line-height: 1; }
.reb-page .reb-nsec .reb-eyebrow { font-size: .6875rem; letter-spacing: .32em; }
.reb-page .reb-nsec .reb-eyebrow::before { width: 28px; }
.reb-page .reb-nnote { margin-top: 20px; max-width: 48ch; font-size: 1.0625rem; font-weight: 300; line-height: 1.7; }
.reb-page .reb-nnote + .reb-nnote { margin-top: 14px; }
.reb-page .reb-nsplit { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 104px); align-items: start; }
.reb-page .reb-nsplit.is-center { align-items: center; }
.reb-page .reb-nsplit.is-even { grid-template-columns: 1fr 1fr; }
.reb-page .reb-nsplit-head { position: sticky; top: 120px; }
.reb-page .reb-nsplit .reb-prose { font-size: 1.0625rem; }
.reb-page .reb-nsplit .reb-prose > * + * { margin-top: 18px; }
.reb-page .reb-nsplit .reb-prose p + .reb-list, .reb-page .reb-nsplit .reb-prose p + .reb-linklist { margin-top: 24px; }
.reb-page .reb-nprose-after { margin-top: clamp(32px, 4vw, 48px); max-width: 68ch; }
.reb-page .reb-nprose-after > * + * { margin-top: 18px; }
.reb-page .reb-nnote-box { margin-top: 24px; padding: 20px 24px; border-left: 2px solid var(--accent-soft); background: rgba(194,165,107,.14); color: var(--ink); }
.reb-page .reb-nnote-box > * + * { margin-top: 12px; }
.reb-page .reb-npull { margin-top: 24px; border-top: 1px solid rgba(194,165,107,.5); padding-top: 22px; font-family: 'Cormorant Garamond', 'Didot', Georgia, serif; font-style: italic; font-size: clamp(1.3125rem, 2vw, 1.75rem); line-height: 1.35; color: var(--ink); }
.reb-page .is-night .reb-npull { color: var(--white); }
.reb-page .reb-npull footer { margin-top: 12px; font-family: 'Hanken Grotesk', system-ui, sans-serif; font-style: normal; font-size: .6875rem; letter-spacing: .26em; text-transform: uppercase; color: var(--bronze); }
.reb-page .is-night .reb-npull footer { color: var(--accent-soft); }

/* Roman-numeral cards on a hairline grid */
.reb-page .reb-ncards { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0; padding: 1px 0 0 1px; }
.reb-page .reb-ncard { margin: -1px 0 0 -1px; border: 1px solid rgba(194,165,107,.45); }
.reb-page .reb-ncard > a, .reb-page .reb-ncard > div { position: relative; display: flex; flex-direction: column; gap: 14px; height: 100%; min-height: 240px; padding: clamp(28px, 3vw, 44px); background: var(--white); color: var(--ink); overflow: hidden; isolation: isolate; transition: color .4s var(--ease-out); }
.reb-page .is-cream .reb-ncard > a, .reb-page .is-cream .reb-ncard > div { background: var(--cream); }
.reb-page .reb-ncard > a::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--accent); transform: translateY(101%); transition: transform .6s var(--ease-out); }
.reb-page .reb-ncard > a:hover { color: var(--white); }
.reb-page .reb-ncard > a:hover::before { transform: none; }
.reb-page .reb-ncard-i { font-family: 'Cormorant Garamond', 'Didot', Georgia, serif; font-style: italic; font-size: 1.5rem; line-height: 1; color: var(--bronze); transition: color .4s var(--ease-out); }
.reb-page .reb-ncard > a:hover .reb-ncard-i { color: var(--accent-soft); }
.reb-page .reb-ncard h3 { font-size: clamp(1.5rem, 2vw, 1.875rem); line-height: 1.05; color: inherit; }
.reb-page .reb-ncard p { font-size: .9375rem; line-height: 1.6; color: var(--text); transition: color .4s var(--ease-out); }
.reb-page .reb-ncard > a:hover p { color: rgba(247,242,234,.8); }
.reb-page .reb-ncard .reb-nlink { margin-top: auto; color: inherit; }
.reb-page .reb-ncard > a:hover .reb-nlink { color: var(--white); }
.reb-page .reb-ncard p a { color: var(--ink); border-bottom: 1px solid var(--accent-soft); }

/* Glass step cards over a photo band */
.reb-page .reb-nsteps-sec { color: var(--white); }
.reb-page .reb-nsteps-img { position: absolute; inset: 0; z-index: -3; }
.reb-page .reb-nsteps-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.reb-page .reb-nsteps-sec::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(7,44,49,.84) 0%, rgba(10,58,64,.7) 100%); }
.reb-page .reb-nsteps-sec .reb-nnote { color: rgba(247,242,234,.82); }
.reb-page .reb-nsteps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.reb-page .reb-nstep { padding: clamp(26px, 2.6vw, 36px); background: rgba(251,248,243,.1); border: 1px solid rgba(247,242,234,.26); -webkit-backdrop-filter: blur(var(--g-blur, 22px)); backdrop-filter: blur(var(--g-blur, 22px)); box-shadow: inset 0 1px 0 rgba(255,255,255,.2); }
.reb-page .reb-nstep i { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(194,165,107,.7); color: var(--accent-soft); font-style: normal; font-family: 'Cormorant Garamond', 'Didot', Georgia, serif; font-size: 1.25rem; }
.reb-page .reb-nstep h3 { margin-top: 20px; font-size: 1.75rem; line-height: 1.05; color: var(--white); }
.reb-page .reb-nstep p { margin-top: 12px; font-size: .9375rem; line-height: 1.65; color: rgba(247,242,234,.82); }
.reb-page .reb-nstep p a { color: var(--white); border-bottom: 1px solid var(--accent-soft); }

/* Cost: a night ledger panel */
.reb-page .reb-ncost { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.reb-page .reb-ncost-body { padding: clamp(26px, 3vw, 40px); color: rgba(247,242,234,.86); }
.reb-page .reb-ncost-body > * + * { margin-top: 18px; }
.reb-page .reb-ncost-body p { font-weight: 300; }
.reb-page .reb-ncost-body .reb-nlinks { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(194,165,107,.3); }

/* People: the homepage's provider rows */
.reb-page .reb-npeople { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.reb-page .reb-npeople-head { position: sticky; top: 120px; }
.reb-page .reb-nperson { display: grid; grid-template-columns: 168px 1fr; gap: clamp(22px, 3vw, 40px); padding: clamp(28px, 3vw, 44px) 0; border-top: 1px solid rgba(10,58,64,.16); align-items: start; }
.reb-page .reb-nperson:last-child { border-bottom: 1px solid rgba(10,58,64,.16); }
.reb-page .is-night .reb-nperson { border-top-color: rgba(194,165,107,.3); }
.reb-page .is-night .reb-nperson:last-child { border-bottom-color: rgba(194,165,107,.3); }
.reb-page .reb-nphoto { position: relative; width: 168px; aspect-ratio: 3 / 4; overflow: hidden; background: var(--line); }
.reb-page .reb-nphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.reb-page .reb-nphoto::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(194,165,107,.55); pointer-events: none; }
.reb-page .reb-nperson:hover .reb-nphoto img { transform: scale(1.04); }
.reb-page .reb-nperson h3 { font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1; color: var(--ink); }
.reb-page .reb-nrole { margin-top: 10px; font-size: .6875rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--bronze); }
.reb-page .is-night .reb-nrole { color: var(--accent-soft); }
.reb-page .reb-nperson p:not(.reb-nrole) { margin-top: 16px; max-width: 52ch; }
.reb-page .reb-nperson .reb-nlink { margin-top: 20px; }

/* Reviews on night: the score and the verbatim quotes as glass panels */
.reb-page .reb-nreviews { overflow: hidden; }
.reb-page .reb-nreviews::before { content: ""; position: absolute; width: 900px; height: 900px; left: -300px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(14,74,81,.9) 0%, rgba(7,44,49,0) 65%); pointer-events: none; z-index: -1; }
.reb-page .reb-nmark { position: absolute; right: -160px; bottom: -180px; width: 620px; height: 620px; opacity: .05; pointer-events: none; z-index: -1; }
.reb-page .reb-nreviews-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
/* GoHighLevel Google reviews widget (home and /testimonials/, open question 18): a full-width row under the quotes on the night band. */
.reb-page .reb-greviews { position: relative; margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(28px, 3vw, 40px); border-top: 1px solid rgba(194,165,107,.3); }
.reb-page .reb-greviews .reb-eyebrow, .reb-page .reb-greviews .hb-eyebrow { margin-bottom: 20px; }
.reb-page .reb-greviews iframe { display: block; width: 100%; min-height: 280px; border: 0; background: transparent; }
.reb-page .reb-nscore { display: flex; align-items: flex-end; gap: 22px; margin-top: 28px; }
.reb-page .reb-nscore b { font-family: 'Italiana', 'Didot', Georgia, serif; font-weight: 400; font-size: clamp(5rem, 9vw, 8.5rem); line-height: .8; color: var(--white); font-variant-numeric: tabular-nums; }
.reb-page .reb-nstars { display: flex; gap: 4px; color: var(--accent-soft); }
.reb-page .reb-nstars svg { width: 16px; height: 16px; }
.reb-page .reb-nscore div > span { display: block; margin-top: 8px; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(247,242,234,.65); }
.reb-page .reb-nquotes { list-style: none; display: grid; gap: 14px; align-self: center; }
.reb-page .reb-nquote { padding: clamp(24px, 2.8vw, 36px); color: var(--white); }
.reb-page .reb-nquote svg { width: 30px; height: 23px; color: var(--accent-soft); }
.reb-page .reb-nquote blockquote p { margin-top: 14px; font-size: 1.0625rem; font-weight: 300; line-height: 1.7; }
.reb-page .reb-nquote footer { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(194,165,107,.2); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,242,234,.7); }
.reb-page .reb-nquote footer strong { color: var(--accent-soft); font-weight: 500; margin-right: 12px; }
.reb-page .reb-nquotes.is-wide { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* FAQ skin over the theme accordion */
.reb-page .reb-nfaq .reb-faq { border-top-color: rgba(194,165,107,.5); }
.reb-page .reb-nfaq .reb-faq details { border-bottom-color: rgba(194,165,107,.3); }
.reb-page .reb-nfaq .reb-faq summary::after { background: linear-gradient(var(--bronze), var(--bronze)) center / 14px 1px no-repeat, linear-gradient(var(--bronze), var(--bronze)) center / 1px 14px no-repeat; }
.reb-page .reb-nfaq .reb-faq-a a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent-soft); }
.reb-page .reb-nfaq .reb-faq-a a:hover { color: var(--teal); }
.reb-page .reb-nfaq .reb-head p:not(.reb-eyebrow) { margin-top: 18px; max-width: 40ch; font-weight: 300; }

/* City chips */
.reb-page .reb-ncities { list-style: none; margin-top: 24px; display: flex; flex-wrap: wrap; gap: 6px; }
.reb-page .reb-ncities li a { display: inline-flex; align-items: center; min-height: 36px; padding: 0 12px; background: rgba(247,242,234,.06); border: 1px solid rgba(194,165,107,.35); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); transition: background-color .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out); }
.reb-page .reb-ncities li a:hover { background: var(--accent-soft); color: var(--night); border-color: var(--accent-soft); }
.reb-page .reb-ncities.is-light li a { background: rgba(251,248,243,.6); color: var(--ink); }
.reb-page .reb-ncities.is-light li a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.reb-page .reb-ncities-sec .reb-nnote { max-width: 60ch; }

/* Map card (location pages) */
.reb-page .reb-nmapcard { position: relative; aspect-ratio: 4 / 3; background: var(--line); }
.reb-page .reb-nmapcard::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(194,165,107,.5); pointer-events: none; z-index: 1; }
.reb-page .reb-nmapcard iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.7) sepia(.14) contrast(.92) brightness(1.04); }

/* Closing section: the consultation form floating over the map */
.reb-page .reb-nvisit { position: relative; isolation: isolate; overflow: hidden; min-height: 760px; display: grid; align-items: center; background: var(--white); color: var(--text); }
.reb-page .reb-nmap { position: absolute; inset: 0; z-index: 0; background: var(--line); }
.reb-page .reb-nmap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.7) sepia(.14) contrast(.92) brightness(1.04); }
.reb-page .reb-nmap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251,248,243,.92) 0%, rgba(251,248,243,.6) 42%, rgba(251,248,243,.12) 100%); pointer-events: none; }
.reb-page .reb-nvisit-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: center; padding-top: clamp(64px, 8vw, 112px); padding-bottom: clamp(64px, 8vw, 112px); }
.reb-page .reb-nvisit .reb-eyebrow { color: var(--bronze); font-size: .6875rem; letter-spacing: .32em; }
.reb-page .reb-nvisit .reb-eyebrow::before { background: var(--bronze); width: 28px; }
.reb-page .reb-nvisit .reb-h2 { margin-top: 20px; color: var(--ink); font-size: clamp(2.25rem, 4.2vw, 4rem); line-height: 1; }
.reb-page .reb-nvisit .reb-h2 em { color: var(--teal); }
.reb-page .reb-nvisit .reb-nnote { max-width: 44ch; }
.reb-page .reb-nvisit .reb-nnote a { color: var(--ink); border-bottom: 1px solid var(--accent-soft); }
.reb-page .reb-nnap { list-style: none; margin-top: 26px; display: grid; gap: 8px; }
.reb-page .reb-nnap li { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(251,248,243,.72); border: 1px solid rgba(194,165,107,.35); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); font-size: .9375rem; color: var(--ink); }
.reb-page .reb-nnap svg { width: 18px; height: 18px; color: var(--bronze); flex: none; }
.reb-page .reb-nnap address { font-style: normal; }
.reb-page .reb-nnap a { color: var(--ink); border-bottom: 1px solid var(--accent-soft); }
.reb-page .reb-nvisit .reb-ncities { margin-top: 16px; }
.reb-page .reb-nform { padding: clamp(28px, 3.4vw, 48px); background: rgba(251,248,243,.86); border: 1px solid rgba(194,165,107,.4); -webkit-backdrop-filter: blur(24px) saturate(140%); backdrop-filter: blur(24px) saturate(140%); box-shadow: 0 60px 120px -60px rgba(7,44,49,.45), inset 0 1px 0 #fff; color: var(--text); }
.reb-page .reb-nform h3 { font-size: clamp(1.75rem, 2.4vw, 2.25rem); line-height: 1.05; color: var(--ink); }
.reb-page .reb-nform > p { margin: 8px 0 26px; font-size: .9375rem; }
.reb-page .reb-nform .reb-field input, .reb-page .reb-nform .reb-field select, .reb-page .reb-nform .reb-field textarea { background-color: rgba(255,255,255,.75); border-color: rgba(10,58,64,.2); }
.reb-page .reb-nform .reb-field input:focus, .reb-page .reb-nform .reb-field select:focus, .reb-page .reb-nform .reb-field textarea:focus { background-color: #fff; }
.reb-page .reb-nform .reb-form-foot { align-items: center; gap: 14px 24px; }
.reb-page .reb-nform .reb-nor { font-size: .875rem; font-weight: 300; color: var(--muted); }
.reb-page .reb-nform .reb-nor a { color: var(--ink); border-bottom: 1px solid var(--accent-soft); white-space: nowrap; }

/* Membership tiers as glass panels on night */
.reb-page .reb-ntiers { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; align-items: start; }
.reb-page .reb-ntier { position: relative; padding: clamp(28px, 3.2vw, 44px); color: var(--white); }
.reb-page .reb-ntier.is-featured { border-color: rgba(194,165,107,.7); background: rgba(247,242,234,.11); }
.reb-page .reb-ntier-flag { position: absolute; top: -13px; left: clamp(28px, 3.2vw, 44px); padding: 4px 12px; background: var(--accent-soft); color: var(--night); font-size: .625rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; }
.reb-page .reb-ntier h3 { font-size: clamp(1.75rem, 2.4vw, 2.25rem); line-height: 1.05; }
.reb-page .reb-ntier-for { margin-top: 10px; font-size: .9375rem; font-weight: 300; color: rgba(247,242,234,.72); max-width: 36ch; }
.reb-page .reb-ntier-price { margin-top: 22px; font-family: 'Italiana', 'Didot', Georgia, serif; font-size: clamp(3rem, 4.4vw, 4.25rem); line-height: .9; color: var(--white); font-variant-numeric: tabular-nums; }
.reb-page .reb-ntier-price small { font-family: 'Hanken Grotesk', system-ui, sans-serif; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-soft); margin-left: 8px; }
.reb-page .reb-ntier ul { list-style: none; margin-top: 22px; border-top: 1px solid rgba(194,165,107,.3); }
.reb-page .reb-ntier li { padding: 12px 0; border-bottom: 1px solid rgba(194,165,107,.16); font-size: .9375rem; font-weight: 300; }
.reb-page .reb-ntier li strong { font-weight: 500; color: var(--white); }
.reb-page .reb-ntier .reb-nbtns { margin-top: 26px; }
.reb-page .reb-nfineprint { margin-top: 24px; font-size: .8125rem; color: rgba(247,242,234,.6); max-width: 70ch; }

/* Long-form Q and A (article pages): a sticky contents list beside open details */
.reb-page .reb-nlong { max-width: 72ch; }
.reb-page .reb-nlong > * + * { margin-top: 20px; }
.reb-page .reb-ntoc { position: sticky; top: 120px; list-style: none; border-top: 1px solid rgba(194,165,107,.5); counter-reset: toc; }
.reb-page .reb-ntoc li a { display: flex; gap: 14px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(10,58,64,.12); font-size: .8125rem; letter-spacing: .02em; color: var(--ink); transition: color .25s var(--ease-out); }
.reb-page .reb-ntoc li a::before { counter-increment: toc; content: counter(toc, lower-roman); font-family: 'Cormorant Garamond', 'Didot', Georgia, serif; font-style: italic; font-size: 1rem; color: var(--bronze); min-width: 1.6em; }
.reb-page .reb-ntoc li a:hover { color: var(--teal); }
.reb-page .reb-nqa { border-bottom: 1px solid rgba(194,165,107,.3); scroll-margin-top: 110px; }
.reb-page .reb-nqa:first-of-type { border-top: 1px solid rgba(194,165,107,.5); }
.reb-page .reb-nqa summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 0; }
.reb-page .reb-nqa summary::-webkit-details-marker { display: none; }
.reb-page .reb-nqa summary h2 { font-size: clamp(1.625rem, 2.4vw, 2.25rem); line-height: 1.08; color: var(--ink); }
.reb-page .reb-nqa summary::after { content: ""; flex: none; width: 14px; height: 14px; background: linear-gradient(var(--bronze), var(--bronze)) center / 14px 1px no-repeat, linear-gradient(var(--bronze), var(--bronze)) center / 1px 14px no-repeat; transition: transform .3s var(--ease); }
.reb-page .reb-nqa[open] summary::after { transform: rotate(45deg); }
.reb-page .reb-nqa-a { padding: 0 48px 30px 0; }
.reb-page .reb-nqa-a > * + * { margin-top: 16px; }
.reb-page .reb-nqa-a a { color: var(--ink); border-bottom: 1px solid var(--accent-soft); }

.reb-page .reb-az-group ul:empty { display: none; }

/* Legal text */
.reb-page .reb-nlegal { max-width: 76ch; }
.reb-page .reb-nlegal h2 { font-family: 'Hanken Grotesk', system-ui, sans-serif; font-weight: 500; font-size: 1.125rem; letter-spacing: 0; margin-top: 2.2em; }
.reb-page .reb-nlegal h2:first-child { margin-top: 0; }
.reb-page .reb-nlegal p, .reb-page .reb-nlegal li { margin-top: 1em; font-size: 1rem; }
.reb-page .reb-nlegal ul { padding-left: 1.2em; }
.reb-page .reb-nlegal a { color: var(--ink); border-bottom: 1px solid var(--accent-soft); }
.reb-page .reb-nupdated { margin-top: 32px; font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 1100px) { .reb-page .reb-nhero { padding-top: calc(72px + clamp(32px, 6vw, 64px)); } }
@media (max-width: 1024px) {
  .reb-page .reb-nhero-grid, .reb-page .reb-nsplit, .reb-page .reb-nsplit.is-even, .reb-page .reb-ncost, .reb-page .reb-npeople, .reb-page .reb-nreviews-grid, .reb-page .reb-nvisit-grid { grid-template-columns: 1fr; }
  .reb-page .reb-nhero-grid { gap: 40px; align-items: start; }
  .reb-page .reb-nhero::before { background: linear-gradient(180deg, rgba(7,44,49,.96) 0%, rgba(7,44,49,.9) 55%, rgba(7,44,49,.78) 100%); }
  .reb-page .reb-nhero .reb-h1 { max-width: none; }
  .reb-page .reb-nhero-photo { max-width: 420px; }
  .reb-page .reb-nsplit-head, .reb-page .reb-npeople-head, .reb-page .reb-ntoc { position: static; }
  .reb-page .reb-nmap::after { background: linear-gradient(180deg, rgba(251,248,243,.94) 0%, rgba(251,248,243,.78) 100%); }
  .reb-page .reb-nstats { grid-template-columns: 1fr 1fr; }
  .reb-page .reb-nstats li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .reb-page .reb-nstats li:nth-child(n+3) { border-top: 1px solid rgba(194,165,107,.2); }
}
@media (max-width: 680px) {
  .reb-page .reb-nhero .reb-h1 { font-size: clamp(2.125rem, 9vw, 2.75rem); }
  .reb-page .reb-nledger > div { grid-template-columns: 1fr; gap: 6px; }
  .reb-page .reb-nbtn { width: 100%; white-space: normal; text-align: center; line-height: 1.4; padding: 14px 20px; }
  .reb-page .reb-nperson { grid-template-columns: 1fr; }
  .reb-page .reb-nphoto { width: 150px; }
  .reb-page .reb-ncards { grid-template-columns: 1fr; }
  .reb-page .reb-nqa-a { padding-right: 0; }
  .reb-page .reb-ntier-flag { left: 20px; }
}

/* The floating booking dock. Appended after the footer by site/components/footer.html; shown by reb-theme.js once
   the hero has scrolled past and hidden while the closing form is on screen. Hidden at 680px and below, where the
   footer's sticky Call / Book bar takes over, and on pages that set data-reb-no-dock. */
#reb-dock { position: fixed; left: 50%; bottom: 22px; z-index: 850; transform: translate(-50%, 140%); display: flex; align-items: center; gap: 6px; padding: 6px 6px 6px 22px; background: rgba(7,44,49,.72); border: 1px solid rgba(194,165,107,.35); -webkit-backdrop-filter: blur(22px) saturate(140%); backdrop-filter: blur(22px) saturate(140%); box-shadow: 0 30px 60px -30px rgba(0,0,0,.7), inset 0 1px 0 rgba(247,242,234,.12); color: #FBF8F3; font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif; transition: transform .7s cubic-bezier(.16,1,.3,1), opacity .5s cubic-bezier(.16,1,.3,1); opacity: 0; }
#reb-dock * { box-sizing: border-box; margin: 0; padding: 0; }
#reb-dock.is-on { transform: translate(-50%, 0); opacity: 1; }
#reb-dock p { font-size: .8125rem; letter-spacing: .04em; color: rgba(247,242,234,.8); white-space: nowrap; padding-right: 18px; border-right: 1px solid rgba(194,165,107,.3); margin-right: 8px; }
#reb-dock p b { font-weight: 500; color: #FBF8F3; }
#reb-dock a { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; font-size: .6875rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; text-decoration: none; color: inherit; transition: background-color .3s cubic-bezier(.16,1,.3,1), color .3s cubic-bezier(.16,1,.3,1); }
#reb-dock a.reb-dock-call { color: #FBF8F3; }
#reb-dock a.reb-dock-call:hover { color: #C2A56B; }
#reb-dock a.reb-dock-book { background: #C2A56B; color: #072C31; }
#reb-dock a.reb-dock-book:hover { background: #FBF8F3; }
#reb-dock :focus-visible { outline: 2px solid #C2A56B; outline-offset: 3px; }
html:has([data-reb-no-dock]) #reb-dock { display: none; }
@media (max-width: 680px) { #reb-dock { display: none; } }
@media (prefers-reduced-motion: reduce) { #reb-dock { transition: none; } }
