:root {
  --c-bg: #0C0B09; --c-surface: #111009; --c-ink: #E4E0D8;
  --c-ink-mid: #A8A29A; --c-ink-faint: #7A7670; --c-ink-ghost: #2A2824;
  --c-accent: #F59A00; --c-accent2: #E82020; --c-accent-dim: #b8883a;
  --c-dark: #171512;
  --f-serif: 'Bebas Neue', Georgia, serif;
  --f-sans: 'Barlow', sans-serif;
  --f-cond: 'Barlow Condensed', 'Barlow', sans-serif;
  --nav-h: 62px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--c-bg);
  color: var(--c-ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

/* ===== ROAD SCENE (fixed background) ===== */
.road-scene {
  position: fixed; inset: 0; z-index: 1;
  overflow: hidden; background: #080706; pointer-events: none;
  transition: opacity .5s;
}
.road-scene__sky {
  position: absolute; top: 0; left: 0; right: 0; height: 42%;
  background: linear-gradient(to bottom, #060504 0%, #0A0908 60%, #111009 100%);
}
.road-scene__buildings {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  display: flex; align-items: flex-end; opacity: 0.35;
}
.road-scene__bldg { flex: 1; margin: 0 1px; }
.road-scene__canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}

/* ===== SCROLL WRAPPER ===== */
.home-scroll { position: relative; z-index: 10; padding-top: 56px; }
.home-road-zone { position: relative; }
.home-bottom { position: relative; z-index: 10; background: var(--c-bg); }

/* ===== PROGRESS DOTS ===== */
.dots {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
  z-index: 800; display: flex; flex-direction: column; gap: 12px;
}
.dots__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-ink-ghost); border: 1px solid var(--c-ink-faint);
  padding: 0; cursor: pointer;
  transition: background .3s, transform .3s, border-color .3s;
}
.dots__dot:hover { border-color: var(--c-accent); }
.dots__dot--active {
  background: var(--c-accent); border-color: var(--c-accent); transform: scale(1.4);
}
@media (max-width: 768px) {
  .dots { right: 10px; }
  .dots__dot { width: 6px; height: 6px; }
}

/* ===== HERO ===== */
.hero-road {
  height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; position: relative;
}
.hero-road__content { max-width: 700px; padding: 0 24px; }
.hero-road__title {
  font-family: var(--f-serif);
  font-size: clamp(56px, 12vw, 160px);
  line-height: .82; text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,.8);
}
.hero-road__title em {
  color: var(--c-accent); font-style: normal; display: block;
}
.hero-road__sub {
  font-family: var(--f-cond);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 600; letter-spacing: 3px;
  color: var(--c-ink-mid); text-transform: uppercase;
  margin: 20px 0 8px; line-height: 2.2;
}
.hero-road__sub span { color: var(--c-accent); }
.hero-road__scroll {
  font-size: 14px; letter-spacing: 3px;
  color: var(--c-ink-faint); text-transform: uppercase;
  margin-top: 28px; animation: hero-pulse 2s ease-in-out infinite;
}
@keyframes hero-pulse { 0%,100% { opacity: .2; } 50% { opacity: .8; } }

/* ===== OBSTACLE (service card sections) ===== */
.obstacle {
  min-height: 220vh; position: relative; z-index: 3;
  view-timeline-name: --obstacle-tl; view-timeline-axis: block;
}
@media (max-width: 1024px) { .obstacle { min-height: 90vh; } }

.obstacle__pin {
  position: sticky; top: 0; height: 100vh;
  display: flex; justify-content: center; align-items: flex-end;
  padding: 0 clamp(16px, 4vw, 60px) 20vh;
}
@media (max-width: 1024px) {
  .obstacle__pin { position: static; height: auto; padding: 0; }
}

.truck-panel {
  position: relative; max-width: 460px; width: 100%;
  transform-origin: 50% 50%; will-change: transform, opacity, filter;
}
@media (max-width: 1024px) { .truck-panel { max-width: 520px; } }

