:root {
  --ink: #10231c;
  --ink-2: #18372c;
  --paper: #f4f1e9;
  --white: #fff;
  --muted: #637168;
  --line: rgba(16, 35, 28, .13);
  --acid: #c6f04f;
  --acid-dark: #a9d435;
  --sand: #e8dfce;
  --danger: #a3372b;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(10, 30, 23, .12);
  --font: Inter, Avenir Next, Avenir, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font); font-size: 17px; line-height: 1.58; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, input[type="checkbox"], input[type="radio"], select { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; line-height: 1.05; }
h1 { font-size: clamp(3rem, 7.6vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2.2rem); }
p { color: var(--muted); }
.container { width: min(1320px, calc(100% - 48px)); margin-inline: auto; }
.content-narrow { max-width: 820px; }
.section { padding: clamp(90px, 10vw, 150px) 0; }
.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; z-index: 9999; left: 16px; top: -80px; padding: 12px 18px; background: var(--acid); color: var(--ink); border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 16px; }
.eyebrow { display: flex; gap: 11px; align-items: center; margin-bottom: 24px; color: rgba(255,255,255,.78); font-size: .76rem; line-height: 1.2; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--acid); }
.eyebrow.dark { color: var(--ink); }
.eyebrow.light { color: rgba(255,255,255,.72); }
.mini-badge { display: inline-flex; align-items: center; width: fit-content; min-height: 28px; padding: 5px 10px; color: var(--ink); background: var(--acid); border-radius: 99px; font-size: .69rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 58px; padding: 15px 24px; border: 1px solid transparent; border-radius: 9px; font-size: .9rem; font-weight: 850; letter-spacing: -.01em; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary, .button-accent { color: var(--ink); background: var(--acid); }
.button-primary:hover, .button-accent:hover { background: #d3fb66; }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: var(--ink-2); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.42); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.button-outline { color: #fff; border-color: rgba(255,255,255,.3); }
.button-outline:hover { border-color: var(--acid); }
.button-full { width: 100%; }

/* Header */
.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 84px; color: #fff; transition: background .25s, box-shadow .25s; }
.site-header.is-scrolled, body:not(.home) .site-header { background: rgba(12, 31, 24, .96); box-shadow: 0 8px 30px rgba(4, 15, 11, .12); backdrop-filter: blur(15px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 238px; color: #fff; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; color: var(--ink); background: var(--acid); border-radius: 11px 4px 11px 4px; font-size: 1.2rem; font-weight: 950; transform: skew(-4deg); }
.brand-copy { display: grid; color: #fff; font-size: 1.04rem; font-weight: 550; line-height: 1; letter-spacing: .07em; }
.brand-copy strong { color: var(--acid); font-weight: 950; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.55); font-size: .55rem; letter-spacing: .08em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); font-size: .82rem; font-weight: 760; }
.primary-nav > a:not(.nav-cta) { position: relative; }
.primary-nav > a:not(.nav-cta)::after { position: absolute; content: ""; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--acid); transition: right .2s; }
.primary-nav > a:hover::after { right: 0; }
.nav-cta { padding: 11px 18px; color: var(--ink); background: var(--acid); border-radius: 7px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #fff; }

/* Hero */
.hero { position: relative; display: grid; min-height: min(900px, 100svh); overflow: hidden; color: #fff; background: var(--ink); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-shade { background: linear-gradient(90deg, rgba(5,20,14,.93) 0%, rgba(5,20,14,.77) 40%, rgba(5,20,14,.18) 74%, rgba(5,20,14,.06)), linear-gradient(0deg, rgba(5,20,14,.45), transparent 45%); }
.hero-content { position: relative; z-index: 2; display: flex; align-items: center; padding-top: 110px; padding-bottom: 90px; }
.hero-copy { width: min(780px, 69%); }
.hero h1 { max-width: 800px; margin-bottom: 25px; color: #fff; font-weight: 820; }
.hero h1 em { display: block; color: var(--acid); font-style: normal; }
.hero-lead { max-width: 675px; margin-bottom: 34px; color: rgba(255,255,255,.76); font-size: clamp(1.08rem, 1.8vw, 1.45rem); line-height: 1.52; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; gap: 31px; margin-top: 42px; color: rgba(255,255,255,.67); font-size: .76rem; }
.hero-proof span { display: grid; padding-right: 31px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-proof span:last-child { padding-right: 0; border: 0; }
.hero-proof strong { color: #fff; font-size: 1.05rem; }
.hero-scroll { position: absolute; z-index: 3; right: 34px; bottom: 34px; display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.65); font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll span { color: var(--acid); font-size: 1.2rem; }
.promise-strip { background: var(--acid); }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.promise-grid > span { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 92px; padding: 16px; border-right: 1px solid rgba(16,35,28,.18); font-size: .76rem; text-align: center; }
.promise-grid > span:last-child { border: 0; }
.promise-grid svg { width: 20px; height: 20px; }

/* Section headings */
.section-heading { margin-bottom: 60px; }
.section-heading h2 { margin-bottom: 0; }
.split-heading { display: grid; grid-template-columns: 1.15fr .65fr; gap: 12%; align-items: end; }
.split-heading > p { max-width: 500px; margin-bottom: 8px; font-size: 1.07rem; }
.section-heading.center { max-width: 820px; margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center > p:last-child { max-width: 630px; margin: 24px auto 0; }

/* Services */
.services-section { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 560px; overflow: hidden; color: #fff; background: var(--ink); border-radius: var(--radius); box-shadow: 0 10px 35px rgba(16,35,28,.04); }
.service-card > a:first-child, .service-card picture { position: absolute; inset: 0; display: block; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.service-card:hover img { transform: scale(1.035); }
.service-card::after { position: absolute; content: ""; inset: 0; background: linear-gradient(0deg, rgba(6,24,17,.92) 0%, rgba(6,24,17,.3) 58%, rgba(6,24,17,0) 85%); pointer-events: none; }
.service-card-wide { grid-column: span 2; min-height: 610px; }
.service-card-wide img { object-position: center 48%; }
.service-card .service-copy { position: absolute; z-index: 2; inset: auto 0 0; padding: clamp(28px, 4vw, 52px); }
.service-card h3 { margin-bottom: 12px; color: #fff; }
.service-card p { max-width: 680px; margin-bottom: 21px; color: rgba(255,255,255,.72); }
.service-number { position: absolute; right: 34px; top: 32px; color: rgba(255,255,255,.53); font-size: .74rem; font-weight: 850; }
.text-link { display: inline-flex; gap: 12px; align-items: center; color: #fff; font-size: .83rem; font-weight: 850; }
.text-link span { color: var(--acid); font-size: 1.25rem; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.service-card-text { background: var(--sand); color: var(--ink); }
.service-card-text::after { display: none; }
.service-card-text .service-copy { position: relative; display: flex; flex-direction: column; justify-content: end; height: 100%; }
.service-card-text h3, .service-card-text .text-link { color: var(--ink); }
.service-card-text p { color: var(--muted); }
.service-card-text .service-number { color: var(--muted); }
.service-card-text .mini-badge { margin-bottom: auto; }
.secondary-services { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 20px; padding: 28px 32px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.secondary-services p { margin: 0; font-size: .9rem; }
.secondary-services a { flex: none; font-size: .82rem; font-weight: 850; }

/* Process */
.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 0; margin: 0; list-style: none; }
.process-grid li { position: relative; min-height: 340px; padding: 22px; background: var(--paper); border-radius: 16px; }
.process-grid li > span { position: absolute; right: 20px; top: 13px; color: rgba(16,35,28,.12); font-size: 4.8rem; font-weight: 900; letter-spacing: -.08em; }
.process-grid li > div { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: end; height: 100%; }
.process-grid svg { width: 34px; height: 34px; margin-bottom: 27px; color: var(--ink); }
.process-grid h3 { margin-bottom: 11px; font-size: 1.4rem; }
.process-grid p { margin: 0; font-size: .88rem; }

/* Calculator */
.calculator-section { color: #fff; background: var(--ink); }
.calculator-heading { display: grid; grid-template-columns: 1fr .65fr; gap: 12%; align-items: end; }
.calculator-heading h2 { color: #fff; }
.calculator-heading > p { max-width: 520px; margin-bottom: 8px; color: rgba(255,255,255,.62); }
.calculator-shell { display: grid; grid-template-columns: minmax(0, 1fr) 360px; overflow: clip; color: var(--ink); background: #fff; border-radius: 24px; box-shadow: 0 35px 110px rgba(0,0,0,.25); }
.calculator-main { min-width: 0; padding: clamp(24px, 4vw, 54px); }
.calc-tabs { display: flex; gap: 8px; margin-bottom: 38px; padding: 5px; background: #eef0eb; border-radius: 12px; }
.calc-tabs button { flex: 1; min-height: 48px; padding: 9px 12px; color: var(--muted); background: transparent; border: 0; border-radius: 8px; font-size: .78rem; font-weight: 820; }
.calc-tabs button.is-active { color: var(--ink); background: #fff; box-shadow: 0 4px 18px rgba(16,35,28,.08); }
.calc-panel[hidden] { display: none; }
.field-group { margin-bottom: 30px; }
.field-label, .field > span:first-child, .quote-form label > span:first-child { display: block; margin-bottom: 10px; color: var(--ink); font-size: .76rem; font-weight: 840; }
.segmented { display: flex; width: fit-content; padding: 4px; background: var(--paper); border-radius: 10px; }
.segmented label input, .check-grid label input, .handle-grid label input, .vinyl-grid label input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label span { display: block; padding: 10px 16px; border-radius: 7px; color: var(--muted); font-size: .78rem; font-weight: 780; }
.segmented label input:checked + span { color: var(--ink); background: #fff; box-shadow: 0 3px 12px rgba(16,35,28,.08); }
.calc-grid { display: grid; gap: 18px; }
.calc-grid.two { grid-template-columns: repeat(2, 1fr); }
.field select, .field input:not([type="checkbox"]), .quote-form input:not([type="checkbox"]):not([type="file"]), .quote-form select, .quote-form textarea { width: 100%; min-height: 54px; padding: 12px 15px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 9px; outline: 0; }
.field select:focus, .field input:focus, .quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(198,240,79,.45); }
.field small, .field-help, .quote-form label small { display: block; margin-top: 7px; color: var(--muted); font-size: .7rem; }
.input-unit { position: relative; display: block; }
.input-unit input { padding-right: 58px !important; }
.input-unit b { position: absolute; right: 16px; top: 50%; color: var(--muted); font-size: .79rem; transform: translateY(-50%); }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.check-grid label > span { display: grid; grid-template-columns: 28px 1fr; align-items: center; min-height: 84px; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 11px; transition: border .2s, background .2s; }
.check-grid svg { grid-row: span 2; width: 21px; height: 21px; }
.check-grid b { font-size: .82rem; }
.check-grid small { color: var(--muted); font-size: .68rem; }
.check-grid input:checked + span { background: rgba(198,240,79,.18); border-color: var(--acid-dark); box-shadow: inset 4px 0 var(--acid-dark); }
.compact-field { max-width: 280px; margin-bottom: 24px; }
.included-note { padding: 17px 19px; color: var(--muted); background: var(--paper); border-radius: 10px; font-size: .75rem; }
.included-note strong { color: var(--ink); }
.calc-result { display: flex; flex-direction: column; padding: 46px 32px; color: #fff; background: #17372c; }
.calc-result .price { display: grid; margin: 14px 0 13px; }
.calc-result .price strong { color: #fff; font-size: clamp(2.4rem, 4vw, 4.1rem); font-weight: 800; letter-spacing: -.06em; line-height: 1; }
.calc-result .price small { margin-top: 9px; color: rgba(255,255,255,.52); font-size: .68rem; }
.result-status { min-height: 48px; margin-bottom: 25px; color: rgba(255,255,255,.75); font-size: .85rem; }
.result-lines { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.result-lines div { display: flex; justify-content: space-between; gap: 14px; margin: 8px 0; color: rgba(255,255,255,.64); font-size: .72rem; }
.result-lines b { color: #fff; font-weight: 700; }
.binding-box { margin: 26px 0; padding: 17px; background: rgba(255,255,255,.08); border-left: 3px solid var(--acid); border-radius: 4px 9px 9px 4px; }
.binding-box b { font-size: .8rem; }
.binding-box p { margin: 5px 0 0; color: rgba(255,255,255,.6); font-size: .7rem; }
.calc-result .button { width: 100%; margin-top: auto; }
.price-disclaimer { display: block; margin-top: 14px; color: rgba(255,255,255,.42); font-size: .61rem; line-height: 1.45; }
.measure-choice { display: block; margin-top: 28px; }
.measure-choice > input { position: absolute; opacity: 0; }
.measure-choice > span { display: grid; grid-template-columns: 32px 1fr; align-items: center; padding: 17px; background: #fff; border: 1px dashed rgba(16,35,28,.25); border-radius: 11px; }
.measure-choice svg { grid-row: span 2; width: 21px; }
.measure-choice b { font-size: .8rem; }
.measure-choice small { color: var(--muted); font-size: .7rem; }
.measure-choice input:checked + span { background: rgba(198,240,79,.2); border-color: var(--acid-dark); border-style: solid; }
.kitchen-intro { display: grid; grid-template-columns: 1fr 130px; gap: 30px; align-items: center; margin-bottom: 26px; padding: 24px; background: var(--paper); border-radius: 13px; }
.kitchen-intro h3, .panel-heading h3 { margin: 15px 0 9px; font-size: 1.65rem; }
.kitchen-intro p, .panel-heading p { margin: 0; font-size: .78rem; }
.kitchen-intro img { width: 100%; max-height: 160px; object-fit: contain; mix-blend-mode: multiply; }
.kitchen-add { grid-template-columns: 1fr 1.4fr 130px; align-items: end; }
.kitchen-add .add-door { grid-column: 1 / -1; min-height: 50px; justify-self: end; }
.stepper { display: grid; grid-template-columns: 40px 1fr 40px; }
.stepper input { min-width: 0; border-radius: 0 !important; text-align: center; }
.stepper button { background: var(--paper); border: 1px solid var(--line); }
.stepper button:first-child { border-radius: 9px 0 0 9px; border-right: 0; }
.stepper button:last-child { border-radius: 0 9px 9px 0; border-left: 0; }
.door-list { margin: 24px 0; border-top: 1px solid var(--line); }
.door-list .empty-state { margin: 16px 0 0; padding: 16px; color: var(--muted); background: var(--paper); border-radius: 9px; font-size: .75rem; text-align: center; }
.door-row { display: grid; grid-template-columns: 1fr 1.3fr auto auto; gap: 12px; align-items: center; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: .76rem; }
.door-row b { font-size: .78rem; }
.door-row button { width: 32px; height: 32px; color: var(--danger); background: #fff; border: 1px solid var(--line); border-radius: 7px; }
.handle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.handle-grid label span { display: flex; gap: 8px; align-items: center; min-height: 48px; padding: 10px; border: 1px solid var(--line); border-radius: 9px; font-size: .7rem; font-weight: 730; }
.handle-grid input:checked + span { background: rgba(198,240,79,.18); border-color: var(--acid-dark); }
.handle-grid i { display: inline-block; width: 24px; height: 7px; flex: none; background: var(--handle); border: 1px solid rgba(16,35,28,.15); border-radius: 2px; }
.fixed-specs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.fixed-specs span { display: flex; gap: 7px; align-items: center; padding: 8px 10px; background: var(--paper); border-radius: 8px; color: var(--muted); font-size: .68rem; }
.fixed-specs svg { width: 15px; color: var(--ink); }
.panel-heading { margin-bottom: 25px; }
.vinyl-compare { position: relative; overflow: hidden; margin: 0 0 24px; background: var(--ink); border-radius: 12px; }
.vinyl-compare img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
.vinyl-compare figcaption { position: absolute; inset: auto 0 0; display: grid; grid-template-columns: repeat(2, 1fr); color: #fff; background: linear-gradient(0deg, rgba(5,20,14,.78), transparent); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.vinyl-compare figcaption span { padding: 24px 13px 10px; }
.vinyl-compare figcaption span:last-child { text-align: right; }
.vinyl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.vinyl-grid label > span { display: block; overflow: hidden; padding: 6px 6px 10px; border: 1px solid var(--line); border-radius: 10px; }
.vinyl-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; }
.vinyl-grid b, .vinyl-grid small { display: block; padding: 0 5px; }
.vinyl-grid b { margin-top: 8px; font-size: .68rem; }
.vinyl-grid small { color: var(--muted); font-size: .6rem; }
.vinyl-grid input:checked + span { border-color: var(--acid-dark); box-shadow: inset 0 0 0 2px var(--acid); }
.vinyl-measures { margin-top: 24px; }

/* Why */
.why-section { background: var(--paper); }
.why-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 8%; align-items: center; }
.why-copy h2 { margin-bottom: 26px; }
.why-copy > p:not(.eyebrow) { max-width: 610px; }
.why-copy ul { display: grid; gap: 0; padding: 0; margin: 35px 0 0; list-style: none; }
.why-copy li { display: grid; grid-template-columns: 35px 1fr; padding: 18px 0; border-top: 1px solid var(--line); }
.why-copy li svg { width: 21px; }
.why-copy li span { display: grid; }
.why-copy li b { font-size: .88rem; }
.why-copy li small { color: var(--muted); font-size: .73rem; }
.why-visual { position: relative; }
.why-visual img { width: 100%; aspect-ratio: 4/4.3; object-fit: cover; border-radius: 170px 18px 18px 18px; }
.experience-stamp { position: absolute; left: -54px; bottom: 38px; display: flex; gap: 10px; align-items: center; width: 174px; height: 174px; padding: 30px; color: var(--ink); background: var(--acid); border: 8px solid var(--paper); border-radius: 50%; transform: rotate(-7deg); }
.experience-stamp strong { font-size: 2.2rem; letter-spacing: -.08em; }
.experience-stamp span { font-size: .65rem; font-weight: 850; line-height: 1.25; text-transform: uppercase; }

/* Area */
.area-section { padding: 105px 0; color: #fff; background: linear-gradient(115deg, #10231c, #244d3e); }
.area-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 12%; align-items: end; }
.area-grid h2 { color: #fff; }
.area-copy p { color: rgba(255,255,255,.65); }

/* Quote */
.quote-section { background: #fff; }
.quote-grid { display: grid; grid-template-columns: .75fr 1fr; gap: 8%; align-items: start; }
.quote-intro { position: sticky; top: 120px; }
.quote-intro h2 { margin-bottom: 26px; }
.photo-tips { display: grid; gap: 11px; margin-top: 35px; padding: 24px; background: var(--paper); border-radius: 14px; }
.photo-tips b { margin-bottom: 4px; font-size: .78rem; }
.photo-tips span { display: flex; gap: 9px; color: var(--muted); font-size: .75rem; }
.photo-tips svg { width: 16px; color: var(--ink); }
.quote-form { display: grid; gap: 20px; padding: clamp(25px, 4vw, 48px); background: var(--paper); border-radius: 20px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.quote-form textarea { resize: vertical; }
.hp-field { position: absolute !important; left: -9999px !important; }
.calc-summary-preview { display: grid; padding: 15px 17px; background: rgba(198,240,79,.22); border-left: 4px solid var(--acid-dark); border-radius: 5px 10px 10px 5px; }
.calc-summary-preview b { font-size: .75rem; }
.calc-summary-preview span { color: var(--muted); font-size: .71rem; }
.file-drop { position: relative; display: grid; place-items: center; min-height: 155px; padding: 22px; color: var(--muted); background: #fff; border: 1.5px dashed rgba(16,35,28,.3); border-radius: 12px; text-align: center; transition: border .2s, background .2s; }
.file-drop:hover, .file-drop.is-dragging { background: rgba(198,240,79,.13); border-color: var(--acid-dark); }
.file-drop svg { width: 28px; margin-bottom: 8px; color: var(--ink); }
.file-drop b { color: var(--ink); font-size: .82rem; }
.file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .72rem; }
.consent input { margin-top: 4px; accent-color: var(--ink); }
.form-fineprint { margin: -3px 0 0; font-size: .65rem; text-align: center; }
.form-message { padding: 13px 15px; border-radius: 9px; font-size: .78rem; font-weight: 750; }
.form-message.success { background: #dfeecb; }
.form-message.error { color: #7d271e; background: #f3d8d3; }

/* FAQ */
.faq-section { background: var(--paper); }
.faq-wrap { display: grid; grid-template-columns: .6fr 1fr; gap: 10%; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 23px 0; font-size: .92rem; font-weight: 820; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 24px; height: 24px; flex: none; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; content: ""; inset: 11px 3px auto; height: 2px; background: var(--ink); transition: transform .2s; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 720px; padding: 0 45px 24px 0; margin: 0; font-size: .82rem; }

/* Footer */
.site-footer { padding: 75px 0 20px; color: #fff; background: #091812; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(2, .7fr); gap: 8%; }
.brand-footer { margin-bottom: 25px; }
.footer-grid p { max-width: 440px; color: rgba(255,255,255,.5); font-size: .77rem; }
.footer-grid h2 { margin-bottom: 16px; color: #fff; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a { margin: 4px 0; color: rgba(255,255,255,.7); font-size: .76rem; }
.footer-grid a:hover { color: var(--acid); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 18px; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.1); font-size: .62rem; }

/* Subpages */
.page-main { min-height: 70vh; padding: 150px 0 100px; }
.page-hero { position: relative; display: flex; align-items: end; min-height: 660px; overflow: hidden; color: #fff; background: var(--ink); }
.page-hero > img, .page-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-shade { background: linear-gradient(90deg, rgba(5,20,14,.9), rgba(5,20,14,.38)), linear-gradient(0deg, rgba(5,20,14,.7), transparent 60%); }
.page-hero .container { position: relative; z-index: 2; padding-bottom: 80px; }
.page-hero h1 { max-width: 900px; margin-bottom: 17px; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero p:not(.eyebrow) { max-width: 680px; margin-bottom: 28px; color: rgba(255,255,255,.75); font-size: 1.15rem; }
.page-content-grid { display: grid; grid-template-columns: 1fr 390px; gap: 9%; padding-top: 100px; padding-bottom: 120px; }
.entry-content { font-size: 1.05rem; }
.entry-content > p:first-child { color: var(--ink); font-size: 1.3rem; }
.entry-content h2 { margin: 60px 0 22px; font-size: clamp(2rem, 3vw, 3.2rem); }
.entry-content li { margin: 9px 0; color: var(--muted); }
.page-faq { margin-top: 58px; padding: 28px; background: var(--paper); border-radius: 16px; }
.page-faq h2 { margin-top: 0; }
.page-faq summary { color: var(--ink); font-weight: 820; cursor: pointer; }
.page-faq p { margin: 15px 0 0; font-size: .88rem; }
.related-links { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.related-links strong { width: 100%; margin-bottom: 4px; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.related-links a { padding: 8px 11px; background: var(--paper); border-radius: 7px; color: var(--muted); font-size: .7rem; font-weight: 750; }
.related-links a:hover { color: var(--ink); background: var(--acid); }
.page-cta { position: sticky; top: 120px; padding: 32px; background: var(--sand); border-radius: 18px; }
.page-cta h2 { margin: 17px 0 14px; font-size: 2rem; }
.page-cta p { font-size: .8rem; }

/* Motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .primary-nav { gap: 17px; }
  .primary-nav a { font-size: .75rem; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid > span:nth-child(2) { border-right: 0; }
  .promise-grid > span:nth-child(-n+2) { border-bottom: 1px solid rgba(16,35,28,.16); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li { min-height: 280px; }
  .calculator-shell { grid-template-columns: minmax(0, 1fr) 310px; }
  .calculator-main { padding: 34px 28px; }
  .handle-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 6%; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 720px); }
  .site-header, .nav-wrap { height: 72px; }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: 72px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 25px 24px; background: var(--ink); transform: translateX(100%); transition: transform .25s ease; }
  .menu-open .primary-nav { transform: none; }
  .primary-nav > a { padding: 18px 0; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .primary-nav .nav-cta { margin-top: 18px; padding: 16px; text-align: center; }
  .hero { min-height: 820px; }
  .hero-media img { object-position: 67% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,20,14,.92), rgba(5,20,14,.45)), linear-gradient(0deg, rgba(5,20,14,.78), transparent 60%); }
  .hero-copy { width: 84%; }
  .hero-proof { gap: 18px; }
  .hero-proof span { padding-right: 18px; }
  .split-heading, .calculator-heading, .why-grid, .quote-grid, .faq-wrap, .area-grid, .page-content-grid { grid-template-columns: 1fr; }
  .split-heading, .calculator-heading { gap: 25px; }
  .service-card-wide { grid-column: auto; min-height: 540px; }
  .calculator-shell { grid-template-columns: 1fr; }
  .calc-result { min-height: 480px; }
  .why-grid { gap: 70px; }
  .why-copy { max-width: 650px; }
  .experience-stamp { left: -10px; }
  .area-grid { gap: 30px; }
  .quote-grid { gap: 70px; }
  .quote-intro { position: static; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 4%; }
  .page-content-grid { gap: 55px; }
  .page-cta { position: static; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(100% - 24px, 560px); }
  .section { padding: 78px 0; }
  .brand { min-width: 0; }
  .brand-copy small { display: none; }
  .hero { min-height: 760px; }
  .hero-content { align-items: end; padding-bottom: 72px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-proof span { padding-right: 8px; font-size: .59rem; }
  .hero-proof strong { font-size: .8rem; }
  .hero-scroll { display: none; }
  .promise-grid { width: 100%; grid-template-columns: 1fr 1fr; }
  .promise-grid > span { min-height: 82px; padding: 10px; font-size: .65rem; }
  .promise-grid svg { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 470px; }
  .service-card .service-copy { padding: 28px; }
  .secondary-services { display: block; padding: 23px; }
  .secondary-services a { display: inline-block; margin-top: 15px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 240px; }
  .calculator-section .container { width: 100%; }
  .calculator-heading { width: calc(100% - 24px); margin-inline: auto; }
  .calculator-shell { border-radius: 0; }
  .calculator-main { padding: 25px 12px 32px; }
  .calc-tabs { display: grid; grid-template-columns: 1fr; }
  .calc-tabs button { min-height: 43px; }
  .calc-grid.two, .check-grid, .kitchen-add, .form-row { grid-template-columns: 1fr; }
  .check-grid label > span { min-height: 72px; }
  .kitchen-intro { grid-template-columns: 1fr 90px; gap: 14px; padding: 17px; }
  .kitchen-add .add-door { width: 100%; }
  .door-row { grid-template-columns: 1fr auto; }
  .door-row span { grid-column: 1; }
  .door-row button { grid-column: 2; grid-row: 1 / span 2; }
  .handle-grid { grid-template-columns: 1fr; }
  .vinyl-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-result { min-height: 510px; padding: 38px 24px; }
  .why-visual img { border-radius: 90px 14px 14px 14px; }
  .experience-stamp { width: 140px; height: 140px; padding: 22px; }
  .area-section { padding: 78px 0; }
  .quote-form { padding: 24px 14px; border-radius: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .footer-bottom { display: grid; }
  .page-hero { min-height: 590px; }
  .page-hero .container { padding-bottom: 55px; }
  .page-content-grid { padding-top: 70px; padding-bottom: 80px; }
}

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