:root {
  --bg: #14120e;
  --bg-deep: #0b0b09;
  --panel: #201d17;
  --panel-soft: #2a251d;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f0e5;
  --muted: #c8bbaa;
  --dim: #978a79;
  --amber: #f3ad27;
  --amber-2: #ffcf5a;
  --signal: #d92016;
  --signal-dark: #8d130e;
  --rust: #be5d24;
  --green: #3eb46d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 6%, rgba(243, 173, 39, 0.16), transparent 26rem),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 28rem, #17140f);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 40;
  padding: 10px 14px;
  color: #10100d;
  background: var(--amber);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 12, 9, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  object-fit: contain;
  padding: 3px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.brand strong,
.brand em {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand em {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--text);
}

.header-cta {
  padding: 11px 16px;
  color: #14100a;
  font-size: 14px;
  font-weight: 800;
  background: var(--amber);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(243, 173, 39, 0.23);
}

.hero {
  position: relative;
  min-height: 80svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 116px 0 64px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.98) 0%, rgba(13, 12, 9, 0.92) 46%, rgba(13, 12, 9, 0.48) 86%),
    url("../images/wood/wood-01.jpg") center right / cover no-repeat;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(20, 18, 14, 0.96)),
    radial-gradient(circle at 78% 20%, rgba(243, 173, 39, 0.22), transparent 22rem);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-copy {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 22px;
  height: 3px;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--signal);
  border-radius: 999px;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7.2vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.lead {
  max-width: 640px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 23px);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.contact-actions-hero {
  max-width: 960px;
}

.contact-actions-final {
  max-width: 960px;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 15px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #151109;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  box-shadow: 0 16px 34px rgba(243, 173, 39, 0.25);
}

.btn-ghost {
  color: var(--text);
  background: linear-gradient(180deg, rgba(217, 32, 22, 0.18), rgba(243, 173, 39, 0.07));
  border-color: rgba(243, 173, 39, 0.42);
}

.btn-line {
  color: #ffe6a5;
  background: rgba(14, 12, 9, 0.58);
  border-color: rgba(243, 173, 39, 0.42);
}

