:root {
  color-scheme: light;
  --paper: #f8f5ec;
  --paper-deep: #eee8dc;
  --navy: #102b4c;
  --navy-soft: #294766;
  --red: #c82b36;
  --ink: #172a3b;
  --muted: #536575;
  --rule: #cfc7b8;
  --white: #fffdf8;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Calibri, Arial, sans-serif;
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  background: var(--paper);
  color: var(--ink);
  accent-color: var(--red);
  scrollbar-color: var(--navy-soft) var(--paper-deep);
  scrollbar-width: thin;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1.55; }
::selection { color: var(--white); background: var(--navy); }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--red); }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.prototype-notice { display: flex; justify-content: center; gap: 10px; padding: 7px 20px; background: var(--navy); color: var(--white); text-align: center; font-size: 12px; letter-spacing: .02em; }
.prototype-notice span:first-child { color: #ffd8d8; font-weight: 700; text-transform: uppercase; }
.site-header { min-height: 82px; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 32px; max-width: 1440px; margin: 0 auto; padding: 14px 5vw; border-bottom: 1px solid var(--rule); }
.brand { display: inline-flex; align-items: center; width: max-content; }
.brand img { display: block; width: 142px; height: auto; }
.site-header nav, .header-actions { display: flex; align-items: center; }
.site-header nav { justify-content: center; gap: clamp(18px, 3vw, 48px); }
.site-header nav a, .phone-link { font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.header-actions { gap: 22px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 54px; padding: 14px 19px; border: 1px solid var(--red); background: var(--red); color: var(--white); font-weight: 700; line-height: 1.25; text-decoration: none; transition: background-color .18s ease, color .18s ease, border-color .18s ease; }
.button:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.button span { font-size: 18px; }
.button-small { min-height: 42px; padding: 10px 13px; gap: 10px; font-size: 13px; }
.section-wrap { width: min(1260px, calc(100% - 10vw)); margin-inline: auto; }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); gap: clamp(44px, 7vw, 110px); align-items: center; padding-block: clamp(72px, 9vw, 124px) 96px; }
h1, h2, h3, p, figure { margin-top: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.08; }
h1 { max-width: 720px; margin-bottom: 26px; font-size: clamp(52px, 6.4vw, 86px); font-weight: 700; letter-spacing: -.035em; }
h1 em { color: var(--red); font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
.hero-intro { max-width: 590px; margin-bottom: 30px; color: var(--navy-soft); font-size: clamp(18px, 1.6vw, 21px); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-bottom: 44px; }
.text-action { font-weight: 700; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 5px; }
.proof-line { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 13px; }
.proof-line a { color: var(--navy); font-weight: 700; }
.proof-divider { width: 1px; height: 18px; background: var(--rule); }
.estimate-panel { position: relative; padding: 30px 30px 24px; background: var(--white); border: 1px solid var(--rule); box-shadow: 0 12px 38px rgb(16 43 76 / 9%); scroll-margin-top: 106px; }
.estimate-panel::before { position: absolute; top: -1px; left: -1px; width: 70px; height: 4px; content: ""; background: var(--red); }
.panel-heading { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; margin-bottom: 21px; }
.panel-heading h2 { margin-bottom: 0; font-size: 25px; letter-spacing: -.02em; }
.panel-heading p { max-width: 174px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.35; }
.field-row { display: grid; gap: 7px; margin-bottom: 15px; }
.field-row-two { grid-template-columns: 1fr 1.15fr; gap: 12px; }
label { color: var(--navy); font-size: 13px; font-weight: 700; }
label span { color: var(--muted); font-weight: 400; }
input, select, textarea { width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid #aeb7bf; border-radius: 0; background: #fff; color: var(--ink); }
input::placeholder, textarea::placeholder { color: #617282; opacity: 1; }
textarea { min-height: 63px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--navy); outline: 2px solid var(--navy); outline-offset: 1px; }
.form-submit { width: 100%; margin-top: 2px; cursor: pointer; }
.form-feedback { display: none; margin: 12px 0 0; color: var(--navy); font-weight: 700; }
.form-feedback.is-visible { display: block; }
.form-privacy { margin: 11px 0 0; color: var(--muted); font-size: 11px; }
.photo-band { position: relative; width: min(1440px, 100%); height: clamp(270px, 40vw, 540px); margin: 0 auto; overflow: hidden; background: var(--navy); }
.photo-band::after { position: absolute; inset: 52% 0 0; content: ""; background: linear-gradient(transparent, rgb(16 43 76 / 75%)); pointer-events: none; }
.photo-band img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.photo-caption { position: absolute; z-index: 1; right: max(5vw, calc((100vw - 1260px) / 2)); bottom: 24px; left: max(5vw, calc((100vw - 1260px) / 2)); display: flex; justify-content: space-between; align-items: end; gap: 20px; color: var(--white); }
.photo-caption span:first-child { font-family: var(--serif); font-size: clamp(22px, 3vw, 36px); }
.photo-caption span:last-child { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.trust-ribbon { display: flex; flex-wrap: wrap; justify-content: space-evenly; gap: 16px; padding: 24px 5vw; background: var(--navy); color: var(--white); font-size: 13px; font-weight: 700; }
.trust-ribbon span { display: inline-flex; align-items: center; gap: 11px; }
.trust-ribbon span::before { width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--red); }
.approach { padding-block: clamp(78px, 10vw, 142px); }
.section-heading { display: grid; grid-template-columns: 1fr .6fr; gap: 10vw; align-items: end; margin-bottom: 64px; }
.section-heading h2, .work-heading h2, .commercial-copy h2, .closing h2 { max-width: 680px; margin-bottom: 0; font-size: clamp(38px, 5vw, 62px); letter-spacing: -.035em; }
.section-heading p { max-width: 360px; margin: 0; color: var(--muted); font-size: 17px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px; }
.step { padding-top: 19px; border-top: 1px solid var(--navy); }
.step-rule { display: block; width: 34px; height: 4px; margin-bottom: 29px; background: var(--red); }
.step h3 { margin-bottom: 14px; font-size: 23px; }
.step p { max-width: 33ch; margin-bottom: 0; color: var(--muted); }
.work-section { padding-block: clamp(64px, 8vw, 110px); background: var(--paper-deep); }
.work-heading { display: flex; justify-content: space-between; align-items: end; gap: 26px; margin-bottom: 42px; }
.work-heading h2 { max-width: 580px; }
.work-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; align-items: stretch; gap: 18px; }
.work-grid figure { margin: 0; }
.work-grid img { display: block; width: 100%; height: clamp(205px, 24vw, 340px); object-fit: cover; }
.work-grid .work-large img { height: clamp(280px, 34vw, 460px); }
.work-grid figcaption { padding-top: 11px; color: var(--navy); font-size: 13px; font-weight: 700; }
.image-note { margin: 28px 0 0; color: var(--muted); font-size: 12px; }
.commercial-section { display: grid; grid-template-columns: 1fr .6fr; gap: 10vw; align-items: center; padding-block: clamp(80px, 11vw, 150px); }
.commercial-copy h2 { margin-bottom: 20px; }
.commercial-copy p { max-width: 600px; margin-bottom: 26px; color: var(--muted); font-size: 17px; }
.button-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.button-outline:hover { background: var(--navy); color: var(--white); }
.commercial-mark { padding-block: 35px; border-block: 1px solid var(--rule); color: var(--navy); text-align: right; font-size: clamp(20px, 3vw, 32px); font-weight: 700; letter-spacing: .13em; }
.commercial-mark span { color: var(--red); }
.closing { padding-block: 72px 90px; border-top: 1px solid var(--rule); }
.closing h2 { margin-bottom: 15px; }
.closing p { max-width: 610px; margin-bottom: 23px; color: var(--muted); font-size: 17px; }
.site-footer { display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 26px; padding: 31px 5vw 72px; background: var(--navy); color: var(--white); }
.site-footer .brand img { filter: brightness(0) invert(1); }
.site-footer p { margin: 0; color: #e2e8ed; font-size: 13px; }
.site-footer div { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; }
.site-footer small { grid-column: 2 / -1; color: #d1dbe5; font-size: 11px; }
.mobile-cta { display: none; }
@media (max-width: 960px) {
  .site-header { grid-template-columns: 150px 1fr; gap: 20px; }
  .site-header nav { justify-content: end; }
  .header-actions { grid-column: 1 / -1; justify-content: space-between; }
  .hero { grid-template-columns: 1fr 1fr; gap: 30px; }
  .panel-heading { display: block; }
  .panel-heading p { max-width: none; margin-top: 8px; }
  .estimate-panel { padding: 24px 21px; }
  .section-heading { gap: 5vw; }
  .site-footer { grid-template-columns: 140px 1fr; }
  .site-footer div { grid-column: 1 / -1; }
  .site-footer small { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  body { font-size: 15px; }
  .prototype-notice { display: block; padding: 7px 12px; font-size: 11px; }
  .prototype-notice span { display: block; }
  .site-header { grid-template-columns: 1fr auto; min-height: 70px; padding: 12px 20px; }
  .brand img { width: 118px; }
  .site-header nav { grid-column: 1 / -1; grid-row: 2; justify-content: start; overflow-x: auto; gap: 23px; padding: 3px 0 7px; }
  .site-header nav a { font-size: 12px; }
  .header-actions { display: contents; }
  .header-actions .phone-link { grid-column: 2; grid-row: 1; font-size: 12px; }
  .header-actions .button { display: none; }
  .section-wrap { width: calc(100% - 40px); }
  .hero { grid-template-columns: 1fr; gap: 32px; padding-block: 53px 61px; }
  h1 { margin-bottom: 19px; font-size: clamp(47px, 13vw, 66px); }
  .hero-intro { margin-bottom: 23px; font-size: 17px; }
  .hero-actions { gap: 16px; margin-bottom: 29px; }
  .proof-line { gap: 10px; font-size: 11px; }
  .estimate-panel { padding: 22px 18px 20px; }
  .panel-heading h2 { font-size: 23px; }
  .field-row-two { grid-template-columns: 1fr 1fr; }
  .photo-band { height: 290px; }
  .photo-band img { object-position: 45% center; }
  .photo-caption { right: 20px; bottom: 17px; left: 20px; display: block; }
  .photo-caption span:first-child { display: block; font-size: 25px; }
  .photo-caption span:last-child { display: block; margin-top: 5px; }
  .trust-ribbon { justify-content: start; gap: 11px 22px; padding: 19px 20px; font-size: 12px; }
  .approach { padding-block: 73px; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; margin-bottom: 38px; }
  .section-heading h2, .work-heading h2, .commercial-copy h2, .closing h2 { font-size: 38px; }
  .section-heading p { font-size: 15px; }
  .steps { grid-template-columns: 1fr; gap: 27px; }
  .step { display: grid; grid-template-columns: 38px 1fr; column-gap: 13px; padding-top: 15px; }
  .step-rule { grid-row: 1 / 3; margin: 4px 0 0; }
  .step h3 { margin-bottom: 9px; font-size: 20px; }
  .step p { grid-column: 2; max-width: none; }
  .work-section { padding-block: 62px; }
  .work-heading { display: block; margin-bottom: 28px; }
  .work-heading .text-action { display: inline-block; margin-top: 15px; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .work-grid .work-large { grid-column: 1 / -1; }
  .work-grid img, .work-grid .work-large img { height: 210px; }
  .work-grid .work-large img { height: 270px; }
  .commercial-section { grid-template-columns: 1fr; gap: 34px; padding-block: 76px; }
  .commercial-copy p, .closing p { font-size: 15px; }
  .commercial-mark { text-align: left; font-size: 22px; }
  .closing { padding-block: 62px 76px; }
  .site-footer { grid-template-columns: 1fr; gap: 16px; padding: 28px 20px 95px; }
  .site-footer p, .site-footer div, .site-footer small { grid-column: auto; }
  .site-footer div { display: grid; gap: 12px; }
  .mobile-cta { position: fixed; z-index: 5; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 78px; gap: 1px; padding-top: 1px; background: var(--navy); box-shadow: 0 -5px 20px rgb(16 43 76 / 16%); }
  .mobile-cta a { display: flex; justify-content: center; align-items: center; min-height: 56px; background: var(--red); color: white; font-size: 14px; font-weight: 700; text-decoration: none; }
  .mobile-cta a:last-child { background: var(--navy); }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }
