:root {
  --denim: #2E4057;
  --denim-deep: #22334A;
  --denim-dark: #1A2636;
  --rust: #C5602A;
  --rust-light: #DB7B44;
  --rust-dark: #9E4A1F;
  --cream: #F1E6D2;
  --cream-2: #FAF5EA;
  --paper: #FFFCF5;
  --ink: #241E15;
  --muted: #7A6A52;
  --muted-light: rgba(241, 230, 210, 0.82);
  --line: rgba(36, 30, 21, 0.10);
  --line-light: rgba(241, 230, 210, 0.16);
  --r-sm: 0px;
  --r: 0px;
  --r-lg: 0px;
  --twill: repeating-linear-gradient(45deg, rgba(255,252,245,0.035) 0 1px, transparent 1px 4px),
           repeating-linear-gradient(-45deg, rgba(10,18,30,0.06) 0 1px, transparent 1px 4px);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  --sh-1: 0 1px 2px rgba(26, 38, 54, 0.06), 0 4px 14px rgba(26, 38, 54, 0.06);
  --sh-2: 0 2px 4px rgba(26, 38, 54, 0.07), 0 12px 30px rgba(26, 38, 54, 0.10);
  --sh-3: 0 4px 8px rgba(26, 38, 54, 0.08), 0 26px 60px rgba(26, 38, 54, 0.16);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 16.5px;
  color: var(--ink);
  background: var(--cream-2);
  line-height: 1.6;
  text-wrap: pretty;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background-image: var(--grain);
  opacity: 0.06;
}

h1, h2, h3, h4, .display {
  font-family: 'Oswald', 'Barlow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 600;
  margin: 0;
  line-height: 1.06;
}
p { margin: 0; }
a { color: var(--rust); text-decoration: none; }
a:hover { color: var(--rust-dark); }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 22px; }

.label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 0;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { flex-shrink: 0; }
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary {
  background: var(--rust);
  color: var(--paper);
  box-shadow: 0 2px 4px rgba(158, 74, 31, 0.25), 0 12px 26px rgba(197, 96, 42, 0.30);
}
.btn-primary:hover {
  background: var(--rust-light);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(158, 74, 31, 0.22), 0 18px 40px rgba(197, 96, 42, 0.38);
}
.btn-ghost {
  background: transparent;
  color: var(--denim);
  border-color: rgba(46, 64, 87, 0.35);
}
.btn-ghost:hover {
  background: rgba(46, 64, 87, 0.05);
  border-color: var(--denim);
  color: var(--denim);
  transform: translateY(-2px);
}
.on-dark .btn-ghost, .site-header .btn-ghost.is-dark {
  color: var(--cream);
  border-color: var(--line-light);
}
.on-dark .btn-ghost:hover {
  background: rgba(241, 230, 210, 0.10);
  border-color: rgba(241, 230, 210, 0.5);
  color: var(--paper);
}
.btn-call { background: var(--denim); color: var(--cream-2); box-shadow: var(--sh-1); }
.btn-call:hover { background: var(--denim-deep); color: var(--paper); transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn-lg { padding: 17px 30px; font-size: 15.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cream-2);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(26, 38, 54, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 22px;
}
.logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.logo-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(26, 38, 54, 0.22));
  transition: transform 0.6s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-9deg) scale(1.05); }
