:root {
  --ink: #111315;
  --ink-2: #191c1f;
  --paper: #f4f4f1;
  --white: #ffffff;
  --muted: #6e7478;
  --line: #d8dad7;
  --yellow: #f4c430;
  --yellow-dark: #d7a90d;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Manrope", sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.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; }
.concept-bar { background: var(--yellow); color: var(--ink); text-align: center; padding: .42rem 1rem; font-size: .76rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.site-header { height: 88px; padding: 0 max(28px, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; justify-content: space-between; background: var(--ink); color: var(--white); position: relative; z-index: 20; }
.brand { display: inline-flex; align-items: center; line-height: 1; }
.brand-wordmark { color: var(--white); font: 800 1.55rem/1 "Barlow Condensed", sans-serif; letter-spacing: .075em; }
.brand-wordmark::after { content: ""; display: block; width: 52px; height: 3px; margin-top: .48rem; background: var(--yellow); }
nav { display: flex; align-items: center; gap: 2rem; font-size: .84rem; font-weight: 600; }
nav > a:not(.nav-call) { color: #ccd0d2; position: relative; }
nav > a:not(.nav-call)::after { content: ""; position: absolute; height: 2px; background: var(--yellow); left: 0; right: 100%; bottom: -8px; transition: right .25s ease; }
nav > a:hover::after { right: 0; }
.nav-call { border-left: 1px solid #3a3e41; padding: .7rem 0 .7rem 2rem; color: var(--yellow); }
.menu-button { display: none; border: 0; background: transparent; padding: .5rem; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; }

.hero { position: relative; min-height: 720px; height: calc(100vh - 118px); max-height: 900px; background: #cfd2d3; overflow: hidden; display: flex; align-items: center; }
.hero-photo { position: absolute; inset: 0; background: url("assets/drywall-hero.png") center/cover no-repeat; transform: scale(1.01); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,19,21,.94) 0%, rgba(17,19,21,.83) 36%, rgba(17,19,21,.18) 64%, rgba(17,19,21,.05) 100%); }
.hero-grid { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 84px 84px; mask-image: linear-gradient(90deg, black, transparent 65%); }
.hero-content { width: min(720px, 58vw); margin-left: max(28px, calc((100vw - var(--max)) / 2)); position: relative; z-index: 2; color: white; padding-bottom: 5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .15em; font-size: .76rem; font-weight: 700; display: flex; align-items: center; gap: .8rem; }
.eyebrow span { width: 42px; height: 3px; background: var(--yellow); display: inline-block; }
h1, h2 { font-family: "Barlow Condensed", sans-serif; margin: 0; text-transform: uppercase; letter-spacing: -.025em; line-height: .87; }
h1 { font-size: clamp(4.8rem, 9.3vw, 8.8rem); margin: 1.15rem 0 1.6rem; }
h1 em, h2 em { color: var(--yellow); font-style: normal; }
.hero-copy { max-width: 610px; color: #d8dcde; font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2.2rem; }
.button { min-height: 54px; padding: 0 1.5rem; display: inline-flex; align-items: center; justify-content: center; gap: 1.5rem; text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--yellow); color: var(--ink); }
.button-primary:hover { background: #ffd94f; }
.button-ghost { border-color: rgba(255,255,255,.35); color: white; }
.button-ghost:hover { border-color: white; }
.hero-proof { position: absolute; z-index: 3; bottom: 0; left: max(28px, calc((100vw - var(--max)) / 2)); right: 0; max-width: 760px; display: grid; grid-template-columns: repeat(3, 1fr); color: white; background: rgba(17,19,21,.91); border-top: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); }
.hero-proof > div { min-height: 108px; padding: 1.45rem 1.8rem; border-right: 1px solid rgba(255,255,255,.12); }
.hero-proof strong { display: block; font: 700 2rem/1 "Barlow Condensed", sans-serif; }
.hero-proof strong span { color: var(--yellow); font-size: 1rem; vertical-align: top; }
.hero-proof small { color: #aeb3b5; font-size: .7rem; letter-spacing: .05em; }
.scroll-cue { position: absolute; z-index: 4; right: 2rem; bottom: 2rem; color: white; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; display: flex; align-items: center; gap: .7rem; transform: rotate(90deg); transform-origin: right bottom; }
.scroll-cue i { width: 48px; height: 1px; background: var(--yellow); }

.section { padding: 8rem max(28px, calc((100vw - var(--max)) / 2)); }
.section-kicker { text-transform: uppercase; letter-spacing: .13em; font-size: .74rem; font-weight: 800; display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.section-kicker span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #babeba; color: var(--muted); }
.section-heading { display: grid; grid-template-columns: 1.4fr .8fr; gap: 7rem; align-items: end; }
h2 { font-size: clamp(3.8rem, 7vw, 7.1rem); }
.section-heading p, .planner-heading > p { color: var(--muted); font-size: 1.03rem; max-width: 480px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 5rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 390px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: background .25s ease, color .25s ease, transform .25s ease; }
.service-card:hover { background: var(--ink); color: white; transform: translateY(-6px); z-index: 2; }
.service-card.feature-card { background: var(--yellow); }
.service-card.feature-card:hover { background: var(--ink); }
.service-number { font: 700 .78rem/1 "Barlow Condensed", sans-serif; color: var(--muted); }
.service-icon { font: 600 2.7rem/1 "Barlow Condensed", sans-serif; height: 90px; display: flex; align-items: center; color: var(--yellow-dark); }
.feature-card .service-icon { color: var(--ink); }
.service-card h3 { font: 700 2rem/1 "Barlow Condensed", sans-serif; text-transform: uppercase; margin: 0 0 1rem; }
.service-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; }
.service-card:hover p, .service-card:hover .service-number { color: #abb0b2; }
.service-card a { margin-top: auto; font-size: .73rem; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; display: flex; justify-content: space-between; border-top: 1px solid currentColor; padding-top: 1rem; }

.precision-band { height: 160px; background: var(--yellow); color: var(--ink); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.precision-band p { font: 800 clamp(2.3rem, 5vw, 5rem)/1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .01em; position: relative; z-index: 2; }
.precision-line { position: absolute; width: 120%; height: 2px; background: rgba(17,19,21,.25); transform: rotate(-4deg); }
.measure { position: absolute; inset: auto 3% 1rem 3%; display: flex; align-items: end; gap: 0; font: 700 .65rem/1 "Barlow Condensed", sans-serif; }
.measure i { flex: 1; height: 9px; border-left: 1px solid rgba(17,19,21,.45); }

.process { background: var(--ink); color: white; display: grid; grid-template-columns: .85fr 1.15fr; gap: 8rem; }
.section-kicker.light span { border-color: #4b5053; color: #8d9498; }
.process-copy { position: sticky; top: 2rem; align-self: start; }
.process-copy p { max-width: 460px; color: #aeb3b5; margin: 2rem 0; }
.text-link { color: var(--yellow); text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; font-weight: 800; display: inline-flex; gap: 1rem; border-bottom: 1px solid var(--yellow); padding-bottom: .5rem; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid #35393c; }
.steps li { display: grid; grid-template-columns: 70px 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid #35393c; }
.steps > li > span { color: var(--yellow); font: 700 1rem/1 "Barlow Condensed", sans-serif; }
.steps h3 { margin: 0 0 .7rem; font: 700 2rem/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.steps p { margin: 0; color: #9ca2a5; max-width: 520px; }

.planner-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 3rem; }
.planner-heading .section-kicker { grid-column: 1 / -1; }
.planner-shell { display: grid; grid-template-columns: 1.35fr .65fr; margin-top: 4.5rem; background: white; box-shadow: 0 26px 70px rgba(17,19,21,.09); }
#project-form { padding: 3rem; }
fieldset { border: 0; padding: 0; margin: 0 0 2.2rem; }
legend { font: 700 1.35rem/1.2 "Barlow Condensed", sans-serif; text-transform: uppercase; margin-bottom: 1rem; }
legend span { width: 28px; height: 28px; display: inline-grid; place-items: center; background: var(--ink); color: var(--yellow); margin-right: .65rem; font-size: .82rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.choice-grid.three { grid-template-columns: repeat(3, 1fr); }
.choice-grid label { cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid label span { min-height: 58px; padding: .85rem 1rem; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); font-size: .82rem; font-weight: 700; transition: border .2s, background .2s; }
.choice-grid label span small { font-weight: 500; color: var(--muted); }
.choice-grid input:checked + span { border-color: var(--ink); background: var(--ink); color: white; box-shadow: inset 4px 0 var(--yellow); }
.choice-grid input:checked + span small { color: #c1c5c7; }
.choice-grid input:focus-visible + span { outline: 3px solid rgba(244,196,48,.55); outline-offset: 2px; }
select { width: 100%; height: 58px; border: 1px solid var(--line); background: white; padding: 0 1rem; color: var(--ink); }
.form-button { border: 0; }
.project-summary { background: var(--ink); color: white; padding: 3rem; display: flex; flex-direction: column; min-height: 560px; }
.summary-label { color: var(--yellow); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 800; }
.summary-empty { margin: auto 0; color: #838a8e; text-align: center; }
.summary-drawing { height: 120px; width: 150px; border: 1px solid #363b3e; margin: 0 auto 1.3rem; position: relative; }
.summary-drawing i { position: absolute; background: #363b3e; }
.summary-drawing i:nth-child(1) { width: 1px; height: 100%; left: 34%; }
.summary-drawing i:nth-child(2) { width: 1px; height: 100%; right: 24%; }
.summary-drawing i:nth-child(3) { height: 1px; width: 100%; top: 60%; }
.summary-result { margin: auto 0; }
.summary-result > p { font: 600 1.65rem/1.35 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.summary-actions { display: grid; gap: .7rem; margin-top: 1.5rem; }
.summary-actions button, .summary-actions a { min-height: 48px; display: grid; place-items: center; border: 1px solid #505558; color: white; background: transparent; cursor: pointer; text-transform: uppercase; letter-spacing: .07em; font-size: .7rem; font-weight: 800; }
.summary-actions a { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.project-summary > small { color: #737a7e; font-size: .7rem; margin-top: auto; }

.contact-cta { min-height: 580px; position: relative; background: #34393c; color: white; display: flex; align-items: center; overflow: hidden; padding: 6rem max(28px, calc((100vw - var(--max)) / 2)); }
.contact-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(17,19,21,.97) 0%, rgba(17,19,21,.92) 50%, rgba(17,19,21,.38) 100%), url("assets/drywall-hero.png") center 30%/cover; filter: grayscale(.3); }
.contact-angle { position: absolute; top: 0; bottom: 0; right: 15%; width: 220px; background: var(--yellow); opacity: .88; transform: skewX(-12deg); mix-blend-mode: multiply; }
.contact-content { position: relative; z-index: 2; max-width: 880px; }
.contact-content > p:not(.eyebrow) { color: #c6cbcd; font-size: 1.05rem; }
.phone-link { margin-top: 2rem; display: inline-grid; grid-template-columns: 1fr auto; column-gap: 2rem; align-items: center; font: 700 clamp(2rem, 4vw, 4rem)/1 "Barlow Condensed", sans-serif; color: var(--yellow); border-bottom: 2px solid var(--yellow); padding-bottom: .65rem; }
.phone-link small { grid-column: 1 / -1; font: 700 .68rem/1 "Manrope", sans-serif; text-transform: uppercase; letter-spacing: .12em; color: white; margin-bottom: .45rem; }

footer { background: #0a0b0c; color: white; padding: 4rem max(28px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.footer-brand { width: fit-content; }
footer > p { color: #858c90; justify-self: end; }
footer > div { grid-column: 1 / -1; display: flex; gap: 2rem; padding-top: 2rem; border-top: 1px solid #292c2e; font-size: .8rem; }
footer > div a:first-child { color: var(--yellow); }
footer > small { grid-column: 1 / -1; color: #5e6467; font-size: .68rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { height: 76px; }
  .menu-button { display: block; }
  nav { position: absolute; left: 0; right: 0; top: 76px; padding: 1.5rem 28px 2rem; background: var(--ink); flex-direction: column; align-items: flex-start; transform: translateY(-140%); opacity: 0; pointer-events: none; transition: .25s ease; }
  nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-call { border: 0; padding: .5rem 0; }
  .hero { min-height: 720px; height: calc(100svh - 106px); }
  .hero-content { width: calc(100% - 56px); padding-bottom: 8rem; }
  .hero-shade { background: linear-gradient(90deg, rgba(17,19,21,.94), rgba(17,19,21,.48)); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; gap: 4rem; }
  .process-copy { position: static; }
  .planner-shell { grid-template-columns: 1fr; }
  .project-summary { min-height: 400px; }
}

@media (max-width: 680px) {
  .concept-bar { font-size: .63rem; }
  .hero { min-height: 690px; }
  .hero-photo { background-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(17,19,21,.95) 0%, rgba(17,19,21,.67) 70%, rgba(17,19,21,.42)); }
  .hero-content { padding-bottom: 10rem; }
  h1 { font-size: clamp(4rem, 20vw, 6.2rem); }
  .hero-copy { font-size: .93rem; max-width: 92%; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 300px; }
  .hero-proof { left: 0; grid-template-columns: repeat(3, 1fr); }
  .hero-proof > div { padding: 1.1rem .7rem; min-height: 90px; }
  .hero-proof strong { font-size: 1.5rem; }
  .hero-proof small { font-size: .56rem; line-height: 1.2; display: block; }
  .scroll-cue { display: none; }
  .section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .section-heading, .planner-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-grid { grid-template-columns: 1fr; margin-top: 3rem; }
  .service-card { min-height: 330px; }
  .precision-band { height: 120px; }
  .process { gap: 3rem; }
  .steps li { grid-template-columns: 38px 1fr; gap: 1rem; }
  #project-form, .project-summary { padding: 2rem 1.3rem; }
  .choice-grid, .choice-grid.three { grid-template-columns: 1fr; }
  .contact-cta { min-height: 540px; }
  .phone-link { font-size: 2rem; }
  footer { grid-template-columns: 1fr; }
  footer > p { justify-self: start; }
  footer > div { grid-column: 1; flex-direction: column; gap: .7rem; }
  footer > small { grid-column: 1; }
}

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