@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #102d3e;
  --ink-deep: #0a202d;
  --cream: #f4efe5;
  --paper: #fffdf9;
  --white: #ffffff;
  --copper: #ce6534;
  --copper-dark: #a9451d;
  --blue: #2c647b;
  --muted: #62717a;
  --line: rgba(16, 45, 62, 0.14);
  --shadow: 0 24px 60px rgba(10, 32, 45, 0.12);
  --shell: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  color: white;
  background: var(--ink);
  border-radius: 4px;
}
.skip-link:focus { top: 16px; }

.utility-bar { color: #e7eef0; background: var(--ink-deep); font-size: 13px; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-inner a { color: white; font-weight: 700; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 45, 62, 0.08);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  color: var(--white);
  background: var(--copper);
  border-radius: 50% 50% 50% 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  transform: rotate(-3deg);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: "Manrope", sans-serif; font-size: 22px; letter-spacing: -0.8px; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a { font-size: 14px; font-weight: 600; text-decoration: none; }
.site-nav a:not(.nav-call):hover { color: var(--copper); }
.nav-call { padding: 13px 20px; color: white; background: var(--ink); border-radius: 5px; }
.nav-call:hover { background: var(--copper); }
.menu-button { display: none; padding: 10px; border: 0; background: transparent; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { position: relative; min-height: 680px; overflow: hidden; background: var(--cream); }
.hero::before {
  position: absolute;
  inset: 0 50% 0 0;
  content: "";
  opacity: 0.32;
  background-image: radial-gradient(circle at 1px 1px, rgba(16,45,62,.16) 1px, transparent 0);
  background-size: 22px 22px;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--cream) 0%, var(--cream) 42%, rgba(244,239,229,.82) 49%, rgba(244,239,229,.08) 66%, transparent 76%), url("./team-at-work.jpg");
  background-position: center;
  background-size: cover;
}
.hero-image::after { position: absolute; inset: auto 0 0; height: 25%; content: ""; background: linear-gradient(transparent, rgba(10,32,45,.15)); }
.hero-layout { position: relative; z-index: 2; display: flex; align-items: center; min-height: 680px; }
.hero-copy { width: min(600px, 54%); padding: 64px 70px 64px 0; }
.eyebrow { margin: 0 0 18px; color: var(--copper-dark); font-size: 12px; font-weight: 800; letter-spacing: 2.2px; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: "Manrope", system-ui, sans-serif; }
h1 { max-width: 590px; margin-bottom: 24px; font-size: clamp(48px, 5.4vw, 78px); line-height: .99; letter-spacing: -4px; }
.hero-lede { max-width: 540px; margin: 0; color: #3e5662; font-size: 20px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 0;
  border-radius: 5px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--copper); }
.button-primary:hover { background: var(--copper-dark); }
.button-secondary { border: 1px solid var(--ink); color: var(--ink); background: rgba(255,255,255,.3); }
.button-secondary:hover { color: white; background: var(--ink); }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 0; margin: 32px 0 0; list-style: none; color: #4c606a; font-size: 13px; font-weight: 700; }
.trust-list li::before { margin-right: 8px; color: var(--copper); content: "✓"; }

