:root {
  --bg: #050505;
  --panel: #101113;
  --panel-2: #17191c;
  --text: #f5f5f5;
  --muted: #b9bdc4;
  --subtle: #777d87;
  --line: rgba(255, 255, 255, 0.11);
  --red: #e11931;
  --red-dark: #a90f22;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
  --font-body: 'Manrope', sans-serif;
  --font-display: 'Teko', 'Manrope', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--red);
  color: white;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin: 0 auto; }
.section { position: relative; padding: 96px 0; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading h2, .why-content h2, .contact-info h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 4.8vw, 4.45rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.section-heading p:not(.eyebrow), .why-content p { color: var(--muted); margin: 18px 0 0; }
.eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-body);
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled { background: rgba(5, 5, 5, 0.94); border-color: var(--line); }
.nav {
  width: var(--container);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; }
.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), #5d0612);
  color: white;
  border-radius: 4px;
  box-shadow: 0 0 28px rgba(225, 25, 49, 0.35);
}
.logo-text { display: grid; line-height: 0.9; font-size: 1.28rem; letter-spacing: 0.08em; }
.logo-text span { color: var(--muted); font-family: var(--font-body); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 5px; }
.nav-menu { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 0.94rem; }
.nav-menu a, .footer-nav a, .footer-contact a { transition: color 0.2s ease; }
.nav-menu a:hover, .footer-nav a:hover, .footer-contact a:hover { color: white; }
.nav-call {
  font-family: var(--font-body);
  border: 1px solid rgba(225, 25, 49, 0.55);
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-call:hover { background: var(--red); transform: translateY(-2px); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 4px; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: white; transition: transform 0.25s ease, opacity 0.25s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: 100vh; display: grid; align-items: end; padding: 160px 0 72px; isolation: isolate; overflow: hidden; }
.hero-media, .hero-overlay { position: absolute; inset: 0; z-index: -2; }
.hero-media {
  background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=2200&q=85') center/cover no-repeat;
  transform: scale(1.04);
  animation: slowZoom 16s ease-in-out infinite alternate;
}
.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.55) 44%, rgba(0, 0, 0, 0.2)), linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.15) 34%, rgba(5, 5, 5, 0.2) 100%);
}
@keyframes slowZoom { from { transform: scale(1.02); } to { transform: scale(1.09); } }
.hero-content { max-width: var(--container); }
.hero h1 { max-width: 920px; margin: 0; font-family: var(--font-display); font-size: clamp(3.35rem, 8vw, 7.7rem); font-weight: 600; line-height: 0.88; letter-spacing: 0.01em; text-transform: uppercase; }
.hero-text { max-width: 650px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.25rem); margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  font-family: var(--font-display);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 24px;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--red); color: white; box-shadow: 0 18px 40px rgba(225, 25, 49, 0.28); }
.btn-primary:hover { background: #ff203b; }
.btn-secondary { border-color: rgba(255, 255, 255, 0.25); color: white; background: rgba(255, 255, 255, 0.06); }
.btn-secondary:hover { border-color: white; background: rgba(255, 255, 255, 0.11); }
.hero-strip {
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--line);
  background: var(--line);
}
.hero-strip span { padding: 18px 16px; background: rgba(10, 10, 10, 0.72); color: var(--muted); font-weight: 800; text-align: center; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .review-card, .timeline li {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-card { padding: 30px; min-height: 255px; transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(225, 25, 49, 0.55); background: linear-gradient(180deg, rgba(225, 25, 49, 0.11), rgba(255, 255, 255, 0.025)); }
.icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 4px; background: rgba(225, 25, 49, 0.13); color: var(--red); margin-bottom: 24px; }
.icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3, .timeline h3, .review-card h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: 1.58rem; font-weight: 500; line-height: 0.95; letter-spacing: 0.01em; text-transform: uppercase; }
.service-card p, .timeline p, .review-card p { margin: 0; color: var(--muted); }

