/* ==========================================================================
   Dead Calm Services — core stylesheet
   Palette is sampled straight off the badge: near-black, steel blue, bone white.
   ========================================================================== */

/* --- Tokens -------------------------------------------------------------- */
:root {
  --bg:          #06080c;
  --bg-2:        #0a0e14;
  --surface:     #0d121a;
  --surface-2:   #121924;
  --surface-3:   #18212e;

  --steel:       #ffc800;
  --steel-hi:    #ffd95e;
  --steel-lo:    #c99e00;
  --steel-glow:  rgba(255, 200, 0, 0.35);

  /* Text that sits ON the accent colour. Yellow is far too luminous for white
     text, so anything on a solid accent fill uses the mark's own near-black. */
  --on-accent:   #14181c;

  --white:       #f4f7fa;
  --text:        #c3cdd9;
  --muted:       #7e8b9b;
  --faint:       #4d5866;

  --line:        rgba(255, 255, 255, 0.08);
  --line-2:      rgba(255, 255, 255, 0.14);

  --font-display: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shell:  1280px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);

  --chamfer: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 84px;
}

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--steel); color: var(--on-accent); }

:focus-visible {
  outline: 2px solid var(--steel-hi);
  outline-offset: 3px;
}

/* --- Page texture -------------------------------------------------------- */
/* Fine grain + a cold vignette. Keeps big flat blacks from looking dead. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

/* --- Typography ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  text-wrap: balance;
}

h1 { font-size: clamp(2.9rem, 7.5vw, 6.5rem); font-weight: 800; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.9rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { text-wrap: pretty; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text);
  max-width: 62ch;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--steel-hi);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--steel);
  flex: none;
}

.eyebrow--center { justify-content: center; }

.accent { color: var(--steel-hi); }

/* --- Layout -------------------------------------------------------------- */
.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
}

.section--tight { padding-block: clamp(3.5rem, 6vw, 5.5rem); }

.section--alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

.section-head { max-width: 780px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head h2 + .lead { margin-top: 1.4rem; }

/* Hairline rule that fades at both ends */
.rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line-2) 20%, var(--line-2) 80%, transparent);
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--steel);
  --btn-fg: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer));
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
}

/* Sheen that wipes across on hover */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px -10px var(--steel-glow);
  background: #ffd633;
}

.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px); }

.btn svg { width: 18px; height: 18px; flex: none; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  box-shadow: inset 0 0 0 1px var(--line-2);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px var(--steel);
}

.btn--lg { padding: 1.15rem 2.4rem; font-size: 1.08rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

/* Text link with an animated underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-hi);
  font-size: 0.92rem;
}

.link-arrow svg { width: 16px; transition: transform 0.35s var(--ease); }
.link-arrow:hover svg { transform: translateX(6px); }

/* --- Header -------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, border-color 0.4s, height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.is-stuck {
  height: 68px;
  background: rgba(6, 8, 12, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.header__inner {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand { display: flex; align-items: center; gap: 0.85rem; margin-right: auto; }

.brand img {
  height: 52px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.header.is-stuck .brand img { height: 42px; }

.brand__text { display: flex; flex-direction: column; line-height: 1; }

.brand__name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.brand__sub {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 2.1rem; }

.nav a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--steel);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav a:hover, .nav a[aria-current="page"] { color: var(--white); }

.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header__cta { display: flex; align-items: center; gap: 1.1rem; }

.header__phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  font-size: 1.05rem;
}

.header__phone svg { width: 17px; color: var(--steel-hi); }
.header__phone:hover { color: var(--steel-hi); }

/* Burger */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--line-2);
  cursor: pointer;
  position: relative;
  flex: none;
}

.burger span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.4s var(--ease), opacity 0.25s;
}

.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 899;
  background: rgba(6, 8, 12, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--header-h) var(--gutter) 3rem;
  gap: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-nav.is-open { opacity: 1; visibility: visible; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8vw, 2.7rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(18px);
}

.mobile-nav.is-open a {
  animation: drawerIn 0.55s var(--ease) forwards;
}

.mobile-nav a span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--steel);
}

@keyframes drawerIn { to { opacity: 1; transform: none; } }

