:root {
  /* Scheme C — Desaturated Purple + Warm Stone */
  --bg: #F2EEEA;
  --surface: #FAFAF8;
  --surface-warm: #EDE8E1;
  --surface-alt: #F5F2EE;
  --ink: #2C2528;
  --ink-secondary: #453C40;
  --muted: #6A5E63;
  --muted-light: #74696D;
  --green: #4A3575;
  --green-light: #6B5A8A;
  --green-dark: #362658;
  --green-pale: #E8E0F0;
  --gold: #8A7B68;
  --gold-text: #6B5D4D;
  --gold-light: #B5A48B;
  --gold-pale: #D4CABC;
  --border: #D8D0C6;
  --border-light: #E6E0D8;
  --cream: #EDE8E1;
  --shadow-soft: 0 2px 12px rgba(44, 37, 40, .05);
  --shadow-md: 0 4px 24px rgba(44, 37, 40, .08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 48px rgba(44, 37, 40, .10), 0 2px 8px rgba(0,0,0,.04);
  --shadow-xl: 0 24px 64px rgba(44, 37, 40, .12), 0 4px 12px rgba(0,0,0,.05);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-logo: 'Playfair Display', Georgia, serif;
  --font-body: 'Libre Franklin', 'Segoe UI', system-ui, sans-serif;
  --max-w: 1500px;
  --gutter: clamp(16px, 3vw, 44px);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-skip-ink: auto; }

::selection { background: var(--green-pale); color: var(--green-dark); }

/* ── Accessibility: focus + skip link ── */
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  word-wrap: normal;
}
.skip-link:focus {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 999;
  width: auto; height: auto;
  clip: auto; clip-path: none;
  background: var(--surface);
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

/* ── Navigation ── */
.site-nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(216, 208, 198, .5);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  font-family: var(--font-logo);
  font-size: 28px;
  font-weight: 400;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -.01em;
}
.site-logo .accent { color: var(--green); }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--green-pale);
  color: var(--green);
}
.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 8px 20px !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
  order: 99;
}
.nav-cta:hover {
  background: var(--green-light) !important;
  box-shadow: 0 2px 12px rgba(74, 53, 117, .2) !important;
}

/* ── Dropdown Menu ── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-arrow {
  font-size: 9px;
  margin-left: 3px;
  opacity: .4;
  transition: transform .2s;
}
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); opacity: .8; }
.nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(44, 37, 40, .10), 0 2px 8px rgba(44, 37, 40, .05);
  padding: 12px 8px;
  min-width: 220px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block !important;
  padding: 10px 16px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover {
  background: var(--green-pale) !important;
  color: var(--green) !important;
}

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); margin: 5px 0;
  transition: .2s;
}

/* ── Hero ── */
.hero {
  padding: 100px var(--gutter) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  font-style: italic;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-warm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(181, 164, 139, .08) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(74, 53, 117, .04) 0%, transparent 50%);
}
.hero-visual-inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1;
}
.hero-visual-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 12px 24px;
}
.hero-visual-slot:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--muted);
  padding: 16px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,.5);
}
.hero-visual-slot:not(:first-child) {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-light);
}

/* ── Hero photo carousel (gentle cross-fade + slow ken-burns) ── */
.hero-carousel::after { display: none; }
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
  z-index: 0;
}
.hero-slide.is-active { opacity: 1; z-index: 1; animation: heroKen 7s ease-out forwards; }
@keyframes heroKen { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-visual-caption {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hero-visual-caption span,
.hero-visual-caption a {
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: 30px;
  padding: 7px 14px; font-size: 11.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
  text-decoration: none;
}
.hero-visual-caption .hero-caption-rating { color: var(--green); }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide.is-active { animation: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(74, 53, 117, .15);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  box-shadow: 0 4px 16px rgba(74, 53, 117, .2);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--green-pale);
  border-color: var(--green);
  transform: translateY(-1px);
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Sections ── */
.section {
  padding: 88px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  color: var(--ink);
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}
/* Alternating warm bg on even sections */
.section-alt {
  background: var(--surface-alt);
  padding: 88px var(--gutter);
  margin: 0;
  max-width: none;
}
.section-alt > * { max-width: var(--max-w); margin-left: auto; margin-right: auto; }

/* ── Problem Strip ── */
.problem-strip {
  background: var(--ink);
  color: #fff;
  padding: 72px var(--gutter);
  position: relative;
  overflow: hidden;
}
.problem-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(74, 53, 117, .06) 0%, transparent 40%);
}
.problem-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.problem-item {
  padding: 36px 32px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.problem-item:first-child { border-left: none; }
.problem-item p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  font-style: italic;
}
.problem-item span {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  opacity: .6;
  font-style: normal;
  line-height: 1.65;
}

/* ── Promise Strip (addresses top 3 customer complaints) ── */
.promise-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 64px var(--gutter);
}
.promise-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.promise-item {
  padding: 28px 32px;
  border-left: 1px solid var(--border);
}
.promise-item:first-child { border-left: none; }
.promise-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.promise-item h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}
.promise-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 3px;
  height: 100%;
  background: var(--gold-light);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--surface-warm), var(--border-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--green);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.service-card p {
  color: var(--muted);
  font-size: 15px;
  flex: 1;
  line-height: 1.7;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
  text-decoration: none;
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 10px; }
.service-card .card-link::after { content: '\2192'; }

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: process;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-pale), var(--border), var(--green-pale));
  z-index: 0;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition), transform var(--transition);
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.process-step::before {
  counter-increment: process;
  content: counter(process);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.process-step h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Before/After Module ── */
.proof-section {
  background: linear-gradient(135deg, var(--surface-warm), var(--surface-alt));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 56px;
  margin: 20px 0;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.ba-slot {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, var(--surface-alt));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.ba-slot::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 10px,
    rgba(44, 37, 40, .02) 10px, rgba(44, 37, 40, .02) 20px
  );
}
.ba-slot-label {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: 8px;
  padding: 4px 16px;
  background: var(--green-pale);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.ba-slot-note {
  font-size: 13px;
  color: var(--muted-light);
  position: relative;
  z-index: 1;
}

/* ── Trust Block ── */
.trust-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.trust-badge {
  text-align: center;
  padding: 32px 36px;
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(54, 38, 88, .15);
}
.trust-badge .rating {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.trust-badge .stars { font-size: 20px; color: var(--gold-pale); margin: 6px 0; }
.trust-badge .source-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.trust-details h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.trust-details p { color: var(--muted); font-size: 15px; margin-bottom: 16px; line-height: 1.7; }
.trust-meta { display: flex; gap: 24px; font-size: 13px; color: var(--muted-light); }
.trust-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--surface-alt);
  border-radius: 20px;
  font-weight: 500;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 20px 0;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--muted-light);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Blog + CTA Row ── */
.blog-cta-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.blog-preview-card {
  display: block;
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background .2s;
}
.blog-preview-card:first-of-type { border-top: 1px solid var(--border-light); }
.blog-preview-card:hover { background: var(--surface-warm); padding-left: 12px; padding-right: 12px; border-radius: var(--radius); }
.blog-preview-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.blog-preview-card p { color: var(--muted); font-size: 14px; margin: 0; }
.blog-cta-side {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(44, 37, 40, .12);
  position: sticky;
  top: 100px;
}
.blog-cta-side h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-cta-side p { color: rgba(255,255,255,.85); font-size: 15px; margin-bottom: 24px; }
.blog-cta-side .btn-primary {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}
.blog-cta-side .btn-primary:hover { background: var(--cream); border-color: var(--cream); }
.blog-cta-side .cta-phone { margin-top: 16px; font-size: 13px; opacity: .8; }
.blog-cta-side .cta-phone a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ── CTA Section ── */
.cta-section {
  background: var(--ink);
  color: #fff;
  padding: 88px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(74, 53, 117, .06) 0%, transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(181, 164, 139, .06) 0%, transparent 40%);
}
.cta-section > * { position: relative; }
.cta-section .section-heading { color: #fff; }
.cta-section p { color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 32px; font-size: 17px; }
.cta-section .btn-primary {
  background: #fff;
  color: var(--green);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.cta-section .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.cta-phone { margin-top: 24px; font-size: 14px; opacity: .8; }
.cta-phone a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ── Breadcrumbs ── */
.breadcrumbs {
  padding: 16px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 13px;
  color: var(--muted-light);
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 6px; }

/* ── Service Page Hero ── */
.service-hero {
  padding: 60px var(--gutter) 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.content-block .service-hero p {
  color: var(--muted) !important;
}

/* ── Content Block (WordPress page content) ── */
.content-block {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 60px;
}
.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  margin-top: 48px;
}
.content-block h2:first-child { margin-top: 0; }
.content-block h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  margin-top: 36px;
  color: var(--green);
}
.content-block p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
  max-width: 680px;
}
.content-block ul, .content-block ol {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.content-block ul li, .content-block ol li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
}
.content-block ol {
  counter-reset: ol-counter;
}
.content-block ol li::before {
  counter-increment: ol-counter;
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.content-block strong { color: var(--ink); }
.content-block a { color: var(--green); font-weight: 600; }
.content-block a:hover { color: var(--green-light); }
.content-block a.btn-primary,
.content-block a.btn-primary:hover {
  color: #fff;
}

.content-block blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 24px 0;
  background: var(--surface-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.content-block blockquote p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--green);
  margin-bottom: 0;
}

/* Tables */
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.content-block thead { background: var(--green); color: #fff; }
.content-block th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.content-block td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--muted);
}
.content-block tbody tr:hover { background: var(--surface-warm); }

/* Details/Summary (FAQ on pages) */
.content-block details {
  border-bottom: 1px solid var(--border);
}
.content-block details summary {
  padding: 18px 0;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.content-block details summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--muted-light);
}
.content-block details[open] summary::after { content: '\2212'; }
.content-block details > p {
  padding-bottom: 18px;
}

/* ── Tools Grid ── */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.tools-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}
.tool-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.tool-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green);
  transform: translateY(-2px);
}
.tool-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.tool-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.tool-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.tool-card .card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner {
  padding: 56px var(--gutter) 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .site-logo {
  display: inline-block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
}
.footer-col-title, .footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  padding: 20px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted-light);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--green); }

/* ── Hub Grid (services page) ── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hub-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow .3s, transform .3s;
}
.hub-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hub-card-visual {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream), var(--surface-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted-light);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.hub-card-body { padding: 28px; }
.hub-card-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.hub-card-body p { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.hub-card-body .card-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
  text-decoration: none;
}
.hub-card-body .card-link::after { content: ' \2192'; }

/* ── Blog Filters ── */
.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.blog-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all var(--transition);
}
.blog-filter-tag:hover {
  border-color: var(--green);
  color: var(--green);
}
.blog-filter-tag.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.blog-filter-tag.active .filter-count {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.filter-count {
  font-size: 11px;
  font-weight: 700;
  background: var(--border-light);
  color: var(--ink-secondary);
  padding: 1px 6px;
  border-radius: 10px;
}

/* ── Blog Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-card-body {
  padding: 28px 28px 24px;
}
.blog-card-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-text);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted-light);
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.blog-card-read {
  font-weight: 700;
  color: var(--green);
}

/* ── Single Post: Hero Strip ── */
.post-hero-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.post-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--gutter) 48px;
}
.post-hero-inner .breadcrumbs {
  padding: 0 0 20px;
  max-width: none;
  margin: 0;
}
.post-cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 16px;
}
.post-cat-tag:hover { background: var(--green); color: #fff; }
.post-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  max-width: 780px;
}
.post-meta {
  font-size: 14px;
  color: var(--muted-light);
}
.post-meta-dot { margin: 0 8px; }
.breadcrumb-current { color: var(--muted-light); }

/* ── Single Post: Two-column Layout ── */
.post-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--gutter) 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}
.post-article {
  min-width: 0;
}
.post-article .content-block {
  padding: 0 0 60px;
  max-width: none;
}
.post-article .content-block p {
  max-width: 720px;
}

/* ── Post Sidebar ── */
.post-sidebar-sticky {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.toc-nav {
  display: flex;
  flex-direction: column;
}
.toc-link {
  display: block;
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 0 7px 14px;
  border-left: 2px solid var(--border-light);
  transition: color var(--transition), border-color var(--transition);
}
.toc-link:hover {
  color: var(--ink);
  border-left-color: var(--gold-light);
}
.toc-link.active {
  color: var(--green);
  border-left-color: var(--green);
  font-weight: 600;
}

/* Sidebar CTA card */
.sidebar-cta-card {
  background: var(--surface-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.sidebar-cta-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  display: inline-block;
  width: 100%;
}
.sidebar-email {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
}
.sidebar-email:hover { color: var(--green); }
.sidebar-tool-link {
  display: block;
  font-size: 14px;
  color: var(--ink-secondary);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.sidebar-tool-link:last-of-type { border-bottom: none; }
.sidebar-tool-link:hover { color: var(--green); }

/* Sidebar related articles */
.sidebar-related {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.sidebar-related-link {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-secondary);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.sidebar-related-link:last-child { border-bottom: none; }
.sidebar-related-link:hover { color: var(--green); }

/* ── Post Navigation ── */
.post-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.post-nav-link {
  text-decoration: none;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.post-nav-link:hover {
  box-shadow: var(--shadow-soft);
  border-color: var(--green);
}
.post-nav-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted-light);
  margin-bottom: 6px;
}
.post-nav-title {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.post-nav-next { text-align: right; }

/* ── Post CTA ── */
.post-cta-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
}
.post-cta-inner {
  background: var(--surface-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}
.post-cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.post-cta-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Contact Page Layout ── */
.contact-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--gutter) 0;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.contact-main h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.contact-intro {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 600px;
}
.contact-sidebar-sticky {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.contact-info-card p:last-child { margin-bottom: 0; }
.contact-method {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-method:last-child { border-bottom: none; }
.contact-method-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted-light);
  margin-bottom: 4px;
}
.contact-method a {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.contact-method a:hover { text-decoration: underline; }
.contact-method-note {
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 2px;
}
.contact-checklist {
  list-style: none;
  padding: 0;
  counter-reset: checklist;
}
.contact-checklist li {
  counter-increment: checklist;
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border-light);
}
.contact-checklist li:last-child { border-bottom: none; }
.contact-info-highlight {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.contact-info-highlight .sidebar-card-title { color: #fff; }
.contact-info-card .contact-intro-side {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 0;
}
.contact-checklist li::before {
  content: counter(checklist);
  position: absolute;
  left: 0;
  top: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

/* ── Services Cards Layout ── */
.services-page-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-page-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.service-page-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
  transform: translateY(-4px);
}
.service-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-page-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.service-card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}

/* Content block iframe full width fix */
.content-block iframe {
  max-width: 100%;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { padding: 60px var(--gutter) 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-height: 320px; }
  .problem-strip-inner { grid-template-columns: 1fr; gap: 0; }
  .problem-item { border-left: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
  .problem-item:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .trust-block { grid-template-columns: 1fr; text-align: center; }
  .tools-grid-3 { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { order: 2; margin-top: 32px; }
  .contact-main { order: 1; }
  .services-page-grid { grid-template-columns: 1fr 1fr; }
  .promise-strip-inner { grid-template-columns: 1fr; gap: 0; }
  .promise-item { border-left: none; border-bottom: 1px solid var(--border-light); padding: 24px 0; }
  .promise-item:last-child { border-bottom: none; }
  .post-layout { grid-template-columns: 1fr; gap: 0; }
  .post-sidebar { display: none; }
  .post-nav { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-cta-row { grid-template-columns: 1fr; }
  .blog-cta-side { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-nav { height: auto; padding: 12px var(--gutter); flex-wrap: wrap; gap: 8px; }
  .nav-links { flex-wrap: wrap; gap: 2px; }
  .nav-links a { padding: 6px 10px; font-size: 13px; }
  .section, .section-alt { padding: 64px var(--gutter); }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 36px; }
  .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-meta { flex-wrap: wrap; justify-content: center; }
  .mobile-toggle { display: block; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; width: 100%; }
  .nav-dropdown { flex-direction: column; align-items: stretch; }
  .nav-dropdown-menu {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 0 0 16px !important;
    min-width: auto !important;
    background: transparent !important;
  }
  .nav-dropdown-menu a { font-size: 13px !important; padding: 8px 14px !important; }
}

/* ── Utilities (promoted from repeated inline styles) ── */
.section--tight { padding-top: 20px; }
.btn-row--center { justify-content: center; }
.empty-note { color: var(--muted); padding: 40px 0; }
.mt-12 { margin-top: 12px; }
.plain-link { text-decoration: none; }
.post-list-date { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.content-block--flush { padding: 0; }
.post-cta-phone { margin-top: 12px; font-size: 14px; color: var(--muted); }
.post-cta-phone a { color: var(--green); font-weight: 600; }
.tool-iframe {
  display: block;
  width: 100%;
  min-height: 1450px;
  border: none;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .tool-iframe { min-height: 1650px; }
}


/* ── Content page: two-column editorial layout (text-heavy pages only) ── */
.page-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 60px) var(--gutter) clamp(64px, 8vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(40px, 5vw, 84px);
  align-items: start;
}
.page-main.content-block { max-width: none; padding-left: 0; padding-right: 0; }
.page-main.content-block,
.page-main.content-block p,
.page-main.content-block ul,
.page-main.content-block ol { max-width: none; }
.page-aside { position: sticky; top: 96px; }
.aside-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl, 18px);
  padding: 30px 28px;
  box-shadow: var(--shadow-md, 0 6px 24px rgba(44,37,40,.07));
}
.aside-card h3 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 12px;
  color: var(--ink);
}
.aside-card > p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
}
.aside-card .btn { width: 100%; justify-content: center; }
.aside-card .aside-phone {
  font-size: 13px;
  color: var(--muted);
  margin: 16px 0 0;
  text-align: center;
}
.aside-card .aside-phone a { color: var(--green); font-weight: 600; }

@media (max-width: 980px) {
  .page-layout { grid-template-columns: 1fr; gap: 40px; }
  .page-aside { position: static; }
  .aside-card { max-width: 480px; margin: 0 auto; }
}
