:root {
  --bg: #f4f1eb;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #626262;
  --line: rgba(23,23,23,.12);
  --dark: #121314;
  --dark-2: #1d2023;
  --accent: #d81920;
  --accent-2: #f4b63f;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(18,19,20,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.55; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 20; height: 76px; display: flex; align-items: center; gap: 24px; padding: 0 max(20px, calc((100vw - 1180px) / 2)); color: #fff; transition: background .2s ease, box-shadow .2s ease; }
.site-header.is-solid { background: rgba(18,19,20,.94); box-shadow: 0 10px 30px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 230px; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; background: var(--accent); color: #fff; font-weight: 800; letter-spacing: 0; }
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand small { margin-top: 4px; color: rgba(255,255,255,.68); font-size: 12px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,.82); font-size: 14px; }
.main-nav a:hover, .header-phone:hover { color: #fff; }
.header-phone { font-weight: 700; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; background: transparent; color: #fff; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: currentColor; margin: 5px auto; }
.hero { position: relative; min-height: 760px; display: grid; align-items: end; overflow: hidden; color: #fff; background: #111; }
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,10,11,.88) 0%, rgba(9,10,11,.66) 42%, rgba(9,10,11,.22) 100%), linear-gradient(0deg, rgba(9,10,11,.72), transparent 45%); }
.hero-content { position: relative; z-index: 1; padding: 150px 0 72px; }
.eyebrow { margin: 0 0 18px; color: var(--accent-2); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: 0; }
.eyebrow.dark { color: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 840px; margin-bottom: 22px; font-size: clamp(44px, 6vw, 78px); line-height: .96; letter-spacing: 0; }
h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 52px); line-height: 1.05; letter-spacing: 0; }
h3 { margin-bottom: 8px; font-size: 20px; line-height: 1.18; }
.hero-lead { max-width: 650px; color: rgba(255,255,255,.82); font-size: 19px; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 22px; border-radius: 8px; border: 1px solid transparent; font-weight: 800; cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #b9141a; }
.btn-ghost { border-color: rgba(255,255,255,.32); color: #fff; background: rgba(255,255,255,.08); }
.btn-dark { background: var(--dark); color: #fff; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 160px)); gap: 12px; margin-top: 52px; }
.hero-stats div { padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.hero-stats strong { display: block; font-size: 25px; line-height: 1; }
.hero-stats span { display: block; margin-top: 8px; color: rgba(255,255,255,.72); font-size: 13px; }
.section { padding: 96px 0; }
.section-muted { background: #ebe6dd; }
.section-dark { background: var(--dark); color: #fff; }
.intro-grid, .proof-grid, .contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 44px; align-items: center; }
.intro-grid p, .proof-grid p, .section-head p, .contact-grid p { color: var(--muted); font-size: 18px; }
.media-card { overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); background: #ddd; }
.media-card img { width: 100%; height: 520px; object-fit: cover; }
.media-card.wide img { height: 440px; }
.section-head { margin-bottom: 34px; }
.section-head h2 { max-width: 820px; }
.split-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.split-head p { max-width: 390px; margin-bottom: 12px; }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-card { border-radius: 8px; overflow: hidden; background: var(--paper); box-shadow: 0 12px 32px rgba(18,19,20,.08); }
.service-card img { width: 100%; aspect-ratio: 1.15 / 1; object-fit: cover; }
.service-card div { padding: 22px; }
.service-card p, .work-card figcaption, .steps p, .form-note { color: var(--muted); }
.work-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.work-card { position: relative; margin: 0; min-height: 280px; overflow: hidden; border-radius: 8px; background: #111; color: #fff; }
.work-card.large { grid-column: span 2; grid-row: span 2; }
.work-card img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform .35s ease; }
.work-card:hover img { transform: scale(1.04); }
.work-card::after { content: ""; position: absolute; inset: auto 0 0; height: 54%; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent); }
.work-card figcaption { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; color: #fff; font-weight: 800; }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; }
.section-dark .eyebrow { color: var(--accent-2); }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.steps li { display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.04); }
.steps span { color: var(--accent-2); font-weight: 900; font-size: 22px; }
.steps p { color: rgba(255,255,255,.68); margin-bottom: 0; }
.check-list { padding: 0; margin: 26px 0 0; list-style: none; display: grid; gap: 10px; }
.check-list li { padding-left: 28px; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 12px; background: var(--accent); border-radius: 3px; }
.lead-form { padding: 28px; border-radius: 8px; background: var(--paper); box-shadow: var(--shadow); display: grid; gap: 14px; }
.lead-form label { display: grid; gap: 7px; font-weight: 700; }
.lead-form input, .lead-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 13px 14px; background: #fafafa; color: var(--ink); }
.lead-form input:focus, .lead-form textarea:focus { outline: 2px solid rgba(216,25,32,.22); border-color: var(--accent); }
.form-note { margin: -2px 0 0; font-size: 12px; }
.lead-form .consent-field { grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 13px; font-weight: 400; line-height: 1.45; }
.lead-form .consent-field input { width: 18px; height: 18px; margin: 2px 0 0; padding: 0; accent-color: var(--accent); }
.consent-field a, .legal-content a, .cookie-banner a, .footer-legal a { text-decoration: underline; text-underline-offset: 3px; }
address { margin-top: 22px; font-style: normal; font-weight: 700; }
.site-footer { padding: 30px 0; color: #fff; background: #0f1011; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-grid div span { display: block; color: rgba(255,255,255,.62); font-size: 13px; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; max-width: 560px; font-size: 12px; color: rgba(255,255,255,.72); }
.footer-legal button { padding: 0; border: 0; background: none; color: inherit; font: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.cookie-banner { position: fixed; z-index: 100; left: max(16px, calc((100vw - 1180px) / 2)); right: max(16px, calc((100vw - 1180px) / 2)); bottom: 16px; display: flex; gap: 28px; align-items: center; justify-content: space-between; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(18,19,20,.98); color: #fff; box-shadow: 0 22px 70px rgba(0,0,0,.34); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 5px; font-size: 18px; }
.cookie-banner p { max-width: 760px; margin: 0; color: rgba(255,255,255,.76); font-size: 14px; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 10px; }
.cookie-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,.26); background: transparent; }
.cookie-actions .btn-outline:hover { background: rgba(255,255,255,.08); }
.legal-page { background: var(--paper); }
.legal-hero { padding: 144px 0 70px; color: #fff; background: radial-gradient(circle at 20% 0, rgba(216,25,32,.4), transparent 34%), linear-gradient(135deg, #111 0%, #25282c 100%); }
.legal-hero h1 { max-width: 960px; margin-bottom: 14px; font-size: clamp(38px, 5vw, 66px); }
.legal-hero p:last-child { margin-bottom: 0; color: rgba(255,255,255,.68); }
.legal-content { max-width: 920px; }
.legal-content h2 { margin: 48px 0 18px; font-size: clamp(25px, 3vw, 34px); }
.legal-content p, .legal-content li { color: #3f3f3f; }
.legal-content li + li { margin-top: 8px; }
.legal-lead { font-size: 20px; }
.legal-table-wrap { overflow-x: auto; margin: 24px 0; }
.legal-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14px; }
.legal-table th, .legal-table td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { background: #ebe6dd; }
@media (max-width: 980px) {
  .site-header { height: 68px; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav { position: fixed; top: 68px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border-radius: 8px; background: rgba(18,19,20,.96); }
  .main-nav.is-open { display: flex; }
  .header-phone { display: none; }
  .hero { min-height: 720px; }
  .hero-stats, .services-grid, .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro-grid, .proof-grid, .contact-grid, .process-grid { grid-template-columns: 1fr; }
  .split-head { display: block; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand small { display: none; }
  .brand { min-width: 0; }
  .hero { min-height: 700px; }
  .hero-content { padding-bottom: 40px; }
  h1 { font-size: 42px; }
  .hero-stats, .services-grid, .work-grid { grid-template-columns: 1fr; }
  .work-card.large { grid-column: auto; grid-row: auto; }
  .section { padding: 68px 0; }
  .media-card img, .media-card.wide img { height: 320px; }
  .footer-grid { display: grid; }
  .footer-legal { justify-content: start; }
  .cookie-banner { display: grid; gap: 16px; }
  .cookie-banner[hidden] { display: none; }
  .cookie-actions { flex-wrap: wrap; }
  .cookie-actions .btn { flex: 1 1 140px; }
}

.btn-outline { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.76); }
.btn-outline:hover { background: #fff; }
.reviews-section { background: var(--paper); }
.rating-panel { min-width: 210px; padding: 20px; border-radius: 8px; background: var(--dark); color: #fff; box-shadow: var(--shadow); }
.rating-panel strong { display: block; font-size: 46px; line-height: 1; color: var(--accent-2); }
.rating-panel span { display: block; margin-top: 8px; color: rgba(255,255,255,.72); font-size: 14px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.review-card { min-height: 220px; padding: 24px; border-radius: 8px; background: #f7f4ee; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; }
.review-card__top { display: flex; justify-content: space-between; gap: 14px; align-items: start; }
.review-card__top span { color: var(--muted); font-size: 14px; white-space: nowrap; }
.review-card p { margin-bottom: 0; color: var(--muted); }
.reviews-actions { margin-top: 24px; }
.contact-stack { display: grid; gap: 16px; }
@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr; } .rating-panel { margin-top: 22px; } }

.service-card { color: inherit; }
.service-card:focus-visible { outline: 3px solid rgba(216,25,32,.32); outline-offset: 3px; }
.service-card h3 { transition: color .15s ease; }
.service-card:hover h3 { color: var(--accent); }
.service-hero { padding: 140px 0 88px; color: #fff; background: radial-gradient(circle at 20% 0, rgba(216,25,32,.38), transparent 34%), linear-gradient(135deg, #111 0%, #25282c 100%); }
.service-hero__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 46px; align-items: center; }
.service-hero h1 { margin-bottom: 22px; }
.service-hero p { max-width: 680px; color: rgba(255,255,255,.78); font-size: 19px; }
.service-detail { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
.feature-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.feature-list li { position: relative; padding: 20px 20px 20px 56px; border-radius: 8px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(18,19,20,.06); font-weight: 700; }
.feature-list li::before { content: ""; position: absolute; left: 22px; top: 24px; width: 14px; height: 14px; border-radius: 4px; background: var(--accent); }
.route-card { display: grid; grid-template-columns: 132px 1fr; gap: 18px; align-items: center; padding: 18px; border-radius: 8px; background: var(--dark); color: #fff; box-shadow: var(--shadow); }
.route-card img { width: 132px; height: 112px; object-fit: cover; border-radius: 8px; }
.route-card strong, .route-card span { display: block; }
.route-card span { margin-top: 6px; color: rgba(255,255,255,.68); font-size: 14px; }
.route-card .btn { grid-column: 1 / -1; }
@media (max-width: 980px) { .service-hero__grid, .service-detail { grid-template-columns: 1fr; } .service-hero { padding-top: 110px; } }
@media (max-width: 640px) { .route-card { grid-template-columns: 1fr; } .route-card img { width: 100%; height: 190px; } }
