/* ==========================================================================
   Vanguard Roofing — Styles
   ========================================================================== */

:root {
  --navy-900: #07152e;
  --navy-800: #0b2545;
  --navy-700: #13315c;
  --navy-50: #f4f7fb;
  --ink: #0f172a;
  --text: #1f2a44;
  --muted: #5a6578;
  --line: #e5eaf2;
  --white: #ffffff;
  --red: #e63946;
  --red-600: #d62839;
  --red-700: #b51f30;
  --orange: #ff6b35;
  --accent-grad: linear-gradient(135deg, #ff5a3c 0%, #e63946 60%, #b51f30 100%);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .06);
  --shadow-lg: 0 24px 48px -12px rgba(11, 37, 69, .25), 0 8px 16px -6px rgba(11, 37, 69, .15);
  --shadow-xl: 0 40px 80px -20px rgba(11, 37, 69, .35);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 10px;
  --container: 1200px;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* ----- Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--red-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.02rem; }
p  { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ----- Buttons ----- */
.btn {
  --btn-bg: var(--red);
  --btn-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .975rem;
  font-family: var(--sans);
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 57, 70, .35);
}
.btn--primary:hover { background: var(--red-600); box-shadow: 0 12px 28px rgba(230, 57, 70, .45); }

.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn--ghost:hover { background: var(--navy-800); color: #fff; }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}
.btn--ghost-light:hover { background: #fff; color: var(--navy-900); }

.btn--white {
  background: #fff;
  color: var(--navy-900);
}
.btn--outline {
  background: transparent;
  color: var(--red-600);
  border-color: var(--red-600);
}
.btn--outline:hover { background: var(--red-600); color: #fff; }
.btn--yellow {
  background: #f5b301;
  color: #0b2545;
  border-color: #f5b301;
}
.btn--yellow:hover { background: #e0a300; border-color: #e0a300; color: #0b2545; }
.btn--lg { padding: 1.05rem 1.75rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ----- Announcement bar ----- */
.announce {
  background: var(--navy-900);
  color: #dbe4f0;
  font-size: .875rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.announce .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.announce__item strong { color: #fff; }
.announce__call { color: var(--red); font-weight: 700; }
.announce__call:hover { color: #fff; text-decoration: none; }

/* ----- Header ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, padding .25s ease;
}
.header.scrolled { box-shadow: 0 4px 16px rgba(11, 37, 69, .08); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .9rem 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--navy-900);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.015em;
}
.logo:hover { text-decoration: none; }
.logo__mark { width: 34px; height: 34px; }
.logo__text span { color: var(--red); }
.logo--light { color: #fff; }
.logo--light .logo__text span { color: var(--red); }

.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  font-weight: 600;
  font-size: .95rem;
}
.nav a {
  color: var(--navy-800);
  position: relative;
  padding: .4rem 0;
}
.nav a:hover { color: var(--red-600); text-decoration: none; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}
.nav a:hover::after { right: 0; }
.nav a { white-space: nowrap; }
.nav__license {
  color: var(--navy-800);
  font-weight: 600;
  padding: .4rem 0;
  white-space: nowrap;
}
.nav__license--mobile {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1.2;
}

.header__cta { display: flex; align-items: center; gap: 1rem; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--navy-900);
  font-family: var(--sans);
  text-decoration: none;
  line-height: 1.1;
}
.phone-link:hover { text-decoration: none; color: var(--red-600); }
.phone-link svg {
  width: 34px; height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 6px 14px rgba(230, 57, 70, .3);
}
.phone-link small { display: block; font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.phone-link strong { display: block; font-size: 1.05rem; font-weight: 800; }

.hamburger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1),
.hamburger[aria-expanded="true"] span:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  margin: -1px 0 0 -11px;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 20px 1rem;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-menu a {
  padding: 1.1rem 0;
  color: var(--navy-900);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1.2;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.btn {
  border: 2px solid transparent;
  border-radius: 999px;
  justify-content: center;
  margin-top: 1.1rem;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  letter-spacing: .02em;
}
.mobile-menu a.btn--primary { color: #fff; border-bottom: 0; }
.mobile-menu[aria-hidden="false"] { display: flex; }

/* ----- Hero ----- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  color: #fff;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(230, 57, 70, .45), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(19, 49, 92, .9), transparent 55%),
    linear-gradient(160deg, #0b2545 0%, #07152e 60%, #0b2545 100%);
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(60deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 14px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .3));
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .3));
}
.hero__bg::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 0;
  background: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #ffb199 0%, #ff5a3c 50%, #e63946 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: 1.15rem;
  color: #cfd8e8;
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.hero__sub strong { color: #fff; }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  padding: .35rem .75rem;
  border-radius: 999px;
  font-size: .825rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.badge:first-child { background: rgba(230, 57, 70, .18); border-color: rgba(230, 57, 70, .4); }

.hero__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1.25rem;
  margin: 0 0 1.75rem;
  color: #e5ecf8;
}
.hero__checks li {
  position: relative;
  padding-left: 1.75rem;
  font-size: .98rem;
}
.hero__checks li::before {
  content: "";
  position: absolute;
  left: 0; top: .4em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: 0 2px 6px rgba(230, 57, 70, .4);
}
.hero__checks li::after {
  content: "";
  position: absolute;
  left: 5px; top: calc(.4em + 4px);
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.hero__ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__ctas .btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}
.hero__ctas .btn--ghost:hover { background: #fff; color: var(--navy-900); border-color: #fff; }

.hero__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__avatars { display: flex; align-items: center; }
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2a3a5a;
  border: 2px solid #0b1a33;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  margin-left: -10px;
  letter-spacing: .02em;
}
.avatar:first-child { margin-left: 0; }
.avatar--more { background: #3a4a6a; font-size: .78rem; }
.hero__stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: .35rem;
}
.hero__rating p {
  color: #fff;
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}
.hero__rating p strong { font-weight: 700; }
.hero__rating p span { color: #a9b6cc; font-weight: 400; }

.hero__trust {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.trust-item span {
  display: block;
  font-size: .82rem;
  color: #a9b6cc;
  margin-top: .25rem;
}

/* Quote card */
.quote-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  border-top: 4px solid var(--red);
}
.quote-card__header { margin-bottom: 1.25rem; }
.quote-card__header h2 {
  font-size: 1.5rem;
  margin-bottom: .25rem;
  color: var(--navy-900);
}
.quote-card__header p { color: var(--muted); font-size: .925rem; margin: 0; }

.quote-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.field { margin-bottom: .85rem; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: .35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem .9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, .15);
}
.field.error input,
.field.error select,
.field.error textarea { border-color: var(--red); background: #fff6f6; }
.field textarea { resize: vertical; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%230b2545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.25rem;
}
.field--optional label { color: var(--muted); }
.quote-form button[type="submit"] { margin-top: .85rem; }
.fineprint {
  font-size: .78rem;
  color: var(--muted);
  margin: .85rem 0 0;
  line-height: 1.5;
  text-align: center;
}

/* ----- Trust strip ----- */
.strip {
  background: var(--navy-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
}
.strip__item {
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  color: var(--navy-800);
  font-size: .95rem;
  letter-spacing: .01em;
  opacity: .82;
  padding: .5rem .25rem;
  border-right: 1px solid var(--line);
}
.strip__item:last-child { border-right: 0; }

/* ----- Sections ----- */
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--alt { background: var(--navy-50); }
.section--dark {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #e5ecf8;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.section__head--light p { color: #a9b6cc; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(230, 57, 70, .1);
  padding: .35rem .75rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}

.section--dark .eyebrow { background: rgba(230, 57, 70, .2); color: #ff8c99; }

/* ----- Grid / cards ----- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 57, 70, .2);
}
.service__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-grad);
  color: #fff;
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 20px rgba(230, 57, 70, .25);
}
.service__icon svg { width: 30px; height: 30px; }
.service h3 { color: var(--navy-900); margin-bottom: .5rem; }
.service p { color: var(--muted); font-size: .97rem; margin-bottom: 1rem; }
.service__list { font-size: .9rem; color: var(--text); margin-bottom: 1.25rem; }
.service__list li {
  position: relative;
  padding: .3rem 0 .3rem 1.25rem;
  border-bottom: 1px dashed var(--line);
}
.service__list li:last-child { border-bottom: 0; }
.service__list li::before {
  content: "→";
  position: absolute; left: 0; top: .3rem;
  color: var(--red);
  font-weight: 800;
}
.link {
  font-weight: 700;
  color: var(--red-600);
  font-size: .95rem;
}
.link:hover { text-decoration: none; color: var(--red-700); }

/* ----- About intro ----- */
.about-intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-intro__copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.about-intro__copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 52ch;
}
.about-intro__copy p:last-child { margin-bottom: 0; }
.about-intro__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
  object-fit: cover;
}

/* ----- Service detail (roofing page) ----- */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.service-detail--reverse .service-detail__visual { order: 2; }
.service-detail__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.service-detail__index {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: .85rem;
  color: var(--red-600);
  letter-spacing: .12em;
  margin-bottom: .85rem;
}
.service-detail__copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.service-detail__copy > p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 55ch;
}
.service-detail__audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.audience {
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.section--alt .audience { background: var(--white); }
.audience h4 {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .4rem;
  color: var(--navy-900);
}
.audience p {
  margin: 0;
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ----- Page hero (interior pages) ----- */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 48vh, 520px);
  padding: 3rem 0;
  color: #fff;
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(230, 57, 70, .45), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(19, 49, 92, .9), transparent 55%),
    linear-gradient(160deg, #0b2545 0%, #07152e 60%, #0b2545 100%);
}
.page-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(60deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 14px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .3));
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .3));
}
.page-hero h1 .accent {
  background: linear-gradient(135deg, #ffb199 0%, #ff5a3c 50%, #e63946 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  width: 100%;
}

/* ----- Service jump nav ----- */
.service-jump {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 64px;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(11, 37, 69, .04);
}
.service-jump ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.service-jump li {
  border-right: 1px solid var(--line);
}
.service-jump li:last-child { border-right: 0; }
.service-jump a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.1rem .75rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy-900);
  text-decoration: none;
  text-align: center;
  transition: background .2s ease, color .2s ease;
}
.service-jump a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--red-600);
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease;
}
.service-jump a:hover {
  background: var(--navy-50);
  color: var(--red-600);
}
.service-jump a:hover span {
  background: var(--red);
  color: #fff;
}

