/* ==========================================================================
   Cleaning & Care ProfServices — main.css
   Design system per 01-DEVELOPER-BRIEF.md §5 (final palette Option C)
   ========================================================================== */

:root {
  /* Primary brand */
  --brand-blue: #102347;
  --brand-blue-deep: #0A1A38;
  --brand-blue-soft: #1F3463;

  /* Accent */
  --brand-gold: #D4AF37;
  --brand-gold-soft: #E0C56A;
  --brand-gold-deep: #B89328;

  /* Neutrals */
  --paper: #FBFAF6;
  --paper-soft: #F4EFE3;
  --sand: #EFE9DB;
  --mist: #DDD8CB;
  --hairline: #C9C3B4;
  --ink: #0E1410;
  --ink-soft: #4B5651;
  --ink-tertiary: #6B7570;

  /* Functional */
  --success: #2E5B45;
  --warning: #B47A1A;
  --danger: #A03328;
  --info: var(--brand-blue);

  /* Typography */
  --font-display: "Instrument Serif", "Georgia", serif;
  --font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Monaco, monospace;

  /* Spacing */
  --space-xs: 4px; --space-sm: 8px; --space-md: 16px; --space-lg: 24px;
  --space-xl: 32px; --space-2xl: 48px; --space-3xl: 64px; --space-4xl: 96px;
  --gutter: clamp(20px, 4vw, 48px);
  --max-content: 1280px;

  /* Radius */
  --radius-sm: 4px; --radius-md: 6px; --radius-lg: 12px; --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px -4px rgba(15, 30, 61, 0.08);
  --shadow-md: 0 12px 24px -8px rgba(15, 30, 61, 0.12);
  --shadow-lg: 0 20px 40px -20px rgba(15, 30, 61, 0.20);
  --shadow-xl: 0 30px 60px -20px rgba(15, 30, 61, 0.25);
}

/* ============ Reset / base ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style-position: inside; }
:focus-visible { outline: 2px solid var(--brand-gold); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--brand-blue); color: var(--paper);
  padding: 12px 18px; border-radius: 0 0 var(--radius-md) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute !important; word-wrap: normal !important;
}

/* ============ Utility ============ */
.wrap { max-width: var(--max-content); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow, .section-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
}
.section-label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.section-label::before { content: ""; width: 28px; height: 1px; background: var(--brand-gold); }
.section-label.on-dark, .section-dark .section-label { color: var(--brand-gold-soft); }

/* ============ Typography ============ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }
h1 { font-size: clamp(42px, 6.5vw, 80px); line-height: 1.04; letter-spacing: -0.01em; }
h2 { font-size: clamp(32px, 4.5vw, 54px); line-height: 1.08; letter-spacing: -0.015em; }
h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; }
h4 { font-family: var(--font-body); font-weight: 600; font-size: clamp(18px, 1.6vw, 20px); line-height: 1.3; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--brand-gold); }
.lead { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.6; color: var(--ink-soft); max-width: 56ch; }
.section-dark h2 em { color: var(--brand-gold-soft); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; font-weight: 500; font-size: 15px;
  border-radius: var(--radius-md); transition: all .22s ease;
  white-space: nowrap; line-height: 1; cursor: pointer; text-align: center;
}
.btn-primary { background: var(--brand-blue); color: var(--paper); }
.btn-primary:hover { background: var(--brand-blue-deep); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-gold { background: var(--brand-gold); color: var(--brand-blue); }
.btn-gold:hover { background: var(--brand-gold-soft); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--hairline); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-soft); }
.btn-ghost-light { background: transparent; color: var(--paper); border: 1px solid rgba(251,250,246,.3); }
.btn-ghost-light:hover { border-color: var(--paper); background: rgba(251,250,246,.08); }

/* ============ Top utility bar ============ */
.topbar { background: var(--brand-blue); color: var(--paper); font-size: 12px; font-family: var(--font-mono); letter-spacing: .04em; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; padding-bottom: 10px; gap: 16px; }
.topbar a { color: var(--paper); }
.topbar a:hover { color: var(--brand-gold-soft); }
.topbar-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; opacity: .9; }
.topbar-item i { font-size: 14px; opacity: .7; }
@media (max-width: 700px) {
  .topbar-left { display: none; }
  .topbar-right .topbar-item:not(.phone) { display: none; }
  .topbar .wrap { justify-content: center; }
}