.btn-channel {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.btn-channel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.btn-channel > span {
  position: relative;
  z-index: 1;
}

.btn-icon {
  display: inline-grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  color: inherit;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #24d366, #128c4a);
}

.btn-telegram {
  background: linear-gradient(135deg, #2aabee, #1686c8);
}

.btn-max {
  background: linear-gradient(135deg, #1c8cff, #0758d8);
}

.btn-avito {
  color: #13220b;
  background: linear-gradient(135deg, #a7e12a, #5bbf2a);
}

.btn-avito .btn-icon {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(255, 255, 255, 0.52);
}

.btn-route {
  background: linear-gradient(135deg, #ff4b38, #c81f16);
}

.btn-large {
  min-width: min(100%, 340px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-facts span,
.tag-list span {
  padding: 9px 12px;
  color: #f6ead9;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.panel,
.info-card,
.step,
.route-card,
.review-links,
.contact-band,
.photo-card {
  background: linear-gradient(180deg, rgba(42, 37, 29, 0.94), rgba(26, 23, 18, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 58px 0;
}

.section-tight {
  padding: 28px 0;
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.split {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 42px;
  align-items: start;
}

.section-head p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.section-head.center {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head.center p {
  margin-inline: auto;
}

.cards.five {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  grid-column: span 3;
  min-height: 190px;
  padding: 24px;
  border-top: 3px solid rgba(217, 32, 22, 0.78);
}

.info-card-wide {
  grid-column: span 6;
  min-height: 132px;
}

.info-card p,
.step p,
.panel p,
.footer p {
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(180deg, var(--signal), var(--signal-dark));
  border-radius: 8px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.step span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--amber-2);
  font-weight: 900;
  background: rgba(243, 173, 39, 0.11);
  border: 1px solid rgba(243, 173, 39, 0.24);
  border-radius: 999px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  min-height: 320px;
  padding: 24px;
}

.panel-alert {
  background:
    linear-gradient(135deg, rgba(217, 32, 22, 0.2), rgba(42, 37, 29, 0.92)),
    var(--panel);
  border-top: 3px solid rgba(217, 32, 22, 0.8);
}

.important-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: 24px;
  align-items: start;
  min-height: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--amber);
  content: "✓";
  font-weight: 900;
}

.photo-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18)),
    rgba(255, 255, 255, 0.025);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

#route,
#reviews {
  padding: 48px 0;
}

#route h2,
#reviews h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1 / 1;
  background: #080705;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 26px;
  align-items: center;
  padding: 28px;
}

.contact-band .contact-actions {
  justify-self: stretch;
}

.route-card,
.review-links {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.route-card a,
.review-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 15px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: background 160ms ease, transform 160ms ease;
}

.route-card a::after,
.review-links a::after {
  color: var(--amber-2);
  content: "→";
  font-size: 22px;
}

.route-card a:hover,
.review-links a:hover {
  background: rgba(217, 32, 22, 0.13);
  transform: translateX(2px);
}

.company-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px 22px;
  background:
    linear-gradient(135deg, rgba(217, 32, 22, 0.13), rgba(243, 173, 39, 0.08)),
    linear-gradient(180deg, rgba(42, 37, 29, 0.94), rgba(26, 23, 18, 0.94));
  border: 1px solid var(--line);
  border-top: 3px solid rgba(217, 32, 22, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.company-strip h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 2.8vw, 40px);
}

.company-strip p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.company-actions .btn {
  min-height: 50px;
}

.final-cta {
  padding: 56px 0 68px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(20, 18, 14, 0), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 50% 0, rgba(243, 173, 39, 0.24), transparent 30rem);
}

.final-cta .container {
  max-width: 920px;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: clamp(34px, 4vw, 58px);
}

.footer {
  padding: 34px 0 96px;
  color: var(--muted);
  background: #0d0c0a;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer strong {
  color: var(--text);
}

.footer p {
  max-width: 520px;
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--amber-2);
}

.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 35;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(12, 11, 9, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.mobile-bar a {
  display: grid;
  min-height: 46px;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: #222;
  border-radius: 8px;
}

.mobile-bar .bar-whatsapp {
  background: #20bd5a;
}

.mobile-bar .bar-telegram {
  background: #229ed9;
}

.mobile-bar .bar-max {
  background: #1677f2;
}

.mobile-bar .bar-avito {
  color: #112008;
  background: #99d928;
}

.mobile-bar .bar-route {
  background: #e63225;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .steps-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-grid,
  .split,
  .grid-2,
  .contact-band,
  .company-strip,
  .important-panel {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand em,
  .header-cta {
    display: none;
  }

  .brand-logo {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 14px;
  }

  .hero {
    padding: 92px 0 42px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(7, 7, 6, 0.56) 0%, rgba(13, 12, 9, 0.92) 54%, rgba(13, 12, 9, 1) 100%),
      url("../images/wood/wood-01.jpg") center top / cover no-repeat;
  }

  .lead {
    font-size: 17px;
  }

  .contact-actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts span,
  .tag-list span {
    font-size: 13px;
  }

  .section {
    padding: 48px 0;
  }

  .section-tight {
    padding: 26px 0;
  }

  .cards.five,
  .steps-four {
    grid-template-columns: 1fr;
  }

  .info-card,
  .info-card-wide {
    grid-column: auto;
    min-height: auto;
  }

  .step,
  .panel,
  .contact-band,
  .company-strip {
    padding: 20px;
  }

  .panel {
    min-height: auto;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-actions {
    justify-content: flex-start;
  }

  .footer {
    padding-bottom: 88px;
  }

  .footer-grid {
    display: grid;
  }

  .mobile-bar {
    display: grid;
  }
}