@supports (animation-timeline: view()) {
  .truck-panel {
    animation: panel-cycle linear both;
    animation-timeline: --obstacle-tl;
    animation-range: cover 0% cover 100%;
  }
  .obstacle--left .truck-panel { animation-name: panel-cycle-left; }
}
@supports not (animation-timeline: --obstacle-tl) {
  .truck-panel {
    transform: translate(0, -30vh) scale(0.2);
    opacity: 0; filter: blur(8px);
    transition: transform 1s cubic-bezier(.16,1,.3,1), opacity .55s ease-out, filter .6s ease-out;
  }
  .truck-panel.is-approaching {
    transform: translate(11vw, 0) scale(1); opacity: 1; filter: blur(0);
  }
  .obstacle--left .truck-panel.is-approaching {
    transform: translate(-11vw, 0) scale(1);
  }
}
@keyframes panel-cycle {
  0%,26%   { transform: translate(0,-30vh) scale(.2); opacity:0; filter:blur(8px); }
  38%      { transform: translate(7vw,-12vh) scale(.55); opacity:.7; filter:blur(3px); }
  48%,62%  { transform: translate(11vw,0) scale(1); opacity:1; filter:blur(0); }
  74%      { transform: translate(11vw,5vh) scale(.92); opacity:.55; filter:blur(2px); }
  86%,100% { transform: translate(11vw,12vh) scale(.6); opacity:0; filter:blur(5px); }
}
@keyframes panel-cycle-left {
  0%,26%   { transform: translate(0,-30vh) scale(.2); opacity:0; filter:blur(8px); }
  38%      { transform: translate(-7vw,-12vh) scale(.55); opacity:.7; filter:blur(3px); }
  48%,62%  { transform: translate(-11vw,0) scale(1); opacity:1; filter:blur(0); }
  74%      { transform: translate(-11vw,5vh) scale(.92); opacity:.55; filter:blur(2px); }
  86%,100% { transform: translate(-11vw,12vh) scale(.6); opacity:0; filter:blur(5px); }
}
@media (prefers-reduced-motion: reduce) {
  .truck-panel { animation: none !important; transform: none !important; opacity: 1 !important; filter: none !important; }
}
@media (max-width: 1024px) {
  .truck-panel, .obstacle--left .truck-panel {
    position: fixed !important; top: 50% !important; left: 50% !important;
    max-width: min(520px, calc(100vw - 32px)) !important;
    width: calc(100vw - 32px) !important;
    animation: none !important;
    transform: translate(-50%,-50%) scale(.75) !important;
    opacity: 0 !important; filter: blur(4px) !important;
    transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .4s ease-out, filter .45s ease-out !important;
    z-index: 40; pointer-events: none;
  }
  .truck-panel.is-approaching, .obstacle--left .truck-panel.is-approaching {
    transform: translate(-50%,-50%) scale(1) !important;
    opacity: 1 !important; filter: blur(0) !important; pointer-events: auto;
  }
}

/* Truck panel internals */
.truck-panel__body {
  background: var(--c-surface); border: 1px solid var(--c-ink-ghost);
  position: relative; overflow: hidden;
}
.truck-panel__body.is-red {
  --panel-accent: var(--c-accent2);
  --panel-accent-fade: rgba(232,32,32,.06);
}
.truck-panel__body.is-red .truck-panel__ad { border-left: 3px solid var(--panel-accent); }
.truck-panel__body.is-red .truck-panel__num { color: var(--panel-accent-fade); }
.truck-panel__body.is-red .truck-panel__stripe,
.truck-panel__body.is-red .truck-panel__btn { background: var(--panel-accent); }
.truck-panel__body.is-red .truck-panel__tag,
.truck-panel__body.is-red .truck-panel__phone,
.truck-panel__body.is-red .truck-panel__title em { color: var(--panel-accent); }
.truck-panel__body.is-red .truck-panel__tag::before { background: var(--panel-accent); }

.truck-panel__lights {
  display: flex; justify-content: space-between; padding: 0 12px; height: 8px; background: #1A1714;
}
.truck-panel__lights::before, .truck-panel__lights::after {
  content: ''; width: 48px; height: 6px; margin-top: 1px; border-radius: 1px;
}
.truck-panel__lights::before { background: var(--c-accent2); }
.truck-panel__lights::after { background: var(--c-accent); }

.truck-panel__ad {
  padding: clamp(28px, 4vw, 48px); position: relative;
}
.truck-panel__stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--c-accent);
}
.truck-panel__num {
  position: absolute; top: 10px; right: 16px;
  font-family: var(--f-serif); font-size: clamp(72px, 10vw, 120px);
  line-height: 1; color: rgba(245,154,0,.05);
}
.truck-panel__tag {
  font-family: var(--f-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--c-accent);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.truck-panel__tag::before {
  content: ''; width: 20px; height: 1px; background: var(--c-accent);
}
.truck-panel__icon {
  font-size: clamp(36px, 5vw, 56px); display: block; margin-bottom: 16px;
}
.truck-panel__title {
  font-family: var(--f-serif);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: .86; text-transform: uppercase; margin-bottom: 16px;
}
.truck-panel__title em { color: var(--c-accent); font-style: normal; }
.truck-panel__desc {
  font-size: clamp(16px, 1.6vw, 19px); font-weight: 400;
  line-height: 1.7; color: var(--c-ink-mid); max-width: 440px; margin-bottom: 28px;
}
.truck-panel__features {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.truck-panel__features li {
  font-family: var(--f-cond); font-size: 15px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--c-ink);
  background: var(--c-dark); border: 1px solid var(--c-ink-ghost); padding: 8px 16px;
}
.truck-panel__btn {
  font-family: var(--f-serif); font-size: 17px; letter-spacing: 3px;
  text-transform: uppercase; background: var(--c-accent); color: var(--c-bg);
  padding: 14px 38px; border: none; cursor: pointer; display: inline-block;
  text-decoration: none; transition: background .2s;
}
.truck-panel__btn:hover { background: #ffad2a; }
.truck-panel__footer {
  padding: 10px clamp(28px, 4vw, 48px); background: var(--c-dark);
  border-top: 1px solid var(--c-ink-ghost);
  display: flex; justify-content: space-between; align-items: center;
}
.truck-panel__brand {
  font-family: var(--f-serif); font-size: 16px; letter-spacing: 4px; color: var(--c-ink-faint);
}
.truck-panel__brand em { color: var(--c-accent); font-style: normal; }
.truck-panel__phone {
  font-family: var(--f-cond); font-size: 16px; letter-spacing: 1px; color: var(--c-ink-faint);
}
.truck-panel__mud {
  display: flex; justify-content: space-between; padding: 0 20px;
}
.truck-panel__mud span {
  display: block; width: 50px; height: 18px; background: var(--c-dark);
  border: 1px solid var(--c-ink-ghost); border-top: none; border-radius: 0 0 4px 4px;
}

/* ===== ROADSIDE BREAK ===== */
.break { min-height: 80vh; position: relative; }
.break__sign {
  position: fixed; top: 50%; left: 50%; z-index: 20;
  display: flex; align-items: center; gap: clamp(16px, 3vw, 32px);
  max-width: 480px; padding: 0 clamp(16px, 4vw, 60px); text-align: left;
  opacity: 0; transform: translate(-50%,-50%) scale(.2);
  transition: opacity .55s ease, transform .6s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.break.reveal--on .break__sign {
  opacity: 1; transform: translate(-50%,-50%) scale(1); pointer-events: auto;
}
@media (max-width: 768px) {
  .break { min-height: auto; padding: 60px 20px; }
  .break__sign { position: static; transform: scale(.2); opacity: 0; }
  .break.reveal--on .break__sign { transform: scale(1); opacity: 1; }
}
.break__icon {
  flex-shrink: 0;
  width: clamp(56px, 8vw, 80px); height: clamp(56px, 8vw, 80px);
  background: var(--c-surface); border: 2px solid var(--c-ink-ghost);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: clamp(28px, 4vw, 40px); position: relative;
}
.break__icon::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--c-accent2); opacity: .4;
}
.break__icon--flash::before {
  content: ''; position: absolute; inset: -12px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
  animation: break-flash 3s ease-in-out infinite;
}
@keyframes break-flash { 0%,85%,100% { opacity: 0; } 90% { opacity: 1; } }
.break__text h3 {
  font-family: var(--f-serif); font-size: clamp(20px, 3vw, 32px);
  line-height: .9; text-transform: uppercase; margin-bottom: 6px; color: var(--c-ink);
}
.break__text h3 em { color: var(--c-accent); font-style: normal; }
.break__text p {
  font-size: 17px; color: var(--c-ink-mid); line-height: 1.6; letter-spacing: .5px;
}

/* ===== TOW TRUCK (sticky vehicle) ===== */
.home-vehicle { position: sticky; bottom: 0; height: 0; pointer-events: none; z-index: 2; }
.tow {
  position: absolute; z-index: auto; bottom: 0; left: 50%;
  width: clamp(160px, 20vw, 280px); transform: translateX(-50%);
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
}
@media (max-width: 1024px) { .tow { width: clamp(140px, 34vw, 200px); } }
.tow--left  { transform: translateX(calc(-50% - 14vw)) rotate(-2deg); }
.tow--right { transform: translateX(calc(-50% + 14vw)) rotate(2deg); }
.tow--center { transform: translateX(-50%) rotate(0deg); }
.tow__svg { width: 100%; display: block; }
.tow__shadow {
  position: absolute; bottom: -10px; left: 10%; right: 10%; height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,.5) 0%, transparent 70%); border-radius: 50%;
}
.tow__glow {
  position: absolute; bottom: -30px; left: 20%; right: 20%; height: 40px;
  background: radial-gradient(ellipse, rgba(232,32,32,.15) 0%, transparent 70%);
  border-radius: 50%; animation: tow-brake 2s ease-in-out infinite;
}
@keyframes tow-brake { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

/* ===== STATS BAR ===== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  position: relative; z-index: 10;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}
.stats.reveal--on { opacity: 1; transform: none; }
@media (max-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stats__item {
  background: var(--c-surface); border: 1px solid var(--c-ink-ghost);
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 28px); text-align: center;
}
.stats__n {
  font-family: var(--f-serif); font-size: clamp(40px, 6vw, 72px);
  line-height: 1; margin-bottom: 4px;
}
.stats__n em { color: var(--c-accent); font-style: normal; }
.stats__l {
  font-family: var(--f-cond); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--c-ink-mid);
}

/* ===== WHY SECTION ===== */
.why {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--c-ink-ghost); border-bottom: 1px solid var(--c-ink-ghost);
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}
.why.reveal--on { opacity: 1; transform: none; }
@media (max-width: 768px) { .why { grid-template-columns: 1fr; } }
.why__left { padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 72px); background: var(--c-surface); }
.why__h2 {
  font-family: var(--f-serif); font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: .88; text-transform: uppercase; margin-bottom: 24px;
}
.why__h2 em { color: var(--c-accent); font-style: normal; }
.why__desc {
  font-size: 17px; font-weight: 400; line-height: 1.75;
  color: var(--c-ink-mid); max-width: 440px; margin-bottom: 36px;
}
.why__perks { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.why__perk {
  background: var(--c-dark); padding: 20px; border: 1px solid var(--c-ink-ghost);
}
.why__perk-ico { font-size: 22px; display: block; margin-bottom: 8px; }
.why__perk strong {
  font-family: var(--f-cond); font-size: 16px; font-weight: 700;
  display: block; margin-bottom: 6px; text-transform: uppercase; color: var(--c-ink);
}
.why__perk p { font-size: 16px; font-weight: 400; color: var(--c-ink-mid); line-height: 1.65; }
.why__right { background: var(--c-bg); display: flex; flex-direction: column; }
.why__big {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(30px, 5vw, 60px); border-bottom: 1px solid var(--c-ink-ghost);
}
.why__big-n {
  font-family: var(--f-serif); font-size: clamp(80px, 12vw, 160px); line-height: .85;
}
.why__big-n em { color: var(--c-accent); font-style: normal; }
.why__big-l {
  font-family: var(--f-cond); font-size: 14px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--c-ink-mid); margin-top: 8px;
}
.why__cert {
  padding: clamp(24px, 4vw, 40px); border-left: 3px solid var(--c-accent);
}
.why__cert-label {
  font-family: var(--f-cond); font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--c-ink-faint); margin-bottom: 4px;
}
.why__cert-val { font-family: var(--f-serif); font-size: 24px; letter-spacing: 2px; }