/* ----- Residential / Commercial split ----- */
.rc-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.rc-split__card {
  position: relative;
  padding: 2.5rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}
.rc-split__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}
.rc-split__card--commercial {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-800);
}
.rc-split__card--commercial::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 85% 15%, rgba(230, 57, 70, .2), transparent 55%);
}
.rc-split__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.rc-split__tag {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 1rem;
}
.rc-split__card--commercial .rc-split__tag { color: #ff8c99; }
.rc-split__card h3 {
  font-size: clamp(1.4rem, 2.3vw, 1.75rem);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.rc-split__card--commercial h3 { color: #fff; }
.rc-split__card > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.rc-split__card--commercial > p { color: #cfd8e8; }
.rc-split__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .6rem;
}
.rc-split__list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--navy-900);
}
.rc-split__card--commercial .rc-split__list li { color: #e4ecfa; }
.rc-split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--red);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-6.5' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 72%;
}

/* ----- About page ----- */
.about-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-hero__copy .eyebrow { margin-bottom: 1rem; }
.about-hero__copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--navy-900);
  margin-bottom: 1.25rem;
}
.about-hero__copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 56ch;
}
.about-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.about-hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.our-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.our-story__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.our-story__copy .eyebrow { margin-bottom: 1rem; }
.our-story__copy h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: var(--navy-900);
  margin-bottom: 1.25rem;
}
.our-story__copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 58ch;
}
.our-story__copy p:last-child { margin-bottom: 0; }

