:root {
  --navy: #101e35;
  --ink: #17243a;
  --silver: #dce2e9;
  --blue: #3568c0;
  --muted: #526075;
  --line: #d7dfe9;
  font:
    18px/1.7 Manrope,
    Arial,
    sans-serif;
  color: var(--ink);
  background: #f6f8fb;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button,
summary {
  cursor: pointer;
}
a,
button,
input,
select,
textarea,
summary {
  outline-offset: 5px;
}
:focus-visible {
  outline: 3px solid #3568c0;
}
p {
  margin: 0 0 20px;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}
h1 {
  font-size: clamp(2.7rem, 5.5vw, 5rem);
}
h1 span {
  color: #bccbe1;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}
h3 {
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.shell {
  width: calc(100% - 64px);
  max-width: 1220px;
  margin: auto;
}
header {
  position: sticky;
  top: 0;
  background: #ffffffed;
  backdrop-filter: blur(16px);
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
}
.signature-logo img {
  width: 230px;
  height: 64px;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
  font-weight: 700;
}
nav a {
  text-decoration: none;
}
nav a:hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  background: var(--navy);
  color: white;
  border: 1px solid var(--navy);
  border-radius: 7px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #101e3528;
  color: white;
}
.button.light {
  background: white;
  color: var(--navy);
  border-color: white;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  max-width: 1420px;
  margin: 28px auto 0;
  width: calc(100% - 40px);
  background: var(--navy);
  color: white;
  overflow: hidden;
  border-radius: 18px;
}
.hero-copy {
  padding: 65px 48px;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 25px;
  color: #dce2e9;
}
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero .eyebrow,
.experience .eyebrow,
.contact .eyebrow {
  color: #c2d4f4;
}
.actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin: 25px 0;
}
.text-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding: 8px 0;
}
.hero figure {
  margin: 28px 28px 28px 0;
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
}
figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 1s;
}
figure:hover img {
  transform: scale(1.035);
}
figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: #101e35e8;
  color: #e7edf6;
  font-size: 0.72rem;
}
.small {
  font-size: 0.83rem;
  color: var(--muted);
}
.strip {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1220px;
  margin: auto;
  padding: 25px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
}
.section {
  padding: 76px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}
