:root {
  --navy: #0a3d73;
  --navy-2: #0c4d8f;
  --navy-3: #1563b0;
  --ink: #123047;
  --cream: #ffffff;
  --paper: #ffffff;
  --line: #e2e8f0;
  --muted: #4a6278;
  --copper: #0b5cab;
  --copper-2: #084a8c;
  --alert: #0b5cab;
  --alert-2: #084a8c;
  --white: #fff;
  --blue-soft: #eaf3fb;
  --shadow: 0 18px 50px rgba(11, 92, 171, 0.12);
  --header-h: 72px;
  --chrome: 72px;
  --radius: 2px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: Outfit, system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.6em;
  overflow-wrap: break-word;
}
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.15em; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: var(--white);
  padding: 8px 12px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.wrap-s { width: min(760px, calc(100% - 40px)); margin-inline: auto; }

/* White header, blue brand */
.topbar {
  background: var(--copper);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(11, 92, 171, 0.04);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--copper);
  min-width: 0;
}
.brand svg { width: 44px; height: 44px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: Outfit, sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}
.brand-text span { font-size: 12px; color: var(--muted); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a, .drop > button {
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav a:hover, .drop > button:hover { color: var(--copper); background: var(--blue-soft); }
.drop { position: relative; }
.drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  color: var(--ink);
  padding: 10px;
  box-shadow: var(--shadow);
  border-radius: 2px;
  z-index: 60;
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { display: grid; }
.drop-menu a {
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
}
.drop-menu a:hover { background: #f5f5f5; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-family: Outfit, sans-serif;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-2); }
.btn:focus-visible,
.nav a:focus-visible,
.drop > button:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid #7eb6e8;
  outline-offset: 3px;
}
.btn-white { background: #fff; color: var(--navy); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--copper);
  background: transparent;
  color: var(--copper);
  border-radius: 4px;
}

.loc-photo {
  padding: 28px 0 0;
}
.loc-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.feat-block {
  padding: 56px 0;
  background: #fff;
}
.feat-block.alt {
  background: var(--blue-soft);
}
.feat-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.feat-layout.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}
.feat-layout.reverse .feat-copy { order: 2; }
.feat-layout.reverse .feat-visual { order: 1; }
.feat-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.feat-block.alt .feat-badge {
  background: #fff;
}
.feat-copy h2 {
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 42px);
  max-width: 18ch;
  margin-bottom: 16px;
}
.feat-copy p {
  color: var(--muted);
  font-size: 17px;
  max-width: 54ch;
}
.feat-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.feat-call svg { width: 18px; height: 18px; flex: none; }
.feat-visual {
  position: relative;
}
.feat-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(10, 61, 115, 0.18);
}
.feat-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(10, 61, 115, 0.16);
}
.feat-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin: 8px 0 22px;
}
.feat-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
}
.feat-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--copper);
  display: grid;
  place-items: center;
}
.feat-ico svg { width: 20px; height: 20px; }
.feat-point strong {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.2;
}
.feat-point span {
  display: block;
  font-size: 14px;
  color: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,16,28,.9) 0%, rgba(8,16,28,.62) 46%, rgba(8,16,28,.22) 100%),
    linear-gradient(180deg, rgba(8,16,28,.35) 0%, transparent 28%, rgba(8,16,28,.45) 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: calc(var(--chrome) + 28px) 0 56px;
}
.hero-grid > div { max-width: 38rem; }
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f0c4a6;
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 12ch;
  color: #fff;
}
.hero .lead {
  font-size: 20px;
  max-width: 42ch;
  color: #dbe4ee;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 10px; }
.form-card {
  background: rgba(255,255,255,.97);
  color: var(--ink);
  padding: 22px 22px 18px;
  border-radius: 2px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.form-card h2 { font-size: 22px; margin-bottom: 6px; }
.form-card p { color: var(--muted); font-size: 15px; }
label { display: block; font-size: 13px; font-weight: 700; margin: 10px 0 4px; }
input, textarea, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 96px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 8px; }
.form-success { display: none; padding: 12px; background: #e8f6ec; border-radius: 4px; margin-top: 10px; }

.trust-bar {
  position: relative;
  isolation: isolate;
  color: #f7f1e6;
  background-color: #07111f;
  background-image:
    linear-gradient(180deg, rgba(201, 163, 106, 0.14), transparent 18%),
    radial-gradient(920px 160px at 12% -20%, rgba(21, 99, 176, 0.45), transparent 58%),
    radial-gradient(720px 140px at 92% 120%, rgba(11, 92, 171, 0.32), transparent 62%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 72px,
      rgba(201, 163, 106, 0.045) 72px,
      rgba(201, 163, 106, 0.045) 73px
    );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.trust-bar::before,
.trust-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 4%,
    rgba(201, 163, 106, 0.25) 18%,
    #c9a36a 50%,
    rgba(201, 163, 106, 0.25) 82%,
    transparent 96%
  );
}
.trust-bar::before { top: 0; }
.trust-bar::after { bottom: 0; }
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 4px 0;
}
.trust-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 22px;
  min-height: 112px;
}
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 28%;
  bottom: 28%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 163, 106, 0.55),
    transparent
  );
}
.trust-ico {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  line-height: 0;
  font-size: 0;
  margin: 0;
  color: #e8c989;
  background:
    radial-gradient(circle at 50% 32%, #1d4a7a 0%, #0b2744 68%);
  border: 1px solid rgba(201, 163, 106, 0.85);
  box-shadow:
    0 0 0 3px #07111f,
    0 0 0 4px rgba(201, 163, 106, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 18px rgba(0, 0, 0, 0.28);
}
.trust-ico svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: 0;
  transform: translate(-50%, -50%);
  display: block;
}
.trust-item strong {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.25;
  color: #f7f1e6;
}
.trust-item > div span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: rgba(232, 213, 168, 0.78);
}
.trust-item a {
  color: #e8c989;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 163, 106, 0.55);
}
.trust-item a:hover {
  color: #fff;
  border-bottom-color: #c9a36a;
}