.mobile-nav__foot {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-nav__foot a {
  font-size: 1.05rem;
  font-family: var(--font-body);
  text-transform: none;
  border: 0;
  color: var(--steel-hi);
  padding: 0;
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 0;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(0.55) contrast(1.12) brightness(0.62);
  transform: scale(1.06);
  animation: heroDrift 26s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}

/* Layered wash: cold blue from the left, black from the bottom */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 12, 0.96) 0%, rgba(6, 8, 12, 0.72) 42%, rgba(6, 8, 12, 0.35) 100%),
    linear-gradient(180deg, rgba(6, 8, 12, 0.9) 0%, transparent 28%, rgba(6, 8, 12, 0.55) 72%, var(--bg) 100%),
    radial-gradient(70% 60% at 78% 42%, rgba(255, 200, 0, 0.26), transparent 70%);
}

/* Keeps .shell's gutter — do not set width here or it overrides it. */
.hero__inner { padding-bottom: clamp(3rem, 6vw, 5rem); }

.hero__content { max-width: 900px; }

.hero h1 { margin-bottom: 1.6rem; }

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line > span {
  display: block;
  transform: translateY(100%);
  animation: lineUp 1s var(--ease) forwards;
}

.hero h1 .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.24s; }

@keyframes lineUp { to { transform: none; } }

.hero .lead {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  max-width: 58ch;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.45s forwards;
}

.hero .btn-row { opacity: 0; animation: fadeUp 0.9s var(--ease) 0.6s forwards; }
.hero .eyebrow { opacity: 0; animation: fadeUp 0.9s var(--ease) 0.15s forwards; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 1px;
  height: 58px;
  background: linear-gradient(180deg, transparent, var(--steel));
  overflow: hidden;
}

.hero__scroll::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--steel-hi);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* --- Stat bar ------------------------------------------------------------ */
.statbar {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 200, 0, 0.07), transparent);
}

.statbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: clamp(1.8rem, 3.5vw, 2.8rem) 1.5rem;
  text-align: center;
  border-left: 1px solid var(--line);
}

.stat:first-child { border-left: 0; }

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  display: block;
}

.stat__num .suffix { color: var(--steel); }

.stat__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.7rem;
  display: block;
}

/* --- Cards --------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}

.grid--3 { grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer));
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 200, 0, 0.5);
  background: var(--surface-2);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7) contrast(1.1) brightness(0.72);
  transition: transform 0.9s var(--ease), filter 0.6s;
}

.card:hover .card__media img {
  transform: scale(1.07);
  filter: grayscale(0.15) contrast(1.05) brightness(0.85);
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--surface) 100%);
}

.card__index {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--steel-hi);
}

.card__body {
  padding: 1.6rem 1.7rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.card__body h3 { transition: color 0.3s; }
.card:hover .card__body h3 { color: var(--steel-hi); }

.card__body p { font-size: 0.95rem; color: var(--muted); margin: 0; }

.card__body .link-arrow { margin-top: auto; padding-top: 0.6rem; }

/* Icon card (no photo) */
.card--icon .card__body { padding-top: 1.9rem; }

.icon-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid rgba(255, 200, 0, 0.3);
  color: var(--steel-hi);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: background 0.4s, color 0.4s;
}

.card:hover .icon-badge { background: rgba(255, 200, 0, 0.22); color: #fff; }
.icon-badge svg { width: 26px; height: 26px; }

/* Corner reticle brackets — a targeting-scope motif */
.bracket { position: relative; }

.bracket::before,
.bracket::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--steel);
  opacity: 0;
  transition: opacity 0.4s, transform 0.5s var(--ease);
  pointer-events: none;
  z-index: 3;
}

.bracket::before {
  top: 9px; left: 9px;
  border-right: 0; border-bottom: 0;
  transform: translate(6px, 6px);
}

.bracket::after {
  bottom: 9px; right: 9px;
  border-left: 0; border-top: 0;
  transform: translate(-6px, -6px);
}

.bracket:hover::before,
.bracket:hover::after { opacity: 1; transform: none; }

/* --- Feature split ------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.split--flip .split__media { order: 2; }

.split__media {
  position: relative;
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.12) brightness(0.7);
  transition: transform 1.2s var(--ease);
}

.split:hover .split__media img { transform: scale(1.05); }

.split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(255, 200, 0, 0.2), transparent 55%, rgba(6, 8, 12, 0.6));
}

/* Floating tag over the image */
.split__tag {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: var(--steel);
  color: var(--on-accent);
  padding: 0.8rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.split__body h2 + .lead { margin-top: 1.4rem; }

/* Checklist */
.ticks {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.ticks li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.98rem;
}

.ticks svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--steel-hi);
  margin-top: 3px;
}

.ticks strong { color: var(--white); font-weight: 600; }