/* ===== CTA ===== */
.cta {
  padding: clamp(60px, 10vw, 110px) clamp(16px, 6vw, 80px);
  text-align: center; position: relative;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}
.cta.reveal--on { opacity: 1; transform: none; }
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(245,154,0,.08), transparent);
  pointer-events: none;
}
.cta__h2 {
  font-family: var(--f-serif); font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: .87; text-transform: uppercase; margin-bottom: 10px;
}
.cta__h2 em { color: var(--c-accent); font-style: normal; display: block; }
.cta__phone {
  display: block; font-family: var(--f-serif);
  font-size: clamp(28px, 4.5vw, 56px); color: var(--c-accent);
  letter-spacing: 3px; margin: 14px 0 36px; text-decoration: none;
}
.cta__info {
  font-size: 16px; letter-spacing: 1px; color: var(--c-ink-mid);
  margin-bottom: 36px; line-height: 1.9;
}
.cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--f-serif); font-size: 16px; letter-spacing: 3px;
  text-transform: uppercase; background: var(--c-accent); color: var(--c-bg);
  padding: 14px 40px; border: none; cursor: pointer; display: inline-block;
  text-decoration: none; transition: background .2s;
}
.btn-primary:hover { background: #ffad2a; }
.btn-outline {
  font-family: var(--f-serif); font-size: 16px; letter-spacing: 3px;
  text-transform: uppercase; background: transparent; color: var(--c-ink);
  padding: 14px 40px; border: 1px solid var(--c-ink-ghost);
  cursor: pointer; display: inline-block; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ===== FOOTER ===== */
.footer {
  background: #060504; border-top: 1px solid var(--c-ink-ghost);
  padding: 52px clamp(16px, 5vw, 80px) 22px; color: var(--c-ink-mid);
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 28px;
}
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__logo {
  font-family: var(--f-serif); font-size: 20px; letter-spacing: 5px;
  display: block; margin-bottom: 10px; color: var(--c-ink);
}
.footer__logo em { color: var(--c-accent); font-style: normal; }
.footer__brand p { font-size: 16px; line-height: 1.75; color: var(--c-ink-mid); }
.footer__col h4 {
  font-family: var(--f-cond); font-size: 14px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--c-ink-faint); margin-bottom: 14px; font-weight: 700;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  font-size: 16px; font-weight: 400; color: var(--c-ink-mid);
  text-decoration: none; transition: color .2s;
}
.footer__col a:hover { color: var(--c-accent); }
.footer__bottom {
  border-top: 1px solid var(--c-ink-ghost); padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center;
}
.footer__bottom p { font-size: 14px; color: var(--c-ink-faint); }
.footer__bottom a { font-size: 14px; color: var(--c-ink-faint); text-decoration: none; transition: color .2s; }
.footer__bottom a:hover { color: var(--c-accent); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 56px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(12, 11, 9, 0.94);
  border-bottom: 1px solid var(--c-ink-ghost);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav__logo {
  font-family: var(--f-serif); font-size: 18px; letter-spacing: 4px;
  color: var(--c-ink); text-decoration: none;
}
.nav__logo em { color: var(--c-accent); font-style: normal; }
.nav__links {
  display: flex; gap: 20px; align-items: center; list-style: none; margin: 0; padding: 0;
}
.nav__link {
  font-family: var(--f-cond); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--c-ink-mid);
  text-decoration: none; background: none; border: none; cursor: pointer;
  padding: 0; display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.nav__link:hover { color: var(--c-accent); }
.nav__caret { font-size: 10px; transition: transform .2s; display: inline-block; }
.nav__item { position: relative; display: flex; align-items: center; }
.nav__item--has-submenu:hover .nav__submenu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.nav__submenu {
  position: absolute; top: 100%; left: 0; margin-top: 8px; min-width: 280px; padding: 8px;
  background: rgba(17, 16, 9, 0.98); border: 1px solid var(--c-ink-ghost);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s; z-index: 1000;
}
.nav__submenu-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  text-decoration: none; color: var(--c-ink);
  font-family: var(--f-cond); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; transition: background .2s, color .2s;
}
.nav__submenu-item:hover { background: var(--c-dark); color: var(--c-accent); }
.nav__submenu-icon { font-size: 18px; flex-shrink: 0; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  font-family: var(--f-cond); font-size: 13px; letter-spacing: 1px;
  color: var(--c-ink-mid); text-decoration: none;
}
.nav__phone:hover { color: var(--c-accent); }
.nav__cta {
  font-family: var(--f-serif); font-size: 14px; letter-spacing: 3px;
  background: var(--c-accent); color: var(--c-bg);
  padding: 9px 22px; border: none; cursor: pointer;
  text-decoration: none; transition: background .2s; text-transform: uppercase;
}
.nav__cta:hover { background: #ffad2a; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px; background: var(--c-ink); transition: transform .3s;
}
.nav__mobile-section, .nav__mobile-service { display: none; }
@media (max-width: 900px) {
  .nav__links, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .nav--open .nav__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 56px; left: 0; right: 0;
    background: rgba(12, 11, 9, 0.97); backdrop-filter: blur(12px);
    padding: 1rem 2rem; gap: 0.85rem;
    border-bottom: 1px solid var(--c-ink-ghost);
    max-height: calc(100vh - 56px); overflow-y: auto;
  }
  .nav__item--has-submenu { display: none; }
  .nav__submenu { display: none; }
  .nav__mobile-section {
    display: block;
    font-family: var(--f-cond); font-size: 11px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--c-accent);
    padding-top: 0.6rem; margin-top: 0.3rem;
    border-top: 1px solid var(--c-ink-ghost);
  }
  .nav__mobile-service {
    display: block;
  }
  .nav__mobile-service a {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
    font-family: var(--f-cond); font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: var(--c-ink); padding: 4px 0;
  }
  .nav__mobile-service a:hover { color: var(--c-accent); }
}

