@layer reset, base, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, ul, figure { margin: 0; }
  ul { padding: 0; list-style: none; }
  img, picture, svg { display: block; max-width: 100%; }
  button, input, textarea, select { font: inherit; }
  a { color: inherit; }
}

@layer base {
  :root {
    --navy: #071a2b;
    --navy-2: #0b263b;
    --navy-3: #12334c;
    --cyan: #00c9ed;
    --cyan-deep: #007cc8;
    --cyan-soft: #dff8fc;
    --orange: #ff7a18;
    --orange-deep: #e85d04;
    --orange-soft: #fff0e3;
    --ice: #f4fafc;
    --white: #ffffff;
    --text: #10212d;
    --muted: #5b6d78;
    --line: #dbe8ed;
    --success: #087f5b;
    --error: #b42318;
    --radius-sm: 0.75rem;
    --radius-md: 1.125rem;
    --radius-lg: 1.75rem;
    --radius-xl: 2.5rem;
    --shadow-card: 0 1.2rem 3.5rem rgba(7, 26, 43, 0.1);
    --shadow-strong: 0 1.8rem 5rem rgba(3, 19, 32, 0.24);
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --header-height: 5.25rem;
  }

  body {
    min-width: 20rem;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3 {
    font-family: "Outfit", system-ui, sans-serif;
    line-height: 1.06;
    text-wrap: balance;
  }

  h1 { font-size: clamp(3.15rem, 5.8vw, 6.3rem); letter-spacing: -0.055em; }
  h2 { font-size: clamp(2.35rem, 4.1vw, 4.45rem); letter-spacing: -0.045em; }
  h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); letter-spacing: -0.025em; }

  a { text-underline-offset: 0.2em; }
  address { font-style: normal; }

  :focus-visible {
    outline: 0.2rem solid var(--cyan);
    outline-offset: 0.22rem;
  }

  ::selection { background: var(--cyan); color: var(--navy); }

  .anchor-section,
  details[id] { scroll-margin-top: calc(var(--header-height) + 1.5rem); }

  .site-container {
    width: min(100% - 2.5rem, 78rem);
    margin-inline: auto;
  }

  .section { padding: clamp(5.5rem, 9vw, 8.5rem) 0; }

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
    color: var(--cyan);
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
  }

  .eyebrow::before {
    width: 1.8rem;
    height: 0.13rem;
    background: currentColor;
    content: "";
  }

  .eyebrow.dark { color: var(--cyan-deep); }

  .skip-link {
    position: fixed;
    z-index: 9999;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    background: var(--white);
    color: var(--navy);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 160ms var(--ease-out);
  }

  .skip-link:focus { transform: translateY(0); }
}

