:root {
  --navy-980: #061522;
  --navy-930: #0a2132;
  --navy-900: #0f2f45;
  --navy-850: #174463;
  --blue-600: #0f6faa;
  --blue-500: #1f8fd2;
  --blue-450: #33a4e1;
  --teal-500: #16b2a0;
  --teal-420: #3ac6b8;
  --amber-500: #f2a43c;
  --amber-600: #d98623;
  --sand-30: #fcfaf5;
  --sand-70: #f6f1e7;
  --sand-120: #ece2cf;
  --sand-170: #dfd1b8;
  --ink-950: #0c2434;
  --ink-800: #21465d;
  --ink-650: #3f657d;
  --ink-500: #638197;
  --line: rgba(12, 36, 52, 0.14);
  --line-strong: rgba(12, 36, 52, 0.3);
  --radius-xl: 1.3rem;
  --radius-lg: 1rem;
  --radius-md: 0.8rem;
  --radius-sm: 0.62rem;
  --shadow-md: 0 14px 30px rgba(8, 24, 35, 0.13);
  --shadow-lg: 0 24px 60px rgba(8, 24, 35, 0.25);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 48px;
  --mobile-gutter: clamp(16px, 4.8vw, 24px);
  --mobile-section: clamp(3rem, 8.6vw, 4rem);
  --tap-target: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-950);
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.42;
  overflow-x: clip;
  background:
    radial-gradient(850px 400px at 8% -8%, rgba(31, 143, 210, 0.18), transparent 72%),
    radial-gradient(700px 360px at 92% 4%, rgba(242, 164, 60, 0.16), transparent 73%),
    var(--sand-70);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(16, 74, 105, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 74, 105, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: -1;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.7rem);
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 400;
  background: #fff;
  color: var(--ink-950);
  border-radius: 0.45rem;
  padding: 0.54rem 0.78rem;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex: 0 0 auto;
}

.container {
  width: min(1160px, calc(100% - clamp(2rem, 4.8vw, 3rem)));
  margin-inline: auto;
}

.top-alert {
  background: linear-gradient(90deg, var(--navy-900), var(--blue-600));
  color: #eaf7ff;
  border-bottom: 1px solid rgba(161, 214, 244, 0.3);
}

.top-alert-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  font-weight: 600;
  font-size: 0.91rem;
}

.top-alert p {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.top-alert svg {
  font-size: 1rem;
  color: #89d6ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 220;
  background: rgba(252, 250, 245, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  isolation: isolate;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-strong);
  box-shadow: 0 8px 20px rgba(7, 21, 34, 0.09);
}

.header-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.76rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  background: linear-gradient(140deg, var(--blue-500), var(--teal-500));
  box-shadow: 0 11px 22px rgba(15, 111, 170, 0.25);
}

.brand-text {
  display: grid;
  gap: 0.08rem;
}

.brand-text strong {
  font-size: 0.95rem;
}

.brand-text small {
  color: var(--ink-500);
  font-size: 0.73rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink-800);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.23rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  background: linear-gradient(90deg, var(--blue-500), var(--amber-500));
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.header-call {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: var(--tap-target);
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(138deg, var(--blue-600), var(--teal-500));
  padding: 0.63rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 111, 170, 0.3);
}

.header-call svg {
  font-size: 0.98rem;
}