.intro-strip { color: white; background: var(--ink); }
.intro-grid { min-height: 150px; display: grid; grid-template-columns: 140px 190px 1fr; align-items: center; gap: 24px; }
.intro-number { margin: 0; font-family: "Manrope", sans-serif; font-size: 68px; font-weight: 800; letter-spacing: -5px; }
.intro-number span { color: var(--copper); }
.intro-grid > p:nth-child(2) { margin: 0; color: #c9d5da; line-height: 1.5; }
.intro-grid blockquote { margin: 0; padding-left: 44px; border-left: 1px solid rgba(255,255,255,.2); color: white; font-family: "Manrope", sans-serif; font-size: clamp(20px, 2.2vw, 30px); font-weight: 600; line-height: 1.4; }

.section { padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: 1.45fr .75fr; align-items: end; gap: 70px; margin-bottom: 48px; }
.section-heading.compact { grid-template-columns: 1fr; }
h2 { margin-bottom: 0; font-size: clamp(37px, 4.4vw, 58px); line-height: 1.08; letter-spacing: -2.7px; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 330px; display: flex; flex-direction: column; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:not(.service-card-dark):hover { position: relative; z-index: 2; box-shadow: var(--shadow); transform: translateY(-4px); }
.service-number { color: var(--copper); font: 800 12px/1 "Manrope", sans-serif; letter-spacing: 1.5px; }
.service-card h3 { margin: 44px 0 14px; font-size: 23px; letter-spacing: -1px; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.service-card > a:not(.button) { margin-top: auto; padding-top: 28px; color: var(--ink); font-weight: 800; text-decoration: none; }
.service-card > a span { margin-left: 5px; color: var(--copper); }
.service-card-dark { color: white; background: var(--ink); }
.service-card-dark .eyebrow { color: #ef986d; }
.service-card-dark h3 { margin-top: 18px; font-size: 27px; line-height: 1.2; }
.service-card-dark p:not(.eyebrow) { color: #c4d1d6; }
.button-light { align-self: flex-start; margin-top: auto; color: var(--ink); background: white; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.about-panel { min-height: 570px; display: flex; flex-direction: column; justify-content: flex-end; padding: 54px; color: white; background: var(--blue); box-shadow: -18px 18px 0 var(--copper); overflow: hidden; }
.big-jj { display: block; margin-left: -10px; color: rgba(255,255,255,.1); font-family: "Manrope", sans-serif; font-size: 210px; font-weight: 800; line-height: .7; letter-spacing: -20px; }
.about-panel p { position: relative; margin: 65px 0 0; font: 700 25px/1.4 "Manrope", sans-serif; }
.about-copy .lead { margin: 32px 0 20px; color: var(--ink); font-size: 20px; font-weight: 500; line-height: 1.65; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); line-height: 1.75; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(16,45,62,.2); }
.values div { display: flex; flex-direction: column; gap: 6px; }
.values strong { font: 800 17px/1 "Manrope", sans-serif; }
.values span { color: var(--muted); font-size: 12px; line-height: 1.4; }

.process { background: var(--paper); }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 0; margin: 0; list-style: none; counter-reset: process; }
.process-list li { display: flex; gap: 22px; padding: 34px 34px 34px 0; border-top: 1px solid var(--line); }
.process-list li + li { padding-left: 34px; border-left: 1px solid var(--line); }
.process-list > li > span { flex: 0 0 38px; display: grid; place-items: center; width: 38px; height: 38px; color: white; background: var(--copper); border-radius: 50%; font-weight: 800; }
.process-list h3 { margin: 4px 0 12px; font-size: 18px; }
.process-list p { margin: 0; color: var(--muted); line-height: 1.65; }

.service-area { color: white; background: var(--ink); }
.service-area .eyebrow { color: #ef986d; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.area-grid > div > p:not(.eyebrow) { max-width: 580px; margin: 28px 0; color: #bdcbd1; font-size: 17px; line-height: 1.75; }
.text-link { color: white; font-weight: 800; text-decoration: none; }
.text-link span { margin-left: 8px; color: #ef986d; }
.city-list { display: grid; grid-template-columns: 1fr 1fr; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); list-style: none; }
.city-list li { padding: 20px 22px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); font-family: "Manrope", sans-serif; font-weight: 700; }

.contact { padding: 110px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.contact-copy h2 { max-width: 500px; }
.contact-copy > p:not(.eyebrow):not(.hours) { color: var(--muted); font-size: 18px; }
.contact-phone { display: block; margin: 35px 0 20px; color: var(--copper-dark); font: 800 clamp(30px, 4vw, 46px)/1 "Manrope", sans-serif; letter-spacing: -2px; text-decoration: none; }
.hours { color: var(--muted); font-size: 14px; line-height: 1.7; }
.estimate-form { padding: 40px; background: var(--paper); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.estimate-form label { display: grid; gap: 8px; margin-bottom: 18px; font-size: 13px; font-weight: 800; }
.estimate-form input, .estimate-form textarea { width: 100%; border: 1px solid rgba(16,45,62,.22); border-radius: 4px; outline: none; padding: 14px; color: var(--ink); background: white; }
.estimate-form input:focus, .estimate-form textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(206,101,52,.13); }
.estimate-form textarea { resize: vertical; }
.estimate-form .button { width: 100%; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.site-footer { padding: 70px 0 24px; color: white; background: var(--ink-deep); }
.brand-footer .brand-copy small, .site-footer p { color: #aebfc7; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; }
.site-footer p { margin: 0; font-size: 14px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #d8e2e6; font-size: 13px; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #8299a4; font-size: 12px; }

@media (max-width: 900px) {
  .site-nav { display: none; position: absolute; inset: 84px 0 auto; flex-direction: column; align-items: stretch; gap: 0; padding: 15px 20px 24px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 22px 32px rgba(10,32,45,.12); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 6px; }
  .site-nav .nav-call { margin-top: 8px; padding: 14px 18px; text-align: center; }
  .menu-button { display: block; }
  .hero { min-height: 760px; }
  .hero-image { inset: 370px 0 0 0; background-image: linear-gradient(180deg, var(--cream) 0%, transparent 30%), url("./team-at-work.jpg"); background-position: 58% center; }
  .hero-layout { align-items: flex-start; min-height: 760px; }
  .hero-copy { width: 100%; padding: 55px 0 0; }
  h1 { max-width: 680px; font-size: clamp(46px, 8vw, 68px); }
  .hero-lede { font-size: 18px; }
  .intro-grid { grid-template-columns: 100px 1fr; padding-block: 32px; }
  .intro-number { font-size: 54px; }
  .intro-grid blockquote { grid-column: 1 / -1; padding: 26px 0 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-panel { min-height: 360px; }
  .area-grid { grid-template-columns: 1fr; gap: 50px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li + li { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --shell: min(100% - 28px, 1160px); }
  .utility-inner { justify-content: center; min-height: 39px; }
  .utility-inner > span { display: none; }
  .nav-wrap { height: 72px; }
  .site-nav { top: 72px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { font-size: 8px; }
  .hero { min-height: 780px; }
  .hero-image { inset: 465px 0 0; background-position: 68% center; }
  .hero-copy { padding-top: 45px; }
  h1 { font-size: clamp(43px, 13.5vw, 60px); letter-spacing: -3px; }
  .hero-lede { font-size: 16px; line-height: 1.55; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-list { gap: 8px 15px; font-size: 11px; }
  .intro-grid { grid-template-columns: 82px 1fr; }
  .intro-number { font-size: 47px; }
  .section, .contact { padding: 78px 0; }
  h2 { font-size: 39px; letter-spacing: -2px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; padding: 30px; }
  .about-panel { min-height: 330px; padding: 35px; box-shadow: -8px 8px 0 var(--copper); }
  .big-jj { font-size: 150px; }
  .about-panel p { margin-top: 55px; }
  .values { grid-template-columns: 1fr; }
  .values div { padding-bottom: 10px; }
  .city-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .estimate-form { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; flex-direction: column; gap: 14px; }
  .footer-bottom { margin-top: 45px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