/* ===== REVEAL (shared animation) ===== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal--on { opacity: 1; transform: none; }

/* ===== SERVICE HERO ===== */
.svc-hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden; padding-top: 56px;
}
@media (max-width: 768px) { .svc-hero { grid-template-columns: 1fr; min-height: auto; } }
.svc-hero__left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 72px);
  position: relative; z-index: 10;
}
@media (max-width: 768px) {
  .svc-hero__left { justify-content: center; align-items: center; text-align: center; padding: 80px 20px 60px; }
}
.svc-hero__breadcrumb {
  font-family: var(--f-cond); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--c-ink-mid);
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.svc-hero__breadcrumb a {
  color: var(--c-ink-mid); text-decoration: none; transition: color .2s;
}
.svc-hero__breadcrumb a:hover { color: var(--c-accent); }
.svc-hero__breadcrumb span { color: var(--c-ink-faint); }
.svc-hero__breadcrumb-current { color: var(--c-ink-faint); }
.svc-hero__tag {
  font-family: var(--f-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--c-accent);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.svc-hero__tag::before {
  content: ''; width: 24px; height: 1px; background: var(--c-accent);
}
.svc-hero__h1 {
  font-family: var(--f-serif);
  font-size: clamp(4rem, 10vw, 8.75rem);
  line-height: .82; text-transform: uppercase; margin-bottom: 24px;
}
.svc-hero__h1 em { color: var(--c-accent); font-style: normal; display: block; }
.svc-hero__desc {
  font-size: clamp(16px, 1.6vw, 19px); font-weight: 400;
  line-height: 1.75; color: var(--c-ink-mid); max-width: 460px; margin-bottom: 36px;
}
.svc-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 768px) { .svc-hero__btns { justify-content: center; width: 100%; } }
.svc-hero__right {
  position: relative; overflow: hidden; background: var(--c-dark);
}
@media (max-width: 768px) { .svc-hero__right { display: none; } }
.svc-hero__right::before {
  content: attr(data-num);
  font-family: var(--f-serif); position: absolute; top: -30px; right: -15px;
  font-size: clamp(200px, 28vw, 380px); line-height: 1;
  color: rgba(245, 154, 0, .03); pointer-events: none; letter-spacing: -10px;
}
.svc-hero__right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(245, 154, 0, .04) 100%);
  pointer-events: none;
}
.svc-hero__icon-big {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%);
  font-size: clamp(100px, 16vw, 200px); opacity: .15; color: var(--c-accent);
}
.svc-hero__stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.svc-hero__stat {
  padding: 20px; border-top: 1px solid var(--c-ink-ghost);
  border-right: 1px solid var(--c-ink-ghost); text-align: center;
}
.svc-hero__stat:last-child { border-right: none; }
.svc-hero__stat-n {
  font-family: var(--f-serif); font-size: clamp(28px, 3vw, 44px); line-height: 1;
}
.svc-hero__stat-n em { color: var(--c-accent); font-style: normal; }
.svc-hero__stat-l {
  font-family: var(--f-cond); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--c-ink-mid);
}

