:root {
  --green: #173f3a;
  --green-dark: #0e2e2a;
  --orange: #d85d36;
  --orange-dark: #bd4827;
  --cream: #f5f1e8;
  --sand: #e8e0d3;
  --ink: #17201e;
  --muted: #68706d;
  --white: #fff;
  --line: #d8d8d2;
  --sans: Arial, Helvetica, sans-serif;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --page: min(1200px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; width: 100%; }
button, input, textarea { font: inherit; }

.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; transform: translateY(-160%); padding: 10px 14px; background: var(--white); }
.skip-link:focus { transform: none; }

.utility-bar { min-height: 34px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(24px, calc((100vw - 1200px) / 2)); color: rgba(255,255,255,.8); background: var(--green-dark); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.utility-bar a { text-decoration: none; }
.utility-bar strong { color: white; }

.site-header { width: var(--page); min-height: 86px; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; justify-self: start; text-decoration: none; }
.brand-icon { width: 42px; height: 42px; display: grid; place-items: center; color: white; background: var(--orange); font: 900 25px/1 var(--display); }
.brand-name { display: grid; gap: 2px; }
.brand-name strong { font: 900 21px/.95 var(--display); letter-spacing: -.02em; }
.brand-name small { color: var(--green); font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.desktop-nav { display: flex; align-items: center; gap: 22px; }
.desktop-nav a { color: #4f5653; font-size: 12px; font-weight: 700; text-decoration: none; }
.desktop-nav a:hover { color: var(--orange-dark); }
.desktop-nav a.active { color: var(--orange-dark); }
.header-call { justify-self: end; display: grid; gap: 1px; text-align: right; text-decoration: none; }
.header-call span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.header-call strong { font-size: 16px; }

.hero { background: var(--cream); }
.hero-main { width: var(--page); min-height: 640px; margin: auto; display: grid; grid-template-columns: .88fr 1.12fr; align-items: stretch; }
.hero-copy { padding: 82px 65px 76px 0; align-self: center; }
.kicker { margin: 0 0 20px; color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.kicker::before { content: ""; display: inline-block; width: 22px; height: 2px; margin: 0 9px 3px 0; background: currentColor; }
.hero h1 { margin: 0; font: 900 clamp(60px, 6.5vw, 100px)/.88 var(--display); letter-spacing: -.065em; text-transform: uppercase; }
.hero h1 span { color: var(--green); }
.hero-lede { max-width: 520px; margin: 28px 0 32px; color: #505956; font-size: 18px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; padding: 0 24px; border: 0; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: background .18s ease, transform .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--orange); }
.button-primary:hover { background: var(--orange-dark); }
.text-link { font-size: 12px; font-weight: 700; text-underline-offset: 4px; }
.hero-photo { position: relative; min-height: 640px; background: #9f9d93 url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=88") center/cover no-repeat; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(9,25,22,.58)); }
.photo-label { position: absolute; z-index: 1; right: 0; bottom: 0; min-width: 245px; display: grid; gap: 5px; padding: 22px 26px; color: white; background: var(--green); }
.photo-label span { color: rgba(255,255,255,.65); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.photo-label strong { font-size: 14px; }
.quick-form { position: absolute; z-index: 2; top: 34px; right: 34px; width: min(390px, calc(100% - 68px)); padding: 25px; background: rgba(255,255,255,.97); box-shadow: 0 18px 50px rgba(8,27,24,.2); }
.quick-form-heading { display: grid; gap: 5px; margin-bottom: 18px; }
.quick-form-heading span { color: var(--orange-dark); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.quick-form-heading strong { color: var(--ink); font-size: 21px; }
.quick-form label { display: grid; gap: 5px; margin-bottom: 11px; }
.quick-form label > span { color: #5d6461; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.quick-form input, .quick-form textarea { width: 100%; border: 1px solid #d1d1cb; border-radius: 0; outline: none; padding: 11px 12px; color: var(--ink); background: white; resize: none; }
.quick-form input:focus, .quick-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.quick-form-row { display: grid; grid-template-columns: 1.5fr .7fr; gap: 10px; }
.quick-submit { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: space-between; border: 0; padding: 0 16px; color: white; background: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.quick-submit:hover { background: var(--orange-dark); }
.quick-submit span:last-child { font-size: 20px; font-weight: 400; }
.quick-note { margin: 9px 0 0; color: #838783; font-size: 9px; }
.quick-form .form-status { margin-bottom: 0; }

.trust-row { width: var(--page); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid #ded8cd; }
.trust-row div { min-height: 82px; display: flex; align-items: center; gap: 16px; padding: 20px 28px; border-right: 1px solid #ded8cd; }
.trust-row strong { color: var(--orange-dark); font-size: 10px; }
.trust-row span { font-size: 12px; font-weight: 700; }

.services { width: var(--page); display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; padding: 125px 0; margin: auto; }
.section-intro h2, .estimate-copy h2, .work-heading h2, .final-cta h2 { margin: 0; font: 900 clamp(48px, 5.4vw, 78px)/.91 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.section-intro > p:last-child { max-width: 430px; margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.services-list { border-top: 1px solid var(--line); }
.services-list article { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.service-number { padding-top: 4px; color: var(--orange-dark); font-size: 10px; font-weight: 800; }
.services-list h3 { margin: 0 0 9px; font-size: 19px; }
.services-list p { max-width: 540px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.services-link { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.services-link span { font-size: 20px; font-weight: 400; }

.estimate-section { display: grid; grid-template-columns: 1fr 1fr; color: white; background: var(--green); }
.estimate-copy { padding: 100px max(60px, calc((100vw - 1200px) / 2)) 100px max(24px, calc((100vw - 1200px) / 2)); }
.kicker-light { color: #eca98e; }
.estimate-copy h2 { font-size: clamp(52px, 5vw, 76px); }
.estimate-copy > p { max-width: 500px; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.7; }
.direct-contact { display: grid; gap: 5px; margin-top: 55px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.2); }
.direct-contact span { color: rgba(255,255,255,.55); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.direct-contact a { width: fit-content; font-size: clamp(25px, 3vw, 40px); font-weight: 800; text-underline-offset: 6px; }
.estimate-form { padding: 90px max(24px, calc((100vw - 1200px) / 2)) 90px 6vw; color: var(--ink); background: #f1ede5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.estimate-form label { display: grid; gap: 8px; margin-bottom: 18px; }
.estimate-form label > span { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.estimate-form input, .estimate-form textarea { width: 100%; border: 1px solid #c9c8c1; border-radius: 0; outline: none; padding: 16px 15px; color: var(--ink); background: white; resize: vertical; }
.estimate-form input:focus, .estimate-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.estimate-form input::placeholder, .estimate-form textarea::placeholder { color: #999b96; }
.button-submit { width: 100%; justify-content: space-between; color: white; background: var(--orange); }
.button-submit:hover { background: var(--orange-dark); }
.button-submit span:last-child { font-size: 22px; font-weight: 400; }
.form-note { margin: 12px 0 0; color: #7c817e; font-size: 10px; line-height: 1.45; }
.form-status { min-height: 16px; margin: 7px 0 0; color: var(--green); font-size: 11px; font-weight: 700; }

.work { width: var(--page); padding: 125px 0; margin: auto; }
.work-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 48px; }
.work-heading > p { max-width: 390px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.work-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 15px; }
.work-card { margin: 0; background: var(--cream); }
.work-card img { height: 400px; object-fit: cover; filter: saturate(.75); }
.work-card-wide img { height: 480px; }
.work-card figcaption { display: grid; gap: 4px; padding: 18px 2px 0; background: white; }
.work-card figcaption strong { font-size: 14px; }
.work-card figcaption span { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.final-cta { min-height: 380px; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 70px max(24px, calc((100vw - 1200px) / 2)); color: white; background: var(--orange); }
.final-cta h2 { font-size: clamp(55px, 7vw, 100px); }
.final-cta .kicker { color: rgba(255,255,255,.7); }
.button-light { flex: 0 0 auto; color: var(--green-dark); background: white; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 55px; align-items: start; padding: 65px max(24px, calc((100vw - 1200px) / 2)) 30px; color: white; background: var(--green-dark); }
.footer-brand { display: grid; gap: 5px; }
.footer-brand strong { font: 900 26px/.9 var(--display); }
.footer-brand span { color: rgba(255,255,255,.55); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.footer-contact { display: flex; gap: 60px; }
.footer-contact a { font-size: 19px; font-weight: 800; }
.footer-contact address { color: rgba(255,255,255,.55); font-size: 11px; font-style: normal; line-height: 1.6; }
.footer-nav { display: grid; gap: 9px; }
.footer-nav a { color: rgba(255,255,255,.65); font-size: 10px; font-weight: 700; text-decoration: none; }
.footer-nav a:hover { color: white; }
.site-footer > p { grid-column: 1/-1; margin: 35px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.4); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.mobile-call { display: none; }

/* Inner pages */
.page-hero { color: white; background: var(--green); }
.page-hero-inner { width: var(--page); min-height: 430px; display: grid; grid-template-columns: 1fr .72fr; gap: 8vw; align-items: end; padding: 90px 0 78px; margin: auto; }
.page-hero h1 { max-width: 820px; margin: 0; font: 900 clamp(62px, 8vw, 116px)/.84 var(--display); letter-spacing: -.065em; text-transform: uppercase; }
.page-hero h1 span { color: #f09a7b; }
.page-hero-copy { max-width: 460px; padding-bottom: 7px; }
.page-hero-copy p { margin: 0 0 28px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.6; }
.button-orange { color: white; background: var(--orange); }
.button-orange:hover { background: var(--orange-dark); }
.page-section { width: var(--page); padding: 110px 0; margin: auto; }
.page-section-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; margin-bottom: 60px; }
.page-section-heading h2, .content-block h2, .lead-intro h1 { margin: 0; font: 900 clamp(46px, 5.5vw, 76px)/.9 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.page-section-heading p { max-width: 520px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.service-cards { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 310px; display: flex; flex-direction: column; padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.service-card .service-number { margin-bottom: auto; }
.service-card h3 { margin: 60px 0 12px; font-size: 24px; }
.service-card p { max-width: 500px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.service-card .card-link { margin-top: 24px; color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-card:hover { background: var(--cream); }
.content-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; }
.content-photo { min-height: 600px; background-position: center; background-size: cover; }
.carpentry-photo { background-image: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1600&q=88"); }
.electrical-photo { background-image: url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1600&q=88"); }
.content-block { display: flex; flex-direction: column; justify-content: center; padding: 90px max(28px, calc((100vw - 1200px) / 2)) 90px 7vw; background: var(--cream); }
.content-block > p { max-width: 530px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.detail-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 25px; padding: 0; margin: 25px 0 35px; list-style: none; }
.detail-list li { padding: 13px 0; border-bottom: 1px solid #d6d0c5; font-size: 13px; font-weight: 700; }
.detail-list li::before { content: "+"; margin-right: 8px; color: var(--orange-dark); }
.process { color: white; background: var(--green-dark); }
.process-inner { width: var(--page); padding: 100px 0; margin: auto; }
.process-inner h2 { margin: 0 0 55px; font: 900 clamp(48px, 6vw, 80px)/.9 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.process-grid article { padding: 28px 32px 15px 0; }
.process-grid span { color: #f09a7b; font-size: 10px; font-weight: 800; }
.process-grid h3 { margin: 35px 0 10px; font-size: 18px; }
.process-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6; }
.lead-page { min-height: 720px; display: grid; grid-template-columns: .8fr 1.2fr; background: var(--cream); }
.lead-intro { padding: 100px 7vw max(80px, 8vw) max(24px, calc((100vw - 1200px) / 2)); color: white; background: var(--green); }
.lead-intro h1 { font-size: clamp(58px, 7vw, 96px); }
.lead-intro > p { max-width: 460px; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; }
.lead-points { display: grid; gap: 15px; margin-top: 45px; }
.lead-points span { display: flex; gap: 11px; font-size: 12px; font-weight: 700; }
.lead-points span::before { content: "✓"; color: #f09a7b; }
.lead-form-wrap { padding: 90px max(24px, calc((100vw - 1200px) / 2)) 90px 7vw; }
.lead-form-wrap .estimate-form { max-width: 650px; padding: 0; background: transparent; }
.lead-form-title { margin: 0 0 30px; font-size: 24px; }
.estimate-form select { width: 100%; border: 1px solid #c9c8c1; border-radius: 0; outline: none; padding: 16px 15px; color: var(--ink); background: white; }

@media (max-width: 950px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero-main { grid-template-columns: 1fr; }
  .hero-copy { padding: 75px 0 65px; }
  .hero-photo { min-height: 500px; }
  .services { grid-template-columns: 1fr; gap: 60px; }
  .estimate-section { grid-template-columns: 1fr; }
  .estimate-copy, .estimate-form { padding: 80px max(24px, calc((100vw - 720px) / 2)); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card-wide { grid-column: 1/-1; }
  .work-card-wide img { height: 500px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .footer-nav { grid-column: 1/-1; grid-template-columns: repeat(4, auto); justify-content: start; gap: 22px; }
  .page-hero-inner { grid-template-columns: 1fr; align-items: start; }
  .content-split { grid-template-columns: 1fr; }
  .content-photo { min-height: 520px; }
  .content-block { padding: 80px max(24px, calc((100vw - 720px) / 2)); }
  .lead-page { grid-template-columns: 1fr; }
  .lead-intro, .lead-form-wrap { padding: 80px max(24px, calc((100vw - 720px) / 2)); }
}

@media (max-width: 650px) {
  :root { --page: calc(100% - 32px); }
  body { padding-bottom: 58px; }
  .utility-bar { min-height: 30px; justify-content: center; font-size: 9px; }
  .utility-bar > span { display: none; }
  .site-header { min-height: 72px; }
  .brand-icon { width: 37px; height: 37px; }
  .brand-name strong { font-size: 19px; }
  .header-call { display: none; }
  .hero-copy { padding-top: 60px; }
  .hero h1 { font-size: clamp(54px, 17vw, 78px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .button-primary { width: 100%; }
  .text-link { text-align: center; }
  .hero-photo { min-height: 390px; margin: 0 -16px; }
  .photo-label { display: none; }
  .quick-form { position: relative; top: auto; right: auto; width: calc(100% - 28px); margin: 120px auto 20px; padding: 21px; }
  .trust-row { grid-template-columns: 1fr; border-top: 1px solid #ded8cd; }
  .trust-row div { min-height: 62px; border-bottom: 1px solid #ded8cd; }
  .services, .work { padding: 90px 0; }
  .section-intro h2, .estimate-copy h2, .work-heading h2 { font-size: clamp(44px, 14vw, 64px); }
  .estimate-copy, .estimate-form { padding: 70px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .work-heading { display: block; }
  .work-heading > p { margin-top: 22px; }
  .work-grid { grid-template-columns: 1fr; gap: 38px; }
  .work-card-wide { grid-column: auto; }
  .work-card img, .work-card-wide img { height: 380px; }
  .final-cta { display: block; min-height: auto; padding-top: 80px; padding-bottom: 80px; }
  .final-cta h2 { font-size: clamp(52px, 16vw, 76px); }
  .button-light { width: 100%; margin-top: 40px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-contact { display: grid; gap: 25px; }
  .footer-nav { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .page-hero-inner { min-height: 500px; padding: 70px 0; }
  .page-hero h1 { font-size: clamp(54px, 17vw, 82px); }
  .page-section { padding: 85px 0; }
  .page-section-heading { grid-template-columns: 1fr; gap: 25px; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .content-photo { min-height: 390px; }
  .content-block { padding: 70px 20px; }
  .detail-list { grid-template-columns: 1fr; }
  .process-inner { padding: 80px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .lead-intro, .lead-form-wrap { padding: 70px 20px; }
  .mobile-call { position: fixed; z-index: 50; left: 8px; right: 8px; bottom: 7px; min-height: 48px; display: grid; place-items: center; color: white; background: var(--orange); box-shadow: 0 8px 25px rgba(0,0,0,.24); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
}

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