.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-word b {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.04em;
  color: var(--denim);
  text-transform: uppercase;
}
.logo-word b em { font-style: normal; color: var(--rust); }
.logo-word small {
  font-family: 'Oswald', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 30px;
}
.header-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.header-nav a:hover { color: var(--rust); }
@media (min-width: 980px) { .header-nav { display: flex; } }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-hours {
  display: none;
  font-family: 'Oswald', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.header-hours i {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3f8b4d;
  margin-right: 7px;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(63, 139, 77, 0.55);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(63,139,77,0.5); }
  70% { box-shadow: 0 0 0 9px rgba(63,139,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,139,77,0); }
}
.header-call svg { display: none; }
@media (min-width: 620px) { .header-call svg { display: block; } }
@media (min-width: 900px) { .header-hours { display: block; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--denim);
  color: var(--cream);
  overflow: hidden;
  padding: 46px 0 64px;
  isolation: isolate;
  box-shadow: inset 0 -1px 0 rgba(241,230,210,0.18);
}
.hero > .wrap { position: relative; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    var(--twill),
    radial-gradient(900px 520px at 78% 8%, rgba(197, 96, 42, 0.30), transparent 62%),
    radial-gradient(700px 480px at 4% 96%, rgba(16, 26, 40, 0.78), transparent 60%),
    linear-gradient(180deg, #35496233, #1a263666);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rust-light);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rust));
}
.eyebrow::after { background: linear-gradient(90deg, var(--rust), transparent); }
.hero h1 {
  font-size: clamp(38px, 5.6vw, 68px);
  color: var(--paper);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero h1 em {
  font-style: normal;
  color: var(--rust-light);
  position: relative;
}
.hero-sub {
  font-size: 17.5px;
  color: var(--muted-light);
  max-width: 520px;
  margin-top: 22px;
}
.hero-sub-caps {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  font-size: 15px;
  color: var(--rust-light);
}
.rating-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin-top: 26px;
  padding: 10px 18px;
  background: rgba(255, 252, 245, 0.07);
  border: 1px solid var(--line-light);
  border-radius: 0;
  color: var(--cream);
  font-size: 14px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.rating-strip:hover {
  background: rgba(255, 252, 245, 0.12);
  border-color: rgba(219, 123, 68, 0.6);
  color: var(--paper);
  transform: translateY(-2px);
}
.rating-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.rating-stars svg { color: var(--rust-light); }
.rating-stars b { font-weight: 600; }
.rating-sep { color: rgba(241, 230, 210, 0.3); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 26px;
  margin: 30px 0 0;
  padding: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 230, 210, 0.8);
}
.hero-trust li { display: flex; align-items: center; gap: 9px; }
.hero-trust li svg { color: var(--rust-light); }

.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.hero-badge { width: 100%; max-width: 280px; display: flex; justify-content: center; position: relative; }
.hero-badge img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 30px 60px rgba(10, 18, 30, 0.55));
  animation: float 9s ease-in-out infinite;
}

