:root {
  --bg: #090a12;
  --surface: #1a1519;
  --surface-2: #251a1e;
  --text: rgba(241, 236, 232, 0.7);
  --muted: rgba(204, 185, 177, 0.7);
  --accent: #b56250;
  --accent-strong: #7f2b29;
  --border: #4a3437;
}

@font-face {
  font-family: "Bebas Neue Cyrillic";
  src: url("bebas-neue-cyrillic1.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wiguru";
  src: url("wiguru-13.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Bebas Neue Cyrillic", "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    linear-gradient(120deg, rgba(7, 9, 18, 0.9), rgba(34, 7, 7, 0.8)),
    url("photo_2026-03-11_17-39-44.jpg") center / cover no-repeat;
  background-attachment: scroll;
  color: var(--text);
  line-height: 1.5;
}

.btn,
button {
  font-family: "Wiguru", "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  letter-spacing: 0.08em;
  line-height: 1.15;
  font-kerning: none;
  font-feature-settings: "kern" 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  background:
    linear-gradient(
      90deg,
      color-mix(in oklab, var(--accent-strong), transparent 86%),
      color-mix(in oklab, var(--accent), transparent 92%)
    ),
    color-mix(in oklab, var(--bg), transparent 58%);
  border-bottom: 1px solid color-mix(in oklab, var(--accent-strong), transparent 72%);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 1.3rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.16;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 14ch;
}

.hero-brand {
  display: inline-block;
  font-size: 1.15em;
  color: var(--muted);
  line-height: 1.1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-kerning: none;
  font-feature-settings: "kern" 0;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  max-width: 22ch;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 20px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.14s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(177, 84, 95, 0.45),
    rgba(255, 255, 255, 0.24),
    rgba(177, 84, 95, 0.45)
  );
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: -1;
}

.btn:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(177, 84, 95, 0.24);
}

.btn:hover::after {
  opacity: 1;
}

.btn:focus-visible {
  outline: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(177, 84, 95, 0.24);
}

.btn:focus-visible::after {
  opacity: 1;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.28),
    0 4px 10px rgba(0, 0, 0, 0.2),
    0 0 18px rgba(177, 84, 95, 0.24);
}

.btn:active::after {
  opacity: 1;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 42%),
    linear-gradient(140deg, #8c2130 0%, #6d1a25 58%, #53141e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -10px 16px rgba(0, 0, 0, 0.2),
    0 10px 22px rgba(44, 8, 15, 0.38);
  color: #f1ece8;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -40%;
  width: 46%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-140%) rotate(14deg);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn-primary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04) 42%),
    linear-gradient(140deg, #9a2a3b 0%, #77202d 58%, #5a1722 100%);
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  transform: translateX(290%) rotate(14deg);
}

.btn-secondary {
  background: color-mix(in oklab, var(--surface), transparent 30%);
  color: #f1ece8;
}

.stats-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 20px;
  width: 140%;
  justify-self: end;
  display: flex;
  flex-direction: column;
  --stats-offset: 0px;
  --stats-height: 0px;
  --stats-bg-image: url("DSC06191.JPG");
  margin-top: var(--stats-offset);
  min-height: var(--stats-height);
  height: var(--stats-height);
  padding: 1.68rem;
  cursor: pointer;
  box-shadow:
    inset 0 26px 34px -24px rgba(255, 255, 255, 0.4),
    inset 0 -26px 34px -24px rgba(255, 255, 255, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 24px rgba(177, 84, 95, 0.28);
}

.stats-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 16, 0.28), rgba(10, 10, 16, 0.44)),
    var(--stats-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.stats-card::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -40%;
  width: 46%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-140%) rotate(14deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
}

.stats-card.is-shimmering-right::after,
.stats-card.is-shimmering-left::after {
  opacity: 1;
}

.stats-card.is-shimmering-right::after {
  animation: statsCardShimmerRight 0.58s ease;
}

.stats-card.is-shimmering-left::after {
  animation: statsCardShimmerLeft 0.58s ease;
}