/* --- Numbered process --------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2.2rem 1.6rem 1.8rem;
  border: 1px solid var(--line);
  background: var(--surface);
  counter-increment: step;
  transition: border-color 0.4s, transform 0.5s var(--ease);
}

.step:hover { border-color: rgba(255, 200, 0, 0.45); transform: translateY(-5px); }

.step::before {
  content: "0" counter(step);
  position: absolute;
  top: -0.9rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--steel);
  background: var(--bg);
  padding-inline: 0.4rem;
}

.step h4 { margin-bottom: 0.6rem; }
.step p { font-size: 0.93rem; color: var(--muted); }

/* --- Coverage / map ------------------------------------------------------ */
.coverage {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.map-wrap {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(60% 60% at 50% 45%, rgba(255, 200, 0, 0.14), transparent 70%),
    var(--surface);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

/* Faint grid behind the map, like a tactical display */
.map-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 200, 0, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 200, 0, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.map-wrap svg { position: relative; width: 100%; height: auto; }

/* Neighbouring regions — real coastlines, kept dim so the eye goes to the patch
   we actually cover. Without these the region reads as a floating blob. */
.map-context {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
  stroke-linejoin: round;
}

/* Glow lives on the group, not the counties — otherwise every internal border
   glows too and the patch looks smeared. */
.map-focus { filter: drop-shadow(0 0 14px rgba(255, 200, 0, 0.45)); }

.map-region {
  fill: rgba(255, 200, 0, 0.22);
  stroke: var(--steel-hi);
  stroke-width: 1.2;
  stroke-linejoin: round;
  transition: fill 0.5s;
}

.map-wrap:hover .map-region { fill: rgba(255, 200, 0, 0.32); }

.map-pin circle.dot { fill: var(--steel-hi); }

.map-pin circle.ping {
  fill: none;
  stroke: var(--steel-hi);
  stroke-width: 1.4;
  transform-origin: center;
  transform-box: fill-box;
  animation: ping 3s ease-out infinite;
}

.map-pin:nth-child(2) circle.ping { animation-delay: 0.5s; }
.map-pin:nth-child(3) circle.ping { animation-delay: 1s; }
.map-pin:nth-child(4) circle.ping { animation-delay: 1.5s; }
.map-pin:nth-child(5) circle.ping { animation-delay: 2s; }
.map-pin:nth-child(6) circle.ping { animation-delay: 2.5s; }

@keyframes ping {
  0%   { r: 3; opacity: 0.9; }
  100% { r: 20; opacity: 0; }
}

.map-pin text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: var(--white);
}

.map-pin--major text { font-size: 15px; fill: #fff; }

/* Area chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.chips li {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line-2);
  color: var(--text);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.chips li:hover {
  border-color: var(--steel);
  color: var(--white);
  background: rgba(255, 200, 0, 0.12);
}

/* --- Accreditations ------------------------------------------------------ */
.creds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.cred {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.92rem;
  transition: color 0.35s;
}

.cred:hover { color: var(--white); }
.cred svg { width: 30px; height: 30px; color: var(--steel); flex: none; }

/* --- Testimonials -------------------------------------------------------- */
.quote {
  position: relative;
  padding: 2.2rem 2rem 2rem;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: border-color 0.4s, transform 0.5s var(--ease);
}

.quote:hover { border-color: rgba(255, 200, 0, 0.4); transform: translateY(-5px); }

.quote__mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--steel);
  opacity: 0.35;
}

.quote p { font-size: 1.02rem; color: var(--text); flex: 1; }

.quote__by { display: flex; flex-direction: column; gap: 0.15rem; }

.quote__by strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}

.quote__by span { font-size: 0.86rem; color: var(--muted); }

.stars { display: flex; gap: 3px; color: var(--steel-hi); }
.stars svg { width: 15px; height: 15px; }

/* --- FAQ ----------------------------------------------------------------- */
.faq { max-width: 860px; margin-inline: auto; }

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--steel-hi); }

/* Plus/minus toggle */
.faq summary::after,
.faq summary::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  background: var(--steel-hi);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.faq summary::before { width: 15px; height: 2px; transform: translateY(-50%); }
.faq summary::after  { width: 2px; height: 15px; transform: translate(-6.5px, -50%); right: 6px; }

.faq details[open] summary::after { transform: translate(-6.5px, -50%) rotate(90deg); opacity: 0; }

.faq details > div {
  padding-bottom: 1.6rem;
  color: var(--muted);
  max-width: 68ch;
}

.faq details[open] > div { animation: fadeUp 0.45s var(--ease); }