/* ============ Main nav ============ */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251,250,246,.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.site-logo img { height: 48px; width: auto; }
.site-logo .logo-mobile { display: none; }
.main-nav ul { display: flex; gap: 6px; list-style: none; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav a {
  display: inline-block; padding: 10px 12px; font-size: 15px; font-weight: 500;
  color: var(--ink-soft); border-radius: var(--radius-sm); transition: color .2s ease;
  position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 1px;
  background: var(--brand-gold); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.main-nav a:hover { color: var(--brand-blue); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 300px;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 10px;
  display: none; flex-direction: column; gap: 2px; z-index: 95;
}
.main-nav li:hover > .sub-menu, .main-nav li:focus-within > .sub-menu { display: flex; }
.main-nav .sub-menu a { display: block; padding: 10px 12px; border-radius: var(--radius-md); }
.main-nav .sub-menu a::after { display: none; }
.main-nav .sub-menu a:hover { background: var(--paper-soft); }
.menu-item-has-children > a .ti-chevron-down { font-size: 13px; margin-left: 4px; vertical-align: -1px; }
/* Active nav: persist the gold underline on the current top-level item / section, mark the open sub-item */
.main-nav .current-menu-item > a,
.main-nav .current-menu-parent > a,
.main-nav .current-menu-ancestor > a,
.main-nav .current_page_item > a,
.main-nav .current_page_parent > a,
.main-nav .current_page_ancestor > a,
.main-nav a[aria-current="page"] { color: var(--brand-blue); }
.main-nav > ul > li.current-menu-item > a::after,
.main-nav > ul > li.current-menu-parent > a::after,
.main-nav > ul > li.current-menu-ancestor > a::after,
.main-nav > ul > li.current_page_item > a::after,
.main-nav > ul > li.current_page_parent > a::after,
.main-nav > ul > li.current_page_ancestor > a::after { transform: scaleX(1); }
.main-nav .sub-menu .current-menu-item > a,
.main-nav .sub-menu .current_page_item > a,
.main-nav .sub-menu a[aria-current="page"] { background: var(--paper-soft); color: var(--brand-blue); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 6px; }
.header-phone:hover { color: var(--brand-blue); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; font-size: 24px; color: var(--brand-blue); }

@media (max-width: 980px) {
  .site-logo .logo-desktop { display: none; }
  .site-logo .logo-mobile { display: block; }
  .site-logo img { height: 44px; }
  .site-header .wrap { gap: 12px; }
  .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: 0; top: 0; background: var(--paper);
    transform: translateX(100%); transition: transform .28s ease; z-index: 200;
    overflow-y: auto; padding: 90px var(--gutter) 120px;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { font-size: 19px; padding: 14px 6px; border-bottom: 1px solid var(--mist); }
  .main-nav a::after { display: none; }
  .main-nav .sub-menu { position: static; display: none; border: 0; box-shadow: none; background: var(--paper-soft); border-radius: var(--radius-md); margin: 4px 0 10px; }
  .main-nav li.is-open > .sub-menu { display: flex; }
  .nav-close { position: fixed; top: 18px; right: var(--gutter); z-index: 210; display: none; width: 44px; height: 44px; align-items: center; justify-content: center; font-size: 26px; color: var(--brand-blue); }
  .main-nav.is-open ~ .nav-close, body.nav-open .nav-close { display: inline-flex; }
  .btn-header-cta { padding: 11px 14px; font-size: 14px; }
}

/* ============ Sections ============ */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section-alt { background: var(--paper-soft); }
.section-sand { background: var(--sand); }
.section-dark { background: var(--brand-blue); color: var(--paper); position: relative; overflow: hidden; }
.section-dark::before {
  content: ""; position: absolute; top: -180px; right: -180px; width: 520px; height: 520px;
  background: radial-gradient(closest-side, rgba(212,175,55,.14), transparent 70%); pointer-events: none;
}
.section-dark .lead { color: rgba(251,250,246,.78); }
.section-head { max-width: 720px; margin-bottom: clamp(21px, 2.7vw, 37px); }

/* ============ Hero ============ */
.hero { padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 60fr 40fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.hero-breadcrumb { margin-bottom: 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-tertiary); }
.hero-breadcrumb a:hover { color: var(--brand-blue); }
.hero-breadcrumb .sep { margin: 0 7px; color: var(--hairline); }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hero .eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--brand-gold); }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-trustline { font-family: var(--font-mono); font-size: 12px; letter-spacing: .03em; color: var(--ink-tertiary); line-height: 1.9; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.hero-statcard {
  position: absolute; left: -28px; bottom: 28px;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px 24px; display: flex; gap: 28px;
}
.hero-statcard .stat-num { font-family: var(--font-display); font-size: 30px; line-height: 1.1; color: var(--brand-blue); }
.hero-statcard .stat-label { font-size: 12px; color: var(--ink-soft); margin-top: 4px; max-width: 14ch; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual img { aspect-ratio: 16 / 10; }
  .hero-statcard { left: 16px; bottom: 16px; padding: 14px 18px; gap: 20px; }
  .hero-statcard .stat-num { font-size: 24px; }
}

/* ============ Trust strip ============ */
.trust-strip { background: var(--brand-blue); color: var(--paper); }
.trust-strip .wrap { display: flex; justify-content: space-between; gap: 18px 32px; flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .92; }
.trust-item i { color: var(--brand-gold); font-size: 18px; }

/* ============ Cards: service grid ============ */
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper-soft); border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg); transition: all .22s ease; position: relative; display: flex; flex-direction: column; gap: 12px;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-gold); }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md); background: var(--brand-blue);
  display: inline-flex; align-items: center; justify-content: center; color: var(--brand-gold); font-size: 26px;
  transition: transform .22s ease;
}
.card:hover .card-icon { transform: scale(1.05); }
.card h3, .card h4 { color: var(--brand-blue); }
.card p { color: var(--ink-soft); font-size: 15px; }
.card .card-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--ink-tertiary); }
.card .card-link, .post-card .card-link { margin-top: auto; font-weight: 600; font-size: 14px; color: var(--brand-blue); display: inline-flex; align-items: center; gap: 6px; }
.card .card-link i, .post-card .card-link i { transition: transform .2s ease; }
.card:hover .card-link, .post-card:hover .card-link { color: var(--brand-gold-deep); }
.card:hover .card-link i, .post-card:hover .card-link i { transform: translateX(3px); }
a.card { color: inherit; }
.card .price-note { font-weight: 600; color: var(--brand-blue); }
@media (max-width: 980px) { .cards-grid, .cards-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cards-grid, .cards-grid-3 { grid-template-columns: 1fr; } }

/* ============ Frequency / comparison cards ============ */
.freq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.freq-card {
  background: var(--paper-soft); border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg); display: flex; flex-direction: column; gap: 12px; transition: all .22s ease; position: relative;
}
.freq-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.freq-card .freq-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-tertiary); }
.freq-card h3 { font-size: clamp(20px, 1.9vw, 24px); color: var(--brand-blue); }
.freq-card p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.freq-card .freq-foot { font-size: 13px; border-top: 1px solid var(--hairline); padding-top: 12px; color: var(--ink-soft); }
.freq-card .freq-foot strong { color: var(--ink); }
.freq-card.is-featured { background: var(--brand-blue); color: var(--paper); border-color: var(--brand-blue); }
.freq-card.is-featured h3 { color: var(--paper); }
.freq-card.is-featured p { color: rgba(251,250,246,.78); }
.freq-card.is-featured .freq-meta { color: var(--brand-gold-soft); }
.freq-card.is-featured .freq-foot { border-color: rgba(251,250,246,.2); color: rgba(251,250,246,.8); }
.freq-card.is-featured .freq-foot strong { color: var(--paper); }
.freq-badge {
  position: absolute; top: -12px; left: var(--space-lg);
  background: var(--brand-gold); color: var(--brand-blue);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-pill);
}
@media (max-width: 1100px) { .freq-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .freq-grid { grid-template-columns: 1fr; } }

/* ============ Numbered (roman) items ============ */
.roman-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl) var(--space-2xl); }
.roman-item .roman-num { font-family: var(--font-display); font-style: italic; font-size: clamp(36px, 3.4vw, 48px); color: var(--brand-gold); line-height: 1; margin-bottom: 12px; }
.roman-item h3 { margin-bottom: 8px; }
.roman-item p { color: var(--ink-soft); font-size: 15px; }
.section-dark .roman-item h3 { color: var(--paper); }
.section-dark .roman-item p { color: rgba(251,250,246,.75); }
@media (max-width: 900px) { .roman-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .roman-grid { grid-template-columns: 1fr; } }

/* ============ Prose (generic content) ============ */
.prose { max-width: 760px; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); font-size: 16.5px; }
.prose p strong { color: var(--ink); }
.prose h3 { color: var(--brand-blue); margin: 34px 0 14px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 4px; color: var(--ink-soft); }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--brand-gold-deep); }
.prose blockquote { border-left: 2px solid var(--brand-gold); padding-left: 20px; font-family: var(--font-display); font-size: 21px; color: var(--brand-blue); margin: 28px 0; }
.prose a { color: var(--brand-blue); text-decoration: underline; text-decoration-color: var(--brand-gold); text-underline-offset: 3px; }
.prose a:hover { color: var(--brand-gold-deep); }
.section-dark .prose p { color: rgba(251,250,246,.78); }
/* Service-page labeled "scope" blocks → uniform white cards in an aligned grid (same look as the modules). Only GROUPED labeled paragraphs become cards; a lone labeled paragraph (its prose's only child) is a note or sub-heading and stays plain. */
.page-layout .prose p:not(:only-child):has(> strong:first-child) { position: relative; background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 18px 20px; margin: 0 0 14px; }
.page-layout .prose p:not(:only-child):has(> strong:first-child)::before { content: ""; position: absolute; top: 0; left: 20px; right: 20px; height: 2px; background: linear-gradient(90deg, var(--brand-gold), transparent); border-radius: 2px; }
.page-layout .prose p > strong:first-child { display: block; margin-bottom: 5px; color: var(--brand-blue); font-size: 1.02em; }
.page-layout .section-dark .prose p:has(> strong:first-child) { color: var(--ink-soft); }
/* #4 — vary the accent by section: cream sections get the gold top bar, tinted (alt) sections get a gold left edge instead (grouped cards only) */
.page-layout .section-alt .prose p:not(:only-child):has(> strong:first-child) { border-left: 3px solid var(--brand-gold-soft); }
.page-layout .section-alt .prose p:not(:only-child):has(> strong:first-child)::before { display: none; }
/* italic note-asides stay as quiet callouts, not cards */
.page-layout .prose p:has(> em:only-child) { color: var(--ink-tertiary); font-size: .95em; border-left: 2px solid var(--hairline); padding-left: 16px; }
/* #1 — the intro (first section) spans the full module width */
.page-content > .cc-section:first-child .prose,
.page-content > .cc-section#intro .prose { max-width: none; }
/* #3 — on desktop, flow the labeled blocks with flexbox so the last row's cards grow to fill the full width (never an empty cell); checkmark lists become two balanced columns; intros/notes span the full width */
@media (min-width: 1025px) {
  .page-layout .prose:has(p > strong:first-child) { display: flex; flex-wrap: wrap; gap: 18px 20px; align-items: stretch; }
  .page-layout .prose:has(p:only-child > strong:first-child) { display: block; }
  .page-layout .prose:has(p > strong:first-child) > * { margin: 0; }
  .page-layout .prose:has(p > strong:first-child) > p:has(> strong:first-child) { flex: 1 1 290px; }
  .page-layout .prose:has(p > strong:first-child) > p:not(:has(> strong:first-child)) { flex-basis: 100%; }
  .page-layout .prose:has(p > strong:first-child) > :is(h3, ul, ol, blockquote) { flex-basis: 100%; }
  .page-layout .cc-section .prose ul { display: block; column-count: 2; column-gap: 36px; }
  .page-layout .cc-section .prose ul li { break-inside: avoid; }
}