section { padding: 72px 0; }
.section-dark { background: var(--navy); color: #e7eef6; }
.section-cream { background: #fff; }
.section-alert { background: var(--alert); color: #fff; padding: 36px 0; }
.section-alert h2 { color: #fff; }
.eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--copper);
  margin-bottom: 8px;
}
.section-head { max-width: 720px; margin-bottom: 32px; }
h2 { font-size: clamp(28px, 3.2vw, 40px); }

.service-list h3 { font-size: 22px; margin: 0 0 6px; }
.service-list p { margin: 0; color: var(--muted); font-size: 16px; }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.split:has(img) {
  grid-template-columns: 1.05fr .95fr;
}
.split img { width: 100%; height: 460px; object-fit: cover; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-n {
  font-family: Outfit, sans-serif;
  font-size: 42px;
  color: var(--copper);
  line-height: 1;
}
.feat-copy h3 {
  color: var(--navy);
  font-size: 22px;
  margin: 18px 0 8px;
}

.cta-band {
  padding: 28px 0 64px;
  background: #fff;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px 40px;
  border-radius: 28px;
  background: linear-gradient(105deg, #072a52 0%, #0b5cab 55%, #0a3d73 100%);
  color: #fff;
  box-shadow: 0 24px 50px rgba(10, 61, 115, 0.22);
}
.cta-band h2 { color: #fff; margin: 0 0 8px; font-size: clamp(26px, 3vw, 36px); }
.cta-band p { margin: 0; color: rgba(255,255,255,.85); max-width: 54ch; }
.cta-band .btn { background: #fff; color: var(--navy); }
.cta-band .btn:hover { background: var(--blue-soft); }

.faq-block {
  padding: 56px 0 72px;
  background: var(--blue-soft);
}
.faq-block .feat-badge { background: #fff; }
.faq-block h2 { color: var(--navy); max-width: 18ch; }
.faq {
  margin-top: 12px;
  background: #fff;
  border-radius: 24px;
  padding: 8px 28px 12px;
  box-shadow: 0 18px 40px rgba(10, 61, 115, 0.08);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 0; }

.map-block {
  padding: 56px 0;
  background: #fff;
}
.map-block h2 { color: var(--navy); }
.map-block p { color: var(--muted); max-width: 62ch; }
.map-embed {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(10, 61, 115, 0.14);
  filter: none;
  margin: 18px 0;
}
.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.nearby-links a,
.related-grid a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.related-block {
  padding: 56px 0;
  background: #fff;
}
.related-block h2 { color: var(--navy); }
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: transparent;
  border: 0;
}
.area-grid a {
  background: #fff;
  padding: 22px 18px;
  text-decoration: none;
  min-height: 110px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(10, 61, 115, 0.06);
}
.area-grid a:hover { background: var(--blue-soft); border-color: transparent; }
.area-grid strong { display: block; font-family: Outfit, sans-serif; font-size: 18px; color: var(--navy); }
.area-grid span { color: var(--muted); font-size: 14px; }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 0;
}
.service-list a {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none;
  align-items: center;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 61, 115, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.service-list a:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(10, 61, 115, 0.12); }
.service-list img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: Outfit, sans-serif;
  font-size: 18px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--copper);
  font-weight: 800;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 10px 0 0; color: var(--muted); }
.crumbs { font-size: 14px; color: var(--muted); padding: 18px 0 0; }
.crumbs a { color: var(--navy-2); }
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.4em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 18px; }
.callout {
  background: var(--navy);
  color: #fff;
  padding: 28px;
  margin: 28px 0;
}
.callout a { color: #fff; }

.blog-list { display: grid; gap: 0; }
.blog-list a {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.blog-list img { width: 220px; height: 140px; object-fit: cover; }

.site-footer {
  background: #08121f;
  color: #c5d0dc;
  padding: 56px 0 28px;
  font-size: 16px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer h3 { font-size: 15px; color: #f0c4a6; text-transform: uppercase; letter-spacing: .08em; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin: 8px 0; }
.legal { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; font-size: 13px; color: #8b97a6; }

.sticky-call {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--copper);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  color: #fff;
  text-decoration: none;
  font-family: Outfit, sans-serif;
  font-weight: 800;
  letter-spacing: .04em;
}

.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: #fff;
}
.page-hero .hero-media img { object-position: center 35%; }
.page-hero .hero-media::after {
  background: linear-gradient(180deg, rgba(8,16,28,.4) 0%, rgba(8,16,28,.2) 32%, rgba(8,16,28,.86) 100%);
}
.page-hero-inner { position: relative; z-index: 1; padding: calc(var(--chrome) + 48px) 0 48px; }
.page-hero h1 { font-size: clamp(34px, 4.5vw, 56px); max-width: 18ch; }

@media (max-width: 1100px) {
  .nav a, .drop > button { font-size: 13px; padding: 8px 7px; }
  .header-cta .btn { padding: 0 12px; font-size: 14px; }
}
@media (max-width: 980px) {
  :root { --header-h: 64px; --chrome: 64px; }
  .feat-layout, .feat-layout.reverse { grid-template-columns: 1fr; gap: 28px; }
  .feat-layout.reverse .feat-copy, .feat-layout.reverse .feat-visual { order: unset; }
  .feat-visual img { height: 320px; }
  .feat-copy h2, .feat-copy p { max-width: none; }
  .feat-call { width: 100%; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; padding: 0; }
  .trust-item:nth-child(2n)::after { display: none; }
  .trust-item { min-height: 96px; padding: 20px 14px; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(201, 163, 106, 0.18); }
  .split:has(img), .steps, .foot-grid, .area-grid { grid-template-columns: 1fr 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .nav { display: none; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    background: #08121f;
    padding: 12px 18px 28px;
    overflow: auto;
    z-index: 45;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open .nav a,
  body.nav-open .drop > button {
    color: #fff;
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 17px;
    padding: 12px 8px;
  }
  .drop-menu { position: static; display: grid; box-shadow: none; background: transparent; padding: 0 0 8px 12px; }
  .drop-menu a { color: #dbe4ee; min-height: 44px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; flex: none; }
  .header-cta { display: none; }
  .sticky-call { display: block; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 28px 0 36px; }
  .cta-band-inner { grid-template-columns: 1fr; padding: 24px 20px; }
  .cta-band .feat-call { width: 100%; }
  .page-hero { min-height: auto; }
  .page-hero-inner { padding: 32px 0 28px; }
  .header-row { gap: 10px; min-height: var(--header-h); }
  .brand svg { width: 40px; height: 40px; }
  section { padding: 48px 0; }
  .feat-block, .faq-block, .map-block, .related-block { padding: 40px 0; }
  .site-footer { padding: 40px 0 24px; }
}
@media (max-width: 720px) {
  .feat-points { grid-template-columns: 1fr; }
  .feat-visual img { height: 220px; border-radius: 18px; }
  .feat-chip { left: 12px; bottom: 12px; font-size: 12px; padding: 8px 10px; max-width: calc(100% - 24px); }
  .trust-item strong { font-size: 11px; letter-spacing: 0.1em; }
  .trust-item > div span { font-size: 12px; }
  .trust-ico { width: 42px; height: 42px; }
  .trust-ico svg { width: 18px; height: 18px; }
  .split:has(img), .steps, .foot-grid, .area-grid, .blog-list a, .service-list a {
    grid-template-columns: 1fr;
  }
  .service-list img, .blog-list img { width: 100%; height: 180px; }
  .hero h1 { font-size: clamp(30px, 9vw, 40px); max-width: none; }
  .hero .lead { font-size: 17px; }
  .page-hero h1 { font-size: clamp(28px, 8.5vw, 40px); max-width: none; }
  .topbar span:first-child { display: none; }
  .wrap, .wrap-s { width: calc(100% - 24px); }
  .hero-actions .btn,
  .page-hero-inner .btn,
  .cta-row .btn { width: 100%; }
  .faq { padding: 4px 16px 8px; border-radius: 16px; }
  .faq summary { min-height: 48px; display: flex; align-items: center; padding-right: 28px; }
  .map-embed { min-height: 240px; border-radius: 16px; }
  .nearby-links a, .related-grid a { min-height: 44px; }
  body { font-size: 16px; }
  h2 { font-size: clamp(24px, 7vw, 32px); }
}
@media (max-width: 420px) {
  .brand-text span { display: none; }
  .brand-text strong { font-size: 13px; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item:not(:last-child)::after { display: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 0; }
  .trust-item:not(:last-child) { border-bottom: 1px solid rgba(201, 163, 106, 0.18); }
  .trust-item:last-child { border-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