.core-values__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.core-values__list { display: flex; flex-direction: column; gap: .85rem; }
.value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.value[open] {
  border-color: var(--navy-800);
  box-shadow: var(--shadow-md);
}
.value summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.value summary::-webkit-details-marker { display: none; }
.value summary::marker { content: ""; }
.value[open] summary { color: var(--red-600); }
.value__icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy-900);
  transition: background .2s ease, transform .25s ease;
}
.value__icon::before,
.value__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: .75rem;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .2s ease;
}
.value__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.value[open] .value__icon { background: var(--red); }
.value[open] .value__icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(0deg); }
.value > p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
}
.core-values__visual {
  position: sticky;
  top: 6rem;
}
.core-values__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.culture__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.culture__tile {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--navy-50);
}
.culture__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.culture__tile:hover img { transform: scale(1.04); }
.culture__tile--wide {
  grid-column: span 2;
  grid-row: span 2;
}

/* ----- Contact page ----- */
.contact-section { padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 6rem); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-card {
  background: linear-gradient(145deg, var(--red) 0%, var(--red-700) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-xl);
}
.contact-card h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.015em;
  margin-bottom: 1.5rem;
}
.contact-card > p {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: .5rem;
  max-width: 38ch;
}
.contact-card > p:last-of-type { margin-bottom: 1.75rem; }
.contact-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .25);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card__list li {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
}
.contact-card__list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #fff;
}
.contact-card__list a {
  color: #fff;
  text-decoration: none;
}
.contact-card__list a:hover { text-decoration: underline; }