/* --- CTA band ------------------------------------------------------------ */
.cta-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(70% 130% at 22% 50%, rgba(255, 200, 0, 0.22), transparent 62%),
    var(--bg-2);
  text-align: center;
}

/* Slow-sweeping radar arc for depth */
.cta-band::before {
  content: "";
  position: absolute;
  width: 780px;
  height: 780px;
  right: -240px;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 200, 0, 0.16);
  box-shadow:
    inset 0 0 0 90px rgba(255, 200, 0, 0.035),
    inset 0 0 0 180px rgba(255, 200, 0, 0.03);
  pointer-events: none;
}

.cta-band .shell { position: relative; }
.cta-band h2 { margin-bottom: 1.3rem; }
.cta-band .lead { margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

/* --- Contact ------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: border-color 0.4s, background 0.4s;
}

.contact-card + .contact-card { margin-top: 1rem; }
.contact-card:hover { border-color: rgba(255, 200, 0, 0.45); background: var(--surface-2); }

.contact-card .icon-badge { width: 46px; height: 46px; flex: none; }
.contact-card .icon-badge svg { width: 21px; height: 21px; }

.contact-card h4 {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.contact-card a, .contact-card p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.25;
}

.contact-card a:hover { color: var(--steel-hi); }

/* Form */
.form {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.1rem; }

.field label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line-2);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 0.98rem;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.field textarea { resize: vertical; min-height: 130px; }

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238fbbe4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
  padding-right: 2.6rem;
  cursor: pointer;
}

.field select option { background: var(--bg-2); color: var(--white); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--steel);
  background: var(--surface-2);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }

.form__note { font-size: 0.85rem; color: var(--faint); margin-top: 1rem; }

.form__status {
  margin-top: 1.1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 200, 0, 0.4);
  background: rgba(255, 200, 0, 0.1);
  color: var(--steel-hi);
  font-size: 0.93rem;
  display: none;
}

.form__status.is-visible { display: block; animation: fadeUp 0.4s var(--ease); }

/* --- Page hero (interior pages) ------------------------------------------ */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3.5rem, 8vw, 6.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero__media { position: absolute; inset: 0; z-index: -2; }

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7) contrast(1.1) brightness(0.5);
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 12, 0.95) 0%, rgba(6, 8, 12, 0.7) 55%, rgba(6, 8, 12, 0.4) 100%),
    linear-gradient(180deg, rgba(6, 8, 12, 0.85), transparent 45%, var(--bg) 100%);
}

.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
.page-hero .lead { margin-top: 1.4rem; }

.crumbs {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.crumbs a:hover { color: var(--steel-hi); }
.crumbs span { color: var(--faint); }

/* --- Footer -------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: clamp(3rem, 6vw, 4.5rem) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}

.footer .brand { margin-right: 0; margin-bottom: 1.3rem; }
.footer__about p { font-size: 0.94rem; color: var(--muted); max-width: 38ch; }

.footer h4 {
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  color: var(--white);
  margin-bottom: 1.3rem;
  font-weight: 600;
}

.footer ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer ul a { font-size: 0.94rem; color: var(--muted); transition: color 0.25s, padding-left 0.3s; }
.footer ul a:hover { color: var(--steel-hi); padding-left: 5px; }

.footer__contact { display: grid; gap: 0.9rem; }

.footer__contact a {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.98rem;
  color: var(--text);
}

.footer__contact a:hover { color: var(--steel-hi); }
.footer__contact svg { width: 17px; color: var(--steel); flex: none; }

.footer__bar {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--faint);
}

.footer__bar a:hover { color: var(--steel-hi); }

.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }


/* --- Scroll reveal ------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-in { opacity: 1; transform: none; }

[data-reveal-delay="1"] { transition-delay: 0.09s; }
[data-reveal-delay="2"] { transition-delay: 0.18s; }
[data-reveal-delay="3"] { transition-delay: 0.27s; }
[data-reveal-delay="4"] { transition-delay: 0.36s; }
[data-reveal-delay="5"] { transition-delay: 0.45s; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .coverage, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  :root { --header-h: 72px; }

  .nav, .header__phone { display: none; }
  .burger { display: block; }

  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }

  .statbar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .hero { min-height: 88svh; }
  .quote { padding: 1.7rem 1.4rem; }
}

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

  [data-reveal] { opacity: 1; transform: none; }
  .hero h1 .line > span { transform: none; }
  .hero .lead, .hero .btn-row, .hero .eyebrow { opacity: 1; }
}