/* ===== SERVICE TICKER ===== */
.ticker {
  height: 42px; overflow: hidden; background: var(--c-accent);
  display: flex; align-items: center;
}
.ticker__track {
  display: flex; white-space: nowrap;
  animation: ticker-roll 25s linear infinite; will-change: transform;
}
.ticker__loop { display: flex; }
.ticker__item {
  font-family: var(--f-serif); font-size: 15px; letter-spacing: 4px;
  padding: 0 32px; color: rgba(12, 11, 9, .85); text-transform: uppercase;
  display: flex; align-items: center; gap: 32px;
}
.ticker__item::after {
  content: '\2726'; font-size: 8px; color: rgba(12, 11, 9, .35); margin-left: 32px;
}
@keyframes ticker-roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SERVICE DETAIL ===== */
.detail { padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 80px); }
.detail__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: start;
}
@media (max-width: 768px) { .detail__grid { grid-template-columns: 1fr; } }
.detail__label {
  font-family: var(--f-cond); font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--c-accent);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.detail__label::before {
  content: ''; width: 24px; height: 1px; background: var(--c-accent);
}
.detail__h2 {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: .88; text-transform: uppercase; margin-bottom: 24px;
}
.detail__h2 em { color: var(--c-accent); font-style: normal; }
.detail__text {
  font-size: 17px; font-weight: 400; line-height: 1.9;
  color: var(--c-ink-mid); margin-bottom: 24px;
}
.detail__list {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 32px; padding: 0;
}
.detail__list li {
  font-size: 16px; font-weight: 400; color: var(--c-ink);
  padding-left: 20px; position: relative; line-height: 1.7;
}
.detail__list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; background: var(--c-accent);
  border-radius: 1px; transform: rotate(45deg);
}
.detail__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
@media (max-width: 500px) { .detail__features { grid-template-columns: 1fr; } }
.detail__feature {
  background: var(--c-surface); border: 1px solid var(--c-ink-ghost);
  padding: clamp(20px, 3vw, 32px);
  transition: background .3s, opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}
