:root {
  --ink: #14262e;
  --deep: #0b3a4a;
  --tide: #14627a;
  --tide-dark: #0d4c60;
  --foam: #e7f3f6;
  --paper: #f3efe6;
  --sand: #e4dccf;
  --white: #fffcf8;
  --muted: #4c616a;
  --line: #d7dfd8;
  --header: 76px;
  --wrap: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Figtree", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; border: 0; }
a { color: var(--tide-dark); }
h1, h2, h3, .contact-phone a, .review-score, .job-index {
  font-family: Syne, "Arial Narrow", sans-serif;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
h1, h2, h3 { font-weight: 700; }
p { margin: 0 0 0.9rem; }
:focus-visible { outline: 2px solid #e2b33a; outline-offset: 3px; }
[id] { scroll-margin-top: 92px; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--white);
  color: var(--deep);
  padding: 8px 12px;
  z-index: 80;
}
.skip:focus { top: 8px; }

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--deep);
  color: var(--foam);
  height: var(--header);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(8, 24, 32, 0.28); }
.header-row {
  height: var(--header);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f4fbfc;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border: 2px solid #d7eef3;
  position: relative;
  flex: 0 0 auto;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: #8ecbda;
}
.brand-mark::before { left: 4px; right: 4px; top: 15px; height: 1.5px; }
.brand-mark::after { top: 4px; bottom: 4px; left: 15px; width: 1.5px; }
.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-name {
  display: block;
  font-family: Figtree, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f4fbfc;
  white-space: nowrap;
}
.brand-trade {
  display: block;
  margin-top: 2px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7d4de;
  font-family: Figtree, sans-serif;
  font-weight: 600;
}
.nav-wrap { margin-left: auto; }
.site-nav {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-nav a {
  color: #e7f3f6;
  text-decoration: none;
  font-weight: 650;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 9px;
}
.site-nav a:hover,
.site-nav a[aria-current="true"],
.site-nav a[aria-current="page"] {
  color: #fff;
  box-shadow: inset 0 -2px 0 #8ecbda;
}
.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #f4fbfc;
  border: 1px solid rgba(231, 243, 246, 0.35);
  min-height: 42px;
  padding: 0 12px;
  font: 600 0.9rem Figtree, sans-serif;
  cursor: pointer;
}
.nav-toggle-bars {
  width: 16px;
  height: 10px;
  border-top: 2px solid #f4fbfc;
  border-bottom: 2px solid #f4fbfc;
  position: relative;
}
.nav-toggle-bars::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  height: 2px;
  background: #f4fbfc;
}
.header-call {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--foam);
  color: var(--deep);
  text-decoration: none;
  min-height: 46px;
  padding: 6px 14px;
  line-height: 1.1;
  flex: 0 0 auto;
}
.header-call:hover { background: #fff; }
.header-call-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.header-call-num { font-weight: 750; font-weight: 700; font-size: 0.98rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1.5px solid transparent;
}
.btn-solid { background: var(--tide); color: #fff; }
.btn-solid:hover { background: var(--tide-dark); }
.btn-line { background: transparent; border-color: currentColor; color: inherit; }
.btn-line:hover { background: var(--deep); color: #fff; border-color: var(--deep); }

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tide);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  background: #1c3038;
}
.hero-photo {
  position: absolute;
  inset: 0 0 0 38%;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 50%;
}
.hero-panel {
  position: relative;
  z-index: 1;
  margin: 48px 0 56px max(24px, calc((100% - var(--wrap)) / 2));
  width: min(540px, calc(100% - 48px));
  background: var(--paper);
  padding: 36px 34px 30px;
  box-shadow: 14px 18px 0 rgba(11, 58, 74, 0.18);
}
.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 4.6vw, 4.15rem);
  max-width: 16ch;
}
.lede { font-size: 1.08rem; color: #24383f; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero .btn-line { color: var(--deep); }

.highlights { padding: 28px 0 8px; background: var(--paper); }
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 12px;
}
.highlight {
  position: relative;
  overflow: hidden;
  display: block;
  color: #fff;
  text-decoration: none;
  background: #16323c;
}
.highlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.highlight img.pos-roof,
.job-photo img.pos-roof { object-position: center 28%; }
.highlight img.pos-pole { object-position: 36% 64%; }
.job-photo img.pos-pole { object-position: 28% 74%; }
.highlight img.pos-house-pole { object-position: center 48%; }
.highlight img.pos-glass-pole { object-position: center 42%; }
.highlight img.pos-eaves,
.shot img.pos-eaves { object-position: center 30%; }
.highlight img.pos-doors { object-position: center 38%; }
.highlight img.pos-arches { object-position: 55% 12%; }
.highlight img.pos-brick { object-position: 72% 38%; }
.highlight:hover img { transform: scale(1.045); }
.highlight span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(8, 22, 28, 0.78));
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 22px;
  margin: 22px auto 0;
  width: min(var(--wrap), calc(100% - 48px));
  background: var(--deep);
  color: var(--foam);
  text-decoration: none;
  padding: 18px 22px;
}
.trust:hover { background: #082f3c; }
.trust-score {
  font-family: Syne, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
}
.trust-note { flex: 1 1 240px; color: #d5e7ee; }
.trust-go {
  font-weight: 700;
  border-bottom: 1px solid #8ecbda;
  color: #fff;
}

.about { padding: 84px 0 72px; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.about-photo {
  margin: 0;
  background: var(--sand);
  padding: 14px 14px 0 0;
}
.about-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 42%;
}
.about h2 { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3.1rem); max-width: 12ch; }
.about-copy { max-width: 38rem; }
.about-call {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.about .btn-line { color: var(--deep); }

.services { padding: 72px 0 40px; }
.section-head { max-width: 40rem; margin-bottom: 28px; }
.section-head h2 { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 3.2rem); }
.section-intro { color: var(--muted); font-size: 1.08rem; }
.job {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.job-flip { grid-template-columns: 1.1fr 0.9fr; }
.job-flip .job-copy { order: 2; }
.job-index {
  margin: 0;
  font-size: 2.4rem;
  color: var(--tide);
}
.job h3 { margin: 0 0 8px; font-size: clamp(1.7rem, 2.5vw, 2.3rem); }
.job-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.job-photo { margin: 0; overflow: hidden; }
.zoom-open {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.job-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.55s ease;
  pointer-events: none;
}
.job-photo:hover img { transform: scale(1.04); }
.job-photo img.pos-frames { object-position: center 58%; }
.job-photo img.pos-soffit { object-position: 38% 42%; }
.job-photo img.pos-mcd { object-position: center 28%; }
.price-line { font-weight: 700; color: var(--deep); }

.portfolio { padding: 64px 0 80px; background: #e7e1d6; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shot { margin: 0; overflow: hidden; background: #ddd4c6; }
.shot img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.55s ease;
  pointer-events: none;
}
.shot:hover img { transform: scale(1.04); }
.shot img.pos-gable { object-position: 42% 52%; }
.shot img.pos-garage { object-position: 78% 46%; }
.shot img.pos-porch { object-position: center 22%; }
.shot img.pos-rear { object-position: center 36%; }
.shot img.pos-patio { object-position: 62% 38%; }
.shot img.pos-bay { object-position: 46% 30%; }

.areas { padding: 72px 0 36px; background: var(--foam); }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.area-list li {
  margin: 0;
  background: var(--white);
  color: var(--deep);
  font-weight: 700;
  padding: 8px 12px;
}

.pay { padding: 64px 0 72px; background: var(--white); }
.pay-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pay-list li {
  margin: 0;
  padding-top: 12px;
  border-top: 3px solid var(--tide);
}
.pay-list h3 { margin: 0 0 8px; font-size: 1.45rem; }
.pay-note {
  margin: 22px 0 0;
  max-width: 40rem;
  color: var(--muted);
}

.reviews { padding: 78px 0; background: var(--white); }
.review-list { display: grid; gap: 22px; }
.review {
  margin: 0;
  padding: 8px 0 8px 22px;
  border-left: 3px solid var(--tide);
}
.review-score {
  margin: 0 0 6px;
  color: var(--tide);
  font-size: 1.8rem;
}
.review-title {
  margin: 0 0 8px;
  font-weight: 700;
}
.review footer {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
.review cite { font-style: normal; font-weight: 700; color: var(--ink); }
.see-more { margin-top: 18px; }

.contact { padding: 72px 0; background: var(--deep); color: var(--foam); }
.contact .eyebrow { color: #8ecbda; }
.contact h2 { margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3.1rem); color: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}
.contact-phone { margin: 8px 0 12px; }
.contact-phone a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}
.contact-phone a:hover { text-decoration: underline; }
.contact .btn-solid { background: var(--foam); color: var(--deep); }
.contact .btn-solid:hover { background: #fff; }
.contact-map {
  margin-top: 28px;
  min-height: 320px;
  background: #082f3c;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; }

.quote-form {
  position: relative;
  display: grid;
  gap: 12px;
  background: rgba(255, 252, 248, 0.06);
  border: 1px solid rgba(231, 243, 246, 0.18);
  padding: 22px 20px 18px;
}
.contact-form-wrap { min-width: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field { margin: 0; display: grid; gap: 6px; }
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7eef3;
}
.optional {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #9bb8c2;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid transparent;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
  min-height: 46px;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid #e2b33a;
  outline-offset: 1px;
}
.has-error input,
.has-error select,
.has-error textarea {
  outline: 2px solid #e2b33a;
}
.field-error {
  color: #f4d48a;
  font-size: 0.88rem;
  font-weight: 600;
}
.field-consent .consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foam);
  line-height: 1.45;
}
.field-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: #e2b33a;
}
.field-consent a { color: #fff; }
.form-alert {
  padding: 12px 14px;
}
.form-alert p { margin: 0; }
.form-alert-ok {
  background: #e7f3f6;
  color: var(--deep);
}
.form-alert-err {
  background: #3a2a12;
  color: #f4d48a;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-actions { margin: 4px 0 0; }
.quote-form .btn {
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.quote-form .btn-solid { border: 0; }

.site-footer {
  background: #071f29;
  color: #d5e4ea;
  padding: 28px 0 18px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.footer-name { margin: 0 0 4px; color: #fff; font-weight: 700; }
.footer-area { margin: 0; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.footer-links a { color: #f4fbfc; font-weight: 700; }
.footer-copy {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 18px auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(213, 228, 234, 0.15);
  font-size: 0.88rem;
}

.policy { padding: 48px 0 80px; background: var(--white); }
.policy-wrap { max-width: 740px; }
.policy h1 { margin: 0 0 8px; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.policy-updated { color: var(--muted); }
.policy h2 { margin: 1.6rem 0 0.5rem; font-size: 1.45rem; }
.policy ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.policy li { margin: 0.25rem 0; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  background: rgba(7, 31, 41, 0.94);
  cursor: zoom-out;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  overscroll-behavior: none;
  user-select: none;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  object-fit: contain;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.lightbox-close {
  position: absolute;
  top: max(10px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 1;
  min-height: 44px;
  min-width: 44px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: #f4fbfc;
  font: 700 0.78rem Figtree, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
  cursor: zoom-out;
}
body.lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 980px) {
  .site-nav a { padding: 8px 6px; font-size: 0.84rem; }
  .hero-photo { inset: 0 0 0 28%; }
  .about-grid, .contact-grid, .job, .job-flip, .form-row { grid-template-columns: 1fr; }
  .job-flip .job-copy { order: 0; }
  .about-photo img, .job-photo img { height: 280px; }
  .highlight-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .highlight { min-height: 150px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .shot img { height: 200px; }
  .pay-list { grid-template-columns: 1fr; }
}

@media (max-width: 1280px) {
  :root { --header: 64px; }
  .nav-toggle { display: inline-flex; }
  .nav-wrap { margin-left: auto; }
  .site-nav {
    display: none;
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--deep);
    flex-direction: column;
    align-items: stretch;
    padding: 6px 0 28px;
    overflow-y: auto;
    z-index: 35;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    display: block;
    padding: 16px 22px;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }
  .site-nav a[aria-current="true"],
  .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 #8ecbda; }
  body.nav-open { overflow: hidden; }
  .hero { min-height: 0; display: block; }
  .hero-photo { position: relative; inset: auto; height: 300px; }
  .hero-panel {
    margin: -36px 16px 28px;
    width: auto;
    box-shadow: none;
  }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .brand-mark { display: none; }
  .brand { gap: 0; }
  .brand-name { font-size: 0.78rem; }
  .brand-trade { font-size: 0.55rem; letter-spacing: 0.08em; }
  .nav-toggle { min-width: 44px; min-height: 44px; }
  .header-call { padding: 6px 8px; }
  .header-call-num { font-size: 0.84rem; white-space: nowrap; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 0.72rem; }
  .brand-trade { font-size: 0.46rem; letter-spacing: 0.04em; }
  .nav-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-toggle-bars { position: relative; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars { border-color: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before,
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 2px;
    height: 2px;
    background: #f4fbfc;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: rotate(40deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: rotate(-40deg); }
  .header-call-num { font-size: 0.78rem; }
}

@media (max-width: 420px) {
  .wrap { width: calc(100% - 32px); }
  .brand-name { font-size: 0.74rem; }
  .brand-trade { font-size: 0.5rem; letter-spacing: 0.06em; }
  .header-row { padding: 0 12px; gap: 8px; }
  .gallery { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.25rem; }
  .hero-panel { padding: 28px 20px 22px; }
  .contact-phone a { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .highlight img, .job-photo img, .shot img { transition: none; }
}
