:root {
  --ink: #191b1a;
  --ink-2: #242725;
  --ink-3: #343835;
  --paper: #f3f0e9;
  --paper-2: #e8e3d9;
  --white: #fffdf8;
  --concrete: #b7b3aa;
  --muted: #6c706c;
  --accent: #ed6a24;
  --accent-dark: #bd4510;
  --accent-soft: #f8d2bd;
  --line: rgba(25, 27, 26, .14);
  --shadow: 0 24px 70px rgba(18, 20, 18, .16);
  --shell: min(1180px, calc(100% - 40px));
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 126px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 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; top: 8px; left: 12px; z-index: 9999; transform: translateY(-150%);
  padding: 10px 14px; border-radius: 8px; background: var(--white); color: var(--ink); font-weight: 800;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #f69c68; outline-offset: 3px; }

.preview-ribbon {
  min-height: 38px; padding: 8px 18px; display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff; background: linear-gradient(90deg, #9d350b, var(--accent), #c94b15);
  font-size: 12px; font-weight: 750; letter-spacing: .025em; text-align: center;
}
.preview-ribbon a { font-weight: 950; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.preview-live { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.18); }
.preview-divider { opacity: .65; }

.site-header {
  position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(25,27,26,.09);
  background: rgba(243, 240, 233, .93); backdrop-filter: blur(16px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; min-width: max-content; }
.brand-mark {
  position: relative; width: 46px; height: 46px; display: grid; place-items: center; overflow: hidden;
  color: #fff; background: var(--ink); border-radius: 4px 14px 4px 14px; transform: rotate(-2deg);
}
.brand-mark span { position: relative; z-index: 2; font-size: 24px; font-weight: 950; line-height: 1; transform: rotate(2deg); }
.brand-mark i { position: absolute; width: 52px; height: 13px; right: -22px; bottom: 4px; background: var(--accent); transform: rotate(-38deg); }
.brand-copy { display: grid; line-height: 1; gap: 4px; }
.brand-copy strong { font-size: 22px; font-weight: 950; letter-spacing: -.055em; }
.brand-copy small { font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.concept-tag { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.primary-nav a { position: relative; color: #464a46; font-size: 14px; font-weight: 780; text-decoration: none; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--accent); transition: right .2s ease; }
.primary-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switch { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.48); }
.language-switch button { width: 34px; height: 30px; padding: 0; border: 0; border-radius: 999px; background: transparent; font-size: 11px; font-weight: 900; cursor: pointer; }
.language-switch button[aria-pressed="true"] { color: #fff; background: var(--ink); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { width: 19px; height: 2px; display: block; margin: 4px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.button {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 20px;
  border: 1px solid transparent; border-radius: 10px; font-size: 13px; font-weight: 900; letter-spacing: .012em;
  text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }
.button-accent { color: #fff; background: var(--accent); box-shadow: 0 12px 28px rgba(237,106,36,.25); }
.button-accent:hover { background: #d95617; box-shadow: 0 15px 32px rgba(237,106,36,.32); }
.button-dark { color: #fff; background: var(--ink); }
.button-soft { color: var(--ink); background: var(--paper-2); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.04); }
.button-large { min-height: 58px; padding-inline: 25px; }
.button-full { width: 100%; }

.hero { position: relative; min-height: 750px; overflow: hidden; color: #fff; background: var(--ink); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 9% 12%, rgba(237,106,36,.18), transparent 31%), radial-gradient(circle at 80% 72%, rgba(255,255,255,.07), transparent 28%);
}
.hero-grid-lines { position: absolute; inset: 0; opacity: .16; 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: 82px 82px; mask-image: linear-gradient(to right, #000, transparent 68%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, .9fr); gap: 76px; align-items: center; padding: 78px 0 90px; }
.hero-copy { max-width: 650px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 11px; color: #ffad7e; font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.dark { color: var(--accent-dark); }
.eyebrow.light { color: #ffad7e; }
.eyebrow.centered { justify-content: center; }
.eyebrow-line { width: 34px; height: 2px; background: currentColor; }
.hero h1, .section-heading h2, .finish-intro h2, .review-summary h2, .contact-copy h2 {
  margin: 0; font-weight: 950; letter-spacing: -.065em; line-height: .91;
}
.hero h1 { display: grid; font-size: clamp(58px, 6.9vw, 96px); }
.accent-text { color: var(--accent); }
.hero-lede { max-width: 620px; margin: 30px 0 0; color: #c7cbc7; font-size: clamp(17px, 1.8vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px; margin: 27px 0 0; padding: 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 8px; color: #e7eae7; font-size: 12px; }
.hero-points li > span { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: var(--accent); background: rgba(237,106,36,.12); font-weight: 950; }

.city-finder { max-width: 620px; margin-top: 37px; padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.city-heading { display: flex; align-items: center; gap: 12px; }
.city-pin { flex: 0 0 auto; width: 41px; height: 41px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: var(--accent); }
.city-pin svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.city-heading div { display: grid; gap: 2px; }
.city-heading strong { font-size: 14px; }
.city-heading span { color: #aeb3ae; font-size: 11px; }
.city-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 15px; }
.city-input-wrap { position: relative; }
.city-input-wrap > svg { position: absolute; z-index: 2; left: 14px; top: 16px; width: 17px; height: 17px; color: #707670; }
.city-input-wrap input { width: 100%; height: 50px; padding: 0 14px 0 41px; border: 0; border-radius: 9px; color: var(--ink); background: #fff; font-size: 13px; outline: 0; }
.city-input-wrap input:focus { box-shadow: 0 0 0 3px rgba(237,106,36,.45); }
.city-suggestions { position: absolute; z-index: 20; top: calc(100% + 5px); left: 0; right: 0; margin: 0; padding: 6px; list-style: none; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.city-suggestions button { width: 100%; padding: 10px 12px; border: 0; border-radius: 7px; text-align: left; color: var(--ink); background: transparent; cursor: pointer; }
.city-suggestions button:hover, .city-suggestions button[aria-selected="true"] { background: var(--paper-2); }
.city-submit { min-height: 50px; }
.city-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.city-chips button { padding: 6px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #dfe2df; background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; }
.city-result { margin-top: 12px; padding: 11px 13px; border-radius: 8px; color: #171a18; background: #dfeada; font-size: 12px; }
.city-result.unknown { background: #f7decf; }

.hero-visual { position: relative; min-height: 600px; }
.hero-image { position: absolute; overflow: hidden; margin: 0; border: 1px solid rgba(255,255,255,.16); background: #343735; box-shadow: 0 25px 70px rgba(0,0,0,.35); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-main { inset: 58px 0 auto 42px; height: 370px; border-radius: 3px 30px 3px 30px; }
.hero-image-tall { width: 45%; height: 330px; left: 0; bottom: 30px; z-index: 2; border-radius: 24px 3px 24px 3px; }
.hero-image-small { width: 38%; height: 260px; right: 8px; bottom: 0; z-index: 3; border-radius: 3px 22px 3px 22px; }
.hero-rating { position: absolute; z-index: 5; right: -16px; top: 20px; width: 185px; padding: 17px; display: grid; border-left: 4px solid var(--accent); color: var(--ink); background: #fff; box-shadow: var(--shadow); }
.rating-number { font-size: 35px; font-weight: 950; letter-spacing: -.06em; line-height: 1; }
.stars { color: #f07a31; letter-spacing: .08em; }
.hero-rating .stars { margin: 5px 0 7px; font-size: 12px; }
.hero-rating strong { font-size: 11px; }
.hero-rating small { color: var(--muted); font-size: 9px; }
.hero-stamp { position: absolute; z-index: 4; left: 45%; top: 430px; width: 116px; height: 116px; display: grid; place-content: center; text-align: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: #fff; background: var(--accent); transform: rotate(-9deg); box-shadow: 0 18px 35px rgba(0,0,0,.25); }
.hero-stamp::before, .hero-stamp::after { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(255,255,255,.6); border-radius: 50%; }
.hero-stamp::after { inset: 14px; border-style: solid; opacity: .4; }
.hero-stamp span, .hero-stamp strong { position: relative; z-index: 1; }
.hero-stamp span { font-size: 10px; letter-spacing: .23em; }
.hero-stamp strong { font-size: 14px; letter-spacing: .04em; }

.proof-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 116px; display: flex; align-items: center; justify-content: center; gap: 13px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { color: var(--accent-dark); font-size: 29px; font-weight: 950; letter-spacing: -.06em; }
.proof-item span { max-width: 100px; color: var(--muted); font-size: 11px; font-weight: 800; line-height: 1.35; }

.section-heading { margin-bottom: 48px; }
.split-heading { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, .62fr); align-items: end; gap: 70px; }
.section-heading h2 { max-width: 760px; font-size: clamp(43px, 5.2vw, 70px); }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.section-heading.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading.centered > p:last-child { max-width: 620px; margin: 20px auto 0; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { min-height: 500px; display: grid; grid-template-rows: 235px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.service-card-wide { grid-template-columns: .84fr 1.16fr; grid-template-rows: none; grid-column: 1 / -1; min-height: 390px; }
.service-card-dark { color: #fff; background: var(--ink-2); }
.service-photo { position: relative; overflow: hidden; min-height: 235px; background: #d6d1c7; }
.service-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.26), transparent 50%); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover .service-photo img { transform: scale(1.035); }
.service-photo > span { position: absolute; z-index: 2; left: 20px; bottom: 17px; color: #fff; font-size: 11px; font-weight: 950; letter-spacing: .15em; }
.service-copy { padding: 31px; display: flex; flex-direction: column; justify-content: center; }
.service-kicker { margin: 0 0 8px; color: var(--accent-dark); font-size: 10px; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.service-card-dark .service-kicker { color: #ffa36e; }
.service-copy h3 { margin: 0; font-size: 27px; letter-spacing: -.04em; line-height: 1.08; }
.service-copy > p:not(.service-kicker) { margin: 14px 0 20px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card-dark .service-copy > p:not(.service-kicker) { color: #b8bdb9; }
.service-copy ul { display: flex; flex-wrap: wrap; gap: 7px; margin: auto 0 0; padding: 0; list-style: none; }
.service-copy li { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: #50544f; font-size: 10px; font-weight: 800; }
.service-card-dark .service-copy li { color: #e7eae7; border-color: rgba(255,255,255,.17); }

.finish-band { padding: 105px 0; color: #fff; background: #242725; }
.finish-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.finish-intro h2 { max-width: 480px; font-size: clamp(44px, 5vw, 68px); }
.finish-intro > p:not(.eyebrow) { max-width: 500px; margin: 24px 0 29px; color: #b8bdb9; font-size: 16px; }
.finish-options { border-top: 1px solid rgba(255,255,255,.17); }
.finish-options article { position: relative; display: grid; grid-template-columns: 54px 1fr minmax(180px, .85fr); gap: 20px; align-items: center; padding: 28px 10px; border-bottom: 1px solid rgba(255,255,255,.17); transition: padding-left .2s ease, background .2s ease; }
.finish-options article:hover { padding-left: 22px; background: rgba(255,255,255,.035); }
.finish-options span { color: var(--accent); font-size: 11px; font-weight: 950; letter-spacing: .14em; }
.finish-options h3 { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.finish-options p { margin: 0; color: #afb4b0; font-size: 13px; }

.projects { background: var(--white); }
.gallery-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: -18px 0 18px; padding: 12px 2px; border-top: 1px solid var(--line); color: var(--muted); }
.gallery-toolbar strong { color: var(--accent-dark); font-size: 12px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.gallery-toolbar span { font-size: 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; grid-auto-flow: dense; gap: 10px; }
.gallery-item { position: relative; overflow: hidden; min-width: 0; padding: 0; border: 0; border-radius: 4px; background: #c8c3b9; cursor: zoom-in; }
.gallery-feature { grid-column: span 2; grid-row: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,14,13,.78), transparent 55%); transition: opacity .25s ease; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item > span { position: absolute; z-index: 2; left: 19px; right: 19px; bottom: 17px; display: grid; text-align: left; color: #fff; }
.gallery-item strong { font-size: 15px; }
.gallery-item small { color: rgba(255,255,255,.72); font-size: 10px; }

.reviews { color: #fff; background: var(--ink); }
.review-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.review-summary h2 { max-width: 580px; font-size: clamp(44px, 5vw, 69px); }
.rating-lockup { display: flex; gap: 23px; align-items: center; margin-top: 33px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.rating-lockup > strong { font-size: 72px; letter-spacing: -.08em; line-height: 1; }
.rating-lockup .stars { font-size: 17px; }
.rating-lockup p { max-width: 220px; margin: 5px 0 0; color: #aeb3af; font-size: 11px; }
.strengths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 25px; }
.strengths > span { min-height: 105px; display: flex; flex-direction: column; justify-content: center; padding: 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.035); }
.strengths strong { color: #ff9e68; font-size: 26px; }
.strengths small { color: #abb0ac; font-size: 10px; line-height: 1.35; }
.review-cards { display: grid; gap: 13px; }
.review-card { position: relative; padding: 30px 34px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: #262a27; }
.review-card-accent { border-color: rgba(237,106,36,.55); background: #30251f; }
.quote-mark { position: absolute; right: 25px; top: 8px; color: rgba(255,255,255,.09); font-family: Georgia, serif; font-size: 94px; line-height: 1; }
.review-card blockquote { position: relative; z-index: 1; margin: 0; font-size: 18px; font-weight: 690; line-height: 1.55; }
.review-card footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.11); }
.review-card footer strong { color: #ff9e68; }
.review-card footer span { color: #9ea39f; font-size: 10px; }
.marketplace-proof { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 14px 18px; border-radius: 14px; color: var(--ink); background: #fff; text-decoration: none; transition: transform .18s ease; }
.marketplace-proof:hover { transform: translateY(-2px); }
.marketplace-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #1877f2; font-family: Arial, sans-serif; font-size: 26px; font-weight: 900; }
.marketplace-proof > span:nth-child(2) { display: grid; }
.marketplace-proof strong { font-size: 13px; }
.marketplace-proof small { color: var(--muted); font-size: 10px; }
.marketplace-proof svg { width: 21px; height: 21px; }

.process { background: var(--paper); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 52px 0 0; padding: 0; list-style: none; }
.process-grid::before { content: ""; position: absolute; left: 16%; right: 16%; top: 31px; height: 1px; background: var(--line); }
.process-grid li { position: relative; z-index: 1; text-align: center; }
.process-grid li > span { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 24px; border: 6px solid var(--paper); border-radius: 50%; color: #fff; background: var(--accent); font-size: 11px; font-weight: 950; }
.process-grid li div { padding: 0 22px; }
.process-grid h3 { margin: 0; font-size: 21px; letter-spacing: -.035em; }
.process-grid p { max-width: 290px; margin: 10px auto 0; color: var(--muted); font-size: 13px; }

.contact-section { padding: 112px 0; color: #fff; background: #222522; }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; }
.contact-copy h2 { max-width: 550px; font-size: clamp(48px, 5.3vw, 72px); }
.contact-copy > p:not(.eyebrow) { max-width: 580px; margin: 25px 0 0; color: #b7bcb8; font-size: 16px; line-height: 1.7; }
.contact-proof { display: grid; gap: 11px; margin: 29px 0; padding: 0; list-style: none; }
.contact-proof li { display: flex; align-items: flex-start; gap: 10px; color: #d9ddda; font-size: 12px; }
.contact-proof li > span:first-child { color: #ff9d66; font-weight: 950; }
.quote-card { padding: 34px; border-radius: 22px; color: var(--ink); background: var(--white); box-shadow: 0 35px 80px rgba(0,0,0,.24); }
.form-heading > span { color: var(--accent-dark); font-size: 10px; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.form-heading h3 { margin: 5px 0 0; font-size: 31px; letter-spacing: -.045em; }
.form-heading p { margin: 5px 0 23px; color: var(--muted); font-size: 11px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.quote-card label { display: grid; gap: 7px; margin-bottom: 14px; color: #454a45; font-size: 11px; font-weight: 850; }
.quote-card input, .quote-card select, .quote-card textarea { width: 100%; border: 1px solid #d5d1c8; border-radius: 9px; color: var(--ink); background: #fff; outline: 0; }
.quote-card input, .quote-card select { height: 49px; padding: 0 13px; }
.quote-card textarea { padding: 12px 13px; resize: vertical; }
.quote-card input:focus, .quote-card select:focus, .quote-card textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(237,106,36,.16); }
.form-safety { display: block; margin-top: 9px; color: var(--muted); text-align: center; font-size: 9px; }

.site-footer { padding: 66px 0 25px; color: #cbd0cc; background: #121413; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; }
.brand-light { color: #fff; }
.footer-brand p { max-width: 360px; color: #858b86; font-size: 12px; }
.footer-grid h3 { margin: 5px 0 16px; color: #fff; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid a, .footer-grid button { padding: 0; border: 0; color: #8f9590; background: transparent; font-size: 11px; text-decoration: none; cursor: pointer; }
.footer-grid a:hover, .footer-grid button:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #727872; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom a { color: #ff9d66; font-weight: 900; }

.mobile-actions { display: none; }

dialog { border: 0; }
dialog::backdrop { background: rgba(9,10,9,.76); backdrop-filter: blur(7px); }
.preview-modal { width: min(520px, calc(100% - 28px)); padding: 38px; border-radius: 22px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.modal-close { position: absolute; right: 15px; top: 14px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--paper-2); font-size: 25px; cursor: pointer; }
.modal-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 15px 3px 15px 3px; color: #fff; background: var(--accent); font-size: 13px; font-weight: 950; }
.preview-modal h2 { margin: 0; font-size: 34px; letter-spacing: -.045em; line-height: 1.05; }
.preview-modal > p:not(.eyebrow) { margin: 17px 0 24px; color: var(--muted); font-size: 14px; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 9px; }

.lightbox { width: min(1080px, calc(100% - 34px)); max-width: none; height: min(830px, calc(100% - 34px)); padding: 0; overflow: hidden; border-radius: 16px; color: #fff; background: #101210; }
.lightbox figure { width: 100%; height: 100%; display: grid; grid-template-rows: 1fr auto; margin: 0; }
.lightbox figure img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lightbox figcaption { min-height: 52px; padding: 15px 70px; text-align: center; color: #d8dcd9; background: #191c19; font-size: 12px; }
.lightbox-close { position: absolute; z-index: 3; right: 15px; top: 14px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: rgba(0,0,0,.64); font-size: 28px; cursor: pointer; }
.lightbox-nav { position: absolute; z-index: 3; top: 50%; width: 48px; height: 66px; border: 0; color: #fff; background: rgba(0,0,0,.58); font-size: 42px; cursor: pointer; transform: translateY(-50%); }
.lightbox-prev { left: 0; border-radius: 0 12px 12px 0; }
.lightbox-next { right: 0; border-radius: 12px 0 0 12px; }

.js [data-reveal] { opacity: 1; transform: none; transition: transform .25s ease; }
.js [data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .concept-tag { display: none; }
  .primary-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 35px; }
  .hero-visual { min-height: 560px; }
  .hero-image-main { left: 22px; }
  .hero-rating { right: 0; }
  .finish-grid, .review-layout, .contact-grid { gap: 48px; }
}

@media (max-width: 940px) {
  :root { --shell: min(100% - 32px, 720px); }
  .section { padding: 88px 0; }
  .header-inner { min-height: 74px; }
  .menu-toggle { display: block; order: 3; }
  .primary-nav { position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 13px 12px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }
  .header-actions { margin-left: auto; }
  .header-estimate { display: none; }
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; padding: 67px 0 75px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { min-height: 620px; margin-top: 20px; }
  .hero-image-main { left: 7%; right: 0; height: 390px; }
  .hero-image-tall { width: 39%; height: 355px; }
  .hero-image-small { width: 35%; height: 275px; right: 2%; }
  .hero-stamp { left: 42%; top: 450px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .split-heading > p { max-width: 630px; }
  .service-card { min-height: 470px; }
  .service-card-wide { min-height: 360px; }
  .finish-grid, .review-layout, .contact-grid { grid-template-columns: 1fr; }
  .finish-options article { grid-template-columns: 48px 1fr minmax(180px, .8fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .review-summary { max-width: 680px; }
  .contact-copy { max-width: 680px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 110px; }
  body { padding-bottom: 68px; }
  .preview-ribbon { min-height: 42px; padding-inline: 10px; gap: 5px; font-size: 9px; }
  .preview-divider, .preview-note { display: none; }
  .site-header { top: 0; }
  .header-inner { min-height: 68px; gap: 10px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { font-size: 7.5px; }
  .language-switch { margin-left: auto; }
  .language-switch button { width: 31px; height: 28px; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero-grid { padding: 55px 0 62px; }
  .hero h1 { font-size: clamp(50px, 17vw, 72px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 9px; }
  .city-finder { padding: 16px; }
  .city-form { grid-template-columns: 1fr; }
  .city-submit { width: 100%; }
  .hero-visual { min-height: 500px; }
  .hero-image-main { left: 0; height: 275px; }
  .hero-image-tall { width: 48%; height: 280px; bottom: 15px; }
  .hero-image-small { width: 39%; height: 225px; bottom: 0; }
  .hero-rating { right: 0; top: 14px; width: 155px; padding: 13px; }
  .rating-number { font-size: 29px; }
  .hero-stamp { left: 39%; top: 327px; width: 92px; height: 92px; }
  .hero-stamp strong { font-size: 11px; }
  .proof-item { min-height: 92px; flex-direction: column; gap: 1px; text-align: center; }
  .proof-item strong { font-size: 24px; }
  .proof-item span { font-size: 9px; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .finish-intro h2, .review-summary h2, .contact-copy h2 { font-size: clamp(40px, 12vw, 56px); }
  .section-heading > p { font-size: 14px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-wide { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: 210px 1fr; min-height: 0; }
  .service-copy { padding: 25px; }
  .service-copy h3 { font-size: 25px; }
  .finish-band { padding: 78px 0; }
  .finish-grid { gap: 45px; }
  .finish-options article { grid-template-columns: 40px 1fr; gap: 12px; }
  .finish-options p { grid-column: 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery-feature { grid-column: span 2; grid-row: span 1; }
  .gallery-tall { grid-row: span 2; }
  .gallery-wide { grid-column: span 2; }
  .gallery-toolbar { align-items: flex-start; flex-direction: column; gap: 3px; }
  .review-layout { gap: 45px; }
  .rating-lockup > strong { font-size: 60px; }
  .strengths { gap: 6px; }
  .strengths > span { min-height: 95px; padding: 11px; }
  .review-card { padding: 26px 23px; }
  .review-card blockquote { font-size: 16px; }
  .review-card footer { align-items: flex-start; flex-direction: column; gap: 3px; }
  .marketplace-proof { grid-template-columns: auto 1fr; }
  .marketplace-proof > svg { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-grid::before { left: 31px; right: auto; top: 35px; bottom: 35px; width: 1px; height: auto; }
  .process-grid li { display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: center; text-align: left; }
  .process-grid li > span { margin: 0; }
  .process-grid li div { padding: 17px 0; }
  .process-grid p { margin: 8px 0 0; }
  .contact-grid { gap: 45px; }
  .quote-card { padding: 25px 20px; border-radius: 17px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 140; left: 0; right: 0; bottom: 0; height: 68px; display: grid; grid-template-columns: 1fr 1fr; padding: 8px; gap: 7px; border-top: 1px solid rgba(0,0,0,.12); background: rgba(255,253,248,.96); backdrop-filter: blur(12px); }
  .mobile-actions button, .mobile-actions a { display: grid; place-items: center; border: 0; border-radius: 9px; font-size: 12px; font-weight: 950; text-decoration: none; }
  .mobile-actions button { color: #fff; background: var(--accent); }
  .mobile-actions a { color: #fff; background: var(--ink); }
  .preview-modal { padding: 31px 23px; }
  .preview-modal h2 { font-size: 29px; }
  .modal-actions { display: grid; }
  .lightbox { width: calc(100% - 16px); height: calc(100% - 86px); }
  .lightbox figcaption { padding-inline: 52px; }
  .lightbox-nav { width: 42px; }
}

@media (max-width: 380px) {
  .brand-copy small { display: none; }
  .hero-stamp { left: 36%; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery-feature, .gallery-wide { grid-column: auto; }
  .gallery-tall { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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