.contact-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
  background: var(--navy-50);
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 6rem;
}
.contact-form-card h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form .field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: .4rem;
}
.contact-form .field input,
.contact-form .field textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--navy-900);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form .field input:focus,
.contact-form .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, .12);
}
.contact-form .field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.contact-form .field.error input,
.contact-form .field.error textarea {
  border-color: var(--red);
  background: #fff5f5;
}
.contact-form .fineprint {
  margin: .25rem 0 0;
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
}

/* ----- Our Services ----- */
.our-services__title {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  letter-spacing: -.01em;
  margin-bottom: 2.5rem;
  color: var(--navy-900);
}
.our-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.service-card__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 16 / 10;
  background: #eee;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card h3 {
  text-transform: uppercase;
  font-size: 1.6rem;
  color: var(--navy-900);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.service-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}
.service-card .btn { align-self: flex-start; }

/* ----- Why us ----- */
.why {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
}
.benefits {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0;
}
.benefit {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.benefit__icon {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(230, 57, 70, .3);
}
.benefit h4 { margin: 0 0 .2rem; font-size: 1.02rem; }
.benefit p { margin: 0; color: var(--muted); font-size: .925rem; }
.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

.why__visual { position: relative; }
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  border-top: 4px solid var(--red);
  position: relative;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: -20px -20px auto auto;
  width: 120px; height: 120px;
  background: var(--accent-grad);
  border-radius: 50%;
  opacity: .15;
  filter: blur(40px);
  z-index: -1;
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { display: block; font-size: .92rem; color: var(--muted); margin-top: .4rem; }

/* ----- Process steps ----- */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step__num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--navy-800);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}
.step__num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: var(--accent-grad);
  z-index: -1;
  opacity: .15;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ----- Reviews ----- */
.reviews .review {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 0;
  backdrop-filter: blur(4px);
}
.review__stars {
  color: #ffc107;
  letter-spacing: .15em;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}
.review blockquote {
  margin: 0 0 1rem;
  color: #e5ecf8;
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}
.review figcaption strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-family: var(--display);
}
.review figcaption span { font-size: .85rem; color: #a9b6cc; }

.reviews__logos {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
}
.reviews__logos div { text-align: center; color: #a9b6cc; }
.reviews__logos strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: .2rem;
}
.reviews__logos span { font-size: .85rem; }

/* ----- Split (financing + insurance) ----- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.split__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.split__card h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.split__card p { color: var(--muted); margin-bottom: 1.25rem; }
.split__card--accent {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #e5ecf8;
  border: 0;
}
.split__card--accent h3 { color: #fff; }
.split__card--accent p { color: #cfd8e8; }
.split__card--accent::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: var(--accent-grad);
  border-radius: 50%;
  opacity: .25;
  filter: blur(30px);
}
.checklist { margin: 0 0 1.5rem; }
.checklist li {
  padding: .4rem 0 .4rem 1.75rem;
  position: relative;
  font-size: .97rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: .4rem;
  width: 20px; height: 20px;
  background: var(--accent-grad);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .7rem;
  font-weight: 800;
}

/* ----- Service areas ----- */
.areas {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}
.areas > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem 1rem;
}
.areas > ul li {
  padding: .55rem .75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-800);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.areas > ul li:hover {
  border-color: var(--red);
  color: var(--red-600);
  background: #fff6f6;
}
.areas__aside {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
}
.areas__aside h3 { margin-bottom: .5rem; }
.areas__aside p { color: var(--muted); margin-bottom: 1rem; }