/* ---------- Hero review carousel ---------- */
.hero-review-carousel {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 375px;
}
.hrc-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 252, 245, 0.06);
  border: 1px solid var(--line-light);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease);
  text-decoration: none;
  color: var(--cream);
}
.hrc-slide.is-active { opacity: 1; visibility: visible; }
.hrc-slide:hover { border-color: rgba(219, 123, 68, 0.6); }
.hrc-slide-text { justify-content: center; }
.hrc-slide-text .hrc-body { justify-content: center; flex: none; padding: 34px 40px; }
.hrc-slide-text .hrc-text { font-size: 20px; }
.hrc-slide-text .hrc-body::before { font-size: 72px; top: 6px; right: 24px; }
.hrc-slide img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}
.hrc-body {
  position: relative;
  padding: 18px 20px 18px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.hrc-body::before {
  content: '\201C';
  position: absolute;
  top: -6px;
  right: 16px;
  font-family: 'Oswald', serif;
  font-size: 56px;
  line-height: 1;
  color: rgba(219, 123, 68, 0.18);
  pointer-events: none;
}
.hrc-stars {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--rust-light);
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.hrc-score {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--rust-light);
}
.hrc-text {
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  color: var(--paper);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hrc-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hrc-author {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
}
.hrc-src { font-size: 11px; color: var(--rust-light); }
.hrc-arrow {
  position: absolute;
  top: 82px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rust);
  border: none;
  color: var(--paper);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(10, 18, 30, 0.45);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.hrc-arrow:hover { background: var(--rust-light); transform: translateY(-50%) scale(1.06); }
.hrc-arrow:active { transform: translateY(-50%) scale(0.95); }
.hrc-prev { left: -22px; }
.hrc-next { right: -22px; }
.hero-badge::before {
  content: '';
  position: absolute;
  inset: 8% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,96,42,0.35), transparent 68%);
  filter: blur(28px);
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}
@media (max-width: 900px) {
  .hero { padding: 56px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-badge {
    position: absolute;
    top: 24px;
    right: 18px;
    width: 108px;
    max-width: 108px;
    z-index: 3;
    transform: rotate(18deg);
  }
  .hero-badge::before { inset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge img { animation: none; }
  .header-hours i { animation: none; }
}

/* ---------- Section frame ---------- */
section { position: relative; }
.sec { padding: 92px 0; }
.sec-alt { background: var(--cream); }
.sec-head { max-width: 620px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head-stamped {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sec-head-stamped .stamp { flex-shrink: 0; opacity: 0.9; }
@media (max-width: 760px) {
  .sec-head-stamped { flex-wrap: wrap; }
  .sec-head-stamped .stamp { width: 110px; height: 110px; }
}
.sec-head-quoted {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.quote-block {
  position: relative;
  flex: 0 1 380px;
  margin: 0;
  padding: 0 0 0 26px;
  border-left: 3px solid var(--rust);
}
.quote-block p {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--denim);
  margin: 0 0 12px;
}
.quote-block cite {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote-block cite::before { content: '— '; }
@media (max-width: 900px) {
  .sec-head-quoted { flex-wrap: wrap; }
  .quote-block { flex-basis: 100%; padding-top: 4px; }
}
.sec-head .label { color: var(--rust); display: block; margin-bottom: 14px; }
.sec-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--denim);
  font-weight: 500;
}
.sec-head h2 em { font-style: normal; color: var(--rust); }
.sec-head-lg h2 { font-size: clamp(34px, 4.6vw, 56px); }
.sec-head-lg .nowrap-heading {
  max-width: none;
  font-size: clamp(24px, 3.4vw, 42px);
}
@media (min-width: 760px) {
  .sec-head-lg.center { max-width: 900px; }
  .sec-head-lg .nowrap-heading { white-space: nowrap; }
}
.sec-head p { color: var(--muted); margin-top: 16px; font-size: 16.5px; }

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.step {
  position: relative;
  background: var(--paper);
  border-radius: var(--r);
  padding: 32px 28px 30px;
  border: 1px solid rgba(46, 64, 87, 0.22);
  box-shadow: inset 0 0 0 1px var(--paper), inset 0 0 0 2px rgba(46, 64, 87, 0.10), var(--sh-1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rust), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.step:hover::after { transform: scaleX(1); }
.step-num {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  display: flex;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 148px;
  font-weight: 700;
  line-height: 1;
  color: var(--denim);
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), color 0.4s var(--ease);
}
.step:hover .step-num { opacity: 0.22; color: var(--rust); }
@media (hover: none) {
  .step.is-in .step-num { animation: stepNumFlash 1.4s var(--ease); }
  .step:active { transform: translateY(-3px); box-shadow: var(--sh-2); }
  .step:active::after { transform: scaleX(1); }
  .step:active .step-num { opacity: 0.22; color: var(--rust); animation: none; }
  .btn-primary:active {
    background: var(--rust-light);
    box-shadow: 0 4px 8px rgba(158, 74, 31, 0.22), 0 18px 40px rgba(197, 96, 42, 0.38);
  }
  .btn-ghost:active { background: rgba(46, 64, 87, 0.05); border-color: var(--denim); }
  .on-dark .btn-ghost:active, .site-header .btn-ghost.is-dark:active {
    background: rgba(241, 230, 210, 0.10);
    border-color: rgba(241, 230, 210, 0.5);
    color: var(--paper);
  }
  .btn-call:active { background: var(--denim-deep); color: var(--paper); }
  .service-card:active { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: rgba(197, 96, 42, 0.35); }
  .service-card:active .service-icon { transform: translateY(-3px) rotate(-4deg); background: var(--denim); color: var(--rust-light); }
  .review-card:active { box-shadow: var(--sh-2); border-color: rgba(197, 96, 42, 0.35); }
}
@keyframes stepNumFlash {
  0% { opacity: 0.07; color: var(--denim); }
  35% { opacity: 0.26; color: var(--rust); }
  100% { opacity: 0.07; color: var(--denim); }
}
.step h3 { position: relative; z-index: 1; font-size: 20px; color: var(--denim); margin-bottom: 10px; font-weight: 500; }
.step p { position: relative; z-index: 1; color: var(--muted); font-size: 15.5px; }

/* ---------- Services ---------- */
#services { overflow: hidden; }
.services-track { position: relative; }
.services-road { display: none; }
.services-truck {
  display: none;
  position: absolute;
  bottom: -6px;
  left: 0;
  transform: translateX(-400px);
  filter: drop-shadow(0 6px 10px rgba(26, 38, 54, 0.18));
  z-index: 30;
  pointer-events: none;
  will-change: transform;
}
.services-rope {
  display: none;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 2px dashed var(--denim);
  opacity: 0.55;
  z-index: 29;
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
@media (min-width: 1060px) {
  .services-truck { display: block; }
  .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .service-card { will-change: transform; }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: minmax(0, 1fr); }
}
.service-card {
  background: var(--paper);
  border-radius: var(--r);
  padding: 30px 26px;
  border: 1px solid rgba(46, 64, 87, 0.22);
  box-shadow: inset 0 0 0 1px var(--paper), inset 0 0 0 2px rgba(46, 64, 87, 0.10), var(--sh-1);
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
  border-color: rgba(197, 96, 42, 0.35);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(46,64,87,0.10), rgba(197,96,42,0.12));
  color: var(--denim);
  margin-bottom: 20px;
  transition: transform 0.45s var(--ease), color 0.45s var(--ease), background 0.45s var(--ease);
}
.service-card:hover .service-icon {
  transform: translateY(-3px) rotate(-4deg);
  background: var(--denim);
  color: var(--rust-light);
}
.service-card h3 {
  font-size: 17px;
  color: var(--denim);
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
}
.service-card p { font-size: 15px; color: var(--muted); }

/* ---------- Coverage ---------- */
.coverage-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.districts { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 32px; }
.districts span {
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 15px;
  border-radius: 0;
  background: transparent;
  border: 1.5px solid rgba(46, 64, 87, 0.35);
  box-shadow: inset 0 0 0 3px rgba(250, 245, 234, 0.9), 0 1px 0 rgba(46,64,87,0.10);
  color: var(--denim);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.districts span:hover { transform: rotate(-1.5deg) translateY(-2px); border-color: var(--rust); color: var(--rust-dark); }
.districts span.is-wide { border-style: dashed; color: var(--muted); border-color: rgba(122,106,82,0.45); }
.plate {
  position: relative;
  background: var(--denim);
  background-image: var(--twill);
  color: var(--cream);
  border-radius: var(--r);
  padding: 10px;
  box-shadow: var(--sh-3);
  overflow: hidden;
}
.plate::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--grain);
  opacity: 0.16;
  mix-blend-mode: overlay;
}
.plate-frame {
  position: relative;
  border: 1.5px solid rgba(241, 230, 210, 0.35);
  border-radius: 0;
  padding: 22px 26px 24px;
}
.plate-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241, 230, 210, 0.88);
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(241, 230, 210, 0.28);
}
.plate-head em { font-style: normal; color: var(--rust-light); }
.plate-rows { margin: 0; }
.plate-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(241, 230, 210, 0.22);
}
.plate-row:last-child { border-bottom: 0; padding-bottom: 6px; }
.plate-row dt {
  flex: 0 0 auto;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 0.95;
  color: var(--paper);
  text-shadow: 0 1px 0 rgba(10, 18, 30, 0.55);
  white-space: nowrap;
}
.plate-row dd {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(241, 230, 210, 0.86);
  border-left: 2px solid rgba(219, 123, 68, 0.85);
  padding-left: 18px;
}
.plate-row:hover dt { color: var(--rust-light); }
.plate-row dt, .plate-row:hover dt { transition: color 0.35s var(--ease); }
@media (max-width: 900px) {
  .plate-row { flex-direction: column; gap: 8px; }
  .plate-row dd { border-left: 0; padding-left: 0; border-top: 2px solid rgba(219,123,68,0.75); padding-top: 10px; }
}
@media (max-width: 860px) {
  .coverage-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Reviews ---------- */
.reviews-score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  flex-wrap: wrap;
}
.reviews-score { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 26px; color: var(--denim); }
.reviews-stars { color: var(--rust); letter-spacing: 3px; font-size: 15px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}
.review-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--r);
  padding: 30px 28px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
  border-color: rgba(197, 96, 42, 0.35);
  color: inherit;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 6px; right: 22px;
  font-family: 'Oswald', serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(197, 96, 42, 0.16);
}
.review-stars { color: var(--rust); font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; }
.review-text { font-size: 15.5px; color: var(--ink); margin-bottom: 20px; flex: 1; }
.review-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-author {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--denim);
  text-transform: uppercase;
}
.review-link-out {
  font-size: 12.5px;
  color: var(--rust);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s var(--ease);
}
.review-card:hover .review-link-out { gap: 9px; }
.reviews-all-link { display: flex; margin: 0 auto; width: fit-content; }

