:root {
  --navy: #083070;
  --navy-ink: #05244f;
  --navy-mid: #104080;
  --orange: #f06810;
  --orange-deep: #d45808;
  --sky: #4192ca;
  --foam: #e8f3fb;
  --paper: #f7fafc;
  --ink: #083070;
  --muted: #4d6480;
  --line: rgba(8, 48, 112, 0.12);
  --shadow: 0 18px 50px rgba(8, 48, 112, 0.14);
  --shadow-tight: 0 8px 28px rgba(8, 48, 112, 0.1);
  --header: 5.85rem;
  --logo: 80px;
  --dock: 4.6rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Figtree, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
::selection { background: #f06810; color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, .display {
  font-family: Syne, Figtree, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--orange);
  color: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 20;
}
.skip:focus { top: 1rem; }

.wrap {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: var(--header);
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(1.25);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-tight); }
.home .site-header:not(.is-scrolled) {
  background: rgba(255, 255, 255, 0.78);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  min-width: 0;
}
.brand img,
.foot-logo img {
  width: var(--logo);
  height: var(--logo);
}
.brand-text {
  font-family: Figtree, sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-text small {
  display: block;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav {
  display: none;
  gap: 0.95rem;
  margin-left: auto;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a {
  text-decoration: none;
  position: relative;
  padding: 0.2rem 0;
}
.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav a:hover:after,
.nav a[aria-current="page"]:after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--orange); }
.header-ctas {
  display: none;
  gap: 0.45rem;
  margin-left: 0.15rem;
}
.header-ctas .btn {
  min-height: 42px;
  padding: 0.45rem 0.95rem;
  font-size: 0.92rem;
}
.menu-toggle {
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  position: relative;
  content: "";
}
.menu-toggle span:before { top: -6px; position: absolute; }
.menu-toggle span:after { top: 6px; position: absolute; }
.nav-panel {
  display: none;
  position: absolute;
  inset: 100% 0 auto 0;
  background: var(--foam);
  padding: 0.35rem 0 1rem;
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow);
}
.nav-panel.open { display: grid; gap: 0.15rem; }
.nav-panel-links {
  display: grid;
}
.nav-panel-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 0.82rem 1.2rem;
  border-bottom: 1px solid rgba(8, 48, 112, 0.08);
}
.nav-panel-links a:last-child { border-bottom: 0; }
.nav-cta {
  margin: 0.75rem 1rem 0.15rem;
  padding: 1rem 1.05rem 1.05rem;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
}
.nav-cta-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9cc4e4;
}
.nav-phone {
  margin: 0.2rem 0 0.8rem;
  font-family: Syne, Figtree, sans-serif;
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.nav-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.nav-cta .btn { min-height: 44px; padding: 0.5rem 0.8rem; }
.nav-cta .btn.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.nav-cta .btn.ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn.solid {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(240, 104, 16, 0.28);
}
.btn.solid:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn.navy { background: var(--navy); color: #fff; }
.btn.navy:hover { background: var(--navy-ink); transform: translateY(-1px); }
.btn.ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn.ghost:hover { background: #fff; }
.btn.ghost-light { background: transparent; border-color: #fff; color: #fff; }
.btn.ghost-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn.light { background: #fff; color: var(--navy); }
.btn.light:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.hero {
  position: relative;
  min-height: min(88svh, 820px);
  color: #fff;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy-ink);
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 48, 112, 0.08) 12%, rgba(5, 36, 79, 0.72) 82%),
    linear-gradient(90deg, rgba(8, 48, 112, 0.42) 0%, rgba(8, 48, 112, 0.04) 68%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto calc(2.2rem + var(--dock));
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd4b0;
  margin: 0 0 0.85rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 7.4vw, 5.1rem);
  max-width: 15ch;
  letter-spacing: -0.045em;
  text-shadow: 0 10px 28px rgba(5, 36, 79, 0.28);
}
.hero p { max-width: 34rem; font-size: 1.08rem; color: #e8f3fb; margin: 0.85rem 0 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.3rem; }

.proof {
  background: var(--navy-ink);
  color: #d7deea;
  padding: 0.88rem 0;
  font-size: 0.92rem;
  font-weight: 600;
}
.proof .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
  justify-content: space-between;
  align-items: center;
}
.proof b { color: #fff; }
.proof a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.35); }

.google-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 700;
}
.google-rating strong {
  color: var(--navy);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.google-rating .stars {
  color: #e3a000;
  letter-spacing: 2px;
  font-size: 1rem;
}
.reviews {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.7rem;
}
.review {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 18px;
  padding: 1.25rem 1.2rem 1.3rem;
  box-shadow: var(--shadow-tight);
}
.review .stars {
  color: #e3a000;
  letter-spacing: 2px;
  font-size: 1rem;
}
.review p {
  font-size: 1.05rem;
  margin: 0.7rem 0 0.85rem;
  color: var(--navy);
}
.review cite {
  display: block;
  margin-top: auto;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--muted);
}
.review cite span {
  display: block;
  font-weight: 600;
  margin-top: 0.15rem;
}

.section { padding: 4.4rem 0; }
.section.tight { padding: 3.1rem 0; }
.section.foam { background: var(--foam); }
.section.navy { background: var(--navy-ink); color: #fff; }
.eyebrow {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin: 0 0 0.55rem;
}
.section h2 { font-size: clamp(2rem, 4.8vw, 3.35rem); max-width: 16ch; }
.page-title { font-size: clamp(2.4rem, 6.4vw, 4.2rem); max-width: 16ch; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 40rem; margin: 0.8rem 0 0; }
.section.navy .lead { color: #c5d0e0; }

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  min-height: 300px;
  box-shadow: var(--shadow-tight);
}

.services {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.service {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.05rem 1.1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
a.service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-tight);
  border-color: rgba(240, 104, 16, 0.35);
}
.service strong { display: block; font-size: 1.1rem; color: var(--navy); }
.service span { color: var(--muted); font-size: 0.94rem; }
.num {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
}

.gallery {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.shot {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 240px;
  cursor: zoom-in;
  margin: 0;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  transition: transform 0.55s var(--ease);
}
.shot:hover img { transform: scale(1.04); }
.shot figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  background: rgba(8, 48, 112, 0.9);
  color: #fff;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
  max-width: 680px;
}
.compare figure { margin: 0; }
.compare img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
}
.compare figcaption { margin-top: 0.5rem; font-weight: 700; color: var(--navy); }

.work-lead {
  display: grid;
  gap: 1.8rem;
  align-items: end;
}
.job-video { margin: 0; max-width: 380px; }
.job-video video {
  width: 100%;
  border-radius: 22px;
  background: #05244f;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.job-video figcaption {
  margin-top: 0.6rem;
  font-weight: 600;
  color: var(--muted);
}

.steps { display: grid; gap: 0.9rem; margin-top: 1.7rem; }
.step {
  background: #fff;
  color: var(--navy);
  border-radius: 18px;
  padding: 1.2rem 1.15rem 1.25rem;
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow-tight);
}
.step strong { display: block; font-size: 1.1rem; }
.step p { color: var(--muted); margin: 0.4rem 0 0; }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  margin-right: 0.4rem;
}