.section {
  padding: clamp(3.1rem, 7.8vw, 5.2rem) 0;
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-head h2 {
  margin-top: 0.55rem;
  max-width: 24ch;
  min-height: 2.4em;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero {
  color: #ecf8ff;
  background:
    radial-gradient(700px 380px at 100% 4%, rgba(25, 161, 207, 0.26), transparent 72%),
    radial-gradient(640px 350px at 4% 92%, rgba(255, 158, 47, 0.18), transparent 76%),
    linear-gradient(180deg, var(--navy-980), var(--navy-900));
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background:
    linear-gradient(118deg, transparent 0 44%, rgba(84, 183, 234, 0.18) 44% 45%, transparent 45% 100%),
    linear-gradient(145deg, transparent 0 73%, rgba(242, 164, 60, 0.22) 73% 74%, transparent 74% 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-copy {
  border: 1px solid rgba(169, 216, 244, 0.22);
  background: linear-gradient(165deg, rgba(14, 51, 75, 0.9), rgba(8, 28, 43, 0.88));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.05rem, 2.5vw, 1.7rem);
}

.hero-copy .eyebrow {
  color: #8fd8ff;
}

.hero-copy h1 {
  margin-top: 0.85rem;
  font-size: clamp(2.05rem, 4.5vw, 3.55rem);
  max-width: 15ch;
  min-height: 2.25em;
}

.hero-lead {
  margin-top: 0.82rem;
  max-width: 55ch;
  color: #c6e7fa;
  font-size: 1.05rem;
  min-height: 2.9em;
}

.i18n-clamp-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.65rem;
}

.btn {
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  min-height: var(--tap-target);
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--amber-500), var(--amber-600));
  box-shadow: 0 10px 24px rgba(217, 134, 35, 0.35);
}

.btn-ghost {
  color: #d9f2ff;
  border-color: rgba(169, 216, 244, 0.46);
  background: rgba(16, 53, 78, 0.46);
}

.hero-trust {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #d3ebf9;
}

.hero-trust svg {
  color: #7fd8f2;
}

.hero-stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.58rem;
}

.hero-stats article {
  border-radius: 0.82rem;
  border: 1px solid rgba(169, 216, 244, 0.26);
  background: rgba(11, 43, 64, 0.7);
  padding: 0.65rem 0.62rem;
}

.hero-stats p {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
}

.hero-stats span {
  font-size: 0.82rem;
  color: #9fd2eb;
}

