:root {
  --orange: #ff6a00;
  --orange-dark: #d95700;
  --black: #090909;
  --charcoal: #141414;
  --ink: #191919;
  --muted: #656565;
  --soft: #f5f5f3;
  --line: #dedede;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0,0,0,.12);
  --radius: 18px;
  --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: #fff; line-height: 1.55; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 9999; background: #fff; color: #000; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(7,7,7,.97); color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.18); }
.header-inner { min-height: 92px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { position: relative; display: inline-flex; align-items: center; color: #fff; min-width: 230px; }
.brand-roof { position: absolute; width: 86px; height: 44px; left: -2px; top: -11px; border-left: 5px solid var(--orange); border-top: 5px solid var(--orange); transform: skewY(-35deg) rotate(10deg); transform-origin: bottom left; pointer-events: none; }
.brand-copy { position: relative; display: grid; line-height: .9; letter-spacing: -.04em; }
.brand-copy strong { font-size: 2rem; font-weight: 950; }
.brand-copy span { margin-top: 6px; color: var(--orange); font-weight: 900; font-size: .95rem; letter-spacing: -.015em; }
.brand-copy small { justify-self: center; color: #fff; font-weight: 800; font-size: .65rem; margin-top: 5px; letter-spacing: .12em; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px,2vw,34px); font-size: .83rem; font-weight: 850; text-transform: uppercase; }
.site-nav a { position: relative; padding-block: 34px; }
.site-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 22px; height: 2px; background: var(--orange); transition: .2s ease; }
.site-nav a:hover, .site-nav a.active { color: var(--orange); }
.site-nav a:hover::after, .site-nav a.active::after { left: 0; right: 0; }
.header-phone { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.header-phone svg { width: 34px; fill: var(--orange); }
.header-phone span { display: grid; line-height: 1.05; text-align: right; }
.header-phone strong { font-size: 1.45rem; }
.header-phone small { color: var(--orange); font-weight: 900; margin-top: 6px; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 28px; height: 3px; background: #fff; margin: 5px; border-radius: 4px; }

.hero { position: relative; min-height: 610px; background: #090909; color: #fff; overflow: hidden; display: grid; align-items: center; }
.hero-media { position: absolute; inset: 0; background: url("assets/hero.webp") center right / cover no-repeat; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,.97) 26%, rgba(5,5,5,.82) 43%, rgba(5,5,5,.28) 66%, rgba(5,5,5,0) 100%); }
.hero-content { position: relative; z-index: 1; padding-block: 62px 70px; }
.eyebrow { margin: 0 0 12px; color: var(--orange); font-weight: 950; text-transform: uppercase; letter-spacing: .03em; }
.hero .eyebrow { color: #fff; font-size: 1.1rem; }
.hero .eyebrow span { color: var(--orange); }
.hero h1 { margin: 0; max-width: 720px; font-size: clamp(3.5rem,6.4vw,6.2rem); line-height: .91; letter-spacing: -.055em; text-transform: uppercase; font-weight: 950; }
.hero h1 span { color: var(--orange); }
.hero-copy { max-width: 600px; margin: 22px 0; color: #f2f2f2; font-size: 1.1rem; }
.hero-features { display: flex; gap: 42px; margin: 26px 0; }
.feature { display: flex; align-items: center; gap: 13px; text-transform: uppercase; font-size: .95rem; font-weight: 850; line-height: 1.2; }
.feature-icon { display: grid; place-items: center; width: 46px; height: 46px; color: var(--orange); border: 3px solid var(--orange); border-radius: 50%; font-size: 1.25rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 24px; border: 2px solid transparent; border-radius: 5px; font-weight: 900; text-transform: uppercase; letter-spacing: .01em; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 22px; fill: currentColor; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { border-color: #fff; color: #fff; background: rgba(0,0,0,.1); }
.btn-outline:hover { background: #fff; color: #111; }
.btn-dark { background: #111; color: #fff; }

.section { padding: 88px 0; }
.section-heading { margin-bottom: 42px; }
.section-heading.center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading.split { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 40px; }
.section-heading h2, .about h2, .areas h2, .contact h2 { margin: 0; font-size: clamp(2.35rem,4vw,4.2rem); line-height: .95; letter-spacing: -.045em; text-transform: uppercase; font-weight: 950; }
.section-heading p:not(.eyebrow), .areas p, .contact-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card { position: relative; text-align: center; padding-bottom: 16px; }
.service-card img { aspect-ratio: 1.12; object-fit: cover; border-radius: 6px; box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.service-icon { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; margin: -28px auto 8px; background: #090909; color: #fff; border: 4px solid #fff; font-weight: 900; font-size: 1.4rem; position: relative; }
.service-card h3 { min-height: 48px; margin: 4px 0 8px; font-size: 1rem; line-height: 1.15; text-transform: uppercase; font-weight: 950; }
.service-card h3::after { content: ""; display: block; width: 28px; height: 2px; background: var(--orange); margin: 8px auto 0; }
.service-card p { margin: 0; color: #444; font-size: .86rem; line-height: 1.45; }

.about { background: var(--soft); }
.about-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 72px; align-items: center; }
.about-collage { position: relative; min-height: 560px; }
.about-main { width: 83%; height: 500px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-small { position: absolute; width: 45%; height: 245px; object-fit: cover; right: 0; bottom: 0; border: 8px solid var(--soft); border-radius: var(--radius); box-shadow: var(--shadow); }
.experience-card { position: absolute; left: 18px; bottom: 24px; background: var(--orange); color: #fff; padding: 18px 24px; border-radius: 8px; box-shadow: var(--shadow); display: grid; }
.experience-card strong { font-size: 1.35rem; text-transform: uppercase; }
.experience-card span { font-size: .85rem; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; margin: 28px 0; }
.check-grid span { position: relative; padding-left: 26px; font-weight: 750; }
.check-grid span::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 950; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--orange-dark); font-weight: 900; text-transform: uppercase; }
.text-link span { font-size: 1.4rem; }

.work { background: #fff; }
.gallery { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 260px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; border-radius: 12px; background: #111; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .35s ease, opacity .35s ease; }
.gallery-item span { position: absolute; inset: auto 0 0; padding: 34px 18px 16px; color: #fff; text-align: left; font-weight: 900; text-transform: uppercase; background: linear-gradient(transparent,rgba(0,0,0,.86)); }
.gallery-item:hover img { transform: scale(1.045); opacity: .92; }
.work-cta { display: flex; justify-content: center; margin-top: 34px; }

.areas { background: #101010; color: #fff; }
.areas-grid { display: grid; grid-template-columns: 1.05fr 1.3fr .95fr; gap: 50px; align-items: center; }
.areas p { color: #c9c9c9; }
.city-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px 22px; }
.city-grid span { position: relative; padding-left: 24px; }
.city-grid span::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 950; }
.availability-card { display: flex; align-items: center; gap: 18px; border: 1px solid #666; border-radius: 8px; padding: 22px; }
.availability-icon { color: var(--orange); font-size: 2.4rem; }
.availability-card div { display: grid; }
.availability-card strong { color: var(--orange); text-transform: uppercase; font-size: 1.15rem; }
.availability-card span:last-child { color: #fff; font-size: .88rem; }

.contact { background: #f4f4f2; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-methods { display: grid; gap: 12px; margin-top: 28px; }
.contact-methods a { display: grid; padding: 16px 18px; background: #fff; border-left: 4px solid var(--orange); box-shadow: 0 5px 20px rgba(0,0,0,.05); }
.contact-methods span { color: var(--muted); font-size: .78rem; text-transform: uppercase; font-weight: 850; }
.contact-methods strong { overflow-wrap: anywhere; }
.estimate-form { background: #fff; padding: 30px; border-radius: 14px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.estimate-form label { display: grid; gap: 7px; color: #333; font-size: .86rem; font-weight: 850; }
.estimate-form input, .estimate-form select, .estimate-form textarea { width: 100%; border: 1px solid #cfcfcf; border-radius: 6px; background: #fff; padding: 13px 14px; color: #111; outline: none; }
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,106,0,.13); }
.submit-btn { border: 0; width: 100%; }
.form-note { margin: -2px 0 0; color: var(--muted); font-size: .78rem; text-align: center; }

.site-footer { background: #070707; color: #fff; padding: 48px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: center; }
.footer-brand { width: fit-content; }
.footer-grid p { color: #cfcfcf; }
.footer-links { display: grid; justify-items: end; gap: 6px; }
.footer-links a:hover { color: var(--orange); }
.copyright { border-top: 1px solid #292929; margin-top: 30px; padding-top: 18px; color: #8f8f8f; font-size: .82rem; text-align: center; }
.mobile-actions { display: none; }
.lightbox { border: 0; border-radius: 12px; padding: 0; background: #080808; max-width: min(94vw,1100px); box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.lightbox::backdrop { background: rgba(0,0,0,.82); }
.lightbox img { max-height: 84vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 8px; right: 10px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(0,0,0,.65); color: #fff; font-size: 2rem; line-height: 1; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .site-nav { position: fixed; inset: 92px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #0b0b0b; padding: 10px 20px 22px; box-shadow: 0 20px 30px rgba(0,0,0,.25); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 8px; border-bottom: 1px solid #252525; }
  .site-nav a::after { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .header-phone { justify-self: end; }
  .service-grid { grid-template-columns: repeat(3,1fr); }
  .about-grid { gap: 42px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .availability-card { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  body { padding-bottom: 66px; }
  .container { width: min(100% - 28px,var(--max)); }
  .header-inner { min-height: 76px; grid-template-columns: 1fr auto; }
  .brand { min-width: 175px; }
  .brand-copy strong { font-size: 1.55rem; }
  .brand-copy span { font-size: .72rem; }
  .brand-roof { width: 69px; height: 36px; top: -8px; }
  .header-phone { display: none; }
  .site-nav { top: 76px; }
  .hero { min-height: 670px; align-items: end; }
  .hero-media { background-position: 65% center; }
  .hero-shade { background: linear-gradient(180deg,rgba(0,0,0,.20),rgba(0,0,0,.55) 30%,rgba(0,0,0,.96) 68%,#080808 100%); }
  .hero-content { padding: 160px 0 46px; }
  .hero h1 { font-size: clamp(3rem,15vw,4.5rem); }
  .hero-copy { font-size: 1rem; }
  .hero-features { gap: 20px; }
  .feature { font-size: .78rem; }
  .feature-icon { width: 40px; height: 40px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .section { padding: 64px 0; }
  .section-heading.split, .about-grid, .areas-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .service-card h3 { min-height: 58px; font-size: .9rem; }
  .service-card p { font-size: .79rem; }
  .about-collage { min-height: 450px; }
  .about-main { width: 88%; height: 400px; }
  .about-small { height: 190px; }
  .experience-card { left: 4px; bottom: 2px; }
  .check-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery-item.wide { grid-column: span 2; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { gap: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { justify-items: start; }
  .mobile-actions { position: fixed; display: grid; grid-template-columns: repeat(3,1fr); left: 0; right: 0; bottom: 0; z-index: 1200; background: #070707; border-top: 1px solid #333; box-shadow: 0 -8px 30px rgba(0,0,0,.2); }
  .mobile-actions a { padding: 14px 8px; color: #fff; text-align: center; font-weight: 900; text-transform: uppercase; font-size: .78rem; }
  .mobile-actions a:nth-child(2) { background: #171717; }
  .mobile-actions a:last-child { background: var(--orange); }
}

@media (max-width: 470px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: 118px 1fr; grid-template-rows: auto auto; gap: 2px 14px; text-align: left; padding: 0 0 16px; border-bottom: 1px solid var(--line); }
  .service-card img { grid-row: 1 / 3; height: 118px; aspect-ratio: 1; }
  .service-icon { display: none; }
  .service-card h3 { min-height: 0; margin: 4px 0; align-self: end; }
  .service-card h3::after { margin: 7px 0 0; }
  .service-card p { align-self: start; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .city-grid { grid-template-columns: 1fr; }
}