.areas { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.46rem 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.county-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.county {
  background: #fff;
  border-radius: 20px;
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--line);
}
.county strong { display: block; font-size: 1.12rem; margin-bottom: 0.4rem; }
.county p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.form {
  display: grid;
  gap: 0.9rem;
  background: #fff;
  padding: 1.3rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  gap: 0.9rem;
}
label { display: grid; gap: 0.4rem; font-weight: 700; font-size: 0.92rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d6dbe3;
  border-radius: 12px;
  padding: 0.88rem 0.95rem;
  background: #fff;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 104, 16, 0.15);
}
textarea { min-height: 120px; resize: vertical; }
.file {
  border: 1.5px dashed #b7c4d4;
  border-radius: 16px;
  padding: 1.1rem;
  background: var(--foam);
}
.file input { border: 0; padding: 0.35rem 0 0; background: transparent; box-shadow: none; }
.form-note { color: var(--muted); font-size: 0.9rem; font-weight: 500; margin: 0; }
.checklist {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 600;
}
.checklist li:before {
  content: "→ ";
  color: var(--orange);
  font-weight: 800;
}

.closer {
  background:
    linear-gradient(180deg, rgba(5, 36, 79, 0.34), rgba(5, 36, 79, 0.82)),
    url("/img/attic-blown-hires.jpg") center 58% / cover no-repeat;
  color: #fff;
  padding: 4.3rem 0;
}
.closer h2 { font-size: clamp(2.15rem, 5.6vw, 3.6rem); max-width: 14ch; }
.closer p { max-width: 34rem; color: #e8f3fb; margin: 0.8rem 0 0; }
.closer .eyebrow { color: #ffd4b0; }
.phone-xl {
  display: block;
  margin-top: 1.05rem;
  font-family: Syne, Figtree, sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
}
.phone-xl.ink { color: var(--navy); }

.thank {
  min-height: calc(100svh - var(--header) - 8rem);
  display: grid;
  align-content: center;
  padding: 3rem 0 6rem;
}
.thank h1 { font-size: clamp(2.3rem, 6.4vw, 4rem); }

.site-footer {
  background: var(--navy-ink);
  color: #d7deea;
  padding: 2.7rem 0 7.2rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: #ffd4b0; }
.foot-grid { display: grid; gap: 1.8rem; align-items: start; }
.foot-ident {
  display: grid;
  grid-template-columns: var(--logo) minmax(0, 1fr);
  gap: 0 1.05rem;
  align-items: center;
}
.foot-logo {
  display: grid;
  place-items: center;
  margin: 0;
  line-height: 0;
}
.site-footer strong { color: #fff; display: block; margin-bottom: 0.35rem; }
.site-footer p { margin: 0.35rem 0 0; }
.tiny { font-size: 0.85rem; color: #9aa6b8; }
.foot-phone {
  font-size: 1.3rem;
  font-weight: 800;
}
.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: #9aa6b8;
}
.legal p { margin: 0; }
.legal a { color: #c5d0e0; }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--navy-ink);
  padding: 0.45rem 0.45rem calc(0.45rem + env(safe-area-inset-bottom));
  gap: 0.4rem;
}
.dock a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 0.78rem 0.3rem;
  border-radius: 12px;
}
.dock .text { background: var(--navy-mid); }
.dock .call { background: var(--orange); }
.dock .est { background: #fff; color: var(--navy); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(5, 36, 79, 0.92);
  display: none;
  place-items: center;
  padding: 1.2rem;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88svh;
  width: auto;
  height: auto;
  border-radius: 12px;
}
.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: #fff;
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 800;
  cursor: pointer;
}

@media (min-width: 860px) {
  :root {
    --header: 6.35rem;
    --logo: 92px;
  }
  .nav, .header-ctas { display: flex; }
  .menu-toggle, .nav-panel, .dock { display: none; }
  .hero {
    min-height: min(78vh, 760px);
  }
  .hero-copy { margin-bottom: 2.6rem; }
  .site-footer { padding-bottom: 2.8rem; }
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
  .split.reverse { grid-template-columns: 0.95fr 1.05fr; }
  .split.reverse .copy { order: 2; }
  .services { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1.15fr 0.85fr; }
  .gallery .wide { grid-column: 1 / -1; min-height: 420px; }
  .gallery .wide img { min-height: 420px; }
  .steps { grid-template-columns: 1fr 1fr 1fr; }
  .reviews { grid-template-columns: 1fr 1fr 1fr; align-items: stretch; }
  .foot-grid { grid-template-columns: minmax(18rem, 1.7fr) 1fr 1fr; gap: 2.2rem; }
  .form { padding: 1.7rem; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .compare img { max-height: 300px; }
  .work-lead { grid-template-columns: 1fr 340px; }
  .county-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 860px) and (max-width: 1099px) {
  .brand-text { display: none; }
  .nav { gap: 0.8rem; font-size: 0.9rem; }
  .header-ctas .phone-label { display: none; }
}

@media (min-width: 1100px) {
  .services { grid-template-columns: 1fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .shot:hover img { transform: none; }
}
