:root {
  --brand: #8b1d22;
  --brand-strong: #a9252b;
  --brand-dark: #4d0c0f;
  --ink: #0f151a;
  --ink-soft: #303940;
  --steel: #d9dde2;
  --steel-dark: #aab2b9;
  --paper: #ffffff;
  --surface: #f4f6f7;
  --surface-warm: #f7f3f1;
  --line: #dfe4e7;
  --success: #286b43;
  --warning: #8a5c11;
  --shadow-sm: 0 8px 24px rgba(15, 21, 26, 0.08);
  --shadow-md: 0 16px 48px rgba(15, 21, 26, 0.14);
  --shadow-lg: 0 28px 72px rgba(15, 21, 26, 0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --content: 1180px;
  --reading: 760px;
  --header-offset: 108px;
  --transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--brand); text-decoration-thickness: 1.5px; text-underline-offset: 0.16em; }
a:hover { color: var(--brand-strong); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #ffb33a; outline-offset: 3px; }
::selection { color: #fff; background: var(--brand); }

h1, h2, h3, h4 {
  margin: 0 0 0.55em;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.45rem, 6vw, 5.25rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 3.2rem); }
h3 { font-size: clamp(1.28rem, 2vw, 1.68rem); }
h4 { font-size: 1.05rem; letter-spacing: 0; }
p { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.35em; }
li + li { margin-top: 0.35em; }
small { font-size: 0.86rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
address { font-style: normal; }

.skip-link {
  position: fixed;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 0.65rem 1rem;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 2rem), var(--content)); margin-inline: auto; }
.reading-width { width: min(100%, var(--reading)); }
.section { padding: clamp(4rem, 8vw, 7.2rem) 0; }
.section-sm { padding: clamp(2.7rem, 5vw, 4.5rem) 0; }
.section-muted { background: var(--surface); }
.section-warm { background: var(--surface-warm); }
.section-dark { color: #edf1f3; background: var(--ink); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-brand { color: #fff; background: linear-gradient(120deg, var(--brand-dark), var(--brand)); }
.section-brand h2, .section-brand h3, .section-brand h4 { color: #fff; }
.section-heading { max-width: 800px; margin-bottom: 2.2rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 3px; content: ""; background: currentColor; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.3rem); line-height: 1.65; }
.muted { color: #66727a; }
.text-white { color: #fff; }
.no-margin { margin: 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1.25rem; }
.flow > * + * { margin-top: var(--flow-space, 1rem); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--brand);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  box-shadow: 0 8px 20px rgba(139, 29, 34, 0.2);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.btn:hover { color: #fff; background: var(--brand-strong); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(139, 29, 34, 0.28); }
.btn-secondary { color: var(--ink); background: #fff; border-color: var(--line); box-shadow: none; }
.btn-secondary:hover { color: var(--ink); background: var(--surface); }
.btn-dark { background: var(--ink); box-shadow: none; }
.btn-dark:hover { background: #26323a; }
.btn-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,0.72); box-shadow: none; }
.btn-outline:hover { color: var(--ink); background: #fff; }
.btn-small { min-height: 42px; padding: 0.65rem 0.95rem; font-size: 0.82rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

.site-header { position: relative; z-index: 1000; background: #fff; box-shadow: 0 1px 0 var(--line); }
.topbar { color: #fff; background: var(--brand-dark); font-size: 0.82rem; }
.topbar-inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-list { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.navbar { position: relative; background: rgba(255,255,255,0.98); }
.navbar-inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-logo { flex: 0 0 auto; width: min(300px, 43vw); text-decoration: none; }
.site-logo img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 0.2rem; }
.primary-nav ul { display: flex; align-items: center; gap: 0.1rem; margin: 0; padding: 0; list-style: none; }
.primary-nav li { margin: 0; }
.primary-nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 0.76rem;
  color: var(--ink);
  border-radius: 6px;
  font-size: 0.89rem;
  font-weight: 750;
  text-decoration: none;
}
.primary-nav a:not(.btn):hover,
.primary-nav a[aria-current="page"]:not(.btn) { color: var(--brand); background: var(--surface); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fff;
}
.nav-toggle-lines, .nav-toggle-lines::before, .nav-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before { position: absolute; top: -7px; left: 0; }
.nav-toggle-lines::after { position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(570px, 76vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero::after { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(90deg, rgba(8,12,15,0.92) 0%, rgba(8,12,15,0.76) 42%, rgba(8,12,15,0.2) 78%, rgba(8,12,15,0.08) 100%); }
.hero-content { max-width: 830px; padding: 6.2rem 0; }
.hero h1 { max-width: 840px; color: #fff; text-wrap: balance; }
.hero .lead { max-width: 690px; color: #e5eaed; }
.hero .eyebrow { color: #ffb8bb; }
.hero .button-row { margin-top: 1.7rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; margin-top: 1.4rem; color: #d8dfe3; font-size: 0.9rem; }
.hero-note span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-note span::before { content: "✓"; color: #ffb8bb; font-weight: 900; }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media picture, .page-hero-media img { width: 100%; height: 100%; }
.page-hero-media img { object-fit: cover; }
.page-hero::after { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(90deg, rgba(9,14,17,0.95), rgba(9,14,17,0.76) 55%, rgba(9,14,17,0.28)); }
.page-hero-inner { min-height: 430px; display: grid; align-items: center; padding: 4.8rem 0; }
.page-hero-content { max-width: 850px; }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5.2vw, 4.5rem); }
.page-hero p { max-width: 720px; color: #e1e7ea; }

.breadcrumbs { padding: 0.8rem 0; color: #637079; background: var(--surface); border-bottom: 1px solid var(--line); font-size: 0.84rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.35rem 0.55rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { margin: 0; }
.breadcrumbs li:not(:last-child)::after { margin-left: 0.55rem; content: "/"; color: #a2abb1; }
.breadcrumbs a { color: #526069; text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); text-decoration: underline; }

.trust-strip { color: #fff; background: var(--brand); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.3rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.22); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: #fff; font-size: 1.05rem; }
.trust-item span { display: block; color: #f8dfe0; font-size: 0.82rem; }

.grid { display: grid; gap: 1.3rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }

.card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); border-color: #c8d0d5; box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--steel); }
.card-media picture, .card-media img { width: 100%; height: 100%; }
.card-media img { object-fit: cover; transition: transform 500ms ease; }
.card:hover .card-media img { transform: scale(1.035); }
.card-body { padding: 1.25rem; }
.card-body p { color: #56636b; }
.card-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.87rem; font-weight: 850; text-decoration: none; text-transform: uppercase; letter-spacing: 0.035em; }
.card-link::after { content: "→"; transition: transform var(--transition); }
.card-link:hover::after { transform: translateX(4px); }
.card-tag { display: inline-flex; margin-bottom: 0.65rem; padding: 0.25rem 0.55rem; color: var(--brand); background: #f9e9ea; border-radius: 999px; font-size: 0.72rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.06em; }

.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split.reverse > :first-child { order: 2; }
.media-frame { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.media-frame::after { position: absolute; inset: 0; pointer-events: none; content: ""; border: 1px solid rgba(255,255,255,0.3); border-radius: inherit; }
.media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.check-list { display: grid; gap: 0.7rem; margin: 1.35rem 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 0; padding-left: 1.75rem; }
.check-list li::before { position: absolute; top: 0.1rem; left: 0; display: grid; width: 1.18rem; height: 1.18rem; place-items: center; content: "✓"; color: #fff; background: var(--brand); border-radius: 50%; font-size: 0.72rem; font-weight: 900; }
.icon-list { display: grid; gap: 0.75rem; margin: 1.2rem 0; padding: 0; list-style: none; }
.icon-list li { display: flex; gap: 0.75rem; align-items: flex-start; margin: 0; }
.icon-list .icon { flex: 0 0 32px; display: grid; width: 32px; height: 32px; place-items: center; color: #fff; background: var(--brand); border-radius: 8px; font-weight: 900; }

.feature-card { padding: 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.feature-card .number { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 1rem; color: #fff; background: var(--brand); border-radius: 50%; font-size: 1.1rem; font-weight: 900; }
.feature-card p { color: #58656d; }
.stat-card { padding: 1.35rem; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.stat-card strong { display: block; color: var(--brand); font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1; }
.stat-card span { display: block; margin-top: 0.5rem; color: #5f6b73; font-size: 0.87rem; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.content-main > section + section { margin-top: 4.5rem; }
.sidebar { position: sticky; top: 1.4rem; display: grid; gap: 1.1rem; }
.sidebar-card { padding: 1.35rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.sidebar-card.brand { color: #fff; background: linear-gradient(140deg, var(--brand-dark), var(--brand)); border: 0; box-shadow: var(--shadow-md); }
.sidebar-card.brand h3 { color: #fff; }
.sidebar-card.brand a:not(.btn) { color: #fff; }
.sidebar-nav { margin: 0; padding: 0; list-style: none; }
.sidebar-nav li { margin: 0; border-bottom: 1px solid var(--line); }
.sidebar-nav li:last-child { border-bottom: 0; }
.sidebar-nav a { display: block; padding: 0.62rem 0; color: var(--ink); font-size: 0.9rem; font-weight: 700; text-decoration: none; }
.sidebar-nav a:hover { color: var(--brand); }

.notice { padding: 1rem 1.1rem; border-left: 4px solid var(--brand); background: #fff5f5; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.notice strong { color: var(--brand-dark); }
.notice.info { border-left-color: #3a6f8d; background: #f0f7fb; }
.notice.warning { border-left-color: #ae761c; background: #fff9ed; }

.service-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.65rem 1.2rem; margin: 0; padding: 0; list-style: none; }
.service-list li { margin: 0; }
.service-list a { display: block; padding: 0.65rem 0.75rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 700; text-decoration: none; }
.service-list a:hover { color: var(--brand); border-color: #c5ccd1; box-shadow: var(--shadow-sm); }
.location-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0; padding: 0; list-style: none; }
.location-list li { margin: 0; }
.location-list a { display: inline-flex; padding: 0.52rem 0.8rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 0.86rem; font-weight: 750; text-decoration: none; }
.location-list a:hover { color: #fff; background: var(--brand); border-color: var(--brand); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0.9rem; }
.gallery-item { position: relative; grid-column: span 4; overflow: hidden; border-radius: var(--radius-md); background: var(--steel); }
.gallery-item.wide { grid-column: span 8; }
.gallery-item picture, .gallery-item img { width: 100%; height: 100%; }
.gallery-item img { min-height: 260px; object-fit: cover; }
.gallery-caption { position: absolute; right: 0; bottom: 0; left: 0; padding: 2.2rem 1rem 0.85rem; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,0.8)); font-size: 0.9rem; font-weight: 750; }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; counter-reset: steps; }
.process-step { position: relative; padding: 1.35rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); counter-increment: steps; }
.process-step::before { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 1rem; content: counter(steps); color: #fff; background: var(--brand); border-radius: 50%; font-weight: 900; }
.process-step p { color: #59666e; }

.faq-list { display: grid; gap: 0.75rem; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; color: var(--ink); background: #fff; border: 0; text-align: left; font-weight: 800; }
.faq-question:hover { color: var(--brand); background: var(--surface); }
.faq-question::after { flex: 0 0 auto; content: "+"; color: var(--brand); font-size: 1.4rem; line-height: 1; transition: transform var(--transition); }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.1rem 1rem; color: #4f5d65; }
.faq-answer[hidden] { display: none; }

.map-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.map-card iframe { display: block; width: 100%; min-height: 390px; border: 0; }
.map-card img { width: 100%; min-height: 320px; object-fit: cover; }
.map-card-content { padding: 1.1rem 1.25rem; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-card { padding: 1.4rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.form-field { display: grid; gap: 0.35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-size: 0.9rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bfc7cc;
  border-radius: 7px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(139,29,34,0.12); outline: 0; }
.form-field textarea { min-height: 150px; resize: vertical; }
.field-help { color: #6a767e; font-size: 0.78rem; }
.form-status { min-height: 1.4em; margin-top: 0.8rem; font-size: 0.9rem; font-weight: 700; }
.form-status.error { color: #9b1c1c; }
.form-status.success { color: var(--success); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.cta-band { padding: 2.2rem 0; color: #fff; background: linear-gradient(110deg, var(--brand-dark), var(--brand)); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta-band h2 { margin: 0 0 0.25rem; color: #fff; font-size: clamp(1.55rem, 3vw, 2.35rem); }
.cta-band p { margin: 0; color: #f1dfe0; }

.site-footer { color: #dfe5e8; background: #0b1014; }
.footer-main { padding: 4.2rem 0 2.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1fr; gap: 2rem; }
.footer-logo { width: min(320px, 100%); filter: brightness(0) invert(1); }
.footer-title { color: #fff; font-size: 1rem; letter-spacing: 0.02em; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 0; }
.footer-links a { display: inline-block; padding: 0.22rem 0; color: #d9e0e4; font-size: 0.88rem; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-contact { display: grid; gap: 0.5rem; margin-top: 1.1rem; font-size: 0.9rem; }
.footer-contact a { color: #fff; }
.footer-bottom { padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,0.13); font-size: 0.78rem; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem 1.5rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { color: #cbd4d9; text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }

.pagination-note { padding: 1rem; color: #5e6a72; background: var(--surface); border-radius: var(--radius-sm); font-size: 0.9rem; }
.directory-group + .directory-group { margin-top: 3rem; }
.directory-list { columns: 3 260px; column-gap: 2rem; margin: 0; padding: 0; list-style: none; }
.directory-list li { break-inside: avoid; margin: 0 0 0.55rem; }
.directory-list a { color: var(--ink); text-decoration: none; }
.directory-list a:hover { color: var(--brand); text-decoration: underline; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: #fff; background: var(--ink); font-size: 0.86rem; }
tr:last-child td { border-bottom: 0; }

@media (max-width: 1100px) {
  .primary-nav .desktop-cta { display: none; }
  .primary-nav a:not(.btn) { padding-inline: 0.55rem; font-size: 0.84rem; }
  .content-layout { grid-template-columns: minmax(0,1fr) 300px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  :root { --header-offset: 84px; }
  body.nav-open { overflow: hidden; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-list .topbar-hours { display: none; }
  .navbar-inner { min-height: 72px; }
  .site-logo { width: min(270px, 66vw); }
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 0.65rem 1rem 1rem;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .primary-nav[data-open="true"] { display: block; }
  .primary-nav ul { display: grid; gap: 0.25rem; }
  .primary-nav a:not(.btn) { display: block; padding: 0.85rem; font-size: 0.96rem; }
  .primary-nav .desktop-cta { display: inline-flex; width: 100%; margin-top: 0.4rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.22); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: initial; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item.wide { grid-column: span 6; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 1.25rem), var(--content)); }
  .topbar { font-size: 0.75rem; }
  .topbar-list { justify-content: center; gap: 0.4rem 1rem; }
  .topbar-address { display: none; }
  .hero { min-height: 640px; }
  .hero::after { background: linear-gradient(180deg, rgba(8,12,15,0.72), rgba(8,12,15,0.9)); }
  .hero-content { padding: 4.5rem 0; }
  .page-hero::after { background: rgba(8,12,15,0.78); }
  .page-hero-inner { min-height: 390px; }
  .button-row .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.22); }
  .trust-item:last-child { border-bottom: 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item.wide { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .cta-band-inner { align-items: stretch; flex-direction: column; }
  .cta-band .button-row { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
  .directory-list { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media print {
  .topbar, .navbar, .breadcrumbs, .cta-band, .site-footer, .btn, .sidebar, .faq-question::after { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero, .page-hero { min-height: 0; color: #000; background: #fff; }
  .hero-media, .page-hero-media, .hero::after, .page-hero::after { display: none; }
  .hero h1, .page-hero h1 { color: #000; }
  .section { padding: 1.5rem 0; }
  .content-layout { display: block; }
  a { color: #000; text-decoration: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}

/* Header dropdown restoration — 2026-08-20 */
.primary-nav > ul > li > a,
.primary-nav .nav-item-row > a {
  white-space: nowrap;
}

.primary-nav .has-submenu {
  position: relative;
}

.primary-nav .nav-item-row {
  display: flex;
  align-items: center;
}

.submenu-toggle {
  display: inline-grid;
  width: 30px;
  height: 34px;
  flex: 0 0 30px;
  place-items: center;
  margin-left: -0.45rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.submenu-toggle:hover,
.submenu-toggle:focus-visible,
.has-submenu[data-submenu-open="true"] > .nav-item-row .submenu-toggle {
  color: var(--brand);
  background: var(--surface);
}

.submenu-toggle:focus-visible {
  outline: 3px solid rgba(139, 29, 34, 0.2);
  outline-offset: 1px;
}

.submenu-toggle-icon {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--transition);
}

.has-submenu[data-submenu-open="true"] .submenu-toggle-icon {
  transform: translateY(2px) rotate(225deg);
}

.submenu {
  display: none;
  z-index: 1100;
  gap: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 22px 48px rgba(13, 20, 24, 0.18);
}

.submenu-column {
  display: grid;
  align-content: start;
  gap: 0.14rem;
  padding: 1.2rem;
}

.submenu-column + .submenu-column {
  border-left: 1px solid var(--line);
}

.submenu-heading,
.submenu-kicker {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.primary-nav .submenu a:not(.btn) {
  display: flex;
  min-height: 0;
  align-items: center;
  padding: 0.52rem 0.58rem;
  color: #263139;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.25;
  white-space: normal;
}

.primary-nav .submenu a:not(.btn):hover,
.primary-nav .submenu a:not(.btn):focus-visible {
  color: var(--brand);
  background: #f7f2f2;
}

.submenu-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.3rem;
  color: #fff;
  background: linear-gradient(145deg, #171d21, #0b1014);
}

.submenu-feature .submenu-kicker {
  color: #f0b9bc;
}

.submenu-feature strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.2;
}

.submenu-feature p {
  margin: 0 0 0.8rem;
  color: #d6dde1;
  font-size: 0.8rem;
  line-height: 1.55;
}

.primary-nav .submenu .submenu-all-link:not(.btn) {
  align-self: flex-start;
  padding: 0;
  color: #fff;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.primary-nav .submenu .submenu-all-link:not(.btn):hover,
.primary-nav .submenu .submenu-all-link:not(.btn):focus-visible {
  color: #f4cacc;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 1041px) {
  .primary-nav .has-submenu > .nav-item-row > a {
    padding-right: 0.58rem;
  }

  .submenu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    display: none;
    width: min(680px, calc(100vw - 2rem));
    grid-template-columns: 1fr 1fr 1.13fr;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .submenu--areas {
    right: -7rem;
    left: auto;
    transform: translateY(10px);
  }

  /* Keep the pointer continuously inside the menu system while moving
     from a top-level item into its dropdown. */
  .has-submenu {
    padding-bottom: 1px;
    margin-bottom: -1px;
  }

  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu,
  .has-submenu[data-submenu-open="true"] > .submenu {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .has-submenu:hover > .submenu--areas,
  .has-submenu:focus-within > .submenu--areas,
  .has-submenu[data-submenu-open="true"] > .submenu--areas {
    transform: translateY(0);
  }
}

/* Move the header to its compact navigation before labels become crowded. */
@media (max-width: 1040px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    align-items: stretch;
    padding: 0.65rem 1rem 1rem;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .primary-nav[data-open="true"] {
    display: block;
  }

  .primary-nav > ul {
    display: grid;
    gap: 0.25rem;
  }

  .primary-nav > ul > li {
    display: block;
    width: 100%;
  }

  .primary-nav > ul > li > a:not(.btn),
  .primary-nav .nav-item-row > a:not(.btn) {
    display: block;
    width: 100%;
    padding: 0.85rem;
    font-size: 0.96rem;
    white-space: normal;
  }

  .primary-nav .nav-item-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
  }

  .primary-nav .nav-item-row > a {
    grid-column: 1;
    grid-row: 1;
  }

  .submenu-toggle {
    grid-column: 2;
    grid-row: 1;
    width: 44px;
    height: 42px;
    margin: 0;
    justify-self: end;
    border: 1px solid var(--line);
    background: #fff;
  }

  .submenu {
    position: static;
    display: none;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0.15rem 0 0.55rem;
    border-radius: 9px;
    box-shadow: none;
  }

  .has-submenu[data-submenu-open="true"] > .submenu {
    display: grid;
  }

  .submenu-column {
    padding: 1rem;
  }

  .submenu-feature {
    grid-column: 1 / -1;
    padding: 1rem;
  }

  .primary-nav .desktop-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 0.4rem;
  }
}

@media (max-width: 640px) {
  .submenu {
    grid-template-columns: 1fr;
  }

  .submenu-column + .submenu-column {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .submenu-feature {
    grid-column: auto;
  }
}


/* =========================================================
   SERVICE AREA HUB REDESIGN — 2026-08-21
   Scoped to main.service-area-hub
   ========================================================= */
.service-area-hub .area-hero { position: relative; isolation: isolate; overflow: hidden; color:#fff; background:#11171a; }
.service-area-hub .area-hero-media { position:absolute; inset:0; z-index:-2; }
.service-area-hub .area-hero-media picture,.service-area-hub .area-hero-media img { width:100%; height:100%; }
.service-area-hub .area-hero-media img { object-fit:cover; object-position:center; }
.service-area-hub .area-hero::after { position:absolute; inset:0; z-index:-1; content:""; background:linear-gradient(90deg,rgba(8,12,15,.94) 0%,rgba(8,12,15,.78) 48%,rgba(8,12,15,.24) 100%); }
.service-area-hub .area-hero-inner { min-height:540px; display:flex; align-items:center; padding:5.5rem 0; }
.service-area-hub .area-hero-copy { max-width:780px; }
.service-area-hub .area-hero h1 { max-width:780px; margin-bottom:1.2rem; color:#fff; font-size:clamp(2.5rem,5.3vw,4.9rem); line-height:.98; letter-spacing:-.035em; }
.service-area-hub .area-hero .lead { max-width:720px; color:#e5eaed; font-size:1.08rem; }
.service-area-hub .btn-outline.light { color:#fff; border-color:rgba(255,255,255,.7); background:rgba(255,255,255,.04); }
.service-area-hub .btn-outline.light:hover { color:var(--ink); background:#fff; border-color:#fff; }
.service-area-hub .area-intro-band { padding:3rem 0; background:#fff; border-bottom:1px solid var(--line); }
.service-area-hub .area-intro-grid { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr); gap:clamp(2rem,5vw,5rem); align-items:center; }
.service-area-hub .area-intro-grid h2 { margin-bottom:.7rem; font-size:clamp(2rem,4vw,3.15rem); }
.service-area-hub .area-quick-facts { display:grid; gap:.85rem; }
.service-area-hub .area-quick-facts>div { padding:1.15rem 1.2rem; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md); }
.service-area-hub .area-quick-facts strong,.service-area-hub .area-quick-facts span { display:block; }
.service-area-hub .area-quick-facts span { margin-top:.3rem; color:#5b6870; font-size:.9rem; }
.service-area-hub .section-heading { max-width:830px; margin-bottom:2rem; }
.service-area-hub .area-service-groups { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.service-area-hub .area-service-group { padding:1.4rem 1.45rem; background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); box-shadow:var(--shadow-sm); }
.service-area-hub .area-service-group h3 { margin-bottom:.75rem; font-size:1.12rem; }
.service-area-hub .area-service-group ul { display:grid; gap:.08rem; margin:0; padding:0; list-style:none; }
.service-area-hub .area-service-group li { margin:0; }
.service-area-hub .area-service-group a { position:relative; display:block; padding:.47rem 1rem .47rem 0; color:#354149; font-size:.88rem; font-weight:700; text-decoration:none; border-bottom:1px solid #edf0f2; }
.service-area-hub .area-service-group li:last-child a { border-bottom:0; }
.service-area-hub .area-service-group a::after { position:absolute; right:0; content:"→"; color:var(--brand); }
.service-area-hub .area-service-group a:hover { color:var(--brand); }
.service-area-hub .area-project-grid { display:grid; grid-template-columns:1.3fr .85fr; grid-template-rows:repeat(2,minmax(210px,1fr)); gap:1rem; }
.service-area-hub .area-project-card { position:relative; min-height:230px; margin:0; overflow:hidden; border-radius:var(--radius-lg); background:#d9dfe2; box-shadow:var(--shadow-md); }
.service-area-hub .area-project-card--large { grid-row:1 / 3; min-height:520px; }
.service-area-hub .area-project-card picture,.service-area-hub .area-project-card img { width:100%; height:100%; }
.service-area-hub .area-project-card img { object-fit:cover; transition:transform .5s ease; }
.service-area-hub .area-project-card:hover img { transform:scale(1.025); }
.service-area-hub .area-project-card figcaption { position:absolute; right:0; bottom:0; left:0; padding:3rem 1.25rem 1rem; color:#fff; background:linear-gradient(transparent,rgba(0,0,0,.82)); font-weight:850; }
.service-area-hub .area-reference-strip { display:flex; align-items:center; justify-content:space-between; gap:2rem; margin-top:1.3rem; padding:1.35rem 1.5rem; background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); }
.service-area-hub .area-reference-strip p { margin:.3rem 0 0; color:#5a6770; }
.service-area-hub .area-local-grid { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr); gap:clamp(2rem,6vw,5rem); align-items:start; }
.service-area-hub .area-neighborhood-card { padding:1.5rem; background:#11181c; color:#dfe5e8; border-radius:var(--radius-lg); box-shadow:var(--shadow-md); }
.service-area-hub .area-neighborhood-card h3 { color:#fff; }
.service-area-hub .area-neighborhood-card p { color:#c9d1d5; }
.service-area-hub .area-neighborhood-card ul { display:flex; flex-wrap:wrap; gap:.55rem; margin:1rem 0 0; padding:0; list-style:none; }
.service-area-hub .area-neighborhood-card li { margin:0; padding:.48rem .72rem; color:#fff; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); border-radius:999px; font-size:.82rem; }
.service-area-hub .area-resource-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.service-area-hub .area-resource-card { padding:1.4rem; background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); }
.service-area-hub .area-resource-card p { color:#59666e; }
.service-area-hub .area-map-grid { display:grid; grid-template-columns:minmax(300px,.72fr) minmax(0,1.28fr); overflow:hidden; background:#11181c; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); }
.service-area-hub .area-map-copy { padding:clamp(2rem,5vw,4rem); color:#dbe2e5; }
.service-area-hub .area-map-copy h2 { color:#fff; }
.service-area-hub .area-map-copy p { color:#c6d0d4; }
.service-area-hub .area-map-frame { min-height:430px; background:#e9ece8; }
.service-area-hub .area-map-frame iframe { display:block; width:100%; height:100%; min-height:430px; border:0; filter:saturate(.88) contrast(.98); }
.service-area-hub .area-faq-wrap { max-width:980px; }
.service-area-hub .area-nearby-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.service-area-hub .area-nearby-card { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.25rem 1.3rem; color:var(--ink); background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); text-decoration:none; box-shadow:var(--shadow-sm); }
.service-area-hub .area-nearby-card span { font-weight:850; }
.service-area-hub .area-nearby-card small { color:var(--brand); font-weight:800; text-transform:uppercase; letter-spacing:.04em; }
.service-area-hub .area-nearby-card:hover { transform:translateY(-2px); border-color:#c9d0d4; box-shadow:var(--shadow-md); }
@media (max-width: 980px) {
  .service-area-hub .area-intro-grid,.service-area-hub .area-local-grid,.service-area-hub .area-map-grid { grid-template-columns:1fr; }
  .service-area-hub .area-service-groups { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .service-area-hub .area-project-card--large { min-height:460px; }
  .service-area-hub .area-map-frame,.service-area-hub .area-map-frame iframe { min-height:380px; }
}
@media (max-width: 680px) {
  .service-area-hub .area-hero-inner { min-height:500px; padding:4rem 0; }
  .service-area-hub .area-hero::after { background:rgba(8,12,15,.78); }
  .service-area-hub .area-service-groups,.service-area-hub .area-resource-grid,.service-area-hub .area-nearby-grid { grid-template-columns:1fr; }
  .service-area-hub .area-project-grid { grid-template-columns:1fr; grid-template-rows:auto; }
  .service-area-hub .area-project-card,.service-area-hub .area-project-card--large { grid-row:auto; min-height:280px; }
  .service-area-hub .area-reference-strip { align-items:flex-start; flex-direction:column; }
}
\n\n/* 2026-08-24 map presentation upgrade */
.media-frame:has(img[src*="service-region-map"]) {
  background: #edf2f4;
  border: 1px solid rgba(17,24,28,.12);
  box-shadow: 0 24px 55px rgba(7,15,20,.18);
}
.media-frame:has(img[src*="service-region-map"]) img {
  aspect-ratio: 12 / 7;
  object-fit: cover;
}
.map-card,
.service-area-hub .area-map-frame {
  position: relative;
  overflow: hidden;
  background: #eaf0f2;
  border: 1px solid rgba(17,24,28,.12);
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(7,15,20,.16);
}
.map-card iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
  filter: none;
}
.service-area-hub .area-map-frame {
  min-height: 470px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
.service-area-hub .area-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 470px;
  height: 100%;
  border: 0;
  filter: none;
}
.map-card::after,
.service-area-hub .area-map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}
@media (max-width: 780px) {
  .map-card iframe,
  .service-area-hub .area-map-frame,
  .service-area-hub .area-map-frame iframe { min-height: 360px; }
}