.hero-side {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

.hero-media,
.dispatch-card,
.service-card,
.coverage-main,
.zip-check,
.quote-card,
.process-grid li,
.job-grid article,
.review-grid article,
.about-copy,
.about-media,
.faq-item,
.book-form {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
}

.hero-media {
  margin: 0;
  background: #0b2435;
  box-shadow: var(--shadow-lg);
}

.hero-media img {
  width: 100%;
  min-height: 250px;
  max-height: 290px;
  object-fit: cover;
}

.hero-media figcaption {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 0.78rem;
  font-weight: 700;
  color: #caebff;
  background: linear-gradient(130deg, rgba(10, 35, 51, 0.92), rgba(15, 66, 95, 0.88));
}

.dispatch-card {
  background: linear-gradient(155deg, #0f3c59, #15597f);
  border-color: rgba(170, 219, 245, 0.34);
  padding: 0.95rem;
}

.dispatch-card h2 {
  font-size: 1.18rem;
  color: #f0faff;
  min-height: 2.2em;
}

.dispatch-card ul {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.43rem;
}

.dispatch-card li {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  color: #c6e8f9;
  border-bottom: 1px dashed rgba(169, 216, 244, 0.28);
  padding-bottom: 0.41rem;
}

.dispatch-card strong {
  color: #ffffff;
}

.dispatch-card p {
  margin-top: 0.68rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #eaf8ff;
}

.dispatch-card p svg {
  color: #8de6ff;
}

.triage {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.triage .eyebrow,
.services .eyebrow,
.pricing .eyebrow,
.jobs .eyebrow,
.about .eyebrow,
.faq .eyebrow,
.book .eyebrow {
  color: var(--blue-600);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.symptom-chip {
  border: 1px solid rgba(15, 47, 69, 0.2);
  background: #ffffff;
  color: var(--ink-800);
  border-radius: 999px;
  padding: 0.63rem 0.8rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.36rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.symptom-chip svg {
  color: var(--blue-600);
}

.symptom-chip:hover,
.symptom-chip.is-active {
  border-color: var(--blue-500);
  background: linear-gradient(145deg, #f0f8fd, #ffffff);
  transform: translateY(-1px);
}

.services {
  background:
    radial-gradient(500px 240px at 96% 8%, rgba(47, 198, 184, 0.16), transparent 72%),
    radial-gradient(500px 220px at 4% 86%, rgba(242, 164, 60, 0.16), transparent 74%),
    var(--sand-30);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.service-card {
  background: #fff;
  box-shadow: var(--shadow-md);
}

.service-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.service-card > div {
  padding: 0.8rem;
}

.service-card h3 {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 1.02rem;
}

.service-card h3 svg {
  color: var(--blue-600);
}

.service-card p {
  margin-top: 0.42rem;
  color: var(--ink-650);
}

.service-card strong {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--amber-600);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
}

.coverage {
  color: #e8f7ff;
  background:
    radial-gradient(650px 290px at 94% 5%, rgba(51, 164, 225, 0.27), transparent 72%),
    linear-gradient(160deg, var(--navy-930), var(--navy-850));
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.9rem;
  align-items: start;
}

.coverage-main,
.zip-check {
  border-color: rgba(170, 219, 245, 0.25);
  background: rgba(8, 33, 49, 0.48);
  box-shadow: var(--shadow-lg);
}

.coverage-main {
  padding: 1rem;
}

.coverage .eyebrow {
  color: #8fd8ff;
}

.coverage-main h2 {
  margin-top: 0.6rem;
  max-width: 22ch;
}

.zone-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.zone-list li {
  border: 1px solid rgba(170, 219, 245, 0.28);
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #d8f2ff;
  background: rgba(11, 45, 67, 0.55);
}

.zone-list svg {
  color: #73d6ff;
}

.coverage-strip {
  margin-top: 0.85rem;
  border-radius: 0.92rem;
  overflow: hidden;
  border: 1px solid rgba(170, 219, 245, 0.3);
}

.coverage-strip img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.zip-check {
  padding: 1rem;
  background: linear-gradient(160deg, rgba(18, 75, 107, 0.88), rgba(8, 41, 63, 0.9));
}

.zip-check h3 {
  font-size: 1.35rem;
}

.zip-check p {
  margin-top: 0.44rem;
  color: #bfdeef;
}

.zip-form {
  margin-top: 0.78rem;
  display: grid;
  gap: 0.55rem;
}

.text-link {
  margin-top: 0.72rem;
  display: inline-block;
  font-weight: 700;
  color: #9ce2ff;
}

.zip-status {
  min-height: 1.22rem;
  margin-top: 0.55rem;
  font-size: 0.9rem;
}

.zip-status.is-success {
  color: #9ff2db;
}

.zip-status.is-error {
  color: #ffd3c6;
}

.pricing {
  background: var(--sand-70);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 0.9rem;
  align-items: start;
}

.pricing-main {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.policy-grid {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.policy-grid article {
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 47, 69, 0.17);
  background: #f8fcff;
  padding: 0.72rem;
}

.policy-grid h3 {
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.policy-grid h3 svg {
  color: var(--blue-600);
}

.policy-grid p {
  margin-top: 0.34rem;
  color: var(--ink-650);
}

.quote-card {
  background: linear-gradient(158deg, var(--navy-900), var(--blue-600));
  border-color: rgba(175, 221, 246, 0.34);
  box-shadow: var(--shadow-lg);
  color: #edf9ff;
  padding: 1rem;
}

.quote-card .eyebrow {
  color: #8fd8ff;
}

.quote-card h3 {
  margin-top: 0.5rem;
  font-size: 1.35rem;
}

label {
  font-weight: 700;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid rgba(14, 43, 62, 0.28);
  padding: 0.62rem 0.7rem;
  font: inherit;
  color: var(--ink-950);
  background: #ffffff;
}

.quote-form {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.55rem;
}

.quote-card input,
.quote-card select {
  border-color: rgba(175, 221, 246, 0.46);
  background: rgba(242, 251, 255, 0.98);
}

.quote-result {
  margin-top: 0.85rem;
  border-radius: 0.92rem;
  border: 1px solid rgba(175, 221, 246, 0.34);
  background: rgba(8, 36, 55, 0.45);
  padding: 0.78rem;
}

.result-label {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  color: #a7ddf8;
}

.result-value {
  margin-top: 0.3rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4.4vw, 2.55rem);
  color: #ffffff;
}

.result-meta {
  margin-top: 0.22rem;
  color: #c9eafb;
}

.process {
  color: #ecf8ff;
  background:
    radial-gradient(640px 300px at 96% 2%, rgba(47, 198, 184, 0.2), transparent 72%),
    linear-gradient(160deg, var(--navy-980), var(--navy-900));
}

.process .eyebrow {
  color: #8fd8ff;
}

.process-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.68rem;
}

.process-grid li {
  border-color: rgba(170, 219, 245, 0.26);
  background: rgba(13, 48, 70, 0.65);
  padding: 0.88rem;
}

.process-grid span {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(143, 216, 255, 0.22);
  color: #8fd8ff;
}

.process-grid h3 {
  margin-top: 0.62rem;
  font-size: 1rem;
}

.process-grid p {
  margin-top: 0.3rem;
  color: #c5e6f8;
}

.jobs {
  background: var(--sand-30);
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.job-grid article {
  background: #fff;
  box-shadow: var(--shadow-md);
}

.job-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.job-grid div {
  padding: 0.78rem;
}

.job-grid h3 {
  font-size: 1rem;
}

.job-grid p {
  margin-top: 0.35rem;
  color: var(--ink-650);
}

.reviews {
  background:
    radial-gradient(560px 260px at 6% 16%, rgba(31, 143, 210, 0.17), transparent 73%),
    linear-gradient(180deg, #f3f9fd, #edf6fb);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.review-grid article {
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 0.88rem;
}

.stars {
  color: var(--amber-600);
  font-family: "Sora", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
}

.review-grid p {
  margin-top: 0.48rem;
  color: var(--ink-650);
}

.review-grid span {
  margin-top: 0.58rem;
  display: block;
  font-size: 0.88rem;
  color: var(--ink-500);
}

.about {
  background: #fff;
}

.about-layout,
.book-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 0.85rem;
  align-items: start;
}

.about-copy,
.about-media {
  box-shadow: var(--shadow-md);
}

.about-copy {
  background: linear-gradient(160deg, #ffffff, #f5faff);
  padding: 1rem;
}

.about-copy h2 {
  margin-top: 0.56rem;
}

.about-copy p {
  margin-top: 0.62rem;
  color: var(--ink-650);
  max-width: 52ch;
}

.about-copy ul {
  margin: 0.82rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.about-copy li {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--ink-800);
  font-weight: 600;
}

.about-copy li svg {
  color: var(--blue-600);
}

.about-media {
  margin: 0;
  background: #fff;
}

.about-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: contrast(1.04);
}

.about-media figcaption {
  padding: 0.62rem 0.75rem;
  color: var(--ink-650);
  font-weight: 700;
  border-top: 1px solid var(--line);
}

.faq {
  background: var(--sand-70);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 0.58rem;
}

.faq-item {
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 0.3rem 0.8rem;
}

.faq-item button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--ink-950);
  font-weight: 800;
  padding: 0.62rem 0;
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-600);
  font-size: 1.1rem;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  color: var(--ink-650);
  padding: 0 0 0.62rem;
}

.book {
  color: #e9f7ff;
  background:
    radial-gradient(620px 290px at 100% 6%, rgba(50, 164, 223, 0.25), transparent 72%),
    linear-gradient(170deg, var(--navy-930), var(--navy-900));
}

.book .eyebrow {
  color: #8fd8ff;
}

.book-copy {
  padding: 0.25rem;
}

.book-copy h2 {
  margin-top: 0.55rem;
  max-width: 22ch;
}

.contact-list {
  margin: 0.86rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  color: #d7edf9;
}

.contact-list li strong {
  color: #f2fbff;
}

.contact-list svg {
  color: #76d4ff;
}

.book-form {
  border-color: rgba(170, 219, 245, 0.28);
  background: rgba(13, 56, 82, 0.76);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
}

.book-form label {
  color: #dbf0fc;
}

.book-form input,
.book-form select,
.book-form textarea {
  border-color: rgba(170, 219, 245, 0.4);
  background: #f6fbff;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
  color: #c4e4f6;
  font-size: 0.9rem;
}

.check-row input {
  width: auto;
  margin-top: 0.2rem;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.9rem;
}

.form-status.is-success {
  color: #9ef0d7;
}

.form-status.is-error {
  color: #ffd4c8;
}

.site-footer {
  border-top: 1px solid rgba(12, 36, 52, 0.22);
  padding: 1.15rem 0 clamp(2rem, 5vw, 5rem);
  background: #0c2537;
  color: #daedf9;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
}

.footer-layout strong {
  font-family: "Sora", sans-serif;
}

.footer-layout p {
  margin-top: 0.35rem;
  color: #b8d8eb;
}

.footer-layout a {
  color: #f0fbff;
  font-weight: 700;
}

.mobile-cta {
  position: fixed;
  left: max(0.6rem, env(safe-area-inset-left));
  right: max(0.6rem, env(safe-area-inset-right));
  bottom: max(0.6rem, calc(0.4rem + env(safe-area-inset-bottom)));
  z-index: 250;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.28rem;
  border-radius: 999px;
  border: 1px solid rgba(173, 223, 248, 0.42);
  background: rgba(10, 36, 53, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 36px rgba(5, 18, 29, 0.34);
  padding: 0.32rem;
}

.mobile-cta a {
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  color: #e4f6ff;
  font-weight: 800;
  min-height: var(--tap-target);
  padding: 0.5rem 0.4rem;
  font-size: clamp(0.74rem, 3.2vw, 0.9rem);
}

.mobile-cta a:nth-child(2) {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: #ffffff;
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid #2aa6e4;
  outline-offset: 2px;
}

@media (max-width: 1120px) {
  .hero-layout,
  .coverage-layout,
  .pricing-layout,
  .about-layout,
  .book-layout {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .header-shell {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: var(--tap-target);
    min-height: var(--tap-target);
    border: 1px solid rgba(12, 36, 52, 0.26);
    border-radius: 0.62rem;
    background: #ffffff;
    color: var(--ink-950);
    font-weight: 800;
    padding: 0.44rem 0.7rem;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 4px);
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    display: grid;
    gap: 0.35rem;
    padding: 0.68rem;
    border-radius: 0.9rem;
    border: 1px solid var(--line-strong);
    background: rgba(252, 250, 245, 0.97);
    box-shadow: 0 12px 28px rgba(7, 21, 34, 0.12);
    transform: scaleY(0.9);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .main-nav a {
    min-height: var(--tap-target);
    padding: 0.42rem 0.36rem;
    display: flex;
    align-items: center;
  }

  .header-call {
    justify-self: end;
  }

  .symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-alert-inner {
    min-height: 56px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.4rem 0;
    gap: 0.15rem;
  }

  .top-alert p {
    font-size: 0.84rem;
  }
}

@media (max-width: 760px) {
  .section-head {
    margin-inline: auto;
    text-align: center;
  }

  .section-head p,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats,
  .symptom-grid,
  .services-grid,
  .job-grid,
  .review-grid,
  .process-grid,
  .zone-list {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mobile-cta {
    display: grid;
  }

  .section-head h2,
  .hero-copy h1,
  .hero-lead,
  .dispatch-card h2,
  .zip-check h3,
  .book-copy h2 {
    min-height: 0;
  }

  .i18n-clamp-2 {
    -webkit-line-clamp: 3;
  }

  body {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1160px, calc(100% - 2rem));
  }

  .header-shell {
    grid-template-columns: auto auto;
  }

  .header-call {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
  }

  .section {
    padding: var(--mobile-section) 0;
  }

  .hero-copy,
  .dispatch-card,
  .coverage-main,
  .zip-check,
  .pricing-main,
  .quote-card,
  .about-copy,
  .book-form {
    padding: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 10vw, 2.4rem);
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: clamp(1.7rem, 9.5vw, 2.1rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .hero-stats article {
    padding: 0.5rem 0.4rem;
  }

  .hero-stats p {
    font-size: 1rem;
  }

  .hero-stats span {
    font-size: 0.72rem;
  }

  .mobile-cta a {
    font-size: 0.7rem;
    padding: 0.4rem 0.25rem;
  }

  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .zone-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