.section-heading > p {
  max-width: 470px;
  color: var(--muted);
}
.notice {
  border-left: 3px solid var(--blue);
  background: #eaf0f8;
  padding: 20px 24px;
  font-size: 0.9rem;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 15px;
}
.filters button,
.secondary {
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid #9dabc0;
  border-radius: 6px;
  background: white;
  color: var(--navy);
  font-size: 0.85rem;
}
.filters button[aria-pressed="true"] {
  background: var(--navy);
  color: white;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.service {
  padding: 30px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px #101e3510;
}
.card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 14px;
}
.card-top .eyebrow {
  margin: 0;
}
.service .benefit {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 20px 0;
}
.service > p {
  font-size: 1rem;
  color: #48576b;
}
.price {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
  margin: 20px 0 8px;
  color: var(--navy);
}
.timing {
  font-size: 0.88rem !important;
  color: #315a95 !important;
}
.service details {
  margin-top: auto;
}
.service details p {
  margin: 15px 0;
  font-size: 0.9rem;
}
.service .text-link {
  align-self: flex-start;
  margin-top: 18px;
}
details {
  border-top: 1px solid var(--line);
}
summary {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 18px 0;
}
.residential-takeoff {
  grid-column: 1/-1;
  display: block;
  background: #edf2f8;
  border-left: 4px solid var(--blue);
}
.residential-takeoff > p,
.residential-takeoff details p {
  max-width: 940px;
}
.residential-takeoff .scope-line {
  color: #315a95;
  font-weight: 700;
  margin: 16px 0;
}
.takeoff-note {
  padding: 28px;
  border: 1px solid var(--line);
  margin-top: 30px;
  border-radius: 12px;
}
.takeoff-note p {
  margin: 15px 0 0;
  color: var(--muted);
}
.bundle-section {
  padding-top: 10px;
}
.bundle-box {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--silver);
  border-radius: 16px;
  overflow: hidden;
}
.bundle-box > div {
  padding: 38px;
}
.bundle-box h3 {
  font-size: 1.65rem;
  margin: 15px 0;
}
.bundle-box ul {
  padding-left: 22px;
}
.bundle-price {
  background: var(--navy);
  color: white;
}
.bundle-price .small {
  color: #c6d2e4;
}
.bundle-price .price {
  color: white;
  font-size: 3.2rem;
}
.bundle-price .button {
  background: white;
  color: var(--navy);
  margin-bottom: 22px;
}
.saving {
  font-weight: 700;
  color: #c2d4f4;
}
.upgrade {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 25px 0;
  font-size: 1rem;
}
.upgrade input {
  width: 22px;
  min-height: 22px;
  height: 22px;
  accent-color: #3568c0;
  flex-shrink: 0;
}
.experience {
  background: var(--navy);
  color: white;
  padding: 75px 0;
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.experience .lead {
  font-size: 1.25rem;
}
.experience .small {
  color: #b8c6da;
  margin: 22px 0 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 45px 0 60px;
}
.steps article {
  border-top: 2px solid var(--silver);
  padding-top: 22px;
}
.steps b {
  font-size: 2.5rem;
  font-weight: 500;
  color: #6d809c;
}
.steps h3 {
  margin: 12px 0;
}
.steps p {
  font-size: 1rem;
  color: var(--muted);
}
.faq {
  max-width: 850px;
}
.faq h3 {
  margin-bottom: 20px;
}
.faq p {
  color: var(--muted);
}
.contact {
  background: #e8edf4;
  padding: 75px 0;
}
.contact .eyebrow {
  color: #3568c0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 65px;
}
.contact h2 {
  margin-bottom: 25px;
}
.contact a {
  overflow-wrap: anywhere;
}
.contact .small {
  margin-top: 24px;
}
.contact .button.light {
  background: var(--navy);
  color: white;
}
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}
input,
select,
textarea {
  width: 100%;
  background: white;
  color: var(--ink);
  border: 1px solid #8a9bb1;
  padding: 12px;
  border-radius: 6px;
  min-height: 48px;
}
label:has(textarea),
form > p,
form .actions {
  grid-column: 1/-1;
}
form .actions {
  margin: 0;
}
.brand {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-decoration: none;
}
.brand span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  margin-top: 8px;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 40px 0 85px;
}
footer p {
  margin: 0;
}
.motion-toggle {
  position: fixed;
  bottom: 15px;
  right: 15px;
  padding: 10px 16px;
  min-height: 44px;
  border: 1px solid #64748b;
  border-radius: 30px;
  background: white;
  color: var(--navy);
  font-size: 0.8rem;
  z-index: 30;
}
.skip {
  position: absolute;
  top: -100px;
  z-index: 50;
  background: white;
  color: var(--navy);
  padding: 15px;
}
.skip:focus {
  top: 10px;
}
#menu {
  display: none;
}
[hidden] {
  display: none !important;
}
section[id] {
  scroll-margin-top: 110px;
}
.hero-copy,
.contact-grid > div,
.section-heading > div {
  min-width: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .motion-on .reveal {
    animation: arrival 0.65s ease both;
  }
  .motion-on .hero {
    background-image: linear-gradient(115deg, #101e35, #203b60, #101e35);
    background-size: 200% 200%;
    animation: ambient 16s ease infinite alternate;
  }
  .motion-on details[open] > p {
    animation: arrival 0.3s ease both;
  }
  @keyframes arrival {
    from {
      opacity: 0.3;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes ambient {
    from {
      background-position: 0 50%;
    }
    to {
      background-position: 100% 50%;
    }
  }
}
body.motion-paused *,
body.motion-paused *::before {
  animation: none !important;
  transition: none !important;
}
html:has(body.motion-paused) {
  scroll-behavior: auto;
}
@media (max-width: 1050px) {
  nav {
    gap: 14px;
    font-size: 0.8rem;
  }
  .signature-logo img {
    width: 200px;
  }
  .hero-copy {
    padding: 45px 30px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid,
  .experience-grid {
    gap: 35px;
  }
}
@media (max-width: 850px) {
  #menu {
    display: block;
    background: white;
    border: 1px solid var(--navy);
    padding: 10px 15px;
  }
  .nav {
    position: relative;
  }
  nav {
    display: none;
    position: absolute;
    top: 88px;
    left: -20px;
    right: -20px;
    background: white;
    padding: 25px;
    flex-direction: column;
    align-items: stretch;
    font-size: 1rem;
    box-shadow: 0 15px 25px #101e3520;
  }
  nav.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero figure {
    margin: 0 24px 24px;
    min-height: 330px;
  }
  .section-heading,
  .contact-grid,
  .experience-grid,
  .bundle-box {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .hero-copy {
    padding: 40px 28px;
  }
  .hero {
    width: calc(100% - 24px);
  }
  .section {
    padding: 55px 0;
  }
  .bundle-section {
    padding-top: 0;
  }
  .service,
  .bundle-box > div {
    padding: 26px;
  }
  footer {
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  .steps,
  form {
    grid-template-columns: 1fr;
  }
  form label {
    grid-column: 1/-1;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero figure {
    min-height: 270px;
  }
  .strip {
    font-size: 0.8rem;
  }
  .signature-logo img {
    width: 195px;
  }
  .hero-copy {
    padding: 35px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Launch offer and quote clarity */
.bundle-section {
  padding-top: 60px;
  padding-bottom: 20px;
}
.quote-summary {
  grid-column: 1/-1;
  border-left: 3px solid var(--blue);
  background: #fff;
  padding: 18px 20px;
  border-radius: 5px;
}
.quote-summary p {
  font-size: 0.9rem;
  margin: 8px 0 0;
  color: var(--muted);
}
.quote-summary strong {
  font-size: 1rem;
}
label .small {
  margin: 0 !important;
  font-size: 0.78rem;
}
#form-status {
  margin: 0;
  overflow-wrap: anywhere;
}
.service[hidden] {
  display: none !important;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.service h3,
.bundle-box h3 {
  overflow-wrap: break-word;
}
.bundle-price .price {
  font-size: clamp(2.5rem, 5vw, 3.2rem);
}
@media (max-width: 850px) {
  .bundle-section {
    padding-top: 35px;
  }
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.button:disabled {
  cursor: wait;
  opacity: 0.7;
}
#form-status:not(:empty) {
  padding: 1rem;
  border-left: 3px solid #92b7ff;
  background: rgba(255, 255, 255, 0.07);
}
#email-fallback[hidden] {
  display: none;
}
#form-status:focus-visible {
  outline: 2px solid #92b7ff;
  outline-offset: 4px;
}

/* Reputation-led brand story */
.hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5.6vw, 5.6rem);
  letter-spacing: -0.055em;
}
.hero h1 span {
  color: #c2d4f4;
}
.hero-media {
  isolation: isolate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, #101e35c9 100%);
  pointer-events: none;
}
.media-mark {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 66px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.media-mark i {
  height: 1px;
  flex: 1;
  background: #ffffff8f;
}
.hero-media figcaption {
  z-index: 3;
}
.proof-band {
  margin: 48px 0 0;
  background: #eef2f7;
  border-block: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr 1fr;
  gap: 44px;
  align-items: start;
  padding-block: 52px;
}
.proof-grid .eyebrow {
  margin: 6px 0;
}
.proof-grid h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.65rem);
  letter-spacing: -0.035em;
}
.proof-grid > div > p {
  margin-top: 18px;
  color: var(--muted);
}
.proof-grid blockquote {
  margin: 0;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--blue);
}
.proof-grid blockquote p {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
}
.proof-grid cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.5;
}
.service,
.bundle-box,
.hero,
.proof-grid blockquote {
  will-change: transform;
}
.motion-on .hero-media img {
  animation: heroDrift 14s ease-in-out infinite alternate;
}
.motion-on .media-mark i {
  transform-origin: left;
  animation: lineGrow 1.4s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.motion-on .proof-grid.reveal blockquote {
  animation: arrival 0.65s 0.12s ease both;
}
@keyframes heroDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, 0.8%, 0);
  }
}
@keyframes lineGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-grid > .eyebrow {
    grid-column: 1 / -1;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 8vw, 4.4rem);
  }
}
@media (max-width: 650px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 38px;
  }
  .proof-grid > .eyebrow {
    grid-column: auto;
  }
  .proof-grid blockquote {
    padding: 18px 0 18px 20px;
  }
  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    letter-spacing: -0.045em;
  }
  .media-mark {
    bottom: 72px;
  }
  .proof-band {
    margin-top: 28px;
  }
}