/* ============ FAQ accordion ============ */
.cc-faq { max-width: 820px; }
.cc-faq-item { border-top: 1px solid var(--hairline); }
.cc-faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.cc-faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--font-display); font-size: 22px; line-height: 1.25; color: var(--brand-blue);
}
.cc-faq-item summary::-webkit-details-marker { display: none; }
.cc-faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 24px; font-weight: 300; color: var(--brand-gold-deep);
  transition: transform .25s ease;
}
.cc-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.cc-faq-item summary:hover { color: var(--brand-blue-soft); }
.cc-faq-answer { padding: 0 0 24px; color: var(--ink-soft); max-width: none; }
.cc-faq-answer p { margin-bottom: 12px; }
.cc-faq-answer p:last-child { margin-bottom: 0; }

/* ============ Testimonials ============ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.testimonial-card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: var(--space-xl) var(--space-lg); display: flex; flex-direction: column; gap: 18px; }
.testimonial-quote { font-family: var(--font-display); font-size: 19px; line-height: 1.4; color: var(--brand-blue); }
.testimonial-quote em { color: var(--brand-gold-deep); }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--brand-gold); color: var(--brand-blue); font-family: var(--font-display); font-size: 22px; display: inline-flex; align-items: center; justify-content: center; }
.testimonial-name { font-weight: 600; font-size: 14.5px; }
.testimonial-role { font-size: 13px; color: var(--ink-tertiary); }
.testimonial-stars { display: inline-flex; gap: 3px; color: var(--brand-gold); font-size: 16px; line-height: 1; }
.testimonial-stars .ti-star { color: var(--hairline); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---- Feedback form (public review submission) ---- */
.cc-feedback-form { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.cc-feedback-form .cc-field { display: flex; flex-direction: column; gap: 6px; }
.cc-feedback-form label,
.cc-feedback-form .cc-field-label { font-size: 14px; font-weight: 600; color: var(--brand-blue); }
.cc-feedback-form .cc-req { color: var(--brand-gold-deep); }
.cc-feedback-form input[type="text"],
.cc-feedback-form input[type="email"],
.cc-feedback-form textarea { font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 11px 13px; width: 100%; }
.cc-feedback-form input:focus,
.cc-feedback-form textarea:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(16,35,71,.12); }
.cc-feedback-form textarea { resize: vertical; min-height: 120px; }
.cc-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.cc-star-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; font-size: 26px; }
.cc-star-input input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cc-star-input label { color: var(--hairline); cursor: pointer; line-height: 1; margin: 0; transition: color .12s; }
.cc-star-input label:hover,
.cc-star-input label:hover ~ label,
.cc-star-input input:checked ~ label { color: var(--brand-gold); }
.cc-star-input input:focus-visible + label { outline: 2px solid var(--brand-blue); outline-offset: 2px; border-radius: 3px; }
.cc-feedback-submit { align-self: flex-start; }
.cc-feedback-fineprint { font-size: 12.5px; color: var(--ink-tertiary); margin: 0; }
.cc-feedback-notice { max-width: 680px; margin: 0 auto 22px; padding: 12px 16px; border-radius: var(--radius-md); font-size: 14.5px; }
.cc-feedback-ok { background: rgba(212,175,55,.14); border: 1px solid var(--brand-gold); color: var(--brand-blue); }
.cc-feedback-err { background: #fcefef; border: 1px solid #e2b6b6; color: #8a2b2b; }

.pullquote { text-align: center; max-width: 860px; margin: 0 auto; }
.pullquote .quote { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); line-height: 1.3; color: var(--brand-blue); margin-bottom: 26px; }

/* ============ Before/After slider ============ */
.ba-wrap { max-width: 940px; margin: 0 auto; }
.cc-before-after { padding-bottom: clamp(24px, 3.5vw, 40px); border-bottom: 1px solid var(--hairline); }
.ba-slider {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16 / 10; cursor: col-resize; user-select: none; -webkit-user-select: none;
  box-shadow: var(--shadow-lg); background: var(--mist); touch-action: pan-y;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider .ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-slider .ba-after { z-index: 1; }
.ba-label {
  position: absolute; top: 16px; z-index: 4; pointer-events: none;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(16,35,71,.82); color: var(--paper); padding: 6px 12px; border-radius: var(--radius-pill);
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; z-index: 3; width: 2px; background: var(--paper); transform: translateX(-1px); }
.ba-handle-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--paper);
  box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center;
}
.ba-handle-grip::before, .ba-handle-grip::after {
  content: ""; border: solid var(--brand-blue); border-width: 0 2px 2px 0; padding: 4px; position: absolute;
}
.ba-handle-grip::before { transform: rotate(135deg); left: 11px; }
.ba-handle-grip::after { transform: rotate(-45deg); right: 11px; }
.ba-hint { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-tertiary); }
.ba-hint i { color: var(--brand-gold-deep); font-size: 16px; }
.ba-caption { text-align: center; margin-top: 22px; }
.ba-caption-title { font-family: var(--font-display); font-size: 22px; color: var(--brand-blue); }
.ba-caption-desc { color: var(--ink-soft); font-size: 15px; max-width: 60ch; margin: 6px auto 0; }
.ba-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: 30px; }
.ba-thumb {
  text-align: left; background: var(--paper-soft); border: 1px solid var(--hairline); border-radius: var(--radius-md);
  padding: 14px 16px; transition: all .2s ease; cursor: pointer;
}
.ba-thumb:hover { border-color: var(--brand-gold); transform: translateY(-2px); }
.ba-thumb.active { border-color: var(--brand-blue); background: var(--paper); border-width: 2px; }
.ba-thumb-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-tertiary); }
.ba-thumb-title { font-weight: 600; font-size: 14px; color: var(--brand-blue); margin-top: 3px; }
.ba-disclaimer { text-align: center; margin-top: 18px; font-size: 12.5px; color: var(--ink-tertiary); font-style: italic; }
@media (max-width: 700px) { .ba-thumbs { grid-template-columns: 1fr; } .ba-handle-grip { width: 48px; height: 48px; } }