.detail__feature:hover { background: var(--c-dark); }
.detail__feature h3 {
  font-family: var(--f-cond); font-size: 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; color: var(--c-ink);
}
.detail__feature p {
  font-size: 15px; font-weight: 400; color: var(--c-ink-mid); line-height: 1.65;
}
.detail__feature-ico { font-size: 28px; display: block; margin-bottom: 10px; }

/* ===== SERVICE PROCESS ===== */
.process {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 80px);
  border-top: 1px solid var(--c-ink-ghost);
}
.process__h2 {
  font-family: var(--f-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: .88; text-transform: uppercase; text-align: center; margin-bottom: 56px;
}
.process__h2 em { color: var(--c-accent); font-style: normal; }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
@media (max-width: 900px) { .process__steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .process__steps { grid-template-columns: 1fr; } }
.process__step {
  background: var(--c-surface); border: 1px solid var(--c-ink-ghost);
  padding: clamp(24px, 3vw, 36px); position: relative; overflow: hidden;
}
.process__step h3 {
  font-family: var(--f-serif); font-size: 22px; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 8px; color: var(--c-ink);
}
.process__step p {
  font-size: 15px; font-weight: 400; color: var(--c-ink-mid); line-height: 1.7;
}
.process__step-n {
  position: absolute; top: 8px; right: 12px;
  font-family: var(--f-serif); font-size: 64px;
  color: rgba(245, 154, 0, .06); line-height: 1;
}
.process__step-ico { font-size: 32px; display: block; margin-bottom: 12px; }

/* ===== OTHER SERVICES ===== */
.other {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 80px);
  border-top: 1px solid var(--c-ink-ghost);
}
.other__h2 {
  font-family: var(--f-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: .88; text-transform: uppercase; text-align: center; margin-bottom: 40px;
}
.other__h2 em { color: var(--c-accent); font-style: normal; }
.other__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
@media (max-width: 768px) { .other__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .other__grid { grid-template-columns: 1fr; } }
.other__card {
  background: var(--c-surface); border: 1px solid var(--c-ink-ghost);
  padding: clamp(20px, 3vw, 32px); cursor: pointer;
  transition: background .3s, border-color .3s, opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden; text-decoration: none; color: inherit; display: block;
}
.other__card:hover { background: var(--c-dark); border-color: rgba(245, 154, 0, .15); }
.other__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--c-accent); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.other__card:hover::before { transform: scaleX(1); }
.other__card h3 {
  font-family: var(--f-serif); font-size: 20px; text-transform: uppercase;
  margin-bottom: 6px; transition: color .3s; color: var(--c-ink);
}
.other__card:hover h3 { color: var(--c-accent); }
.other__card p { font-size: 14px; font-weight: 400; color: var(--c-ink-mid); line-height: 1.6; }
.other__card-ico { font-size: 24px; display: block; margin-bottom: 8px; }

/* ===== COOKIE CONSENT ===== */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: rgba(23, 21, 18, 0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  animation: cookie-slide-in 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 768px) {
  .cookie__inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}
