/* ==========================================================================
   Design tokens
   ========================================================================== */
:root{
  --color-navy: #0f2547;
  --color-navy-dark: #081733;
  --color-navy-light: #16336b;
  --color-red: #c8102e;
  --color-red-dark: #9c0c23;
  --color-accent: #f5a623;
  --color-accent-dark: #cf8a12;
  --color-ink: #182230;
  --color-body: #3c4757;
  --color-border: #e4e8ee;
  --color-bg-alt: #f6f8fb;
  --color-success: #1e7d32;
  --radius: 10px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-sans);
  --shadow-sm: 0 2px 8px rgba(15,37,71,.08);
  --shadow-md: 0 8px 24px rgba(15,37,71,.12);
  --shadow-lg: 0 16px 40px rgba(15,37,71,.18);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: #fff;
  line-height: 1.6;
  padding-bottom: 64px; /* room for mobile sticky CTA */
}

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

a { color: var(--color-navy); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--color-navy);
  color: #fff; padding: .75rem 1rem; z-index: 200;
}
.skip-link:focus { left: 0; }

h1, h2, h3, h4 { line-height: 1.2; color: var(--color-ink); font-family: var(--font-display); font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(1.9rem, 4.5vw, 2.85rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: 2.75rem; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { color: var(--color-body); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-display);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn--primary { background: var(--color-red); color: #fff; box-shadow: 0 6px 18px rgba(200,16,46,.35); }
.btn--primary:hover { background: var(--color-red-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,16,46,.4); }
.btn--primary::before {
  content: "";
  width: 1.1em; height: 1.1em; flex: none;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.9 3.7 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.3 21 3 13.7 3 4.7c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.2 1.1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.9 3.7 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.3 21 3 13.7 3 4.7c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.2 1.1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.btn--secondary { background: transparent; color: var(--color-navy); border-color: var(--color-navy); box-shadow: none; }
.btn--secondary:hover { background: var(--color-navy); color: #fff; transform: translateY(-2px); }
.btn--sm { padding: .55rem 1.1rem; font-size: .9rem; box-shadow: none; }
.btn--sm::before { display: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  border-bottom: 1px solid var(--color-border);
  position: sticky; top: 0; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(8px);
  z-index: 50;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; max-width: var(--max-width); margin: 0 auto; padding: .85rem 1rem;
  position: relative; flex-wrap: wrap;
}
.site-header__brand { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--color-navy); text-decoration: none; display: flex; align-items: center; gap: .5rem; }
.site-header__brand::before {
  content: "";
  width: 26px; height: 26px; flex: none; border-radius: 8px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-red));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 3 14h7l-1 8 11-14h-7l1-6z'/%3E%3C/svg%3E") no-repeat center / 65%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 3 14h7l-1 8 11-14h-7l1-6z'/%3E%3C/svg%3E") no-repeat center / 65%;
}
.site-header__badge {
  display: none;
  background: var(--color-bg-alt); color: var(--color-navy); border: 1px solid var(--color-border);
  border-radius: 999px; padding: .35rem .8rem; font-size: .78rem; font-weight: 700;
  white-space: nowrap;
}
.site-header__phone-number { display: none; }
.site-header__nav { display: none; }
.site-header__nav ul { list-style: none; display: flex; gap: 1.5rem; margin: 0; padding: 0; }
.site-header__nav a { text-decoration: none; color: var(--color-ink); font-weight: 600; font-size: .95rem; position: relative; padding-bottom: 4px; }
.site-header__nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--color-accent); transition: right .2s ease;
}
.site-header__nav a:hover::after { right: 0; }
.site-header__menu-toggle {
  background: none; border: none; padding: .5rem; cursor: pointer; order: 3;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 2px; background: var(--color-ink); position: relative; border-radius: 2px;
}
.hamburger::before, .hamburger::after { content: ""; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.site-header__nav.is-open {
  display: block; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--color-border); padding: 1rem; box-shadow: var(--shadow-md);
}
.site-header__nav.is-open ul { flex-direction: column; gap: .75rem; }

@media (min-width: 600px) {
  .site-header__badge { display: inline-flex; align-items: center; gap: .35rem; }
  .site-header__badge::before {
    content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: var(--color-success);
    box-shadow: 0 0 0 3px rgba(30,125,50,.18);
  }
}

