:root {
  --bg: #0b0c0d;
  --surface: #121416;
  --surface-2: #181b1d;
  --ink: #f4f2ed;
  --muted: #aaa79f;
  --quiet: #74756f;
  --line: rgba(255,255,255,.11);
  --gold: #c7a76d;
  --gold-2: #e2c892;
  --green: #80a184;
  --shell: min(1180px, calc(100vw - 40px));
  --ease: cubic-bezier(.2,.72,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: radial-gradient(circle at 82% 0, rgba(199,167,109,.09), transparent 31rem), var(--bg);
  color: var(--ink);
  font: 16px/1.65 Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: #111; }
.shell { width: var(--shell); margin-inline: auto; }
.skip { position: fixed; left: 16px; top: 12px; z-index: 100; padding: 9px 13px; border-radius: 999px; background: var(--ink); color: #111; transform: translateY(-150%); }
.skip:focus { transform: none; }

.topbar { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(9,10,11,.82); backdrop-filter: blur(18px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.mark { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(226,200,146,.55); border-radius: 12px; color: var(--gold-2); font: 800 .82rem/1 Manrope, sans-serif; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy small { margin-top: 5px; color: var(--quiet); font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 22px; color: #cfcdc7; font-size: .82rem; font-weight: 600; }
.nav-links a:hover { color: var(--gold-2); }
.lang { display: flex; gap: 5px; }
.lang a { min-width: 34px; padding: 7px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--quiet); font-size: .65rem; font-weight: 700; text-align: center; }
.lang a[aria-current="page"] { border-color: var(--gold); background: var(--gold); color: #17130d; }

.hero { position: relative; min-height: 700px; display: grid; align-items: end; overflow: hidden; border-bottom: 1px solid var(--line); isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7,8,9,.93) 0, rgba(7,8,9,.68) 49%, rgba(7,8,9,.24)), linear-gradient(0deg, var(--bg), transparent 38%); }
.hero-copy { padding: 120px 0 82px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-2); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3 { font-family: Manrope, sans-serif; letter-spacing: -.045em; }
h1 { max-width: 900px; margin: 24px 0 0; font-size: clamp(3.1rem, 8vw, 7.8rem); line-height: .92; text-wrap: balance; }
.lead { max-width: 720px; margin: 28px 0 0; color: #d0cdc6; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.actions { margin-top: 36px; display: flex; gap: 10px; flex-wrap: wrap; }
.button { position: relative; overflow: hidden; min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; border: 1px solid var(--line); border-radius: 4px; font-weight: 700; transition: transform .25s var(--ease), border-color .2s ease, background .2s ease; }
.button::after { content: ""; position: absolute; inset: -80% auto -80% -45%; width: 28%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent); transition: left .55s var(--ease); pointer-events: none; }
.button:hover::after { left: 120%; }
.button:hover { transform: translateY(-2px); border-color: var(--gold); }
.button.primary { border-color: var(--gold); background: var(--gold); color: #17130d; }

.fact-strip { border-bottom: 1px solid var(--line); background: #0e1011; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { min-height: 112px; display: grid; align-content: center; padding: 22px 28px; border-right: 1px solid var(--line); }
.fact:first-child { border-left: 1px solid var(--line); }
.fact strong { font: 700 .95rem/1.2 Manrope, sans-serif; }
.fact span { margin-top: 6px; color: var(--quiet); font-size: .78rem; }

.section { padding: clamp(82px, 10vw, 145px) 0; border-bottom: 1px solid rgba(255,255,255,.065); }
.section.alt { background: #0e1011; }
.section-head { display: grid; grid-template-columns: 1fr .7fr; gap: clamp(34px, 7vw, 90px); align-items: end; }
h2 { max-width: 830px; margin: 16px 0 0; font-size: clamp(2.35rem, 5.4vw, 5.25rem); line-height: .98; text-wrap: balance; }
.section-head p, .copy { color: var(--muted); }
.section-head p { margin: 0; }
.content-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); }
.card .number { color: var(--gold-2); font-size: .7rem; font-weight: 700; letter-spacing: .14em; }
.card h3 { margin: 45px 0 12px; font-size: 1.35rem; line-height: 1.15; }
.card p { margin: 0; color: var(--muted); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px, 8vw, 110px); align-items: center; }
.photo { min-height: 570px; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--surface); }
.photo img { height: 100%; min-height: 570px; object-fit: cover; }
.checklist { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.checklist li { position: relative; padding: 18px 0 18px 30px; border-bottom: 1px solid var(--line); color: #d7d4cd; }
.checklist li::before { content: "↗"; position: absolute; left: 0; color: var(--gold-2); }
.note { margin-top: 26px; padding: 18px 20px; border: 1px solid rgba(226,200,146,.22); border-radius: 14px; background: rgba(226,200,146,.045); color: var(--muted); font-size: .86rem; }

.project-proof { margin-top: 54px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.project { min-height: 430px; position: relative; display: flex; align-items: flex-end; padding: 28px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; isolation: isolate; }
.project img { position: absolute; inset: 0; z-index: -2; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.project::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 25%, rgba(7,8,9,.92)); }
.project:hover img { transform: scale(1.035); }
.project span { color: var(--gold-2); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project h3 { margin: 8px 0 0; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1; }

.faq { margin-top: 46px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 24px 40px 24px 0; cursor: pointer; font: 700 1.05rem/1.35 Manrope, sans-serif; }
.faq p { max-width: 780px; margin: -4px 0 24px; color: var(--muted); }

.cta { padding: clamp(70px, 9vw, 120px) 0; background: #d8d2c5; color: #151515; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.cta h2 { max-width: 860px; margin: 0; }
.cta p { max-width: 650px; color: #57544e; }
.cta .button { border-color: #191919; }
.cta .button.primary { border-color: #191919; background: #191919; color: #f4f2ed; }

.estimator { position: relative; overflow: hidden; background: #d8d2c5; color: #151515; }
.estimator::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(0,0,0,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.16) 1px, transparent 1px); background-size: 54px 54px; }
.estimator-grid { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(42px, 7vw, 100px); align-items: start; }
.estimator-intro { position: sticky; top: 112px; }
.estimator .eyebrow { color: #5a4b32; }
.estimator h2 { margin-top: 18px; }
.estimator .copy { color: #57544e; }
.estimator-model { width: fit-content; margin-top: 28px; padding: 10px 13px; border: 1px solid rgba(0,0,0,.14); border-radius: 999px; color: #655f55; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.estimator-model strong { margin-left: 7px; color: #24211d; }
.small-work-welcome { width: fit-content; margin: 18px 0 0; padding: 10px 13px; border-radius: 10px; background: rgba(255,255,255,.45); color: #4f493f; font-size: .72rem; font-weight: 700; line-height: 1.35; }
.estimate-card { padding: clamp(24px, 4vw, 44px); border: 1px solid rgba(0,0,0,.16); border-radius: 22px; background: rgba(247,245,239,.86); box-shadow: 0 24px 80px rgba(58,45,25,.14); }
.estimate-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 16px; }
.estimate-field { display: grid; align-content: start; gap: 9px; margin-bottom: 20px; }
.estimate-field--wide { grid-column: 1 / -1; }
.estimate-field label { display: flex; justify-content: space-between; gap: 15px; color: #605d56; font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.estimate-field label output { color: #221f1a; font-variant-numeric: tabular-nums; }
.estimate-field select { width: 100%; min-height: 52px; padding: 0 42px 0 14px; border: 1px solid rgba(0,0,0,.16); border-radius: 12px; background: rgba(255,255,255,.76); color: #171717; }
.estimate-field input[type="range"] { width: 100%; accent-color: #7a6543; }
.range-scale { display: flex; justify-content: space-between; color: #77736c; font-size: .72rem; }
.estimate-output { padding-top: 26px; border-top: 1px solid rgba(0,0,0,.14); }
.estimate-output-head { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.estimate-output-head > span:first-child { color: #6c6861; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.estimate-confidence { padding: 7px 10px; border: 1px solid rgba(0,0,0,.14); border-radius: 999px; color: #65615a; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; }
.estimate-confidence.is-review { border-color: rgba(121,75,43,.32); background: rgba(151,92,49,.07); }
.estimate-output > strong { display: block; margin-top: 8px; font-family: Manrope, sans-serif; font-size: clamp(2.35rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -.06em; font-variant-numeric: tabular-nums; transition: opacity .16s ease, transform .16s ease; }
.estimate-output > strong.is-updating { opacity: .58; transform: translateY(2px); }
.estimate-output small, .small-job-panel > small { display: block; margin-top: 13px; color: #64615b; line-height: 1.45; }
.estimate-summary { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.estimate-summary span { padding: 7px 9px; border-radius: 8px; background: rgba(0,0,0,.055); color: #5c5851; font-size: .66rem; line-height: 1.2; }
.estimate-basis { margin: 13px 0 0; color: #4f4b44; font-size: .76rem; line-height: 1.45; }
.estimate-contingency { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; margin-top: 18px; padding: 14px 0; border-top: 1px solid rgba(0,0,0,.1); border-bottom: 1px solid rgba(0,0,0,.1); color: #5e5a53; font-size: .72rem; }
.estimate-contingency strong { color: #26221d; font-family: Manrope, sans-serif; font-size: 1rem; font-variant-numeric: tabular-nums; }
.estimate-transfer { width: 100%; min-height: 51px; margin-top: 22px; border: 0; border-radius: 12px; background: #171511; color: #f2eee4; font-weight: 750; cursor: pointer; transition: transform .2s var(--ease), background .2s var(--ease); }
.estimate-transfer:hover { transform: translateY(-2px); background: #28231b; }
.estimate-transfer-status { min-height: 1.3em; margin: 10px 0 0; color: #4f634f; font-size: .72rem; text-align: center; }
.estimate-premium { margin-top: 22px; padding: 22px; border: 1px solid rgba(122,101,67,.28); border-radius: 14px; background: linear-gradient(135deg, rgba(122,101,67,.1), rgba(255,255,255,.36)); }
.estimate-premium[hidden] { display: none; }
.estimate-premium h3 { margin: 0; color: #272117; font-size: 1.15rem; }
.estimate-premium p { margin: 8px 0 0; color: #62594c; font-size: .88rem; }
.estimate-premium-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.estimate-premium-actions button { min-height: 43px; padding: 0 15px; border: 1px solid rgba(23,21,17,.2); border-radius: 8px; background: transparent; color: #272117; font-weight: 750; cursor: pointer; }
.estimate-premium-actions .is-primary { border-color: #171511; background: #171511; color: #f2eee4; }
.small-job-panel { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(0,0,0,.14); }
.small-job-head { display: flex; justify-content: space-between; gap: 22px; align-items: end; }
.small-job-kicker { color: #6c6861; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.small-job-head h3 { margin: 5px 0 0; font-size: clamp(1.2rem, 2.2vw, 1.65rem); letter-spacing: -.035em; }
.small-job-head > strong { flex: 0 0 auto; color: #221f1a; font: 700 clamp(1.45rem, 3.5vw, 2.35rem)/1 Manrope, sans-serif; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.small-job-controls { display: grid; grid-template-columns: minmax(0,1fr) minmax(180px,.8fr); gap: 18px; align-items: end; margin-top: 20px; }
.small-job-controls .estimate-field { margin: 0; }
.small-job-controls p { margin: 0 0 14px; color: #68635b; font-size: .7rem; line-height: 1.45; }
.small-job-controls p strong { display: block; margin-top: 4px; color: #312d27; }
.estimate-transfer--small { margin-top: 18px; background: #675538; }

.footer { padding: 50px 0 34px; border-top: 1px solid var(--line); background: #080909; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 36px; }
.footer h3 { margin: 0 0 14px; color: var(--quiet); font: 700 .68rem/1 Inter, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; color: #cfcdc7; font-size: .86rem; }
.legal { margin: 34px 0 0; padding-top: 22px; border-top: 1px solid var(--line); color: #686963; font-size: .66rem; }

@media (max-width: 900px) {
  .nav { padding: 14px 0; align-items: flex-start; }
  .nav-links { justify-content: flex-end; flex-wrap: wrap; }
  .hero { min-height: 650px; }
  .facts { grid-template-columns: repeat(2,1fr); }
  .fact:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .fact:nth-child(4) { border-top: 1px solid var(--line); }
  .section-head, .split, .cta-grid, .estimator-grid { grid-template-columns: 1fr; }
  .estimator-intro { position: static; }
  .content-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1/-1; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 28px); }
  .nav { display: grid; grid-template-columns: 1fr auto; }
  .nav-links { grid-column: 1/-1; justify-content: flex-start; gap: 13px 18px; }
  .brand-copy small { display: none; }
  .hero-copy { padding-top: 86px; }
  .actions { width: 100%; }
  .actions .button { width: fit-content; max-width: 100%; }
  .facts, .content-grid, .project-proof, .footer-grid { grid-template-columns: 1fr; }
  .fact, .fact:first-child, .fact:nth-child(3) { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .fact:nth-child(2) { border-top: 1px solid var(--line); }
  .photo, .photo img { min-height: 90vw; }
  .project { min-height: 92vw; }
  .footer-grid > :first-child { grid-column: auto; }
  .estimate-fields, .small-job-controls { grid-template-columns: 1fr; }
  .estimate-field--wide { grid-column: auto; }
  .estimate-output-head, .small-job-head { align-items: flex-start; flex-direction: column; }
  .estimate-premium-actions { display: grid; }
  .estimate-premium-actions button { width: 100%; }
}