.cookie__text {
  display: flex; align-items: baseline; gap: 1.2rem; flex: 1;
}
@media (max-width: 768px) { .cookie__text { flex-direction: column; gap: 0.5rem; } }
.cookie__label {
  font-family: var(--f-sans); font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7); white-space: nowrap; flex-shrink: 0;
}
.cookie__body {
  font-family: var(--f-sans); font-size: 0.8rem; font-weight: 400;
  line-height: 1.65; color: rgba(255, 255, 255, 0.75);
}
.cookie__link {
  color: var(--c-accent); border-bottom: 1px solid rgba(245, 154, 0, 0.3);
  transition: border-color 0.2s; margin-left: 0.4rem;
}
.cookie__link:hover { border-color: var(--c-accent); }
.cookie__actions { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.cookie__btn {
  font-family: var(--f-sans); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.6rem 1.6rem; cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  border: 1px solid transparent;
}
.cookie__btn--accept {
  background: var(--c-accent); color: #fff; border-color: var(--c-accent);
}
.cookie__btn--accept:hover { background: #d98800; border-color: #d98800; }
.cookie__btn--decline {
  background: transparent; color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.25);
}
.cookie__btn--decline:hover {
  color: rgba(255, 255, 255, 0.75); border-color: rgba(255, 255, 255, 0.35);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  min-height: 50vh; display: flex; align-items: flex-end;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 72px) clamp(40px, 4vw, 60px);
  padding-top: calc(56px + clamp(40px, 6vw, 80px));
  background: var(--c-dark); position: relative;
}
.contact-hero__tag {
  font-family: var(--f-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--c-accent);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.contact-hero__tag::before {
  content: ''; width: 24px; height: 1px; background: var(--c-accent);
}
.contact-hero__h1 {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .82; text-transform: uppercase; margin-bottom: 20px;
}
.contact-hero__h1 em { color: var(--c-accent); font-style: normal; display: block; }
.contact-hero__desc {
  font-size: clamp(16px, 1.6vw, 19px); font-weight: 400;
  line-height: 1.75; color: var(--c-ink-mid); max-width: 500px;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  padding: 0 clamp(16px, 5vw, 80px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--c-surface); border: 1px solid var(--c-ink-ghost);
  padding: clamp(24px, 3vw, 40px); text-align: center;
}
.contact-card__ico {
  font-size: 32px; display: block; margin-bottom: 16px; color: var(--c-accent);
}
.contact-card h2 {
  font-family: var(--f-serif); font-size: 22px; text-transform: uppercase;
  margin-bottom: 10px; color: var(--c-ink);
}
.contact-card a {
  color: var(--c-accent); font-size: 17px; text-decoration: none;
  transition: color .2s; display: block; margin-bottom: 8px;
}
.contact-card a:hover { color: #ffad2a; }
.contact-card p { font-size: 15px; font-weight: 400; color: var(--c-ink-mid); line-height: 1.6; }
.contact-card__hours {
  font-family: var(--f-serif); font-size: 20px; color: var(--c-ink); margin-bottom: 8px;
}
.contact-card__addr { color: var(--c-ink); margin-bottom: 8px; }
.contact-map { padding: clamp(40px, 5vw, 60px) clamp(16px, 5vw, 80px); }
.contact-map__embed {
  border: 1px solid var(--c-ink-ghost); overflow: hidden;
}
.contact-map__embed iframe { display: block; width: 100%; }

/* ===== 404 PAGE ===== */
.page-404 {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 20px;
}
.page-404__code {
  font-family: var(--f-serif); font-size: clamp(120px, 25vw, 280px);
  line-height: 1; color: rgba(245, 154, 0, .06); display: block; margin-bottom: -20px;
}
.page-404__h1 {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .88; text-transform: uppercase; margin-bottom: 20px;
}
.page-404__h1 em { color: var(--c-accent); font-style: normal; display: block; }
.page-404__desc {
  font-size: 17px; font-weight: 400; color: var(--c-ink-mid);
  line-height: 1.75; max-width: 440px; margin: 0 auto 32px;
}
.page-404__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.page-404__services {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.page-404__services a {
  font-family: var(--f-cond); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-ink-mid); text-decoration: none;
  padding: 8px 16px; border: 1px solid var(--c-ink-ghost);
  transition: color .2s, border-color .2s;
}
.page-404__services a:hover { color: var(--c-accent); border-color: var(--c-accent); }

/* ===== LEGAL PAGE ===== */
.legal {
  padding: clamp(80px, 10vw, 140px) clamp(16px, 5vw, 80px) clamp(60px, 8vw, 100px);
  padding-top: calc(56px + clamp(60px, 8vw, 100px));
}
.legal__inner { max-width: 720px; margin: 0 auto; }
.legal__h1 {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: .88; text-transform: uppercase; margin-bottom: 48px;
}
.legal__h1 em { color: var(--c-accent); font-style: normal; display: block; }
.legal__content h2 {
  font-family: var(--f-serif); font-size: 22px; text-transform: uppercase;
  margin: 36px 0 12px; color: var(--c-ink);
}
.legal__content p {
  font-size: 16px; font-weight: 400; color: var(--c-ink-mid);
  line-height: 1.8; margin-bottom: 16px;
}