@media (min-width: 860px) {
  .site-header__nav { display: block; order: 2; position: static; padding: 0; border: 0; }
  .site-header__nav ul { flex-direction: row; }
  .site-header__menu-toggle { display: none; }
  .site-header__phone-number { display: block; font-size: .8rem; font-weight: 400; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 1rem 3.5rem;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-dark));
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 15%, rgba(245,166,35,.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.06), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cpath d='M0 60h40l8-20 12 40 10-30 6 15h44' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='2'/%3E%3C/svg%3E");
  background-size: auto, auto, 240px 240px;
  pointer-events: none;
}
.hero__inner { position: relative; max-width: var(--max-width); margin: 0 auto; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 800; color: var(--color-accent);
  background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.35); padding: .4rem .85rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.hero__title { font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.12; margin: .4rem 0 1rem; color: #fff; }
.hero__subtitle { font-size: 1.08rem; max-width: 60ch; color: #d7e0ee; margin-bottom: 1.75rem; }
.hero__trust-strip { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15); }
.hero__trust-strip span { display: flex; align-items: center; gap: .45rem; font-size: .88rem; color: #c9d6f0; font-weight: 600; }
.hero__trust-strip span::before {
  content: ""; width: 1.05rem; height: 1.05rem; flex: none; background: var(--color-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; position: relative; }
.hero .btn--secondary { color: #fff; border-color: #fff; }
.hero .btn--secondary:hover { background: #fff; color: var(--color-navy); }

/* ==========================================================================
   Sections / layout
   ========================================================================== */
.section { padding: 3rem 1rem; max-width: var(--max-width); margin: 0 auto; }
.section--alt { background: var(--color-bg-alt); }
.section--alt > .section { padding-left: 0; padding-right: 0; }
.section__heading { margin-bottom: .5rem; }
.section__eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem;
  font-weight: 800; color: var(--color-red); margin-bottom: .5rem;
}
.section__intro { max-width: 70ch; margin-bottom: 2rem; }
.content { max-width: 75ch; }
.content h2:first-of-type { margin-top: 1rem; }
.content ul, .content ol { color: var(--color-body); }
.content ul li, .content ol li { margin-bottom: .4rem; }

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs { max-width: var(--max-width); margin: 0 auto; padding: .75rem 1rem 0; }
.breadcrumbs__list { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; font-size: .85rem; }
.breadcrumbs__item { color: var(--color-body); }
.breadcrumbs__item:not(:last-child)::after { content: "/"; margin-left: .35rem; color: #98a3b3; }
.breadcrumbs__item a { color: var(--color-body); text-decoration: none; }
.breadcrumbs__item a:hover { text-decoration: underline; }
.breadcrumbs__item--current { color: var(--color-ink); font-weight: 600; }

.hero .breadcrumbs { padding: 0; margin-bottom: 1.25rem; }
.hero .breadcrumbs__item, .hero .breadcrumbs__item a { color: #c9d6f0; }
.hero .breadcrumbs__item a:hover { color: #fff; }
.hero .breadcrumbs__item::after { color: #6f89c2; }
.hero .breadcrumbs__item--current { color: #fff; }

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin: 1.5rem 0; }
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .card-grid--services { grid-template-columns: 1fr 1fr 1fr; } }

.card {
  display: block; padding: 1.5rem; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); text-decoration: none; background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
}
.card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-3px); }

.card__icon {
  width: 2.75rem; height: 2.75rem; border-radius: 12px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center; flex: none;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: var(--color-accent);
}
.card__icon svg { width: 1.4rem; height: 1.4rem; fill: currentColor; }
.city-card .card__icon { background: linear-gradient(135deg, var(--color-red), var(--color-red-dark)); color: #fff; }

.service-card__title, .city-card__title { color: var(--color-ink); margin: 0 0 .4rem; font-size: 1.08rem; }
.service-card__summary { color: var(--color-body); font-size: .93rem; margin: 0 0 .75rem; }
.service-card__link, .city-card__link {
  color: var(--color-navy); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .3rem;
}
.card:hover .service-card__link, .card:hover .city-card__link { color: var(--color-red); }

/* ==========================================================================
   Trust signals / process / problems
   ========================================================================== */
.trust-signals__list, .process-steps__list, .problem-grid {
  list-style: none; margin: 1.75rem 0; padding: 0; display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .trust-signals__list, .problem-grid { grid-template-columns: 1fr 1fr; }
  .process-steps__list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .trust-signals__list { grid-template-columns: repeat(4, 1fr); }
}
.trust-signals__item, .problem-grid__item {
  padding: 1.5rem 1.35rem; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  background: #fff; transition: box-shadow .18s ease, transform .18s ease;
}
.trust-signals__item:hover, .problem-grid__item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.trust-signals__item h3, .problem-grid__item h3 { margin: 0 0 .4rem; font-size: 1rem; }
.trust-signals__item p, .problem-grid__item p { margin: 0; font-size: .92rem; }
.trust-signals__item .card__icon, .problem-grid__item .card__icon { margin-bottom: .85rem; }

.process-steps__item { position: relative; padding: 1.5rem 1.25rem 1.25rem; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: #fff; }
.process-steps__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-red)); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: .95rem; margin-bottom: .6rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 3rem 1rem; max-width: var(--max-width); margin: 0 auto; }
.faq__list { max-width: 75ch; margin-top: 1.5rem; }
.faq__item {
  border: 1px solid var(--color-border); border-radius: var(--radius); padding: 0 1.1rem;
  margin-bottom: .75rem; background: #fff; transition: border-color .15s ease;
}
.faq__item[open] { border-color: var(--color-navy); box-shadow: var(--shadow-sm); }
.faq__question {
  cursor: pointer; font-weight: 700; font-size: 1rem; color: var(--color-ink);
  padding: 1.1rem 2rem 1.1rem 0; position: relative; list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: ""; position: absolute; right: 0; top: 50%; width: .8rem; height: .8rem;
  transform: translateY(-50%); background: var(--color-navy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform .2s ease;
}
.faq__item[open] .faq__question::after { transform: translateY(-50%) rotate(180deg); }
.faq__answer { padding-bottom: 1.1rem; }
.faq__answer p { margin: 0; }

/* ==========================================================================
   Map section
   ========================================================================== */
.map-section { background: var(--color-bg-alt); }
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md); background: #fff; margin-top: 1.5rem;
}
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }
.map-legend { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin-top: 1.25rem; }
.map-legend a {
  display: inline-flex; align-items: center; gap: .4rem; text-decoration: none;
  color: var(--color-navy); font-weight: 600; font-size: .88rem;
  background: #fff; border: 1px solid var(--color-border); border-radius: 999px; padding: .4rem .85rem;
  transition: border-color .15s ease, color .15s ease;
}
.map-legend a::before {
  content: ""; width: .55rem; height: .55rem; border-radius: 50%; background: var(--color-red); flex: none;
}
.map-legend a:hover { border-color: var(--color-red); color: var(--color-red); }

/* ==========================================================================
   CTA block
   ========================================================================== */
.cta-block {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-dark)); color: #fff; padding: 3rem 1rem; text-align: center;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(245,166,35,.16), transparent 45%);
  pointer-events: none;
}
.cta-block__inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-block__heading { color: #fff; margin-top: 0; }
.cta-block__body { color: #d7e0ee; }
.cta-block__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.25rem; }
.cta-block .btn--secondary { color: #fff; border-color: #fff; }
.cta-block .btn--secondary:hover { background: #fff; color: var(--color-navy); }

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  box-shadow: 0 -4px 16px rgba(0,0,0,.15);
}
.mobile-cta__call {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem .5rem; text-decoration: none; font-weight: 700; font-size: 1.05rem;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark)); color: #fff;
}
.mobile-cta__call::before {
  content: ""; width: 1.15em; height: 1.15em; flex: none;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.9 3.7 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.3 21 3 13.7 3 4.7c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.2 1.1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.9 3.7 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.3 21 3 13.7 3 4.7c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.2 1.1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center / contain;
}
@media (min-width: 860px) { .mobile-cta { display: none; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-navy-dark); color: #cfd9ee; margin-top: 3rem; }
.site-footer__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 3rem 1rem;
  display: grid; gap: 2rem; grid-template-columns: 1fr;
}
@media (min-width: 700px) { .site-footer__inner { grid-template-columns: repeat(4, 1fr); } }
.site-footer__brand { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin: 0 0 .6rem; display: flex; align-items: center; gap: .5rem; }
.site-footer__brand::before {
  content: ""; width: 22px; height: 22px; flex: none; border-radius: 6px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-red));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 3 14h7l-1 8 11-14h-7l1-6z'/%3E%3C/svg%3E") no-repeat center / 65%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 3 14h7l-1 8 11-14h-7l1-6z'/%3E%3C/svg%3E") no-repeat center / 65%;
}
.site-footer__heading { color: #fff; font-family: var(--font-display); font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 .85rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: #cfd9ee; text-decoration: none; font-size: .92rem; transition: color .15s ease; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer__phone {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: .75rem; font-weight: 700; color: #fff;
  font-family: var(--font-display); font-size: 1.05rem;
}
.site-footer__phone::before {
  content: ""; width: 1.1em; height: 1.1em; flex: none; background: var(--color-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.9 3.7 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.3 21 3 13.7 3 4.7c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.2 1.1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.9 3.7 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.3 21 3 13.7 3 4.7c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.2 1.1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem; text-align: center; font-size: .82rem; }

/* ==========================================================================
   Misc: 404, forms
   ========================================================================== */
.error-page { text-align: center; padding: 4rem 1rem; }
.error-page .btn { margin: .3rem; }

.form-field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-weight: 600; font-size: .92rem; }
.form-field input, .form-field select, .form-field textarea {
  padding: .75rem .85rem; border: 1px solid var(--color-border); border-radius: 8px; font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-navy); box-shadow: 0 0 0 3px rgba(15,37,71,.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }
