:root {
  --bg: #ffffff;
  --soft: #f6f7f8;
  --text: #151515;
  --muted: #60646c;
  --line: #e7e8eb;
  --accent: #ef151f;
  --accent-dark: #c70f18;
  --shadow: 0 18px 50px rgba(0,0,0,.09);
  --radius: 18px;
  --container: 1240px;
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-anchor { scroll-margin-top: calc(var(--header-h) + 14px); }

.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-h); background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(0,0,0,.07); backdrop-filter: blur(16px); }
.header-inner { height: 100%; max-width: 1500px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: minmax(190px, 1fr) auto minmax(270px, 1fr); align-items: center; gap: 26px; }
.brand { display: inline-flex; justify-self: start; align-items: center; width: 240px; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 26px; white-space: nowrap; }
.main-nav a { position: relative; text-decoration: none; font-size: .95rem; font-weight: 700; padding: 34px 0 30px; transition: color .2s ease; }
.main-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:22px; height:2px; background:var(--accent); transition:right .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--accent); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-contact { justify-self: end; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; font-size: .84rem; font-weight: 800; }
.header-contact a { text-decoration: none; transition: color .2s ease; }
.header-contact a:hover { color: var(--accent); }
.phones { display:flex; flex-direction:column; line-height:1.35; }
.mail { white-space:nowrap; }
.menu-toggle { display:none; background:none; border:0; width:44px; height:44px; padding:9px; cursor:pointer; }
.menu-toggle span { display:block; height:2px; background:#111; margin:6px 0; transition:.25s ease; }

.hero { position: relative; min-height: calc(100vh - var(--header-h)); height: 760px; display:flex; align-items:center; overflow:hidden; background:#111; }
.hero-slides, .hero-slide, .hero-overlay { position:absolute; inset:0; }
.hero-slide { background-size:cover; background-position:center; opacity:0; transform:scale(1.025); transition:opacity 1.25s ease, transform 6.5s ease; }
.hero-slide.active { opacity:1; transform:scale(1); }
.hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.47) 40%, rgba(0,0,0,.12) 75%, rgba(0,0,0,.08) 100%); }
.hero-content { position:relative; z-index:2; color:#fff; max-width:820px; margin-left:max(20px, calc((100vw - var(--container))/2)); margin-right:auto; }
.eyebrow, .section-kicker { margin:0 0 12px; letter-spacing:.17em; font-size:.76rem; font-weight:900; color:var(--accent); }
.hero h1 { margin:0; max-width:820px; font-size:clamp(2.5rem,5.3vw,5.4rem); line-height:.98; letter-spacing:-.045em; }
.hero p:not(.eyebrow) { max-width:730px; margin:28px 0 0; font-size:clamp(1rem,1.5vw,1.22rem); color:rgba(255,255,255,.91); }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:34px; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:50px; padding:0 23px; border-radius:999px; font-weight:800; font-size:.94rem; text-decoration:none; border:1px solid transparent; transition:transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.btn:hover { transform:translateY(-2px); }
.btn-primary { color:#fff; background:var(--accent); }
.btn-primary:hover { background:var(--accent-dark); }
.btn-light { background:#fff; color:#111; }
.btn-light:hover { background:#f1f1f1; }
.btn-outline { border-color:#d6d8dc; background:#fff; }
.btn-outline:hover { border-color:var(--accent); color:var(--accent); }
.slider-dots { position:absolute; z-index:4; left:50%; bottom:28px; transform:translateX(-50%); display:flex; gap:9px; }
.dot { width:36px; height:4px; border:0; border-radius:10px; background:rgba(255,255,255,.42); padding:0; cursor:pointer; }
.dot.active { background:#fff; }

.about { padding:100px 0 92px; }
.about-copy { max-width:1000px; }
.about h2, .section-heading h2, .contact h2 { margin:0; font-size:clamp(2rem,4vw,3.5rem); line-height:1.08; letter-spacing:-.035em; }
.about-copy > p:last-child { margin:28px 0 0; max-width:980px; font-size:clamp(1.05rem,2vw,1.35rem); color:var(--muted); }

.offer { padding:100px 0; background:var(--soft); }
.section-heading { max-width:760px; margin-bottom:42px; }
.section-heading > p:last-child { color:var(--muted); font-size:1.07rem; margin-top:15px; }
.offer-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.offer-card { background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:0 0 0 1px rgba(0,0,0,.04); transition:transform .28s ease, box-shadow .28s ease; }
.offer-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.offer-image { height:360px; overflow:hidden; background:#e8e8e8; }
.offer-image img { width:100%; height:100%; object-fit:cover; transition:transform .65s ease; }
.offer-card:hover img { transform:scale(1.035); }
.offer-body { padding:24px 26px 28px; }
.offer-body h3 { margin:0 0 8px; font-size:1.4rem; }
.offer-body p { margin:0; color:var(--muted); }
.offer-wide { grid-column:1 / -1; display:grid; grid-template-columns:1.25fr .75fr; align-items:stretch; }
.offer-wide .offer-image { height:390px; }
.offer-wide .offer-body { display:flex; flex-direction:column; justify-content:center; padding:44px; }

.services { padding:100px 0; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.service { position:relative; padding:34px 30px 38px; border-top:3px solid #111; background:#fff; box-shadow:0 0 0 1px var(--line); min-height:300px; }
.service-number { font-size:.8rem; font-weight:900; color:var(--accent); letter-spacing:.12em; }
.service h3 { margin:22px 0 13px; font-size:1.55rem; }
.service p { margin:0; color:var(--muted); }

.route { padding:100px 0; background:var(--soft); }
.route-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:34px; align-items:stretch; }
.locations { background:#fff; border-radius:var(--radius); padding:36px; }
.location-block { display:flex; gap:15px; padding-bottom:28px; margin-bottom:28px; border-bottom:1px solid var(--line); }
.location-block:last-of-type { margin-bottom:28px; }
.location-block h3 { margin:0 0 6px; font-size:1.15rem; }
.location-block p { margin:0; color:var(--muted); }
.pin { font-size:1.4rem; }
.map-wrap { min-height:470px; border-radius:var(--radius); overflow:hidden; background:#ddd; box-shadow:0 0 0 1px rgba(0,0,0,.05); }
.map-wrap iframe { width:100%; height:100%; min-height:470px; border:0; display:block; }

.contact { padding:105px 0; }
.contact-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:start; }
.contact-lead > p:nth-of-type(2) { color:var(--muted); font-size:1.1rem; max-width:650px; }
.contact-buttons { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.company-data { border-left:3px solid var(--accent); padding-left:30px; }
.company-data h3 { margin:0 0 18px; font-size:1.6rem; }
.company-data p { color:var(--muted); }
.company-data strong { color:var(--text); }
.contact-lines a { color:var(--text); font-weight:800; text-decoration:none; }
.contact-lines a:hover { color:var(--accent); }

.site-footer { border-top:1px solid var(--line); padding:28px 0; background:#fff; }
.footer-inner { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:24px; }
.footer-brand { width:190px; }
.footer-inner p { margin:0; color:var(--muted); font-size:.88rem; text-align:center; }
.back-top { justify-self:end; font-size:.9rem; font-weight:800; text-decoration:none; }
.back-top:hover { color:var(--accent); }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1180px) {
  :root { --header-h: 82px; }
  .header-inner { grid-template-columns:auto 1fr auto; padding:0 20px; }
  .brand { width:205px; }
  .main-nav { gap:16px; }
  .main-nav a { font-size:.88rem; }
  .header-contact { display:none; }
}

@media (max-width: 900px) {
  .header-inner { display:flex; justify-content:space-between; }
  .brand { width:200px; }
  .menu-toggle { display:block; position:relative; z-index:1002; }
  .main-nav { position:fixed; top:var(--header-h); left:0; right:0; background:#fff; flex-direction:column; align-items:stretch; gap:0; padding:12px 20px 22px; border-bottom:1px solid var(--line); box-shadow:0 20px 30px rgba(0,0,0,.08); transform:translateY(-130%); opacity:0; pointer-events:none; transition:.3s ease; }
  .main-nav.open { transform:translateY(0); opacity:1; pointer-events:auto; }
  .main-nav a { padding:14px 4px; border-bottom:1px solid #efefef; }
  .main-nav a::after { display:none; }
  .menu-toggle.open span:nth-child(1) { transform:translateY(8px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity:0; }
  .menu-toggle.open span:nth-child(3) { transform:translateY(-8px) rotate(-45deg); }
  .hero { min-height:650px; height:calc(100svh - var(--header-h)); }
  .hero-content { margin:0 auto; width:min(var(--container), calc(100% - 40px)); }
  .hero-overlay { background:linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.3)); }
  .offer-grid, .services-grid, .route-grid, .contact-grid { grid-template-columns:1fr; }
  .offer-wide { grid-column:auto; display:block; }
  .offer-wide .offer-image { height:340px; }
  .offer-wide .offer-body { padding:24px 26px 28px; }
  .map-wrap, .map-wrap iframe { min-height:390px; }
  .contact-grid { gap:42px; }
  .company-data { padding-left:24px; }
}

@media (max-width: 600px) {
  :root { --header-h: 72px; }
  .container { width:min(100% - 28px, var(--container)); }
  .header-inner { padding:0 14px; }
  .brand { width:174px; }
  .hero { min-height:600px; }
  .hero-content { width:calc(100% - 28px); }
  .hero h1 { font-size:clamp(2.35rem,12vw,3.5rem); }
  .hero p:not(.eyebrow) { font-size:1rem; }
  .hero-actions .btn { width:100%; }
  .about, .offer, .services, .route, .contact { padding:72px 0; }
  .offer-grid { gap:16px; }
  .offer-image, .offer-wide .offer-image { height:245px; }
  .offer-body { padding:20px; }
  .section-heading { margin-bottom:30px; }
  .service { min-height:auto; padding:28px 24px; }
  .locations { padding:25px 20px; }
  .map-wrap, .map-wrap iframe { min-height:330px; }
  .contact-buttons .btn { width:100%; }
  .footer-inner { grid-template-columns:1fr; justify-items:center; text-align:center; }
  .back-top { justify-self:center; }
  .footer-brand { width:170px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; transition-duration:.01ms !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; }
}