.why { background: #090a0b; }
.why-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 58px; align-items: center; }
.why-image { min-height: 620px; border-radius: var(--radius); background: linear-gradient(0deg, rgba(0,0,0,0.25), rgba(0,0,0,0.05)), url('https://images.unsplash.com/photo-1625047509168-a7026f36de04?auto=format&fit=crop&w=1400&q=85') center/cover no-repeat; box-shadow: var(--shadow); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 34px; }
.stats-grid div { padding: 24px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.stats-grid strong { display: block; font-family: var(--font-display); font-size: clamp(2.65rem, 5vw, 4.2rem); font-weight: 600; line-height: 0.85; letter-spacing: 0.01em; color: white; }
.stats-grid strong::after { content: '+'; color: var(--red); margin-left: 2px; }
.stats-grid div:nth-child(3) strong::after { content: '%'; }
.stats-grid div:nth-child(4) strong::after { content: ''; }
.stats-grid span { display: block; margin-top: 8px; color: var(--muted); }

.process { background: radial-gradient(circle at top right, rgba(225, 25, 49, 0.12), transparent 32%), var(--bg); }
.timeline { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; overflow: hidden; }
.timeline li { position: relative; padding: 26px; min-height: 255px; overflow: visible; isolation: isolate; }
.timeline li::before { content: ''; position: absolute; left: 92px; right: -40px; top: 55px; height: 1px; background: rgba(225, 25, 49, 0.35); z-index: 0; }
.timeline li:last-child::before { display: none; }
.timeline span { position: relative; z-index: 2; display: inline-grid; place-items: center; width: 58px; height: 58px; margin-bottom: 28px; border: 1px solid rgba(225, 25, 49, 0.65); background: var(--panel); color: var(--red); border-radius: 50%; font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; letter-spacing: 0.04em; box-shadow: 0 0 0 8px #0b0b0c; }
.timeline h3, .timeline p { position: relative; z-index: 1; }

.gallery { background: #090a0b; }
.gallery-grid { 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: var(--radius); background: var(--panel); }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.55s ease, filter 0.25s ease; }
.gallery-item:nth-child(1) img { object-position: center 45%; }
.gallery-item:nth-child(2) img { object-position: center; }
.gallery-item:nth-child(3) img { object-position: center 42%; }
.gallery-item:nth-child(4) img { object-position: center; }
.gallery-item:nth-child(5) img { object-position: center 48%; }
.gallery-item:nth-child(6) img { object-position: center 52%; }
.gallery-item::after { content: attr(data-title); position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 11px 12px; background: rgba(5, 5, 5, 0.78); color: white; border-left: 3px solid var(--red); text-align: left; font-weight: 800; opacity: 0; transform: translateY(10px); transition: opacity 0.25s ease, transform 0.25s ease; }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.72); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review-card { padding: 28px; }
.stars { color: var(--red); letter-spacing: 0.08em; margin-bottom: 18px; }
.review-card p { min-height: 140px; }
.review-card h3 { margin-top: 22px; margin-bottom: 2px; }
.review-card span { color: var(--subtle); font-size: 0.92rem; }

.contact {
  background: radial-gradient(circle at 50% 0%, rgba(225, 25, 49, 0.16), transparent 34%), linear-gradient(180deg, #090a0b, #050505);
  padding: 118px 0;
}
.contact-layout { display: flex; justify-content: center; }
.contact-info {
  width: min(940px, 100%);
  text-align: center;
}
.contact-info h2 { max-width: 760px; margin: 0 auto; }
.phone {
  display: inline-block;
  margin: 26px 0 0;
  font-family: var(--font-display);
  color: white;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: 0;
  text-shadow: 0 0 42px rgba(225, 25, 49, 0.22);
  transition: color 0.2s ease, transform 0.2s ease;
}
.phone:hover { color: var(--red); transform: translateY(-3px); }
.contact-lead {
  max-width: 710px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 42px 0 20px;
}
.contact-list p {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  margin: 0;
  padding: 20px 22px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-list strong { color: white; font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; text-transform: uppercase; }
.map-wrap { height: 380px; margin-top: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); scroll-margin-top: 96px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.footer { background: #030303; border-top: 1px solid var(--line); padding: 38px 0 24px; }
.footer-layout { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 28px; align-items: center; }
.footer-nav, .footer-contact { display: grid; gap: 8px; color: var(--muted); }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); font-weight: 900; transition: background 0.2s ease, color 0.2s ease; }
.socials a:hover { background: var(--red); color: white; }
.socials svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.socials a:first-child svg { fill: currentColor; stroke: none; }
.footer-bottom { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--subtle); font-size: 0.9rem; }

.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.86); padding: 24px; }
.lightbox.active { display: flex; }
.lightbox img { max-height: 82vh; width: min(1100px, 100%); object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox p { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); margin: 0; padding: 10px 14px; background: rgba(5,5,5,0.8); color: white; border-left: 3px solid var(--red); }
.lightbox-close { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 4px; background: rgba(255, 255, 255, 0.08); color: white; font-size: 2rem; line-height: 1; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1040px) {
  .nav-call { display: none; }
  .service-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; }
  .why-image { min-height: 420px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline li { min-height: auto; }
  .timeline li::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-layout { grid-template-columns: 1fr 1fr; }
  .contact-list p { min-height: auto; }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .nav { min-height: 68px; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(8, 8, 9, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-menu.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-menu a { padding: 14px; border-bottom: 1px solid var(--line); }
  .nav-menu a:last-child { border-bottom: 0; }
  .hero { min-height: 92vh; padding: 128px 0 46px; overflow: hidden; }
  .hero-content { width: min(calc(100vw - 28px), 520px); max-width: calc(100vw - 28px); }
  .hero h1 {
    max-width: min(10.8em, 100%);
    font-size: clamp(2.65rem, 10vw, 5rem);
    line-height: 1.02;
    overflow-wrap: normal;
    text-wrap: balance;
  }
  .hero-text { max-width: 30rem; }
  .hero-strip { grid-template-columns: 1fr; margin-top: 38px; }
  .service-grid, .review-grid, .stats-grid, .gallery-grid, .contact-list, .footer-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 235px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: auto; }
  .review-card p { min-height: auto; }
  .phone { font-size: clamp(2.1rem, 12vw, 3.4rem); }
  .contact { padding: 86px 0; }
  .map-wrap { height: 300px; }
}

@media (max-width: 480px) {
  .hero-content {
    width: min(calc(100vw - 40px), 390px);
    max-width: calc(100vw - 40px);
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 8.9vw, 3.9rem);
    line-height: 1;
  }
}

@media (max-width: 420px) {
  .logo-mark { width: 38px; height: 38px; }
  .logo-text { font-size: 0.92rem; }
  .logo-text span { font-size: 0.58rem; }
  .hero-content { width: min(calc(100vw - 44px), 376px); max-width: calc(100vw - 44px); }
  .hero h1 { font-size: clamp(2.35rem, 8.8vw, 3.15rem); max-width: 100%; }
  .btn { width: 100%; }
}