@layer components {
  .site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid rgba(7, 26, 43, 0.1);
    background: rgba(255, 255, 255, 0.96);
    color: var(--navy);
    backdrop-filter: blur(1.2rem);
    transition: background 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  }

  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 0.75rem 2.5rem rgba(7, 26, 43, 0.13);
  }

  .nav-shell {
    display: grid;
    grid-template-columns: minmax(13rem, 15rem) 1fr auto;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    width: min(100% - 2rem, 88rem);
    height: 100%;
    margin-inline: auto;
  }

  .brand {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
    text-decoration: none;
  }

  .brand img {
    width: 13.5rem;
    height: auto;
    filter: none;
  }

  .brand span {
    overflow: hidden;
    color: #496776;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.8rem, 1.4vw, 1.4rem);
  }

  .primary-nav a {
    position: relative;
    padding: 0.6rem 0;
    color: #304c5c;
    font-size: 0.77rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color 180ms var(--ease-out);
  }

  .primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0.25rem;
    left: 0;
    height: 0.12rem;
    background: linear-gradient(90deg, var(--cyan), var(--orange));
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms var(--ease-out);
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible { color: var(--navy); }
  .primary-nav a:hover::after,
  .primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

  .header-call {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 3rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    box-shadow: 0 0.5rem 1.5rem rgba(255, 106, 0, 0.2);
    font-size: 0.78rem;
    line-height: 1.15;
    text-decoration: none;
    transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
  }

  .header-call:hover { transform: translateY(-0.12rem); box-shadow: 0 0.8rem 2rem rgba(255, 106, 0, 0.3); }
  .header-call:active { transform: scale(0.97); }
  .header-call svg { width: 1.1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
  .header-call span { display: grid; }
  .header-call strong { font-size: 0.9rem; }
  .nav-toggle { display: none; }

  .hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 50rem;
    padding: calc(var(--header-height) + 4rem) 0 6.5rem;
    overflow: hidden;
    background:
      radial-gradient(circle at 15% 20%, rgba(0, 201, 237, 0.14), transparent 23rem),
      linear-gradient(130deg, #061725 0%, #08243a 52%, #0a3147 100%);
    color: var(--white);
  }

  .hero::before {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
      linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 3.5rem 3.5rem;
    content: "";
    mask-image: linear-gradient(90deg, black, transparent 58%);
  }

  .hero-visual {
    position: absolute;
    z-index: 1;
    inset: 0 0 0 auto;
    width: 57%;
    overflow: hidden;
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-visual picture,
  .hero-visual img { width: 100%; height: 100%; }
  .hero-visual img { object-fit: cover; object-position: 57% center; }

  .hero-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(7, 26, 43, 1) 0%, rgba(7, 26, 43, 0.98) 34%, rgba(7, 26, 43, 0.68) 57%, rgba(7, 26, 43, 0.12) 100%),
      linear-gradient(0deg, rgba(7, 26, 43, 0.76), transparent 46%);
  }

  .hero-orb { position: absolute; z-index: 3; border-radius: 50%; filter: blur(0.1rem); pointer-events: none; }
  .hero-orb-cool { right: 5%; bottom: -10rem; width: 25rem; height: 25rem; border: 1px solid rgba(0, 207, 244, 0.36); box-shadow: inset 0 0 5rem rgba(0, 207, 244, 0.12); }
  .hero-orb-warm { right: 44%; top: 17%; width: 0.65rem; height: 0.65rem; background: var(--orange); box-shadow: 0 0 0 0.55rem rgba(255, 122, 24, 0.13), 0 0 2rem var(--orange); }

  .hero-grid {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    gap: 5rem;
    align-items: end;
  }

  .hero-copy { max-width: 46rem; }

  .availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 2.5rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #d7f8ff;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .availability-badge span,
  .footer-contact strong span {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #48e58c;
    box-shadow: 0 0 0 0.3rem rgba(72, 229, 140, 0.13);
  }

  .hero h1 { max-width: 45rem; }
  .hero h1 em { color: var(--cyan); font-style: normal; }
  .hero-lede { max-width: 40rem; margin-top: 1.6rem; color: #c5dce5; font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.65; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }

  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 3.55rem;
    padding: 0.85rem 1.35rem;
    border: 0;
    border-radius: 0.8rem;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
  }

  .button:hover { transform: translateY(-0.15rem); }
  .button:active { transform: scale(0.97); }
  .button svg { width: 1.1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
  .button-warm { background: linear-gradient(135deg, var(--orange), var(--orange-deep)); box-shadow: 0 1rem 2.5rem rgba(240, 96, 8, 0.27); color: var(--white); }
  .button-warm:hover { box-shadow: 0 1.25rem 3rem rgba(240, 96, 8, 0.36); }
  .button-ghost { border: 1px solid rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.08); color: var(--white); backdrop-filter: blur(1rem); }
  .button-ghost:hover { background: rgba(255, 255, 255, 0.14); }

  .hero-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.55rem;
    color: #dff8fc;
    font-size: 0.89rem;
    font-weight: 700;
    text-decoration-color: rgba(0, 201, 237, 0.65);
  }
  .hero-text-link span { color: var(--cyan); }

  .hero-card {
    align-self: end;
    max-width: 24rem;
    margin-left: auto;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-lg);
    background: rgba(5, 27, 42, 0.77);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(1rem);
  }

  .hero-card-topline { display: flex; align-items: center; gap: 0.55rem; color: #a8dce8; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
  .hero-card-topline span { width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0.3rem rgba(0, 201, 237, 0.13); }
  .hero-card > p { margin-top: 1rem; color: #c3d8e0; }
  .hero-card > a { display: inline-block; margin: 0.1rem 0 1.3rem; color: var(--white); font-family: "Outfit", system-ui, sans-serif; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em; text-decoration-color: var(--orange); }
  .hero-card-meta { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.15); }
  .hero-card-meta div { display: grid; }
  .hero-card-meta small { color: #8eb5c1; font-size: 0.68rem; text-transform: uppercase; }
  .hero-card-meta strong { font-size: 0.83rem; }

  .benefits-strip { position: relative; z-index: 10; background: var(--white); box-shadow: 0 1rem 4rem rgba(7, 26, 43, 0.09); }
  .benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .benefits-grid article { display: flex; align-items: center; gap: 0.9rem; min-height: 7.2rem; padding: 1rem clamp(1rem, 2vw, 1.5rem); border-right: 1px solid var(--line); }
  .benefits-grid article:last-child { border-right: 0; }
  .benefit-icon { display: grid; flex: 0 0 2.9rem; width: 2.9rem; height: 2.9rem; place-items: center; border-radius: 0.9rem; font-family: "Outfit", sans-serif; font-size: 1rem; font-weight: 800; }
  .benefit-icon.cool { background: var(--cyan-soft); color: var(--cyan-deep); }
  .benefit-icon.warm { background: var(--orange-soft); color: var(--orange-deep); }
  .benefit-icon svg { width: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
  .benefits-grid article div { display: grid; }
  .benefits-grid strong { font-size: 0.91rem; line-height: 1.3; }
  .benefits-grid small { color: var(--muted); font-size: 0.75rem; }

  .services-overview {
    overflow: hidden;
    background:
      radial-gradient(circle at 96% 4%, rgba(0, 201, 237, 0.1), transparent 25rem),
      var(--ice);
  }

  .section-heading { margin-bottom: clamp(2.6rem, 5vw, 4rem); }
  .split-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr); gap: 4rem; align-items: end; }
  .split-heading > p { max-width: 31rem; color: var(--muted); font-size: 1.03rem; }

  .service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .service-card {
    position: relative;
    min-height: 29.5rem;
    padding: 0 1.65rem 1.65rem;
    overflow: hidden;
    border: 1px solid rgba(7, 26, 43, 0.08);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 0.6rem 2rem rgba(7, 26, 43, 0.055);
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
  }

  .service-card::after {
    position: absolute;
    right: -1.5rem;
    bottom: -2.8rem;
    width: 7rem;
    height: 7rem;
    border: 1px solid rgba(0, 124, 200, 0.12);
    border-radius: 50%;
    content: "";
  }

  .service-card:hover { z-index: 2; border-color: rgba(0, 201, 237, 0.35); box-shadow: var(--shadow-card); transform: translateY(-0.4rem); }
  .service-card.featured { background: linear-gradient(145deg, var(--navy-2), var(--navy)); color: var(--white); }
  .service-card.featured p { color: #bcd2db; }
  .service-card.emergency-card { border-color: rgba(255, 122, 24, 0.3); background: linear-gradient(145deg, #fff7f0, #fff); }
  .service-card-image { width: calc(100% + 3.3rem); height: 9rem; margin-left: -1.65rem; object-fit: cover; }
  .service-number { position: absolute; z-index: 2; top: 0.85rem; right: 0.85rem; padding: 0.35rem 0.55rem; border-radius: 999px; background: rgba(7, 26, 43, 0.8); color: var(--white); font-family: "Outfit", sans-serif; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; backdrop-filter: blur(0.5rem); }
  .service-card.featured .service-number { color: var(--white); }
  .service-icon { position: relative; z-index: 2; display: grid; width: 3.2rem; height: 3.2rem; margin-top: -1.6rem; margin-bottom: 1.1rem; place-items: center; border: 0.25rem solid var(--white); border-radius: 1rem; }
  .service-card.featured .service-icon { border-color: var(--navy-2); }
  .service-icon.cool { background: var(--cyan-soft); color: var(--cyan-deep); }
  .service-icon.warm { background: var(--orange-soft); color: var(--orange-deep); }
  .service-icon svg { width: 1.55rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
  .service-card h3 { min-height: 3.5rem; font-size: 1.4rem; }
  .service-card p { margin-top: 0.85rem; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
  .service-card a { position: absolute; z-index: 2; bottom: 1.5rem; display: inline-flex; align-items: center; gap: 0.45rem; color: var(--cyan-deep); font-size: 0.82rem; font-weight: 800; text-decoration: none; }
  .service-card.featured a { color: var(--cyan); }
  .service-card a span { transition: transform 160ms var(--ease-out); }
  .service-card a:hover span { transform: translateX(0.25rem); }

  .about-section { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
  .about-visual { position: relative; min-width: 0; }
  .image-frame { position: relative; padding: 0.75rem; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--ice); }
  .image-frame::before { position: absolute; z-index: -1; top: -1.5rem; right: 2rem; width: 8rem; height: 8rem; border-radius: 50%; background: var(--orange-soft); content: ""; }
  .image-frame img { width: 100%; aspect-ratio: 4 / 3; border-radius: calc(var(--radius-xl) - 0.5rem); object-fit: cover; }
  .image-label { position: absolute; right: 1.8rem; bottom: 1.8rem; padding: 0.65rem 0.9rem; border-radius: 999px; background: rgba(7, 26, 43, 0.88); color: var(--white); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; backdrop-filter: blur(0.6rem); }
  .about-stat { position: absolute; bottom: -2rem; left: -2rem; display: grid; min-width: 9rem; padding: 1.2rem 1.4rem; border-radius: 1.4rem; background: linear-gradient(135deg, var(--cyan), #18e0f5); box-shadow: 0 1rem 2.5rem rgba(0, 174, 210, 0.23); color: var(--navy); }
  .about-stat strong { font-family: "Outfit", sans-serif; font-size: 2.9rem; line-height: 0.95; }
  .about-stat strong span { font-size: 1.35rem; }
  .about-stat small { margin-top: 0.4rem; font-weight: 800; }
  .about-copy > p:not(.eyebrow) { margin-top: 1.05rem; color: var(--muted); }
  .about-copy h2 { overflow-wrap: anywhere; }
  .text-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; color: var(--cyan-deep); font-weight: 800; }

  .why-section {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 18% 5%, rgba(0, 201, 237, 0.16), transparent 22rem),
      radial-gradient(circle at 90% 90%, rgba(255, 122, 24, 0.12), transparent 24rem),
      var(--navy);
    color: var(--white);
  }
  .why-section::before { position: absolute; inset: 0; opacity: 0.15; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 4rem 4rem; content: ""; }
  .why-section .site-container { position: relative; }
  .centered-heading { max-width: 48rem; margin-inline: auto; text-align: center; }
  .centered-heading .eyebrow { justify-content: center; }
  .centered-heading > p:last-child { max-width: 40rem; margin: 1.2rem auto 0; color: #afcad4; }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
  .why-grid article { min-height: 14rem; padding: 2rem; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); transition: background 180ms var(--ease-out); }
  .why-grid article:hover { background: rgba(255,255,255,.05); }
  .why-grid article > span { color: var(--cyan); font-family: "Outfit", sans-serif; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; }
  .why-grid h3 { margin-top: 1.7rem; font-size: 1.45rem; }
  .why-grid p { margin-top: 0.75rem; color: #a9c1ca; font-size: 0.9rem; }

  .detail-section { background: var(--ice); }
  .detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 22rem; gap: 3rem; align-items: start; }
  .detail-list { border-top: 1px solid #c8dce4; }
  .service-detail { display: grid; grid-template-columns: 8rem 1fr; gap: 1.5rem; padding: 2.5rem 0; border-bottom: 1px solid #c8dce4; }
  .detail-index { color: var(--cyan-deep); font-family: "Outfit", sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
  .service-detail h3 { font-size: 1.85rem; }
  .service-detail p { margin-top: 0.85rem; color: var(--muted); }
  .service-detail a { display: inline-flex; gap: 0.45rem; margin-top: 1rem; color: var(--cyan-deep); font-size: 0.87rem; font-weight: 800; }
  .service-detail.emergency-detail { margin: 0 -1rem; padding-inline: 1rem; border-radius: var(--radius-md); background: linear-gradient(90deg, var(--orange-soft), transparent); }
  .service-detail .inline-call { color: var(--orange-deep); }
  .detail-aside { position: sticky; top: calc(var(--header-height) + 1.5rem); overflow: hidden; border-radius: var(--radius-lg); background: var(--navy); box-shadow: var(--shadow-card); color: var(--white); }
  .detail-aside img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
  .detail-aside > div { padding: 1.6rem; }
  .detail-aside h3 { font-size: 1.55rem; }
  .detail-aside p:not(.eyebrow) { margin-top: 0.8rem; color: #b7cbd3; font-size: 0.9rem; }
  .detail-aside a { display: inline-flex; gap: 0.4rem; margin-top: 1rem; color: var(--cyan); font-size: 0.83rem; font-weight: 800; }

  .emergency-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, var(--cyan-deep) 0%, #0099d1 46%, var(--orange) 140%);
    color: var(--white);
  }
  .emergency-cta::after { position: absolute; top: -9rem; right: -5rem; width: 28rem; height: 28rem; border: 1px solid rgba(255,255,255,.19); border-radius: 50%; box-shadow: inset 0 0 0 4rem rgba(255,255,255,.035); content: ""; }
  .emergency-inner { position: relative; z-index: 1; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 2rem; align-items: center; min-height: 16rem; padding-block: 2.5rem; }
  .emergency-symbol { display: grid; width: 5rem; height: 5rem; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.11); }
  .emergency-symbol svg { width: 2.1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.6; }
  .emergency-inner h2 { max-width: 41rem; font-size: clamp(2rem, 3.4vw, 3.6rem); }
  .emergency-actions { display: grid; gap: 0.65rem; }
  .button-white { background: var(--white); color: var(--navy); box-shadow: 0 0.8rem 2rem rgba(7,26,43,.18); }
  .button-outline-white { border: 1px solid rgba(255,255,255,.6); background: transparent; color: var(--white); }
  .button-outline-white:hover { background: rgba(255,255,255,.1); }

  .area-section { background: var(--white); }
  .area-grid { display: grid; grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.15fr); gap: clamp(3rem, 7vw, 6.5rem); align-items: center; }
  .area-copy > p:not(.eyebrow) { margin-top: 1.25rem; color: var(--muted); }
  .area-photo { margin-top: 1.5rem; overflow: hidden; border-radius: var(--radius-md); box-shadow: 0 0.8rem 2.3rem rgba(7, 26, 43, 0.12); }
  .area-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
  .area-copy address { display: grid; gap: 0.4rem; margin-top: 1.7rem; padding: 1.3rem; border-left: 0.22rem solid var(--orange); background: var(--orange-soft); }
  .area-copy address span { color: var(--orange-deep); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
  .area-list { margin-top: 1.5rem; }
  .area-list li { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; }
  .area-list li span { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0.3rem var(--cyan-soft); }
  .map-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--ice); box-shadow: var(--shadow-card); }
  .map-topbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; background: var(--navy); color: var(--white); }
  .map-topbar span { display: flex; align-items: center; gap: 0.55rem; font-weight: 800; }
  .map-topbar i { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0.3rem rgba(255,122,24,.14); }
  .map-topbar small { color: #9dbbc6; }
  .service-map { position: relative; height: 31rem; background: #dceef3; }
  .map-placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 0.9rem; padding: 2rem; color: var(--navy-3); text-align: center; }
  .map-placeholder span { width: 3rem; height: 3rem; border: 0.3rem solid rgba(0,124,200,.18); border-top-color: var(--cyan-deep); border-radius: 50%; animation: spin 900ms linear infinite; }
  .leaflet-container { font-family: "DM Sans", sans-serif; }
  .leaflet-popup-content-wrapper { border-radius: 0.8rem; }
  .leaflet-popup-content strong { font-family: "Outfit", sans-serif; font-size: 1rem; }
  @keyframes spin { to { transform: rotate(360deg); } }

  .faq-section { background: var(--ice); }
  .faq-grid { display: grid; grid-template-columns: 20rem minmax(0, 1fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
  .faq-intro { position: sticky; top: calc(var(--header-height) + 2rem); }
  .faq-intro > p:not(.eyebrow) { margin-top: 1.1rem; color: var(--muted); }
  .faq-callout { display: flex; align-items: center; gap: 0.9rem; margin-top: 2rem; padding: 1.1rem; border-radius: var(--radius-md); background: var(--navy); color: var(--white); }
  .faq-callout > span { display: grid; flex: 0 0 2.5rem; width: 2.5rem; height: 2.5rem; place-items: center; border-radius: 50%; background: var(--cyan); color: var(--navy); font-family: "Outfit", sans-serif; font-size: 1.3rem; font-weight: 800; }
  .faq-callout p { display: grid; font-size: 0.82rem; }
  .faq-callout a { color: var(--cyan); font-size: 0.94rem; font-weight: 800; }
  .faq-list { border-top: 1px solid #c7dbe3; }
  .faq-list details { border-bottom: 1px solid #c7dbe3; }
  .faq-list summary { display: grid; grid-template-columns: 1fr 2.4rem; gap: 1.5rem; align-items: center; min-height: 5.5rem; padding: 1.25rem 0; font-family: "Outfit", sans-serif; font-size: 1.2rem; font-weight: 700; line-height: 1.3; list-style: none; cursor: pointer; }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary i { position: relative; display: block; width: 2.4rem; height: 2.4rem; border: 1px solid #bfd4dc; border-radius: 50%; transition: background 180ms var(--ease-out), transform 180ms var(--ease-out); }
  .faq-list summary i::before,
  .faq-list summary i::after { position: absolute; top: 50%; left: 50%; width: 0.8rem; height: 0.1rem; background: var(--cyan-deep); content: ""; transform: translate(-50%, -50%); }
  .faq-list summary i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 180ms var(--ease-out); }
  .faq-list details[open] summary { color: var(--cyan-deep); }
  .faq-list details[open] summary i { background: var(--cyan); transform: rotate(45deg); }
  .faq-list details[open] summary i::before,
  .faq-list details[open] summary i::after { background: var(--navy); }
  .faq-answer { padding: 0 4rem 1.6rem 0; }
  .faq-answer p { color: var(--muted); }
  .faq-answer a { display: inline-block; margin-top: 0.8rem; color: var(--cyan-deep); font-size: 0.84rem; font-weight: 800; }

  .contact-section {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 3% 94%, rgba(0,201,237,.18), transparent 22rem),
      linear-gradient(135deg, var(--navy) 0%, #0a2d44 100%);
    color: var(--white);
  }
  .contact-section::after { position: absolute; right: -12rem; bottom: -15rem; width: 40rem; height: 40rem; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: inset 0 0 0 5rem rgba(255,255,255,.02); content: ""; }
  .contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.1fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
  .contact-copy > p:not(.eyebrow) { margin-top: 1.2rem; color: #b7cfd8; font-size: 1.03rem; }
  .contact-details { display: grid; gap: 1rem; margin-top: 2.2rem; }
  .contact-details > a,
  .contact-details > div { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
  .contact-details > a > span:last-child,
  .contact-details > div > span:last-child { display: grid; }
  .contact-icon { display: grid; flex: 0 0 2.9rem; width: 2.9rem; height: 2.9rem; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 0.8rem; background: rgba(255,255,255,.06); color: var(--cyan); }
  .contact-icon svg { width: 1.2rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
  .contact-details small { color: #84a8b7; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
  .contact-details strong { font-size: 0.92rem; }
  .prefer-call { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15); color: #9fbcc7; }
  .prefer-call a { color: var(--cyan); font-weight: 800; }

  .lead-form { padding: clamp(1.3rem, 4vw, 2.5rem); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-strong); color: var(--text); }
  .form-heading { display: grid; gap: 0.2rem; margin-bottom: 1.8rem; }
  .form-heading span { color: var(--cyan-deep); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
  .form-heading strong { font-family: "Outfit", sans-serif; font-size: 1.55rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-field { display: grid; align-content: start; margin-bottom: 1rem; }
  .form-field label { margin-bottom: 0.35rem; font-size: 0.8rem; font-weight: 800; }
  .form-field label span { color: var(--orange-deep); }
  .form-field input,
  .form-field select,
  .form-field textarea { width: 100%; min-height: 3.25rem; padding: 0.75rem 0.9rem; border: 1px solid #c7d9df; border-radius: 0.65rem; background: #fbfdfe; color: var(--text); transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out); }
  .form-field textarea { min-height: 7.5rem; resize: vertical; }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus { border-color: var(--cyan-deep); outline: none; box-shadow: 0 0 0 0.2rem rgba(0, 172, 214, 0.14); }
  .form-field [aria-invalid="true"] { border-color: var(--error); }
  .field-error { min-height: 1rem; margin-top: 0.25rem; color: var(--error); font-size: 0.72rem; line-height: 1.35; }
  .honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
  .consent-field { display: grid; grid-template-columns: 1.2rem 1fr; gap: 0.75rem; margin-top: 0.1rem; }
  .consent-field input { width: 1.15rem; height: 1.15rem; margin-top: 0.22rem; accent-color: var(--cyan-deep); }
  .consent-field label { display: block; color: #556974; font-size: 0.72rem; line-height: 1.45; }
  .submit-button { width: 100%; margin-top: 1.2rem; background: linear-gradient(135deg, var(--orange), var(--orange-deep)); box-shadow: 0 0.8rem 2rem rgba(232, 93, 4, 0.2); color: var(--white); }
  .submit-button:disabled { opacity: 0.68; cursor: wait; transform: none; }
  .submit-spinner { display: none; width: 1.1rem; height: 1.1rem; border: 0.13rem solid rgba(255,255,255,.35); border-top-color: var(--white); border-radius: 50%; animation: spin 700ms linear infinite; }
  .submit-button.loading .submit-spinner { display: block; }
  .form-status { min-height: 1.5rem; margin-top: 0.75rem; font-size: 0.83rem; font-weight: 700; text-align: center; }
  .form-status.error { color: var(--error); }
  .form-status.success { color: var(--success); }

  .final-cta { background: linear-gradient(120deg, var(--cyan-soft), #fff8f1); }
  .final-inner { display: grid; grid-template-columns: 13rem minmax(20rem, 1fr) auto; align-items: center; gap: 2.5rem; min-height: 19rem; padding-block: 3rem; }
  .final-photo { overflow: hidden; border: 0.45rem solid rgba(255, 255, 255, 0.8); border-radius: 50% 50% 1.5rem 50%; box-shadow: var(--shadow-card); }
  .final-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
  .final-inner > div:nth-child(2) { max-width: 42rem; }
  .final-inner p:not(.eyebrow) { margin-top: 0.8rem; color: var(--muted); }
  .final-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: flex-end; }
  .button-navy { background: var(--navy); color: var(--white); box-shadow: 0 0.8rem 2rem rgba(7,26,43,.17); }
  .button-cyan-outline { border: 1px solid var(--cyan-deep); background: rgba(255,255,255,.5); color: var(--navy); }

  .site-footer { padding: 5rem 0 1.4rem; background: #04131f; color: var(--white); }
  .footer-main { display: grid; grid-template-columns: minmax(16rem, 1.5fr) 0.65fr 0.65fr minmax(12rem, 1fr); gap: 3rem; padding-bottom: 3.5rem; }
  .footer-brand > strong { display: block; overflow-wrap: anywhere; color: var(--cyan); font-family: "Outfit", sans-serif; font-size: 0.85rem; }
  .footer-brand p { max-width: 22rem; margin-top: 0.7rem; color: #8eabb7; font-size: 0.84rem; }
  .footer-column { display: grid; align-content: start; gap: 0.55rem; }
  .footer-column h2 { margin-bottom: 0.55rem; color: var(--white); font-size: 0.83rem; letter-spacing: 0.1em; text-transform: uppercase; }
  .footer-column a,
  .footer-column p { color: #9cb5bf; font-size: 0.83rem; }
  .footer-column a:hover { color: var(--cyan); }
  .footer-contact strong { display: flex; align-items: center; gap: 0.55rem; margin-top: 0.5rem; color: #cce9d9; font-size: 0.82rem; }
  .footer-disclaimer { padding: 1.35rem 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-disclaimer p { color: #829da8; font-size: 0.67rem; line-height: 1.55; }
  .footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.35rem; color: #6f8d99; font-size: 0.72rem; }
  .footer-bottom a { color: #aac4ce; text-decoration: none; }

  .mobile-call { display: none; }
}

@layer utilities {
  @media (max-width: 78rem) {
    .nav-shell { grid-template-columns: 13rem 1fr auto; }
    .primary-nav { gap: 0.8rem; }
    .primary-nav a { font-size: 0.7rem; }
    .header-call { padding-inline: 0.8rem; }
    .header-call span { font-size: 0; }
    .header-call strong { font-size: 0.78rem; }
    .hero-grid { gap: 2rem; }
  }

  @media (max-width: 64rem) {
    :root { --header-height: 4.75rem; }
    .nav-shell { grid-template-columns: 13.5rem 1fr auto; }
    .nav-toggle {
      position: relative;
      z-index: 1002;
      display: grid;
      grid-column: 3;
      grid-row: 1;
      width: 3rem;
      height: 3rem;
      place-content: center;
      gap: 0.3rem;
      margin-left: auto;
      border: 1px solid rgba(7,26,43,.13);
      border-radius: 0.75rem;
      background: var(--ice);
      color: var(--navy);
    }
    .nav-toggle span { width: 1.25rem; height: 0.12rem; border-radius: 2px; background: currentColor; transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out); }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(0.42rem) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-0.42rem) rotate(-45deg); }
    .header-call { grid-column: 2; grid-row: 1; justify-self: end; }
    .primary-nav {
      position: fixed;
      z-index: 1001;
      top: var(--header-height);
      right: 0;
      left: 0;
      display: grid;
      gap: 0;
      max-height: calc(100vh - var(--header-height));
      padding: 0.6rem 1.25rem 1.25rem;
      overflow-y: auto;
      border-top: 1px solid rgba(7,26,43,.09);
      background: rgba(255,255,255,.99);
      box-shadow: 0 1.5rem 3rem rgba(7,26,43,.16);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-0.75rem);
      transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
    }
    .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .primary-nav a { min-height: 3.3rem; padding: 1rem 0.2rem; border-bottom: 1px solid rgba(7,26,43,.09); color: var(--navy-3); font-size: 0.95rem; }
    .primary-nav a::after { display: none; }
    body.nav-open { overflow: hidden; }

    .hero { min-height: 47rem; }
    .hero-visual { width: 64%; }
    .hero-overlay { background: linear-gradient(90deg, rgba(7,26,43,1) 0%, rgba(7,26,43,.96) 38%, rgba(7,26,43,.62) 68%, rgba(7,26,43,.2) 100%), linear-gradient(0deg, rgba(7,26,43,.8), transparent 50%); }
    .hero-grid { grid-template-columns: minmax(0, 1.2fr) minmax(15rem, .8fr); }
    .hero h1 { font-size: clamp(3.2rem, 7vw, 5.5rem); }
    .hero-card { max-width: 20rem; }

    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid article:nth-child(2) { border-right: 0; }
    .benefits-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 4rem; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-layout { grid-template-columns: minmax(0, 1fr) 19rem; gap: 2rem; }
    .emergency-inner { grid-template-columns: auto 1fr; }
    .emergency-actions { grid-column: 2; display: flex; flex-wrap: wrap; }
    .area-grid { grid-template-columns: 0.8fr 1.2fr; gap: 3rem; }
    .faq-grid { grid-template-columns: 17rem 1fr; gap: 3rem; }
    .contact-grid { gap: 3rem; }
    .final-inner { grid-template-columns: 10rem 1fr; }
    .final-actions { grid-column: 2; }
    .footer-main { grid-template-columns: 1.4fr .7fr .7fr; }
    .footer-contact { grid-column: 1 / -1; grid-template-columns: repeat(4, auto); align-items: start; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
  }

  @media (max-width: 48rem) {
    .site-container { width: min(100% - 2rem, 42rem); }
    .section { padding: 5.5rem 0; }
    .header-call { display: none; }
    .nav-shell { grid-template-columns: 1fr auto; }
    .nav-toggle { grid-column: 2; }
    .brand img { width: 12.4rem; }
    .brand span { max-width: 13rem; }

    .hero { align-items: end; min-height: 49rem; padding: calc(var(--header-height) + 4rem) 0 4.2rem; }
    .hero-visual { inset: 0; width: 100%; clip-path: none; }
    .hero-visual img { object-position: 68% center; }
    .hero-overlay { background: linear-gradient(90deg, rgba(7,26,43,.92), rgba(7,26,43,.57)), linear-gradient(0deg, rgba(7,26,43,.98) 0%, rgba(7,26,43,.76) 55%, rgba(7,26,43,.2) 100%); }
    .hero-grid { display: block; }
    .hero-copy { max-width: 39rem; }
    .availability-badge { margin-bottom: 1.8rem; }
    .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }
    .hero-lede { color: #d1e2e8; }
    .hero-card { display: none; }
    .hero-actions { align-items: stretch; }
    .hero-actions .button { flex: 1 1 16rem; }

    .benefits-grid { grid-template-columns: 1fr; }
    .benefits-grid article { min-height: 5.7rem; border-right: 0; border-bottom: 1px solid var(--line); }
    .benefits-grid article:last-child { border-bottom: 0; }
    .split-heading { grid-template-columns: 1fr; gap: 1.25rem; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 18rem; }
    .about-grid { grid-template-columns: 1fr; gap: 4.5rem; }
    .about-visual { max-width: 35rem; margin-inline: auto; }
    .about-stat { bottom: -2rem; left: 1rem; }
    .about-copy h2 { font-size: clamp(2.2rem, 10vw, 3.8rem); }
    .why-grid { grid-template-columns: 1fr; }
    .why-grid article { min-height: auto; }
    .detail-layout { grid-template-columns: 1fr; }
    .detail-aside { position: static; display: grid; grid-template-columns: minmax(0, 0.85fr) 1fr; }
    .detail-aside img { height: 100%; }
    .service-detail { grid-template-columns: 6.5rem 1fr; }
    .emergency-inner { grid-template-columns: 1fr; gap: 1.3rem; padding-block: 3.5rem; }
    .emergency-symbol { width: 4.3rem; height: 4.3rem; }
    .emergency-actions { grid-column: auto; }
    .area-grid { grid-template-columns: 1fr; }
    .service-map { height: 26rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-intro { position: static; }
    .faq-callout { max-width: 22rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .final-inner { grid-template-columns: 8rem 1fr; min-height: 23rem; }
    .final-actions { grid-column: 1 / -1; }
    .final-actions { justify-content: flex-start; }
    .footer-main { grid-template-columns: 1.3fr .7fr .7fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-template-columns: 1fr; }

    body { padding-bottom: calc(4.3rem + env(safe-area-inset-bottom)); }
    .mobile-call {
      position: fixed;
      z-index: 990;
      right: 1rem;
      bottom: calc(0.75rem + env(safe-area-inset-bottom));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      min-width: 8.5rem;
      min-height: 3.35rem;
      padding: 0.75rem 1.2rem;
      border: 2px solid rgba(255,255,255,.7);
      border-radius: 999px;
      background: linear-gradient(135deg, var(--orange), var(--orange-deep));
      box-shadow: 0 0.8rem 2.5rem rgba(7,26,43,.3);
      color: var(--white);
      font-family: "Outfit", sans-serif;
      font-weight: 800;
      text-decoration: none;
    }
    .mobile-call svg { width: 1.1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
  }

  @media (max-width: 32rem) {
    .site-container { width: min(100% - 1.5rem, 30rem); }
    .hero { min-height: 51rem; }
    .hero h1 { font-size: clamp(2.8rem, 14.5vw, 4rem); }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .hero-lede { font-size: 1rem; }
    .availability-badge { font-size: 0.68rem; }
    .service-detail { grid-template-columns: 1fr; gap: 0.65rem; }
    .detail-aside { grid-template-columns: 1fr; }
    .map-topbar { display: grid; }
    .service-map { height: 23rem; }
    .faq-list summary { grid-template-columns: 1fr 2.3rem; gap: 0.8rem; font-size: 1.05rem; }
    .faq-answer { padding-right: 0; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .final-inner { grid-template-columns: 1fr; }
    .final-photo { width: 10rem; }
    .final-actions { display: grid; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-column: 1 / -1; }
    .footer-bottom { display: grid; }
  }

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