/* ---------- Final CTA ---------- */
.cta-final {
  background: var(--denim-deep);
  color: var(--cream);
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    var(--twill),
    radial-gradient(700px 380px at 50% 0%, rgba(197, 96, 42, 0.28), transparent 65%),
    radial-gradient(600px 340px at 50% 120%, rgba(46, 64, 87, 0.9), transparent 60%);
}
.cta-final h2 { font-size: clamp(28px, 4vw, 46px); color: var(--paper); font-weight: 500; }
.cta-final p { color: var(--muted-light); margin-top: 16px; font-size: 17px; }
.cta-final .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--denim-dark);
  color: rgba(241, 230, 210, 0.6);
  padding-top: 34px;
  font-size: 14px;
}
.credit-strip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  box-sizing: border-box;
  width: 288px;
  white-space: nowrap;
  background: #0B0F14;
  clip-path: path("M24 0 L264 0 Q272 0 274.6 7.6 L288 47 L0 47 L13.4 7.6 Q16 0 24 0 Z");
  padding: 13px 34px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(241, 230, 210, 0.6);
  transition: color 0.25s var(--ease);
}
.credit-strip:hover { color: rgba(241, 230, 210, 0.9); }
.credit-tech { color: var(--rust-light); font-weight: 700; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { width: 34px; height: 34px; }
.footer-logo b {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 17px;
  color: var(--cream);
  text-transform: uppercase;
}
.footer-logo b em { font-style: normal; color: var(--rust-light); }
.site-footer a { color: var(--cream); transition: color 0.25s var(--ease); }
.site-footer a:hover { color: var(--rust-light); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 44, 0.62);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 100;
  animation: fadeIn 0.25s var(--ease);
}
.modal-overlay[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.modal {
  background: var(--cream-2);
  border-radius: var(--r-lg);
  max-width: 500px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  box-shadow: 0 40px 90px rgba(10, 18, 30, 0.45);
  animation: popIn 0.35s var(--ease);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  color: var(--denim);
  display: grid;
  place-items: center;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.modal-close:hover { background: var(--denim); color: var(--cream); transform: rotate(90deg); }
.modal h2 { font-size: 23px; color: var(--denim); padding-right: 40px; font-weight: 500; }
.modal-hint { color: var(--muted); font-size: 14.5px; margin: 10px 0 12px; }
.modal-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FBEAD6;
  border-left: 3px solid var(--rust);
  color: #7A3A15;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  padding: 12px 14px;
  margin: 0 0 16px;
}
.modal-warning svg { flex-shrink: 0; color: var(--rust); }
.map-box {
  width: 100%;
  height: 280px;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: inset 0 2px 8px rgba(26, 38, 54, 0.10);
}
.modal-address {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 13px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--denim);
}
.modal-address svg { flex-shrink: 0; color: var(--rust); }
.modal-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
  padding: 13px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--rust);
}
.modal-price-value {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--denim);
}
.modal-price-note { font-size: 11.5px; color: var(--muted); line-height: 1.4; }
.order-form { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.order-form[hidden] { display: none; }
.order-form label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.order-form input {
  padding: 15px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  font-size: 16px;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.order-form input:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 4px rgba(197, 96, 42, 0.14);
}
.order-form .btn-lg { margin-top: 6px; }
.form-status { min-height: 20px; font-size: 14px; margin-top: 4px; }
.form-status.error { color: var(--rust-dark); }
.form-status.success { color: #2f7d3a; }

/* ---------- Post-submit channel picker ---------- */
.modal-next { margin-top: 18px; text-align: center; }
.modal-next-status {
  font-size: 14px;
  color: #2f7d3a;
  background: #EAF3DE;
  border: 1px solid rgba(63, 139, 77, 0.3);
  padding: 10px 14px;
  margin: 0 0 22px;
}
.modal-next-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--denim);
  margin: 0 0 16px;
}
.modal-channels {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.modal-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--denim);
  transition: transform 0.25s var(--ease);
}
.modal-channel:hover { transform: translateY(-3px); color: var(--denim); }
.modal-channel.is-disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.modal-channel-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--paper);
  box-shadow: var(--sh-1);
}
.modal-channel-vk { background: #0077FF; }
.modal-channel-tg { background: linear-gradient(180deg, #37AEE2, #1E96C8); }
.modal-channel-max { background: linear-gradient(135deg, #4B7BFF, #8B5CF6); }
.modal-next-call {
  width: 100%;
  margin-bottom: 10px;
  background: #2F9E44;
  box-shadow: 0 2px 4px rgba(23, 84, 32, 0.25), 0 12px 26px rgba(47, 158, 68, 0.30);
}
.modal-next-call:hover { background: #36B24E; }
.modal-next-wait { width: 100%; }

@media (max-width: 620px) {
  .sec { padding: 64px 0; }
  .sec-head { margin-bottom: 36px; }
  .rating-strip { border-radius: var(--r); }
  .stat-card strong { font-size: 28px; min-width: 92px; }
  .eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 0.12em;
    line-height: 1.6;
  }
  .eyebrow::before, .eyebrow::after { display: none; }
  .sec-head-stamped { justify-content: center; }
  .sec-head-stamped .stamp { width: 100%; max-width: 240px; height: auto; aspect-ratio: 270 / 185; }
  .rating-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 3px 5px; padding: 10px 10px; font-size: 12px; }
  .rating-strip svg { width: 12px; height: 12px; }
  .rating-sep { font-size: 0; color: var(--rust-light); }
  .rating-sep::before { content: '|'; font-size: 12px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero-trust { justify-content: center; }
}