.stats-title {
  color: #f1ece8;
  font-size: 3.25rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.stats-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

@keyframes statsCardShimmerRight {
  0% {
    transform: translateX(-140%) rotate(14deg);
  }

  100% {
    transform: translateX(290%) rotate(14deg);
  }
}

@keyframes statsCardShimmerLeft {
  0% {
    transform: translateX(290%) rotate(14deg);
  }

  100% {
    transform: translateX(-140%) rotate(14deg);
  }
}

.stats-card li {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stats-card li strong {
  display: block;
  color: var(--muted);
  font-size: 1.87rem;
  font-weight: 400;
  line-height: 1.15;
}

.stats-highlight {
  color: #f1ece8;
}

.stats-dot {
  flex: 0 0 auto;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #a12a3a;
}

.section {
  padding: 3.2rem 0;
}

.services-slider {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.2rem;
  align-items: center;
  filter: drop-shadow(0 0 18px rgba(177, 84, 95, 0.2));
}

.cards-viewport {
  position: relative;
  width: min(66.6667%, 760px);
  margin-inline: auto;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
  background: color-mix(in oklab, var(--surface), transparent 12%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 24px rgba(177, 84, 95, 0.28);
}

.cards-viewport::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -32%;
  width: 34%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-170%) rotate(14deg);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.cards-viewport.is-shimmering-left::after,
.cards-viewport.is-shimmering-right::after {
  opacity: 1;
}

.cards-viewport.is-shimmering-right::after {
  animation: serviceShimmerRight 0.58s ease;
}

.cards-viewport.is-shimmering-left::after {
  animation: serviceShimmerLeft 0.58s ease;
}

.cards {
  display: flex;
  opacity: 1;
  transform: none;
  transition: opacity 0.22s ease;
  will-change: opacity;
}

.cards.is-fading {
  opacity: 0;
  transform: none;
}

.cards.is-fading-right {
  opacity: 0;
  transform: none;
}

.cards.is-fading-left {
  opacity: 0;
  transform: none;
}

.cards.is-entering-right {
  animation: serviceFadeIn 0.26s ease forwards;
}

.cards.is-entering-left {
  animation: serviceFadeIn 0.26s ease forwards;
}

@keyframes serviceFadeIn {
  0% {
    opacity: 0;
    transform: none;
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes serviceShimmerRight {
  0% {
    transform: translateX(-170%) rotate(14deg);
  }

  100% {
    transform: translateX(390%) rotate(14deg);
  }
}

@keyframes serviceShimmerLeft {
  0% {
    transform: translateX(390%) rotate(14deg);
  }

  100% {
    transform: translateX(-170%) rotate(14deg);
  }
}

.card {
  flex: 0 0 100%;
  background: color-mix(in oklab, var(--surface), transparent 18%);
  border: none;
  border-radius: 16px;
  min-height: 240px;
  padding: 2.3rem 1.15rem 2.3rem calc(1.15rem + 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card h3 {
  font-size: clamp(1.35rem, 3.7vw, 2.34rem);
  line-height: 1.08;
  margin-left: 0;
  margin-right: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42ch;
}

.slider-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: color-mix(in oklab, var(--surface), transparent 8%);
  color: #f1ece8;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 16px rgba(177, 84, 95, 0.24);
}

.slider-btn-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.slider-btn-icon-prev {
  transform: rotate(-135deg);
}

.slider-btn-icon-next {
  transform: rotate(45deg);
}

.slider-btn:hover {
  transform: translateY(-1px);
  background: color-mix(in oklab, var(--surface-2), transparent 6%);
}

.section-contrast {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: transparent;
  padding-bottom: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow:
    0 -18px 28px -20px rgba(177, 84, 95, 0.55),
    0 18px 28px -20px rgba(177, 84, 95, 0.55);
}

.section.section-contrast {
  padding-bottom: 0;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("cy15cExKY4TIm_kozkkvDCPJVladENrIzxKIFzszvR6UmSVjWXhxps6jxdv5WMJQxdUJjMhksP5Nk0b51K-VIvgK.jpg");
  background-repeat: no-repeat;
  background-position: center calc(80% + 230px);
  background-size: 100% auto;
  z-index: 0;
}

.section-contrast::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  bottom: -22px;
  background:
    linear-gradient(to top, rgba(177, 84, 95, 0.3), rgba(177, 84, 95, 0)) top / 100% 22px no-repeat,
    linear-gradient(to bottom, rgba(177, 84, 95, 0.3), rgba(177, 84, 95, 0)) bottom / 100% 22px no-repeat;
  z-index: 1;
  pointer-events: none;
}

.section-contrast .container {
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.section-contrast .trust-grid > div:first-child {
  grid-column: 2;
  text-align: right;
  justify-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.section-contrast .trust-grid > div:first-child > .eyebrow,
.section-contrast .trust-grid > div:first-child > h2,
.section-contrast .trust-grid > div:first-child > p {
  max-width: 34ch;
  margin-left: auto;
  text-align: right;
}

.section-contrast .trust-grid > div:first-child > h2 {
  color: rgba(241, 236, 232, 0.8);
  margin-top: auto;
  margin-bottom: 0.6rem;
}

.section-contrast .trust-grid > .artists {
  grid-column: 1;
}

.section-contrast .trust-grid > div:first-child p:last-child {
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
  width: max-content;
  position: static;
  align-self: flex-end;
  transform: none;
}

.section-contrast .space-line {
  display: inline-block;
  white-space: nowrap;
}

.trust-grid p {
  color: var(--muted);
}

.artists {
  min-height: 220px;
}

.cta {
  text-align: center;
}

.cta-title {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  line-height: 1;
  white-space: nowrap;
  width: max-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta p {
  color: var(--muted);
  margin: 0 auto 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.footer-legal-right {
  justify-self: end;
  align-self: start;
  transform: none;
}

.footer-legal-right p {
  margin-top: 0;
}

.site-footer p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.site-footer a {
  color: var(--text);
}

@media (max-width: 960px) {
  body {
    background-attachment: scroll;
  }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .btn {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .services-slider {
    filter: none;
  }

  .cards-viewport {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.1),
      0 0 12px rgba(177, 84, 95, 0.16);
  }

  .stats-card {
    box-shadow:
      inset 0 18px 24px -20px rgba(255, 255, 255, 0.28),
      inset 0 -18px 24px -20px rgba(255, 255, 255, 0.22),
      inset 0 0 0 1px rgba(255, 255, 255, 0.14),
      0 0 14px rgba(177, 84, 95, 0.2);
  }

  .section-contrast {
    box-shadow:
      0 -10px 18px -16px rgba(177, 84, 95, 0.45),
      0 10px 18px -16px rgba(177, 84, 95, 0.45);
  }

  .hero-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-contrast .trust-grid > div:first-child,
  .section-contrast .trust-grid > .artists {
    grid-column: auto;
    justify-self: stretch;
  }

  .section-contrast .trust-grid > div:first-child {
    text-align: left;
  }

  .section-contrast .trust-grid > div:first-child > .eyebrow,
  .section-contrast .trust-grid > div:first-child > h2,
  .section-contrast .trust-grid > div:first-child > p {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .section-contrast .trust-grid {
    align-items: center;
  }

  .section-contrast .trust-grid > div:first-child p:last-child {
    position: static;
    width: 100%;
    align-self: auto;
    transform: none;
  }

  .section-contrast .space-line {
    white-space: normal;
  }

  .hero {
    padding: 4.2rem 0 2.6rem;
  }

  .section {
    padding: 2.7rem 0;
  }

  .cards-viewport {
    width: min(78%, 760px);
  }

  .stats-card {
    width: 100%;
    min-height: auto;
    height: auto;
    margin-top: 0;
    padding: 1.2rem;
  }
}

@media (max-width: 700px) {
  body {
    background-attachment: scroll;
  }

  .container {
    width: 94vw;
  }

  .header-row {
    min-height: 64px;
  }

  .logo {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-nav a {
    padding: 0.95rem 4vw;
    background: color-mix(in oklab, var(--bg), var(--surface) 25%);
    border-top: 1px solid var(--border);
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding: 3.8rem 0 2rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 8.5vw, 2.25rem);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.2rem, 6.4vw, 1.7rem);
  }

  .lead {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-title {
    white-space: normal;
    width: 100%;
    font-size: clamp(1.65rem, 7vw, 2.5rem);
    line-height: 1.05;
  }

  .stats-card {
    padding: 1rem;
    border-radius: 14px;
  }

  .stats-card span {
    font-size: 1.2rem;
  }

  .section {
    padding: 2.2rem 0;
  }

  .services-slider {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 0.2rem;
  }

  .cards-viewport {
    width: 100%;
  }

  .card {
    min-height: 200px;
    padding: 1.25rem 0.95rem;
    border-radius: 12px;
  }

  .card h3 {
    font-size: clamp(1.15rem, 5.8vw, 1.55rem);
    margin-bottom: 0.55rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  .slider-btn {
    width: 32px;
    height: 32px;
  }

  .slider-btn-icon {
    width: 8px;
    height: 8px;
  }

  .artists {
    min-height: 170px;
  }

  .cta {
    text-align: left;
  }

  .cta p {
    margin: 0 0 1rem;
  }

  .site-footer {
    padding: 1.2rem 0 1.4rem;
  }

  .site-footer strong,
  .site-footer p {
    font-size: 0.9rem;
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 3.4rem;
  }

  .services-slider {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
  }

  .slider-btn {
    width: 30px;
    height: 30px;
  }

  .card {
    min-height: 188px;
    padding: 1.1rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cards-viewport::after,
  .stats-card::after,
  .btn-primary::before {
    display: none;
  }
}