:root {
  --ink: #171914;
  --ink-soft: #262922;
  --cream: #f7f0df;
  --paper: #fffdf7;
  --orange: #e79a3b;
  --orange-dark: #bd6f17;
  --gold: #f3b548;
  --muted: #666a61;
  --line: #ded6c6;
  --shadow: 0 18px 60px rgba(0,0,0,.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Inter", system-ui, sans-serif; background: var(--paper); color: var(--ink); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 1000; background: white; padding: .75rem 1rem; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(23,25,20,.94); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.12); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 26px; }
.brand img { width: 86px; height: 70px; object-fit: contain; border-radius: 8px; }
.site-nav { display: flex; gap: 24px; margin-left: auto; }
.site-nav a, .header-call { color: white; text-decoration: none; font-weight: 700; font-size: .94rem; }
.site-nav a:hover { color: var(--gold); }
.header-call { background: var(--orange); color: var(--ink); padding: 12px 16px; border-radius: 999px; }
.menu-toggle { display: none; margin-left: auto; background: transparent; color: white; border: 1px solid #777; border-radius: 8px; padding: 8px 12px; }

.hero { min-height: 720px; position: relative; display: grid; align-items: center; overflow: hidden; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 58%; }
.hero-shade { background: linear-gradient(90deg, rgba(14,15,12,.92) 0%, rgba(14,15,12,.65) 45%, rgba(14,15,12,.15) 100%), linear-gradient(0deg, rgba(14,15,12,.55), transparent 55%); }
.hero-content { position: relative; z-index: 2; color: white; padding-block: 90px; }
.eyebrow { text-transform: uppercase; letter-spacing: .15em; font-size: .78rem; font-weight: 800; color: var(--gold); margin: 0 0 10px; }
.eyebrow.dark { color: var(--orange-dark); }
h1, h2, h3 { line-height: 1.05; margin-top: 0; }
h1 { font-family: "Anton", Impact, sans-serif; text-transform: uppercase; font-size: clamp(4.5rem, 11vw, 8.2rem); letter-spacing: .01em; max-width: 840px; margin-bottom: 20px; text-shadow: 0 4px 30px rgba(0,0,0,.25); }
h2 { font-family: "Anton", Impact, sans-serif; text-transform: uppercase; font-size: clamp(2.6rem, 6vw, 4.8rem); letter-spacing: .01em; margin-bottom: 18px; }
h3 { font-size: 1.28rem; }
.hero-copy { font-size: 1.18rem; max-width: 660px; color: #f7f2e8; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 0; border-radius: 10px; text-decoration: none; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.18); }
.button-primary { background: var(--orange); color: var(--ink); }
.button-light { background: white; color: var(--ink); }
.button-dark { background: var(--ink); color: white; }
.trust-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 34px; font-weight: 700; font-size: .92rem; }
.trust-row span::before { content: "★"; color: var(--gold); margin-right: 7px; }

.quick-contact { background: var(--orange); }
.quick-contact-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-block: 24px; }
.quick-contact-grid div { display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; }
.quick-contact strong { font-size: 1.3rem; }

.section { padding: 100px 0; }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading p:last-child { color: var(--muted); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: white; box-shadow: 0 9px 28px rgba(20,20,10,.05); }
.service-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; background: var(--cream); border-radius: 50%; font-weight: 800; margin-bottom: 18px; color: var(--orange-dark); }
.service-card p { color: var(--muted); margin-bottom: 0; font-size: .95rem; }

.section-dark { background: var(--ink); color: white; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.section-dark p { color: #d7d7cf; }
.check-list { list-style: none; padding: 0; margin: 26px 0 32px; }
.check-list li { padding: 9px 0; font-weight: 700; }
.check-list li::before { content: "✓"; color: var(--gold); margin-right: 10px; }
.feature-photo { margin: 0; background: var(--orange); padding: 12px; border-radius: 18px; transform: rotate(1.5deg); box-shadow: var(--shadow); }
.feature-photo img { border-radius: 11px; aspect-ratio: 4/5; object-fit: cover; }
.feature-photo figcaption { color: var(--ink); font-weight: 800; padding: 12px 8px 2px; }

.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; }
.gallery-grid figure { margin: 0; position: relative; border-radius: 14px; overflow: hidden; min-height: 260px; }
.gallery-grid .gallery-main { grid-row: span 2; min-height: 540px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid figcaption { position: absolute; left: 12px; bottom: 12px; background: rgba(23,25,20,.85); color: white; padding: 7px 10px; border-radius: 7px; font-weight: 700; font-size: .85rem; }
.before-after { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; margin-top: 54px; }
.before-after figure { margin: 0; position: relative; overflow: hidden; border-radius: 16px; box-shadow: 0 12px 35px rgba(0,0,0,.12); }
.before-after img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.before-after span { position: absolute; z-index: 2; top: 12px; left: 12px; background: var(--ink); color: white; padding: 7px 12px; border-radius: 999px; font-weight: 800; }
.arrow { font-size: 2rem; font-weight: 800; color: var(--orange-dark); }

.area-section { background: var(--cream); }
.area-split { grid-template-columns: .9fr 1.1fr; }
.city-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.city-list span { background: white; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; font-weight: 800; }

.quote-section { background: var(--ink-soft); color: white; }
.quote-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.quote-grid > div > p { color: #d5d6cf; }
.contact-card { margin-top: 28px; border: 1px solid rgba(255,255,255,.18); padding: 20px; border-radius: 12px; display: inline-flex; flex-direction: column; }
.contact-card span { color: #bbbdb4; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.contact-card a { font-size: 1.7rem; font-weight: 800; text-decoration: none; color: var(--gold); }
.quote-form { background: white; color: var(--ink); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.quote-form label { font-weight: 800; font-size: .92rem; }
.quote-form input, .quote-form textarea, .quote-form select { width: 100%; margin-top: 7px; border: 1px solid #cfc9bc; border-radius: 9px; padding: 13px; font: inherit; background: #fffefb; }
.quote-form textarea { resize: vertical; }
.full { width: 100%; }
.form-note { margin: 0; text-align: center; color: var(--muted); font-size: .83rem; }

.site-footer { background: #10110e; color: white; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 46px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.footer-grid p { color: #bcbeb6; max-width: 420px; }
.footer-grid a { color: #d8d9d3; text-decoration: none; }
.footer-logo { width: 110px; border-radius: 10px; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); margin-top: 38px; padding-top: 22px; color: #989b92; font-size: .86rem; }
.mobile-bar { display: none; }

@media (max-width: 900px) {
  .site-nav, .header-call { display: none; }
  .menu-toggle { display: block; }
  .site-nav.open { position: absolute; display: grid; top: 81px; left: 0; right: 0; background: var(--ink); padding: 22px; border-top: 1px solid #444; }
  .hero { min-height: 650px; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(14,15,12,.91), rgba(14,15,12,.52)); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .quote-grid { grid-template-columns: 1fr; gap: 42px; }
  .feature-photo { max-width: 560px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-main { grid-column: span 2; min-height: 420px; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { padding-bottom: 62px; }
  .container { width: min(100% - 24px, 1120px); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 72px; height: 58px; }
  .site-nav.open { top: 69px; }
  .hero { min-height: 620px; }
  .hero-content { padding-block: 70px; }
  h1 { font-size: clamp(4rem, 20vw, 6rem); }
  h2 { font-size: 2.8rem; }
  .hero-copy { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 10px 18px; }
  .quick-contact-grid { align-items: stretch; flex-direction: column; }
  .section { padding: 72px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-main { grid-column: auto; min-height: 330px; }
  .gallery-grid figure { min-height: 300px; }
  .before-after { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); text-align: center; }
  .city-list { grid-template-columns: 1fr; }
  .quote-form { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-bar { position: fixed; display: grid; grid-template-columns: 1fr 1fr; bottom: 0; left: 0; right: 0; z-index: 200; box-shadow: 0 -5px 20px rgba(0,0,0,.2); }
  .mobile-bar a { text-decoration: none; text-align: center; padding: 18px 8px; font-weight: 800; background: var(--ink); color: white; }
  .mobile-bar a:last-child { background: var(--orange); color: var(--ink); }
}