/* ----- FAQ ----- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__list { display: grid; gap: .75rem; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq__item[open] { box-shadow: var(--shadow-md); border-color: rgba(230, 57, 70, .3); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  width: 16px; height: 16px;
  flex: 0 0 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23e63946' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(180deg); }
.faq__item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq__item p strong { color: var(--navy-900); }

/* ----- CTA Banner ----- */
.cta-banner {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, #0b2545 0%, #07152e 50%, #13315c 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 300px at 90% 50%, rgba(230, 57, 70, .3), transparent 60%),
    radial-gradient(500px 300px at 10% 50%, rgba(255, 107, 53, .15), transparent 60%);
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta-banner h2 { color: #fff; margin-bottom: .5rem; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.cta-banner p { color: #cfd8e8; margin: 0; font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }

/* ----- Footer ----- */
.footer {
  background: var(--navy-900);
  color: #a9b6cc;
  padding: 3.5rem 0 1.5rem;
  font-size: .925rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: .9rem; }
.footer__list li { padding: .25rem 0; }
.footer__list a { color: #a9b6cc; }
.footer__list a:hover { color: #fff; }
.footer__tag { margin-top: 1rem; max-width: 320px; color: #8b97ab; }
.footer__emergency { margin-top: 1rem; color: #a9b6cc; }
.footer__emergency a { color: var(--red); font-weight: 800; font-size: 1.1rem; }
.footer__map {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: #0b1426;
}
.footer__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: .85rem;
  color: #6e7a90;
}
.footer__bottom a { color: #a9b6cc; }
.footer__bottom a:hover { color: #fff; }

/* ----- Sticky mobile call bar ----- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: .6rem;
  gap: .5rem;
  background: rgba(11, 37, 69, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .25);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.sticky-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: .95rem;
}
.sticky-cta__call {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 6px 16px rgba(230, 57, 70, .4);
}
.sticky-cta__call svg { width: 18px; height: 18px; }
.sticky-cta__quote {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}

/* ----- Thank-you modal ----- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 46, .7);
  backdrop-filter: blur(4px);
  animation: fade .2s ease;
}
.modal__card {
  position: relative;
  background: #fff;
  max-width: 440px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--red);
  animation: pop .25s ease;
}
.modal__close {
  position: absolute;
  top: 12px; right: 16px;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.modal__check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 24px rgba(230, 57, 70, .35);
}
.modal__card h2 { margin-bottom: .5rem; }
.modal__card p { color: var(--muted); margin-bottom: .75rem; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ----- Testimonials ----- */
.testimonials { background: #fff; padding: clamp(4rem, 8vw, 7rem) 0; }
.testimonials__head {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}
.testimonials__stars {
  display: block;
  width: clamp(340px, 42vw, 480px);
  height: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 8px 14px rgba(239, 178, 62, .3));
}
.testimonials__stars path { stroke: #efb23e; stroke-width: 3; stroke-linejoin: round; }

.testimonials__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
  color: var(--navy-900);
  text-transform: uppercase;
  text-align: center;
}
.testimonials__subtitle {
  color: #4b5563;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 600;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

.testimonials__carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}
.testimonials__arrow {
  width: clamp(56px, 5.5vw, 72px);
  height: clamp(56px, 5.5vw, 72px);
  border-radius: 999px;
  border: none;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .25s ease;
  box-shadow: 0 10px 24px rgba(230, 57, 70, .4);
  flex-shrink: 0;
  z-index: 2;
}
.testimonials__arrow:hover { background: var(--red-700); transform: scale(1.08); box-shadow: 0 14px 30px rgba(230, 57, 70, .5); }
.testimonials__arrow:active { transform: scale(.96); }
.testimonials__arrow:focus-visible { outline: 3px solid rgba(230, 57, 70, .5); outline-offset: 4px; }
.testimonials__arrow svg { width: 28px; height: 28px; }

.testimonials__track {
  flex: 1;
  max-width: 860px;
  position: relative;
  background: #fde4e7;
  border-radius: 28px;
  padding: clamp(2.75rem, 5vw, 4.25rem) clamp(2rem, 5vw, 4.5rem);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial {
  margin: 0;
  text-align: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0; right: 0;
  padding: 0 clamp(2rem, 5vw, 4.5rem);
  transition: opacity .45s ease;
}
.testimonial.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  padding: 0;
}
.testimonial blockquote {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: #1f2937;
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial figcaption {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  letter-spacing: .04em;
  color: #111827;
  text-transform: uppercase;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: .7rem;
  margin-top: 2.5rem;
}
.testimonials__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease, width .2s ease;
}
.testimonials__dot:hover { background: #9ca3af; }
.testimonials__dot.is-active {
  background: var(--navy-800);
  transform: scale(1.1);
}

@media (max-width: 820px) {
  .testimonials__carousel { gap: .75rem; }
  .testimonials__track { padding: 2.25rem 1.5rem; min-height: 300px; }
  .testimonial blockquote { font-size: 1rem; }
}
@media (max-width: 560px) {
  .testimonials__carousel { gap: 1.25rem; padding: 0; }
  .testimonials__arrow {
    width: 38px;
    height: 38px;
    box-shadow: 0 6px 14px rgba(230, 57, 70, .35);
  }
  .testimonials__arrow svg { width: 16px; height: 16px; }
  .testimonials__track {
    padding: 1.25rem 1rem;
    min-height: 250px;
    height: 250px;
    border-radius: 20px;
  }
  .testimonial blockquote { margin-bottom: 1rem; line-height: 1.5; font-size: .9rem; }
  .testimonial figcaption { font-size: 1.1rem; }
  .testimonials__stars { gap: .6rem; }
  .br-desktop { display: none; }
}

/* ----- Reveal on scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ----- Responsive ----- */
@media (max-width: 1180px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header__cta .header__quote { display: none; }
  .phone-link small { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail__grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail--reverse .service-detail__visual { order: 0; }
  .our-services__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .why { grid-template-columns: 1fr; gap: 2rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .strip__grid { grid-template-columns: repeat(3, 1fr); }
  .strip__item:nth-child(3n) { border-right: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-banner__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-banner__actions { justify-content: center; }
  .areas { grid-template-columns: 1fr; }
  .reviews__logos { grid-template-columns: repeat(2, 1fr); }
  .rc-split__grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-jump { position: static; }
  .service-jump ul { grid-template-columns: repeat(5, 1fr); }
  .service-jump a { padding: .85rem .5rem; font-size: .8rem; flex-direction: column; gap: .4rem; }
  .page-hero { min-height: clamp(280px, 40vh, 420px); padding: 2.5rem 0; }
  .about-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero__visual { order: -1; }
  .about-hero__visual img { aspect-ratio: 16 / 10; max-height: 420px; }
  .our-story__grid { grid-template-columns: 1fr; gap: 2rem; }
  .our-story__visual img { aspect-ratio: 16 / 10; max-height: 420px; }
  .core-values__grid { grid-template-columns: 1fr; gap: 2rem; }
  .core-values__visual { position: static; order: -1; }
  .core-values__visual img { aspect-ratio: 16 / 10; max-height: 420px; }
  .culture__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .culture__tile--wide { grid-column: span 2; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-form-card { position: static; }
}
@media (max-width: 680px) {
  .announce { font-size: .8rem; text-align: center; }
  .announce .wrap { justify-content: center; }
  .header__cta .phone-link { display: none; }
  .hero { padding-bottom: 7rem; }
  .hero__checks { grid-template-columns: 1fr; }
  .hero__trust { flex-wrap: wrap; gap: 1.25rem; }
  .hero__ctas .btn { flex: 1 1 auto; justify-content: center; }
  .grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .areas > ul { grid-template-columns: repeat(2, 1fr); }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__item:nth-child(2n) { border-right: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .sticky-cta { display: none; }
  .reviews__logos { grid-template-columns: 1fr 1fr; }
  .quote-form .row { grid-template-columns: 1fr; gap: 0; }
  .cta-banner__actions .btn { flex: 1 1 auto; }
  .service-detail__audiences { grid-template-columns: 1fr; gap: .75rem; }
  .service-jump ul { grid-template-columns: repeat(2, 1fr); }
  .service-jump li:nth-child(2n) { border-right: 0; }
  .service-jump li { border-bottom: 1px solid var(--line); }
  .service-jump li:nth-last-child(-n+2) { border-bottom: 0; }
  .service-jump li:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .rc-split__card { padding: 2rem 1.5rem; }
  .about-hero__copy .btn { flex: 1 1 auto; justify-content: center; }
  .culture__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .culture__tile--wide { grid-column: span 1; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ----- Legal pages (Terms / Privacy) ----- */
.legal { padding: clamp(3rem, 6vw, 5rem) 0; }
.legal__wrap { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.legal h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy-900);
  margin: 0 0 .5rem;
  line-height: 1.15;
}
.legal__updated { color: var(--muted); font-size: .925rem; margin: 0 0 2.25rem; }
.legal__intro { font-size: 1.05rem; color: var(--navy-800); margin-bottom: 2rem; }
.legal h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-900);
  margin: 2rem 0 .6rem;
  line-height: 1.3;
}
.legal p { margin: 0 0 1rem; line-height: 1.7; color: #374151; }
.legal ul { margin: 0 0 1rem; padding-left: 1.25rem; line-height: 1.7; color: #374151; }
.legal li { margin-bottom: .4rem; }
.legal a { color: var(--red); text-decoration: underline; }
.legal a:hover { text-decoration: none; }

@media (max-width: 560px) {
  .legal h1 { font-size: 1.85rem; }
  .legal h2 { font-size: 1.1rem; }
  .legal p, .legal ul { font-size: .95rem; }
}

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