/* ============ Service page: section-nav rail + content column ============ */
/* Desktop: a sticky vertical "tree" rail (left) beside the page content.
   Collapses to a sticky horizontal pill bar at <=1024px. main.js builds the
   list from .cc-section[data-nav] and marks the in-view section with .active. */
.page-layout { display: grid; grid-template-columns: 232px minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); align-items: start; padding-block: clamp(36px, 4.5vw, 64px); }
.page-layout.no-sidenav { display: block; }
/* widen the service-page canvas on desktop so content fills more of the page beside the rail */
.wrap-service { max-width: 1400px; }

/* Vertical rail */
.sidenav { position: sticky; top: 96px; align-self: start; }
.sidenav-title { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-tertiary); margin: 0 0 14px; padding-left: 21px; }
.sidenav ul { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--hairline); }
.sidenav li { margin: 0; }
.sidenav a { position: relative; display: block; padding: 9px 8px 9px 21px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .03em; line-height: 1.45; color: var(--ink-soft); transition: color .18s ease; }
.sidenav a::before { content: ""; position: absolute; left: -1px; top: 50%; transform: translateY(-50%); width: 12px; height: 1px; background: var(--hairline); transition: background .18s ease, width .18s ease; }
.sidenav a:hover { color: var(--brand-blue); }
.sidenav a:hover::before { background: var(--ink-tertiary); }
.sidenav a.active { color: var(--brand-blue); font-weight: 600; }
.sidenav a.active::before { background: var(--brand-gold); width: 16px; }

/* Content column: sections fill the column; colored sections read as rounded panels */
.page-content > .cc-section:first-child { padding-top: 0; }
.page-layout .cc-section { padding: clamp(30px, 3.6vw, 52px) clamp(22px, 2.6vw, 38px); }
.page-layout .cc-section .prose { max-width: none; margin-left: 0; margin-right: 0; }
/* scope-card and checklist sections fill the full content width; only plain reading prose keeps the narrow cap */
.page-layout .cc-section .prose:has(p > strong:first-child),
.page-layout .cc-section .prose:has(ul) { max-width: none; }
/* hide a leftover demo authoring note (a lone labeled paragraph sitting right before a card module) */
.page-layout .cc-section .prose:has(> p:only-child > strong:first-child):has(+ .cards-grid) { display: none; }
.page-layout .cc-faq { max-width: none; margin: 0; column-count: 1; }
.page-layout .section-alt,
.page-layout .section-dark { border-radius: 16px; margin-block: clamp(6px, 1vw, 14px); }
/* content grids adapt to the column width, not the viewport */
.page-layout .roman-grid { grid-template-columns: repeat(auto-fit, minmax(208px, 1fr)); gap: clamp(20px, 2.4vw, 36px); }
.page-layout .cards-grid,
.page-layout .cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
.page-layout .freq-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.page-layout .sched-grid { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
.page-layout .testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* <=1024px: single column; the rail becomes a sticky horizontal pill bar */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: minmax(0, 1fr); gap: 0; padding-block: 0; }
  .sidenav, .page-content { min-width: 0; }
  .page-content > .cc-section:first-child { padding-top: clamp(26px, 4vw, 44px); }
  .sidenav { position: sticky; top: var(--header-h, 72px); z-index: 60; align-self: stretch; margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter); background: rgba(251,250,246,.94); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-bottom: 1px solid var(--hairline); }
  .sidenav-title { display: none; }
  .sidenav ul { display: flex; gap: 4px; border-left: 0; padding: 10px 0; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; -webkit-overflow-scrolling: touch; -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 26px), transparent); mask-image: linear-gradient(to right, #000 calc(100% - 26px), transparent); }
  .sidenav.is-scrolled ul { -webkit-mask-image: linear-gradient(to right, transparent, #000 26px, #000 calc(100% - 26px), transparent); mask-image: linear-gradient(to right, transparent, #000 26px, #000 calc(100% - 26px), transparent); }
  .sidenav.is-end ul { -webkit-mask-image: linear-gradient(to right, transparent, #000 26px); mask-image: linear-gradient(to right, transparent, #000 26px); }
  .sidenav ul::-webkit-scrollbar { display: none; }
  .sidenav li { flex: none; }
  .sidenav a { margin: 0; padding: 8px 15px; border: 1px solid transparent; border-radius: 999px; white-space: nowrap; font-size: 13px; letter-spacing: 0; font-weight: 600; }
  .sidenav a::before { display: none; }
  .sidenav a:hover { background: var(--paper-soft); }
  .sidenav a.active { background: var(--brand-blue); color: var(--brand-gold-soft); border-color: var(--brand-blue); }
  .page-layout .cc-section { scroll-margin-top: 128px; }
}

/* ============ CTA section + forms ============ */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.cta-features { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.cta-features li { display: flex; gap: 10px; align-items: flex-start; color: rgba(251,250,246,.85); font-size: 15px; }
.cta-features i { color: var(--brand-gold); font-size: 18px; margin-top: 2px; }
.cta-contactline { margin-top: 30px; font-family: var(--font-mono); font-size: 13px; color: rgba(251,250,246,.7); line-height: 2; }
.cta-contactline a { color: var(--paper); }
.cta-contactline a:hover { color: var(--brand-gold-soft); }
.cta-form-card { background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); padding: clamp(24px, 3vw, 40px); color: var(--ink); }
.cta-form-card .form-title { font-family: var(--font-display); font-size: 24px; color: var(--brand-blue); margin-bottom: 6px; }
.cta-form-card .form-note { font-size: 13px; color: var(--ink-tertiary); margin-top: 14px; text-align: center; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }

/* FluentForms styling override (scoped, light touch) */
.cta-form-card .ff-el-form-control, .cta-form-card .ff-el-form-control:focus,
.cta-form-card input[type="text"], .cta-form-card input[type="email"], .cta-form-card input[type="tel"],
.cta-form-card select, .cta-form-card textarea {
  width: 100%; border: 1px solid var(--hairline); border-radius: var(--radius-md);
  background: var(--paper); font-family: var(--font-body); font-size: 15px; padding: 12px 14px; color: var(--ink);
  transition: border-color .2s ease;
}
.cta-form-card input:focus, .cta-form-card select:focus, .cta-form-card textarea:focus { border-color: var(--brand-blue); outline: none; }
.cta-form-card .ff-el-input--label label, .cta-form-card label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.cta-form-card .ff-btn-submit, .cta-form-card button[type="submit"] {
  background: var(--brand-blue) !important; color: var(--paper) !important; border: none !important;
  border-radius: var(--radius-md) !important; padding: 14px 22px !important; font-weight: 500 !important; width: 100%;
  transition: all .22s ease !important;
}
.cta-form-card .ff-btn-submit:hover, .cta-form-card button[type="submit"]:hover { background: var(--brand-blue-deep) !important; transform: translateY(-1px); }
.cta-form-card .ff-message-success { border: 1px solid var(--success); border-radius: var(--radius-md); padding: 18px; color: var(--success); background: #f2f7f4; }
.cta-form-card .ff-el-is-error .ff-el-form-control { border-color: var(--danger); }
.cta-form-card .error, .cta-form-card .ff-error { color: var(--danger); font-size: 13px; }
.form-fallback { border: 1px dashed var(--hairline); border-radius: var(--radius-md); padding: 22px; font-size: 15px; color: var(--ink-soft); }
.form-fallback a { color: var(--brand-blue); font-weight: 600; }

/* ============ Mobile floating CTA bar ============ */
.mobile-cta { display: none; }
@media (max-width: 700px) {
  body { padding-bottom: 80px; }
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
    background: var(--paper); border-top: 1px solid var(--hairline);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px -12px rgba(15,30,61,.25);
  }
  .mobile-cta a {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    min-height: 44px; border-radius: var(--radius-md); font-size: 13.5px; font-weight: 600;
  }
  .mobile-cta .m-call { background: var(--brand-gold); color: var(--brand-blue); }
  .mobile-cta .m-text { background: var(--brand-blue); color: var(--paper); }
  .mobile-cta .m-quote { background: var(--paper); color: var(--brand-blue); border: 1px solid var(--brand-blue); }
}

/* ============ Footer ============ */
.site-footer { background: var(--brand-blue); color: rgba(251,250,246,.78); font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding: clamp(48px, 6vw, 80px) 0 40px; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 18px; background: var(--paper); padding: 11px 18px; border-radius: var(--radius-md); display: inline-block; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.footer-brand p { max-width: 36ch; line-height: 1.65; }
.footer-nap { margin-top: 20px; display: grid; gap: 8px; font-family: var(--font-mono); font-size: 13px; }
.footer-nap a { color: var(--paper); display: inline-flex; gap: 8px; align-items: center; }
.footer-nap a:hover { color: var(--brand-gold-soft); }
.footer-col h4 { color: var(--paper); font-size: 13px; font-family: var(--font-mono); letter-spacing: .14em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col a { color: rgba(251,250,246,.72); transition: color .2s ease; }
.footer-col a:hover { color: var(--brand-gold-soft); }
.footer-areas { border-top: 1px solid rgba(251,250,246,.14); padding: 26px 0 4px; }
.footer-areas h4 { color: rgba(251,250,246,.45); font-size: 10.5px; font-family: var(--font-mono); letter-spacing: .12em; text-transform: uppercase; font-weight: 500; margin-bottom: 10px; }
.footer-areas ul { list-style: none; display: flex; flex-wrap: wrap; gap: 9px 22px; padding: 0; margin: 0; }
.footer-areas a { color: rgba(251,250,246,.5); font-size: 12px; transition: color .2s ease; }
.footer-areas a:hover { color: var(--brand-gold-soft); }
.footer-bottom { border-top: 1px solid rgba(251,250,246,.14); padding: 22px 0 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(251,250,246,.25); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(251,250,246,.8); transition: all .2s ease; }
.footer-social a:hover { border-color: var(--brand-gold); color: var(--brand-gold); }
.footer-legal a { color: rgba(251,250,246,.72); margin-left: 16px; }
.footer-legal a:hover { color: var(--brand-gold-soft); }
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ Blog ============ */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.post-card { position: relative; background: var(--paper-soft); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: var(--space-xl) var(--space-lg); display: flex; flex-direction: column; gap: 14px; transition: all .22s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-gold); }
.post-card .post-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-gold-deep); }
.post-card h3 { font-size: 22px; }
.post-card h3 a { text-decoration: none; }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.post-card h3 a:hover { color: var(--brand-blue-soft); }
.post-card p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.post-card .post-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-tertiary); display: flex; gap: 14px; }
@media (max-width: 980px) { .posts-grid { grid-template-columns: 1fr; } }

.single-post-header { max-width: 760px; }
.single-post-header .post-tagline { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.single-lede { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-soft); line-height: 1.6; margin: 22px 0 0; }
.post-cta { background: var(--paper-soft); border: 1px solid var(--hairline); border-left: 3px solid var(--brand-gold); border-radius: var(--radius-md); padding: 26px 28px; margin-top: 42px; }
.post-cta h3 { color: var(--brand-blue); margin-bottom: 8px; }
.related-posts { margin-top: clamp(48px, 6vw, 72px); }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination .page-numbers { min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--hairline); border-radius: var(--radius-md); font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); padding: 0 12px; }
.pagination .page-numbers.current { background: var(--brand-blue); color: var(--paper); border-color: var(--brand-blue); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--brand-blue); color: var(--brand-blue); }

