:root {
  --ink: #17364f;
  --navy: #10283a;
  --chalk: #f7f8f4;
  --steel: #dde7eb;
  --graphite: #263238;
  --quiet: #60727b;
  --accent: #b94324;
  --line: #9fb0b8;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Atkinson Hyperlegible", Verdana, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--chalk);
  color: var(--graphite);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 0.2em; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--chalk);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.skip-link:focus { top: 1rem; }

.site-header {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(190px, 250px) 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding: 0.7rem clamp(1rem, 4vw, 4.5rem);
  background: var(--chalk);
  border-bottom: 1px solid var(--line);
}
.brand { display: block; width: min(220px, 100%); }
.brand img { max-height: 58px; object-fit: contain; object-position: left center; }
.site-header nav { display: flex; justify-content: center; gap: clamp(1rem, 2.5vw, 2.7rem); }
.site-header nav a, .header-call {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-header nav a:hover, .header-call:hover { color: var(--accent); }
.header-call { white-space: nowrap; }
.header-call strong { color: var(--accent); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  min-height: calc(100dvh - 76px);
  background: var(--steel);
  border-bottom: 1px solid var(--line);
}
.hero-media {
  min-height: 720px;
  padding: clamp(2rem, 4.5vw, 5rem) 0 clamp(2rem, 4.5vw, 5rem) clamp(1rem, 4vw, 4.5rem);
}
.hero-media img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  box-shadow: 18px 22px 0 rgba(16, 40, 58, 0.12);
}
.hero-copy {
  align-self: center;
  position: relative;
  z-index: 2;
  margin-left: clamp(-4rem, -5vw, -2rem);
  margin-right: clamp(1rem, 4vw, 4.5rem);
  padding: clamp(2.2rem, 4vw, 4.8rem);
  background: var(--ink);
  color: var(--chalk);
  box-shadow: 20px 22px 0 rgba(16, 40, 58, 0.16);
}
.hero-proof {
  margin: 0 0 1.5rem;
  color: #e8eff1;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
h1, h2, h3 { font-family: var(--display); margin-top: 0; text-wrap: balance; }
h1 {
  max-width: 14ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.3rem, 4.2vw, 4.1rem);
  line-height: 0.94;
  text-wrap: normal;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.hero-copy > p:not(.hero-proof) { max-width: 34rem; margin: 0 0 1.8rem; font-size: clamp(1.05rem, 1.35vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.78rem 1.2rem;
  border: 2px solid currentColor;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease-out, background-color 160ms ease-out, color 160ms ease-out;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px); }
.button-accent { background: var(--accent); color: var(--chalk); border-color: var(--accent); }
.button-accent:hover { background: #93371f; border-color: #93371f; }
.plain-link { font-weight: 700; color: var(--chalk); }
.finish-key {
  position: absolute;
  left: clamp(1rem, 4vw, 4.5rem);
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.7rem;
  background: var(--chalk);
  color: var(--navy);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.finish-key i { width: 42px; height: 3px; background: var(--accent); }

.decision {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 8rem);
  padding: clamp(5rem, 8vw, 9rem) clamp(1rem, 7vw, 8rem);
}
.decision-intro h2, .portfolio-heading h2, .family-statement h2, .ledger-title h2, .estimate h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.decision-intro p, .portfolio-heading p, .family-statement p, .ledger-title p { max-width: 58ch; color: #455a64; }
.decision-paths { border-top: 2px solid var(--navy); }
.decision-paths article {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.decision-paths h3 { margin-bottom: 0; font-size: clamp(1.9rem, 2.8vw, 3rem); line-height: 1; color: var(--ink); }
.decision-paths p { margin: 0 0 0.8rem; }
.decision-paths a { grid-column: 2; color: var(--accent); font-weight: 700; }

.portfolio { padding: clamp(4rem, 7vw, 8rem) clamp(1rem, 4vw, 4.5rem); background: var(--navy); color: var(--chalk); }
.portfolio-heading {
  display: block;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}
.portfolio-heading h2 { max-width: 20ch; margin: 0 auto; }
.portfolio-heading p { max-width: 62ch; margin: 1.5rem auto 0; color: var(--chalk); }
.proof-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.5rem);
}
.proof-wall figure { align-self: start; margin: 0; background: var(--chalk); color: var(--navy); }
.proof-wall img { aspect-ratio: 1; object-fit: cover; }
.proof-wall figcaption { padding: 0.75rem 0.9rem; font-family: var(--display); font-weight: 700; letter-spacing: 0.015em; }
.proof-a { grid-column: 1 / span 6; }
.proof-b { grid-column: 7 / span 6; }
.proof-c { grid-column: 1 / span 4; }
.proof-d { grid-column: 5 / span 4; }
.proof-e { grid-column: 9 / span 4; }
.proof-f { grid-column: 3 / span 8; }

.family {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 9rem);
  padding: clamp(5rem, 9vw, 10rem) clamp(1rem, 7vw, 8rem);
  background: var(--steel);
}
.family-statement h2 { color: var(--ink); }
.family-statement p + p { margin-top: 1.2rem; }
.work-sequence { margin: 0; padding: 0; list-style: none; counter-reset: work; border-top: 2px solid var(--navy); }
.work-sequence li {
  counter-increment: work;
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.work-sequence li::before {
  content: counter(work, decimal-leading-zero);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}
.work-sequence h3 { margin: 0; font-size: 2rem; line-height: 1; color: var(--ink); }
.work-sequence p { margin: 0; }

.reviews {
  padding: clamp(5rem, 8vw, 8rem) clamp(1rem, 7vw, 8rem);
  background: var(--navy);
  color: var(--chalk);
}
.reviews-heading {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: end;
  padding-bottom: 2rem;
  border-bottom: 1px solid #526977;
}
.reviews-heading h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.reviews-heading p { margin: 0; color: #f0f4f4; white-space: nowrap; }
.reviews-heading strong { color: var(--chalk); font-family: var(--display); font-size: 1.5rem; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 6vw, 7rem); }
.reviews-grid figure { margin: 0; padding: clamp(2rem, 4vw, 3.5rem) 0; border-bottom: 1px solid #526977; }
.reviews-grid blockquote { max-width: 43ch; margin: 0; font-size: clamp(1.12rem, 1.55vw, 1.42rem); line-height: 1.5; }
.reviews-grid figcaption { margin-top: 1.4rem; color: #ffbea9; font-family: var(--display); font-weight: 700; }

.service-ledger { padding: clamp(5rem, 8vw, 9rem) clamp(1rem, 4vw, 4.5rem); }
.ledger-title { max-width: 1250px; margin: 0 auto clamp(2.5rem, 5vw, 5rem); text-align: center; }
.ledger-title h2 { max-width: 18ch; margin-inline: auto; }
.ledger-title p { margin-inline: auto; }
.ledger-gallery {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}
.ledger-media { margin: 0; min-width: 0; }
.ledger-media img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.ledger-media figcaption { padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-weight: 700; color: var(--ink); }
.ledger-notes { max-width: 1400px; margin: clamp(2.5rem, 5vw, 5rem) auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 8rem); }
.ledger-copy { padding-top: clamp(1.5rem, 3vw, 3rem); border-top: 2px solid var(--navy); }
.ledger-copy h3 { font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1; color: var(--ink); }
.ledger-copy ul { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
.ledger-copy li { margin-bottom: 0.6rem; break-inside: avoid; }
.finish-list { color: var(--graphite); }

.estimate {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  background: var(--accent);
  color: var(--chalk);
}
.estimate-copy { padding: clamp(3.5rem, 7vw, 8rem); }
.estimate-copy h2 { max-width: 11ch; }
.estimate-copy > p { max-width: 52ch; }
.estimate-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 2rem; }
.estimate-actions > a:not(.button) { font-weight: 700; }
.button-light { background: var(--chalk); color: var(--navy); border-color: var(--chalk); }
.button-light:hover { background: var(--steel); border-color: var(--steel); }
.visit { padding: clamp(3.5rem, 7vw, 8rem); background: var(--navy); }
.visit h3 { font-size: clamp(2.3rem, 3vw, 3.5rem); }
.visit address { margin-bottom: 2rem; font-style: normal; font-size: 1.2rem; }
.visit dl { margin: 0 0 2rem; }
.visit dl div { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid #526977; }
.visit dd { margin: 0; }
.visit > a { color: #ffbea9; font-weight: 700; }

footer {
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 4.5rem);
  background: var(--chalk);
  font-size: 0.94rem;
}
footer img { max-width: 220px; max-height: 58px; object-fit: contain; object-position: left; }
footer p { margin: 0; }
footer p:last-child { text-align: right; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: minmax(170px, 210px) 1fr; }
  .site-header nav { display: none; }
  .header-call { justify-self: end; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr); }
  .hero-copy { margin-left: -2rem; margin-right: 1.5rem; padding: 2.5rem; }
  .decision, .family { padding-left: 2rem; padding-right: 2rem; gap: 3rem; }

  footer { grid-template-columns: 200px 1fr; }
  footer p:last-child { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .site-header { min-height: 70px; padding: 0.6rem 1rem; grid-template-columns: minmax(150px, 1fr) auto; gap: 0.7rem; }
  .brand { width: 165px; }
  .header-call { font-size: 0.9rem; }
  .header-call { color: var(--accent); }
  .header-call strong { display: none; }
  .hero { display: flex; flex-direction: column; min-height: 0; }
  .hero-media { min-height: 0; padding: 1rem; order: 2; }
  .hero-media img { min-height: 0; height: auto; box-shadow: 8px 10px 0 rgba(16, 40, 58, 0.13); }
  .hero-copy { order: 1; margin: 0; padding: 2.7rem 1rem 2.4rem; box-shadow: none; }
  .hero-proof { margin-bottom: 1rem; font-size: 0.88rem; }
  h1 { max-width: 15ch; font-size: clamp(2.85rem, 11.8vw, 3.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; white-space: normal; text-align: center; }
  .finish-key { position: static; order: 3; align-self: flex-end; margin: 0 1rem 1rem; }
  .decision, .family { display: block; padding: 4.5rem 1rem; }
  .decision-intro, .family-statement { margin-bottom: 3rem; }
  .decision-intro h2, .portfolio-heading h2, .family-statement h2, .ledger-title h2, .estimate h2 { font-size: clamp(3.1rem, 14vw, 4.5rem); }
  .decision-paths article { display: block; padding: 1.7rem 0; }
  .decision-paths h3 { margin-bottom: 1rem; }
  .decision-paths a { display: inline-block; }
  .portfolio { padding: 4.5rem 1rem; }
  .portfolio-heading h2 { max-width: none; margin-bottom: 1rem; font-size: clamp(3.1rem, 14vw, 4rem); }
  .proof-wall { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .proof-a, .proof-b, .proof-c, .proof-d, .proof-e, .proof-f { grid-column: auto; }
  .proof-a, .proof-b, .proof-e, .proof-f { grid-column: 1 / -1; }
  .proof-wall figcaption { font-size: 0.84rem; padding: 0.6rem; }
  .work-sequence li { grid-template-columns: 2.2rem minmax(0, 1fr); gap: 0.8rem; }
  .work-sequence h3 { font-size: 1.7rem; }
  .work-sequence p { grid-column: 2; }
  .reviews { padding: 4.5rem 1rem; }
  .reviews-heading { display: block; }
  .reviews-heading h2 { max-width: 10ch; }
  .reviews-heading p { margin-top: 1.5rem; white-space: normal; }
  .reviews-grid { grid-template-columns: 1fr; gap: 0; }
  .reviews-grid figure + figure { margin-top: 0; }
  .service-ledger { padding: 4.5rem 1rem; }
  .ledger-gallery { grid-template-columns: 1fr; gap: 1.6rem; }
  .ledger-notes { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 3rem; }
  .ledger-media img { height: auto; min-height: 0; aspect-ratio: 1; object-fit: cover; }
  .ledger-copy ul { columns: 1; }
  .estimate { display: block; }
  .estimate-copy, .visit { padding: 4.5rem 1rem; }
  .estimate-actions { align-items: stretch; flex-direction: column; }
  .estimate-actions > a:not(.button) { text-align: center; }
  .visit dl div { grid-template-columns: 1fr; gap: 0.1rem; }
  footer { display: block; padding: 2rem 1rem; }
  footer img, footer p { margin-bottom: 1rem; }
  footer p:last-child { overflow-wrap: anywhere; }
}

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