/* =========================================================================
   College Park Garage Doors — global stylesheet
   Palette: deep navy + crimson red on light neutral (matches brand logo)
   ========================================================================= */

:root {
  --navy-900: #0e1f3d;
  --navy-800: #12294d;
  --navy-700: #1b3a6b;
  --navy-600: #24488a;
  --red-600: #BE0B31;
  --red-700: #950826;
  --red-300: #f2909f;
  --red-100: #f9e2e8;
  --ink: #16233b;
  --ink-soft: #4a5568;
  --ink-faint: #6b7688;
  --line: #e4e8ef;
  --bg: #f4f6f9;
  --bg-alt: #eef1f6;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(14, 31, 61, 0.08);
  --shadow-md: 0 8px 24px rgba(14, 31, 61, 0.10);
  --shadow-lg: 0 18px 48px rgba(14, 31, 61, 0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --font-head: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

/* icon sizing fallbacks for contexts without a more specific rule */
.topbar svg { width: 15px; height: 15px; }
.header__phone svg { width: 18px; height: 18px; }
.sidebar__links a svg { width: 15px; height: 15px; }
.crumbs svg { width: 14px; height: 14px; }
.mobile-menu .m-sub svg { width: 16px; height: 16px; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p { margin: 0 0 1rem; text-wrap: pretty; }

a { color: var(--red-600); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--red-700); }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 8.5vw, 116px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--gray { background: var(--bg); }
.section--navy { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: #eaf0fb; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 0.75rem;
}
.eyebrow--pill {
  background: var(--red-100);
  color: var(--red-700);
  padding: 6px 14px;
  border-radius: 999px;
}
.section--navy .eyebrow { color: var(--red-300); }

.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; }
.section--navy .lead { color: #cfdaf0; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 68ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
  min-height: 52px;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid #ffb3c0; outline-offset: 2px; }

.btn--primary { background: var(--red-600); color: #fff; }
.btn--primary:hover { background: var(--red-700); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn--outline { background: #fff; color: var(--navy-800); border-color: var(--line); }
.btn--outline:hover { border-color: var(--navy-700); color: var(--navy-800); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; min-height: 58px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: #c6d2e8;
  font-size: 0.86rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 40px; padding-block: 6px; }
.topbar__note { display: inline-flex; align-items: center; gap: 8px; }
.topbar a { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: #ffb3c0; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease, padding 0.2s ease;
}
.header.is-stuck { box-shadow: var(--shadow-md); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 46px; width: auto; }
@media (max-width: 480px) { .brand img { height: 38px; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: var(--navy-800); font-family: var(--font-head); font-weight: 600; font-size: 1rem; padding: 10px 14px; border-radius: 8px; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--red-600); }
.nav-item { position: relative; }
.nav-item > button {
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--navy-800);
  background: none; border: 0; cursor: pointer; padding: 10px 14px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-item > button:hover, .nav-item.open > button { color: var(--red-600); }
.nav-item > button svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.nav-item.open > button svg { transform: rotate(180deg); }

/* dropdown — generous hover bridge + delay handled in JS */
.dropdown {
  position: absolute; top: calc(100% + 2px); left: 0;
  min-width: 288px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown::before { content: ''; position: absolute; bottom: 100%; left: 0; right: 0; height: 12px; }
.dropdown a { display: block; padding: 11px 14px; border-radius: 8px; color: var(--navy-800); font-weight: 600; font-size: 0.98rem; }
.dropdown a:hover { background: var(--bg); color: var(--red-600); }

.header__cta { display: flex; align-items: center; gap: 14px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--navy-800); }
.header__phone:hover { color: var(--red-600); }

/* hamburger */
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 8px; color: var(--navy-800); }
.hamburger svg { width: 28px; height: 28px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
  background: #fff; z-index: 80; transform: translateX(100%);
  transition: transform 0.28s ease; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; padding: 20px; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-backdrop { position: fixed; inset: 0; background: rgba(14,31,61,0.5); z-index: 79; opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s; }
.mobile-backdrop.open { opacity: 1; visibility: visible; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mobile-menu__head img { height: 40px; }
.mobile-menu a, .mobile-menu button.m-sub {
  display: block; width: 100%; text-align: left; padding: 14px 12px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--navy-800);
  border: 0; background: none; cursor: pointer; border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { background: var(--bg); color: var(--red-600); }
.mobile-menu .m-children a { padding-left: 26px; font-size: 0.98rem; color: var(--ink-soft); }
.mobile-menu__cta { margin-top: 18px; display: grid; gap: 10px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff; padding-block: clamp(48px, 7vw, 88px);
}
.page-hero h1 { color: #fff; margin-bottom: 0.3em; }
.page-hero p { color: #cfdaf0; font-size: 1.15rem; max-width: 60ch; margin: 0; }

/* breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.9rem; margin-bottom: 18px; color: #9fb1d0; }
.crumbs a { color: #cfdaf0; }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-current] { color: #fff; }
.crumbs .sep { color: #6f83a8; }

/* ---------- home hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 56px); align-items: center; padding-block: clamp(48px, 6vw, 92px); }
.hero h1 { color: #fff; }
.hero__sub { color: #cfdaf0; font-size: 1.2rem; max-width: 52ch; margin-bottom: 26px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.hero__trust li { list-style: none; display: inline-flex; align-items: center; gap: 8px; color: #dbe5f7; font-weight: 600; font-size: 0.98rem; }
.hero__trust svg { width: 20px; height: 20px; color: var(--red-300); flex: 0 0 auto; }
.hero ul { padding: 0; margin: 0; }

/* quote form card */
.quote-card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(22px, 3vw, 32px); }
.quote-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.quote-card__note { color: var(--ink-faint); font-size: 0.92rem; margin-bottom: 18px; }
.form-grid { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--navy-800); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; width: 100%; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(36,72,138,0.14); }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success { background: #e7f6ec; border: 1px solid #b7e2c4; color: #1c6b38; padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 600; }
.form-error { background: #fff1f1; border: 1px solid #f0b6b6; color: #8f1d1d; padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 600; margin-top: 14px; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
}

/* ---------- image placeholder ---------- */
.ph {
  position: relative; width: 100%; border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, #dbe2ec 0 12px, #e6ebf2 12px 24px);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  color: var(--navy-800); box-shadow: var(--shadow-sm); min-height: 220px;
  border: 1px solid var(--line);
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.78rem; letter-spacing: 0.02em; color: #5a6b86;
  background: rgba(255,255,255,0.86); padding: 6px 12px; border-radius: 999px;
  text-align: center; max-width: 82%; line-height: 1.4;
}
.ph--tall { min-height: 360px; }
.ph--wide { aspect-ratio: 16 / 9; }
.ph--square { aspect-ratio: 1 / 1; }

/* ---------- split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 8px; }
.card__body p { color: var(--ink-soft); font-size: 0.98rem; }
.card__link { margin-top: auto; padding-top: 14px; font-family: var(--font-head); font-weight: 700; color: var(--red-600); display: inline-flex; align-items: center; gap: 7px; }
.card__link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.card:hover .card__link svg { transform: translateX(3px); }
.card .ph { border-radius: 0; box-shadow: none; border: 0; border-bottom: 1px solid var(--line); }

/* feature (icon) card */
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.feature__icon { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 14px; background: var(--red-100); color: var(--red-600); display: grid; place-items: center; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* door styles chips */
.style-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 780px) { .style-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .style-grid { grid-template-columns: 1fr; } }
.style-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.style-card .ph { border-radius: 0; border: 0; min-height: 150px; }
.style-card__label { padding: 14px 16px; }
.style-card__label strong { font-family: var(--font-head); display: block; color: var(--navy-800); }
.style-card__label span { font-size: 0.86rem; color: var(--ink-faint); }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step__n { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--red-600); line-height: 1; opacity: 0.9; }
.step h3 { margin: 10px 0 6px; font-size: 1.15rem; }
.step p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }
.section--navy .step__n { color: var(--red-300); }
.section--navy .step p { color: #cfdaf0; }

/* checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--red-600); margin-top: 2px; }

/* prose (long-form service copy) */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; font-size: 1.25rem; }
.prose p { color: var(--ink-soft); }
.prose ul:not(.checklist) { padding-left: 0; list-style: none; display: grid; gap: 10px; margin: 0 0 1.2em; }
.prose ul:not(.checklist) li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); }
.prose ul:not(.checklist) li::before { content: ''; width: 8px; height: 8px; border-radius: 2px; background: var(--red-600); margin-top: 10px; flex: 0 0 auto; }
.prose strong { color: var(--ink); }

/* service layout (main + sidebar) */
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 960px) { .svc-layout { grid-template-columns: 1fr; } }
.sidebar { position: sticky; top: 100px; display: grid; gap: 20px; }
@media (max-width: 960px) { .sidebar { position: static; } }
.sidebar__box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.sidebar__box h3 { font-size: 1.15rem; margin-bottom: 14px; }
.sidebar__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.sidebar__links a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 12px; border-radius: 8px; color: var(--navy-800); font-weight: 600; }
.sidebar__links a:hover, .sidebar__links a[aria-current="page"] { background: var(--bg); color: var(--red-600); }
.sidebar__links a[aria-current="page"] { background: var(--red-100); }
.sidebar__cta { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: #fff; border-radius: var(--radius); padding: 24px; }
.sidebar__cta h3 { color: #fff; }
.sidebar__cta p { color: #cfdaf0; font-size: 0.95rem; }
.sidebar__cta a { color: #fff; }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-family: var(--font-head); font-weight: 700; color: var(--navy-800); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 18px; height: 18px; flex: 0 0 auto; transition: transform 0.2s ease; color: var(--red-600); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq__a { padding: 0 22px 20px; color: var(--ink-soft); }

/* final CTA */
.cta-band { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfdaf0; max-width: 58ch; margin-inline: auto; font-size: 1.12rem; }
.cta-band .btn-row { justify-content: center; margin-top: 26px; }

/* contact info list */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: center; }
.contact-list .ci { width: 48px; height: 48px; border-radius: 12px; background: var(--red-100); color: var(--red-600); display: grid; place-items: center; flex: 0 0 auto; }
.contact-list .ci svg { width: 22px; height: 22px; }
.contact-list b { display: block; font-family: var(--font-head); color: var(--navy-800); font-size: 1.05rem; }
.contact-list span { color: var(--ink-soft); font-size: 0.9rem; }

/* empty testimonial state */
.empty-state { text-align: center; border: 1.5px dashed var(--line); border-radius: var(--radius); padding: 40px 24px; color: var(--ink-faint); max-width: 640px; margin-inline: auto; }

/* ---------- footer ---------- */
.footer { background: var(--navy-900); color: #b7c4dd; padding-block: clamp(48px, 6vw, 72px) 0; }
.footer h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand-chip { background: #fff; border-radius: 10px; padding: 10px 14px; display: inline-block; margin-bottom: 16px; }
.footer__brand-chip img { height: 40px; }
.footer p { color: #9fb1d0; font-size: 0.95rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: #b7c4dd; font-weight: 500; }
.footer ul a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; color: #b7c4dd; }
.footer__contact svg { width: 18px; height: 18px; color: var(--red-300); margin-top: 3px; flex: 0 0 auto; }
.footer__contact a { color: #b7c4dd; }
.footer__contact a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 44px; padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: 0.88rem; color: #8194b5; }
.footer__bottom a { color: #8194b5; }
.footer__bottom a:hover { color: #fff; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- responsive header ---------- */
@media (max-width: 1024px) {
  .nav, .header__phone { display: none; }
  .hamburger { display: inline-flex; }
}
@media (max-width: 560px) {
  .topbar__note { font-size: 0.78rem; }
  .header__cta .btn { padding: 12px 16px; }
}

/* related services */
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr; } }

/* utility */
.stack > * + * { margin-top: 1rem; }
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: clamp(32px, 5vw, 56px); }
.badge-note { font-size: 0.82rem; color: var(--ink-faint); font-style: italic; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