/* ============ Search + 404 ============ */
.search-form-styled { display: flex; gap: 10px; max-width: 560px; }
.search-form-styled input[type="search"] { flex: 1; border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 13px 16px; font-family: var(--font-body); font-size: 15px; background: var(--paper); }
.search-form-styled input[type="search"]:focus { border-color: var(--brand-blue); outline: none; }
.search-result { border-bottom: 1px solid var(--hairline); padding: 26px 0; max-width: 760px; }
.search-result h3 a:hover { color: var(--brand-blue-soft); }
.search-result .result-url { font-family: var(--font-mono); font-size: 12px; color: var(--ink-tertiary); margin: 4px 0 8px; }
.error-404 .error-code { font-family: var(--font-display); font-style: italic; font-size: clamp(80px, 12vw, 160px); color: var(--brand-gold); line-height: 1; }
.quick-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.quick-links a { border: 1px solid var(--hairline); border-radius: var(--radius-pill); padding: 9px 18px; font-size: 14px; color: var(--ink-soft); transition: all .2s ease; }
.quick-links a:hover { border-color: var(--brand-gold); color: var(--brand-blue); }

/* ============ Contact page extras ============ */
.contact-routing { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.contact-direct { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.contact-direct .card { background: var(--paper); }
.contact-direct .card a { color: var(--brand-blue); font-weight: 600; }
@media (max-width: 900px) { .contact-routing, .contact-direct { grid-template-columns: 1fr; } }

/* ============ Legal pages ============ */
.legal-updated { font-family: var(--font-mono); font-size: 12px; color: var(--ink-tertiary); margin-bottom: 30px; }

/* ============ Scheduling circles ============ */
.sched-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.sched-item { text-align: left; }
.sched-icon { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--hairline); background: var(--paper); color: var(--brand-blue); display: inline-flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.sched-item h3 { margin-bottom: 8px; }
.sched-item p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 800px) { .sched-grid { grid-template-columns: 1fr; } }

/* ============ Motion / a11y ============ */
@media (hover: none) {
  .card:hover, .freq-card:hover, .post-card:hover, .btn:hover { transform: none; box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ WordPress core alignment ============ */
.alignwide { max-width: var(--max-content); }
.alignfull { width: 100%; }
.wp-block-image img { border-radius: var(--radius-lg); }

/* ============ Template additions ============ */
.hero-slim { padding: clamp(40px, 5vw, 64px) 0 clamp(28px, 3vw, 44px); }
.hero-slim h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 16px; }
.hero-slim .lead { margin-top: 4px; }
body.blog .hero-slim .lead { max-width: none; }
body.blog .hero-slim { padding-bottom: clamp(18px, 2.2vw, 30px); }
body.blog .section { padding-top: clamp(34px, 4.5vw, 52px); }
.cc-section { padding: clamp(56px, 7vw, 92px) 0; scroll-margin-top: 110px; }
.cc-section .wrap > .section-head h2 { margin-bottom: 14px; }
.page-content .cc-section:first-child { padding-top: 0; }
.page-layout .cc-section .wrap { padding: 0; max-width: none; }
.post-tagline { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.single-post-header h1 { font-size: clamp(34px, 4.6vw, 56px); }
.cc-faq-answer ul { margin: 0 0 12px 18px; }

/* ============ Client revision round 1 ============ */

/* c) Tighter vertical rhythm between sections */
.section { padding: clamp(44px, 5.5vw, 72px) 0; }
.cc-section { padding: clamp(35px, 4.3vw, 56px) 0; }

/* a) Trust strip: one even row, larger items */
.trust-strip .wrap { justify-content: space-between; padding-top: 26px; padding-bottom: 26px; }
.trust-item { font-size: 16px; font-weight: 600; letter-spacing: .01em; display: inline-flex; align-items: center; gap: 10px; }
.trust-item i { font-size: 22px; color: var(--brand-gold); }
@media (max-width: 860px) {
  .trust-strip .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
  .trust-item { font-size: 14px; }
}
@media (max-width: 480px) { .trust-strip .wrap { grid-template-columns: 1fr; } }

/* a/g) Section heads: centered so wide sections don't lean left */
.section-head { max-width: 780px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head .section-label { justify-content: center; }
.section-head .section-label::after { content: ""; width: 28px; height: 1px; background: var(--brand-gold); }
/* keep heads left-aligned inside the two-column service layout */
.page-layout .section-head { text-align: left; margin-left: 0; }
.page-layout .section-head .section-label { justify-content: flex-start; }
.page-layout .section-head .section-label::after { display: none; }

/* e) Process steps: four in one row on desktop */
.roman-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
@media (max-width: 1000px) { .roman-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .roman-grid { grid-template-columns: 1fr; } }

/* g) FAQ: two balanced columns on desktop, centered block */
.cc-faq { max-width: 1080px; margin: 0 auto; column-count: 2; column-gap: 28px; }
.cc-faq-item { break-inside: avoid; margin-bottom: 14px; }
@media (max-width: 880px) { .cc-faq { column-count: 1; max-width: 820px; } }

/* h) "Get your estimate" band: brass, contrasting with the navy footer */
.cta-brass { background: linear-gradient(135deg, #C9A432 0%, var(--brand-gold) 45%, #E0C56A 100%); color: var(--brand-blue-deep); position: relative; overflow: hidden; }
.cta-brass::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 420px at 85% 10%, rgba(255,255,255,.25), transparent 60%); pointer-events: none; }
.cta-brass .wrap { position: relative; }
.cta-brass h2, .cta-brass h2 em { color: var(--brand-blue-deep); }
.cta-brass h2 em { font-style: italic; }
.cta-brass .section-label { color: var(--brand-blue-deep); }
.cta-brass .section-label::before, .cta-brass .section-label::after { background: var(--brand-blue-deep); }
.cta-brass .lead { color: rgba(10,26,56,.82); }
.cta-brass .cta-features li { color: var(--brand-blue-deep); }
.cta-brass .cta-features i { color: var(--brand-blue-deep); }
.cta-brass .cta-contactline, .cta-brass .cta-contactline a { color: var(--brand-blue-deep); }
.cta-brass .cta-contactline a { font-weight: 700; text-decoration: underline; text-decoration-color: rgba(10,26,56,.35); }
.cta-brass .cta-form-card { box-shadow: 0 24px 60px rgba(10,26,56,.28); }

/* Conversion: promo badge + urgency microcopy in the CTA band */
.cta-promo { display: inline-flex; align-items: center; gap: 10px; background: var(--brand-blue); color: var(--brand-gold-soft); font-family: var(--font-mono); font-size: 13px; letter-spacing: .05em; padding: 10px 16px; border-radius: 999px; margin-bottom: 18px; box-shadow: 0 10px 28px rgba(10,26,56,.25); }
.cta-promo i { font-size: 16px; }
.cta-urgency { margin-top: 14px; font-size: 13px; color: rgba(10,26,56,.7); display: flex; align-items: center; gap: 8px; justify-content: center; }

/* f) Review-platform links bar in the Clients section */
.review-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: clamp(24px, 3vw, 40px); }
.review-links a { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border: 1px solid var(--hairline); border-radius: 10px; background: #fff; color: var(--brand-blue); font-weight: 600; font-size: 15px; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.review-links a:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(16,35,71,.12); border-color: var(--brand-gold); }
.review-links i { font-size: 20px; color: var(--brand-gold-strong, #B89328); }
.review-links-note { text-align: center; margin-top: 14px; font-size: 14px; color: var(--ink-soft); }

/* b) Topbar social icons */
.topbar-social { display: inline-flex; gap: 14px; align-items: center; padding-left: 18px; border-left: 1px solid rgba(251,250,246,.2); }
.topbar-social a { opacity: .85; }
.topbar-social a:hover { opacity: 1; }
.topbar-social i { font-size: 15px; }

/* i) Hero visual: designed frame treatment — gold offset border, soft glow,
   floating accent chip — so any photo reads intentional, not stock. */
.hero-visual::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--brand-gold); border-radius: var(--radius-lg); z-index: 0; opacity: .55; }
.hero-visual::after { content: ""; position: absolute; top: -14px; left: -14px; width: 92px; height: 92px; background: radial-gradient(circle, rgba(212,175,55,.35), transparent 70%); z-index: 2; pointer-events: none; }
.hero-visual img { position: relative; z-index: 1; box-shadow: 0 30px 70px rgba(16,35,71,.22); }
.hero-visual .hero-statcard { z-index: 3; }
@media (max-width: 980px) { .hero-visual::before { inset: 12px -10px -10px 12px; } }

/* ============ Client revision round 2 ============ */

/* 7) The mobile-menu close button must never appear on desktop */
.nav-close { display: none; }

/* 1) Topbar socials: right side, larger, gold → white on hover */
.topbar-social { border-left: 0; border-right: 1px solid rgba(251,250,246,.2); padding-left: 0; padding-right: 16px; margin-right: 2px; gap: 16px; }
.topbar-social a { color: var(--brand-gold); opacity: 1; transition: color .15s ease, transform .15s ease; }
.topbar-social a:hover { color: #fff; transform: translateY(-1px); }
.topbar-social i { font-size: 19px; }
@media (max-width: 700px) { .topbar-social { display: none; } }

/* 2) Interactive hero toggle: gold frame, crossfade panes, pill tabs */
.hero-toggle { position: relative; z-index: 1; }
.hero-toggle-stage { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 30px 70px rgba(16,35,71,.22); border: 1px solid rgba(212,175,55,.5); }
.hero-toggle-stage::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(212,175,55,.55); border-radius: calc(var(--radius-lg) - 8px); pointer-events: none; }
.hero-toggle-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s ease; border-radius: 0; box-shadow: none; aspect-ratio: auto; }
.hero-toggle-stage img.is-active { opacity: 1; }
.hero-toggle-tabs { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); display: flex; gap: 8px; background: rgba(10,26,56,.78); backdrop-filter: blur(6px); padding: 6px; border-radius: 999px; z-index: 3; box-shadow: 0 10px 28px rgba(10,26,56,.35); }
.hero-toggle-tabs button { display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; color: rgba(251,250,246,.85); font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: .02em; padding: 9px 16px; border-radius: 999px; cursor: pointer; transition: background .2s ease, color .2s ease; }
.hero-toggle-tabs button.is-active { background: var(--brand-gold); color: var(--brand-blue-deep); }
.hero-toggle-tabs button:hover:not(.is-active) { color: #fff; }
.hero-toggle-tabs i { font-size: 16px; }
@media (max-width: 980px) { .hero-toggle-stage { aspect-ratio: 16 / 10; } }

/* With the toggle, the stat card sits above the tabs */
.hero-toggle ~ .hero-statcard, .hero-visual .hero-statcard { z-index: 4; }

/* 3) Section heads: wider so intro text fills the band */
.section-head { max-width: 920px; }
.section-head .lead { max-width: none; }

/* 4) Process steps: interactive card styling, four-up on wide screens */
.roman-item { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-md, 14px); padding: 26px 24px 24px; position: relative; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.roman-item::before { content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 2px; background: linear-gradient(90deg, var(--brand-gold), transparent); border-radius: 2px; }
.roman-item:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(16,35,71,.12); border-color: var(--brand-gold); }
.roman-num { width: 44px; height: 44px; border-radius: 50%; background: var(--paper-soft); border: 1px solid var(--brand-gold); color: var(--brand-blue); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 19px; margin-bottom: 14px; }
.roman-item:hover .roman-num { background: var(--brand-gold); color: var(--brand-blue-deep); }
.section-dark .roman-item { background: rgba(251,250,246,.05); border-color: rgba(251,250,246,.14); }
.section-dark .roman-item:hover { border-color: var(--brand-gold); box-shadow: 0 18px 44px rgba(0,0,0,.3); }
@media (min-width: 1100px) { .roman-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } .roman-grid:has(> :nth-child(5)) { grid-template-columns: repeat(3, 1fr); } }

/* ============ Client revision round 3 ============ */

/* 1) Hero stat card: top of the visual so it never covers the toggle tabs */
.hero-statcard { bottom: auto; top: 28px; }
@media (max-width: 980px) { .hero-statcard { bottom: auto; top: 16px; } }

/* 2) Trust strip: sized to hold all four items on one row */
.trust-strip .wrap { flex-wrap: nowrap; gap: 18px; }
.trust-item { font-size: clamp(12.5px, 1.05vw, 15.5px); gap: 8px; min-width: 0; }
.trust-item i { font-size: clamp(17px, 1.4vw, 21px); flex: none; }
@media (max-width: 860px) {
  .trust-strip .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
}

/* 5) Footer social icons: gold, white on hover (match the topbar) */
.footer-social a { color: var(--brand-gold); transition: color .15s ease, transform .15s ease; }
.footer-social a:hover { color: #fff; transform: translateY(-1px); }
.footer-social i { font-size: 19px; }

/* gold glow moves to bottom-right now that the stat card occupies top-left */
.hero-visual::after { top: auto; left: auto; bottom: -14px; right: -14px; }

/* ============ Client revision round 4 ============ */
/* 1) Stat card: 45% above the photo's top edge, 55% overlapping it */
.hero-statcard { top: 0; transform: translateY(-45%); }
@media (max-width: 980px) { .hero-statcard { top: 0; transform: translateY(-45%); } }

/* ============ Client revision round 5 ============ */

/* 2) Topbar removed on phones — the navy social strip is dropped; phone/text remain in the sticky bottom CTA bar */
@media (max-width: 700px) {
  .topbar { display: none; }
}

/* 3) Mobile hero: centered CTAs + breathing room before the stat card */
@media (max-width: 700px) {
  .hero-copy { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-ctas .btn { justify-content: center; }
  .hero-trustline { justify-content: center; }
  .hero-visual { margin-top: 24px; } .hero-grid { gap: 24px; }
  .hero-statcard { left: 50%; transform: translate(-50%, -55%); width: max-content; max-width: 92%; }
}

/* 5) Mobile menu: brass sheet, ~60% screen height, opaque, navy items */
@media (max-width: 980px) {
  .main-nav {
    inset: auto 0 auto 0; top: 0; height: auto; min-height: 60vh; max-height: 92vh;
    background: linear-gradient(160deg, #E0C56A 0%, var(--brand-gold) 42%, #C9A432 100%);
    border-radius: 0 0 22px 22px; box-shadow: 0 30px 70px rgba(10,26,56,.35);
    transform: translateY(-105%); transition: transform .3s ease;
    padding: 22px var(--gutter) 34px;
  }
  .main-nav.is-open { transform: translateY(0); }
  .mobile-nav-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 10px; padding-right: 52px; }
  .mobile-nav-title { font-family: var(--font-display); font-size: 30px; color: var(--brand-blue-deep); }
  .mobile-nav-social { display: flex; gap: 10px; }
  .mobile-nav-social a { width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--brand-blue); display: inline-flex; align-items: center; justify-content: center; font-size: 19px; border: 1px solid rgba(16,35,71,.10); box-shadow: 0 6px 16px rgba(10,26,56,.20); }
  .mobile-nav-social a:active { transform: scale(.94); }
  .main-nav a { color: var(--brand-blue-deep); border-bottom: 1px solid rgba(10,26,56,.18); font-weight: 600; }
  .main-nav .sub-menu { background: rgba(251,250,246,.55); }
  .main-nav .sub-menu a { border-bottom: 0; }
  .main-nav .current-menu-item > a,
  .main-nav .current-menu-parent > a,
  .main-nav .current-menu-ancestor > a,
  .main-nav .current_page_item > a,
  .main-nav .current_page_parent > a,
  .main-nav .current_page_ancestor > a,
  .main-nav a[aria-current="page"] { color: var(--brand-blue-deep); box-shadow: inset 4px 0 0 var(--brand-blue-deep); padding-left: 14px; }
  .nav-close { color: var(--brand-blue-deep); top: 24px; }
}
@media (min-width: 981px) { .mobile-nav-head { display: none; } }

/* (horizontal .sidenav-bar removed — the in-page section nav is the left rail above; on <=1024px it becomes the sticky pill bar) */

/* 6b/c) Full-width section text treatment: centered measure, checklist ULs */
.cc-section .prose { max-width: 840px; margin-left: auto; margin-right: auto; }
.cc-section .prose ul { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.cc-section .prose ul li { position: relative; padding-left: 32px; }
.cc-section .prose ul li::before { content: "\2713"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 50%; background: var(--paper-soft); border: 1px solid var(--brand-gold); color: var(--brand-gold-strong, #B89328); font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.section-dark .prose ul li::before { background: rgba(251,250,246,.08); }

/* scope cards: lists inside cards inherit the check styling */
.scope-card { text-align: left; }
.scope-card h3 { margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--hairline); }
.scope-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.scope-card ul li { position: relative; padding-left: 28px; font-size: 15px; }
.scope-card ul li::before { content: "\2713"; position: absolute; left: 0; top: 2px; color: var(--brand-gold-strong, #B89328); font-weight: 700; }

/* --- Service-page modules: stretch the final row to the full module width
   (cards + roman grids), and make industry cards link to their service page --- */
@media (min-width: 781px) {
  .page-layout .cards-grid,
  .page-layout .cards-grid-3 { display: flex; flex-wrap: wrap; gap: var(--space-lg); }
  .page-layout .cards-grid > *,
  .page-layout .cards-grid-3 > * { flex: 1 1 232px; }
  .page-layout .roman-grid { display: flex; flex-wrap: wrap; gap: clamp(20px, 2.4vw, 36px); }
  .page-layout .roman-grid > * { flex: 1 1 208px; }
}
.scope-card-linked { position: relative; }
.scope-card-linked h3 a { color: inherit; text-decoration: none; }
.scope-card-linked h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.scope-card-linked:hover h3 { color: var(--brand-gold-deep); }
.scope-card-linked h3 a:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }

/* ---- Estimate calculator ---- */
.cc-calc { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: stretch; max-width: 940px; margin: 0 auto; background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: clamp(20px, 2.5vw, 32px); box-shadow: var(--shadow-sm); }
.cc-calc-fields { display: grid; gap: 16px; align-content: start; }
.cc-calc-field { display: flex; flex-direction: column; gap: 6px; }
.cc-calc-field[hidden] { display: none; }
.cc-calc-field label { font-size: 14px; font-weight: 600; color: var(--brand-blue); }
.cc-calc-input { font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 11px 13px; width: 100%; }
.cc-calc-input:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(16, 35, 71, .12); }
.cc-calc-result { background: var(--brand-blue); color: #fff; border-radius: var(--radius-md); padding: 26px; display: flex; flex-direction: column; }
.cc-calc-amount-label { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-gold); margin: 0 0 6px; }
.cc-calc-amount { font-family: var(--font-display); font-size: clamp(32px, 5vw, 42px); line-height: 1.04; color: #fff; margin: 0 0 12px; }
.cc-calc-unit { font-family: var(--font-body); font-size: 15px; color: rgba(255, 255, 255, .7); }
.cc-calc-note { font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, .78); margin: 0 0 14px; }
.cc-calc-promo { font-size: 14px; color: #fff; background: rgba(212, 175, 55, .18); border: 1px solid var(--brand-gold); border-radius: var(--radius-md); padding: 10px 13px; margin: 0 0 16px; }
.cc-calc-result .cc-calc-cta { margin-top: auto; display: block; width: 100%; text-align: center; }
@media (max-width: 760px) { .cc-calc { grid-template-columns: 1fr; } }

/* ---- Callback request form ---- */
.cc-callback-promo { max-width: 760px; margin: 0 auto 18px; text-align: center; font-size: 15px; color: var(--brand-blue); background: var(--brand-gold-soft); border: 1px solid var(--brand-gold); border-radius: var(--radius-md); padding: 10px 16px; }
.cc-callback-form { max-width: 760px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; }
.cc-callback-form .cc-field { display: flex; flex-direction: column; gap: 6px; flex: 1 1 180px; }
.cc-callback-form label { font-size: 14px; font-weight: 600; color: var(--brand-blue); }
.cc-callback-form .cc-req { color: var(--brand-gold-deep); }
.cc-callback-form input[type="text"],
.cc-callback-form input[type="tel"],
.cc-callback-form select { font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 11px 13px; width: 100%; }
.cc-callback-form input:focus,
.cc-callback-form select:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(16, 35, 71, .12); }
.cc-callback-action { flex: 0 0 auto; }
.cc-callback-form .cc-callback-submit { white-space: nowrap; }
.cc-callback-fineprint { max-width: 760px; margin: 14px auto 0; text-align: center; font-size: 13px; color: var(--ink-tertiary); }
.cc-callback-consent { max-width: 760px; margin: 8px auto 0; text-align: center; font-size: 12px; color: var(--ink-tertiary); line-height: 1.6; }
.cc-callback-consent a { color: var(--ink-tertiary); text-decoration: underline; }
.cc-callback-consent a:hover { color: var(--brand-blue); }
@media (max-width: 640px) { .cc-callback-form .cc-field { flex: 1 1 100%; } .cc-callback-action { flex: 1 1 100%; } .cc-callback-form .cc-callback-submit { width: 100%; } }

/* ---- Town/landing: left-aligned intro + neighborhood chips ---- */
.cc-section.cc-flush .section-head { max-width: 760px; margin-left: 0; margin-right: 0; text-align: left; }
.cc-section.cc-flush .section-head .section-label { justify-content: flex-start; }
.cc-section.cc-flush .prose { max-width: none; margin-left: 0; margin-right: 0; }

/* About → "What we don't do": align the intro to full width, and present the three exclusions as cards (same look as the service-page scope cards) */
#what-we-don-t-do .section-head { max-width: none; }
#what-we-don-t-do .prose p > strong:first-child { display: block; margin-bottom: 8px; color: var(--brand-blue); font-size: 1.07em; letter-spacing: -.01em; }
#what-we-don-t-do .prose > p:has(> strong:first-child) { position: relative; background: #fff; border: 1px solid var(--hairline); border-left: 4px solid var(--brand-gold); border-radius: var(--radius-md); padding: 22px 54px 22px 24px; margin: 0 0 16px; box-shadow: 0 8px 22px rgba(16,35,71,.07); }
#what-we-don-t-do .prose > p:has(> strong:first-child)::after { content: "\00D7"; position: absolute; top: 18px; right: 18px; width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--brand-gold-soft); color: var(--brand-blue); font-size: 15px; font-weight: 700; line-height: 1; }
@media (min-width: 720px) {
  #what-we-don-t-do .prose:has(p > strong:first-child) { display: flex; flex-wrap: wrap; gap: 20px; align-items: stretch; }
  #what-we-don-t-do .prose:has(p > strong:first-child) > * { margin: 0; }
  #what-we-don-t-do .prose > p:has(> strong:first-child) { flex: 1 1 280px; }
  #what-we-don-t-do .prose > p:not(:has(> strong:first-child)) { flex-basis: 100%; margin-top: 22px; }
}
.cc-areas-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-tertiary); margin: 8px 0 12px; }
.cc-areas { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 22px; }
.cc-area-chip { font-family: var(--font-mono); font-size: 13px; letter-spacing: .01em; color: var(--brand-blue); background: #fff; border: 1px solid var(--hairline); border-radius: 999px; padding: 8px 15px; }
.cc-areas-note { color: var(--ink-soft); font-size: 16.5px; max-width: none; margin: 0; }

/* ---- Final CTA: prominent, even-height new-client offers ---- */
.cta-offers { display: grid; gap: 14px; margin-top: 28px; }
.cta-offers-label { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--brand-blue-deep); margin: 0 0 14px; opacity: 1; }
.cta-offers-label::before { content: ""; width: 28px; height: 2px; background: var(--brand-blue-deep); border-radius: 2px; }
.cta-offer { display: flex; align-items: center; gap: 15px; background: var(--brand-blue-deep); border-radius: var(--radius-md); padding: 16px 20px; border-left: 4px solid var(--brand-gold); box-shadow: 0 16px 40px rgba(10,26,56,.32); transition: transform .18s ease, box-shadow .18s ease; }
.cta-offer:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(10,26,56,.40); }
.cta-offer-ic { flex-shrink: 0; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(212,175,55,.16); }
.cta-offer-ic i { font-size: 22px; color: var(--brand-gold); }
.cta-offer-text { font-family: var(--font-body); font-size: 16.5px; font-weight: 700; color: #fff; line-height: 1.3; }

/* ---- Callback: tighter intro gap + full-width centered submit ---- */
.cc-callback .section-head { margin-bottom: 20px; }
.cc-callback-form .cc-callback-action { align-items: stretch; }
.cc-callback-form .cc-callback-submit { width: 100%; justify-content: center; }
