﻿:root {
  --bg: #080808;
  --bg-soft: #111111;
  --bg-elevated: #171717;
  --text: #f2eee5;
  --muted: #b8b09c;
  --gold: #d7ab57;
  --gold-soft: #f2d8a0;
  --gold-glow: #d7ab57;
  --line: rgba(215, 171, 87, 0.28);
  --line-soft: rgba(255, 255, 255, 0.08);
  --danger: #dc4f45;
  --ok: #d7ab57;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% -10%, rgba(215, 171, 87, 0.15), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.04), transparent 30%),
    var(--bg);
  color: var(--text);
  font: 16px/1.7 'Manrope', 'Segoe UI', Tahoma, sans-serif;
}

:focus-visible {
  outline: 2px solid rgba(215, 171, 87, 0.85);
  outline-offset: 2px;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 8px;
  z-index: 240;
  transform: translateY(-180%);
  background: #f3d398;
  color: #0b0b0b;
  border: 1px solid #f7deb0;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  line-height: 1.05;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(34px, 5.8vw, 72px);
}

h2 {
  font-size: clamp(26px, 4.2vw, 46px);
}

h3 {
  font-size: clamp(20px, 2.8vw, 30px);
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 180;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
}

.site-header .brand img,
.site-header .brand-logo {
  display: block;
  width: auto;
  height: 62px;
  max-width: 240px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  padding: 10px 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.nav-shell {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  min-width: 0;
  overflow: visible;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  min-width: 0;
  white-space: nowrap;
  overflow: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--muted);
  padding: 8px 8px;
  border-radius: 10px;
  transition: 0.2s ease;
  line-height: 1.2;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.is-active {
  color: var(--text);
  background: rgba(215, 171, 87, 0.16);
  border: 1px solid rgba(215, 171, 87, 0.35);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.nav-dropdown__link {
  border-radius: 10px 0 0 10px;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 32px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 10px 10px 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__toggle,
.nav-dropdown:focus-within .nav-dropdown__toggle,
.nav-dropdown.is-open .nav-dropdown__toggle {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 220;
  display: none;
  width: min(320px, 82vw);
  max-height: min(430px, calc(100vh - 120px));
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(215, 171, 87, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(215, 171, 87, 0.14), transparent 40%),
    rgba(10, 10, 10, 0.97);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  display: grid;
  gap: 2px;
}

.nav-dropdown__menu a {
  display: block;
  white-space: normal;
  text-transform: none;
  font-family: var(--font-sans);
  letter-spacing: 0;
  font-size: 13px;
  line-height: 1.35;
  padding: 10px 11px;
  border-radius: 10px;
}

.lang-switcher {
  margin-left: auto;
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher__link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.lang-switcher__link:hover,
.lang-switcher__link:focus {
  border-color: var(--gold);
  background: rgba(215, 171, 87, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.lang-switcher__link.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(215, 171, 87, 0.16);
}

.nav-backdrop {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 82vh, 860px);
  display: flex;
  align-items: center;
  padding: 118px 0 86px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 18% 20%, rgba(215, 171, 87, 0.13), transparent 19%),
    radial-gradient(circle at 78% 22%, rgba(215, 171, 87, 0.11), transparent 26%),
    linear-gradient(180deg, rgba(14, 10, 5, 0.18), rgba(8, 8, 8, 0.94)),
    url('/public/assets/img/dyat/hero-bg.png') center / cover no-repeat,
    #0d0a06;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent, rgba(215, 171, 87, 0.28), transparent) 50% 100% / 72% 3px no-repeat,
    linear-gradient(90deg, rgba(215, 171, 87, 0), rgba(215, 171, 87, 0.46), rgba(215, 171, 87, 0)) 50% 12% / 54% 1px no-repeat,
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 94px);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  opacity: 0.76;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 9% 3% 8%;
  z-index: -1;
  border: 1px solid rgba(215, 171, 87, 0.14);
  border-radius: 38px;
  background:
    radial-gradient(circle at 0 0, rgba(215, 171, 87, 0.11), transparent 24%),
    radial-gradient(circle at 100% 0, rgba(215, 171, 87, 0.08), transparent 22%);
  box-shadow: inset 0 0 72px rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-grid::before,
.hero-grid::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  border: 1px solid rgba(215, 171, 87, 0.28);
  box-shadow: 0 0 36px rgba(215, 171, 87, 0.06);
  opacity: 0.8;
  pointer-events: none;
}

.hero-grid::before {
  width: clamp(58px, 7vw, 108px);
  height: clamp(58px, 7vw, 108px);
  left: -4vw;
  top: 4%;
  animation: dyat-spin 18s linear infinite;
}

.hero-grid::after {
  width: clamp(18px, 2.3vw, 36px);
  height: clamp(18px, 2.3vw, 36px);
  right: 2vw;
  bottom: 8%;
  background: rgba(215, 171, 87, 0.08);
  animation: dyat-float-x 4.5s ease-in-out infinite;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-glow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font: 600 12px/1.2 'Manrope', sans-serif;
  text-shadow: 0 0 24px rgba(215, 171, 87, 0.25);
}

.hero .eyebrow::before {
  content: '';
  width: 46px;
  height: 1px;
  background: var(--gold-glow);
}

.hero h1 {
  position: relative;
  display: inline-block;
  max-width: 980px;
  margin-bottom: 22px;
  padding: 0.13em 0 0.17em;
  border-top: clamp(4px, 0.65vw, 9px) solid rgba(215, 171, 87, 0.92);
  border-bottom: clamp(4px, 0.65vw, 9px) solid rgba(215, 171, 87, 0.92);
  font-size: clamp(42px, 7.2vw, 112px);
  line-height: 0.84;
  letter-spacing: -0.03em;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.52);
  transform-origin: top center;
  animation: dyat-title-in 0.9s cubic-bezier(.2, .75, .2, 1) both;
}

.hero h1::after {
  content: '';
  position: absolute;
  left: 0;
  right: 14%;
  bottom: -12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 171, 87, 0.85), transparent);
  transform-origin: left center;
  animation: dyat-line-in 1.2s 0.25s cubic-bezier(.2, .75, .2, 1) both;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
}

.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: dyat-fade-up 0.8s 0.22s both;
}

.hero-visual {
  position: relative;
  min-height: clamp(360px, 44vw, 560px);
  border: 1px solid rgba(215, 171, 87, 0.24);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(215, 171, 87, 0.08), transparent 32%),
    #101010;
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: rotate(-1.2deg);
  animation: dyat-float-y 5s ease-in-out infinite;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(242, 216, 160, 0.2);
  border-radius: 26px;
  pointer-events: none;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.56)),
    radial-gradient(circle at 70% 20%, rgba(215, 171, 87, 0.13), transparent 46%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 42%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 44vw, 560px);
  object-fit: cover;
  filter: grayscale(18%) contrast(1.16) saturate(0.9);
  transform: scale(1.04);
}

.hero .lead,
.hero .eyebrow,
.hero-visual {
  will-change: transform, opacity;
}

.hero .lead {
  animation: dyat-fade-up 0.8s 0.1s both;
}

.dyat-reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: opacity 0.72s cubic-bezier(.2, .75, .2, 1), transform 0.72s cubic-bezier(.2, .75, .2, 1);
}

.dyat-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes dyat-title-in {
  0% {
    opacity: 0;
    transform: perspective(500px) rotateX(-52deg) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: perspective(500px) rotateX(0) translateY(0);
  }
}

@keyframes dyat-line-in {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes dyat-fade-up {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dyat-float-y {
  0%,
  100% {
    transform: rotate(-1.2deg) translateY(-8px);
  }
  50% {
    transform: rotate(-1.2deg) translateY(14px);
  }
}

@keyframes dyat-float-x {
  0%,
  100% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(12px);
  }
}

@keyframes dyat-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dyat-button-shine {
  0% {
    left: -45%;
  }
  100% {
    left: 120%;
  }
}

.section {
  padding: 64px 0;
  position: relative;
}

.section-dark {
  background:
    radial-gradient(circle at 80% -10%, rgba(215, 171, 87, 0.12), transparent 30%),
    var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 24px;
}

.section-head p {
  color: var(--muted);
  max-width: 680px;
}

.page-outline {
  position: sticky;
  top: 102px;
  z-index: 35;
  margin: 10px auto 0;
  width: min(1240px, 92%);
}

.page-outline__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(215, 171, 87, 0.2);
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(8px);
}

.page-outline__label {
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.page-outline__list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  scrollbar-width: none;
}

.page-outline__list::-webkit-scrollbar {
  display: none;
}

.page-outline__link {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  transition: 0.2s ease;
}

.page-outline__link:hover {
  color: var(--text);
  border-color: rgba(215, 171, 87, 0.5);
}

.page-outline__link.is-active {
  color: #0b0b0b;
  background: var(--gold);
  border-color: var(--gold);
}

.breadcrumbs {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--gold-soft);
}

.prose {
  max-width: 1060px;
}

.prose article,
.panel,
.form-wrap {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.wysiwyg-body,
.article-body {
  color: var(--text);
  line-height: 1.8;
}

.wysiwyg-body p,
.article-body p {
  margin: 0 0 16px;
}

.wysiwyg-body h2,
.article-body h2,
.wysiwyg-body h3,
.article-body h3 {
  margin-top: 24px;
}

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

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

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

.card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 140px;
}

.card strong {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.card span {
  color: var(--muted);
  font-size: 14px;
}

.tile-card {
  padding: 0;
  min-height: 220px;
  overflow: hidden;
}

.tile-card__image,
.tile-card__overlay {
  position: absolute;
  inset: 0;
}

.tile-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.tile-card__overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at 85% 10%, rgba(215, 171, 87, 0.24), transparent 48%);
}

.tile-card__content {
  position: relative;
  z-index: 2;
  min-height: 220px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.tile-card .tile-card__content strong,
.tile-card .tile-card__content span {
  color: #f5f2ea;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.6);
}

.tile-card .tile-card__content span {
  color: rgba(245, 242, 234, 0.85);
}

.tile-card.card-link::after {
  display: none;
}

.card-link::after {
  content: '';
  position: absolute;
  left: 20px;
  bottom: 16px;
  width: 40px;
  height: 2px;
  background: rgba(215, 171, 87, 0.45);
  transition: width 0.2s ease;
}

.card-link {
  width: 100%;
  min-height: 100%;
  cursor: pointer;
}

.card-link:hover {
  border-color: var(--line);
}

.card-link:hover::after {
  width: 72px;
  background: var(--gold);
}

.event-schedule-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 85% 0, rgba(215, 171, 87, 0.1), transparent 34%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.event-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-schedule-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(215, 171, 87, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.event-schedule-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.event-schedule-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.event-schedule-card:hover .event-schedule-card__media img {
  transform: scale(1.04);
}

.event-schedule-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.event-schedule-card__date {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.event-schedule-card h3 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 24px;
  line-height: 1.05;
}

.event-schedule-card h3 a {
  color: var(--text);
}

.event-schedule-card h3 a:hover {
  color: var(--gold-soft);
}

.event-schedule-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.event-schedule-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.transfer-vehicle-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.026)),
    radial-gradient(circle at 8% 0, rgba(215, 171, 87, 0.1), transparent 32%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

.transfer-vehicle-card {
  min-height: 160px;
  border: 1px solid rgba(215, 171, 87, 0.18);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(215, 171, 87, 0.075), rgba(255, 255, 255, 0.024));
}

.transfer-vehicle-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 20px;
  line-height: 1.1;
}

.transfer-vehicle-card p,
.transfer-vehicle-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.transfer-vehicle-card p {
  margin: 0;
}

.transfer-vehicle-note {
  margin: 14px 0 0;
}

.transfer-class-field {
  display: grid;
  gap: 7px;
}

.transfer-class-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.seo-commercial-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    radial-gradient(circle at 90% 10%, rgba(215, 171, 87, 0.1), transparent 32%);
  border-top: 1px solid var(--line-soft);
}

.seo-commercial-stack {
  display: grid;
  gap: 18px;
}

.seo-commercial-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.026);
}

.seo-commercial-block__copy {
  display: grid;
  gap: 10px;
}

.seo-commercial-block__copy span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-commercial-block__copy h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1;
}

.seo-commercial-block__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.seo-commercial-grid,
.seo-commercial-steps {
  display: grid;
  gap: 12px;
}

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

.seo-commercial-card,
.seo-commercial-step {
  min-height: 146px;
  border: 1px solid rgba(215, 171, 87, 0.16);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(215, 171, 87, 0.07), rgba(255, 255, 255, 0.024));
}

.seo-commercial-card strong,
.seo-commercial-step strong {
  display: block;
  margin-bottom: 9px;
  color: var(--text);
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 21px;
  line-height: 1.12;
}

.seo-commercial-card p,
.seo-commercial-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.seo-commercial-block--process .seo-commercial-steps {
  counter-reset: seo-step;
}

.seo-commercial-step {
  position: relative;
  padding-left: 46px;
}

.seo-commercial-step::before {
  counter-increment: seo-step;
  content: counter(seo-step);
  position: absolute;
  left: 15px;
  top: 17px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 21px;
  text-align: center;
}

.seo-link-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 12% 0, rgba(215, 171, 87, 0.12), transparent 34%);
  border-top: 1px solid var(--line-soft);
}

.seo-link-groups {
  display: grid;
  gap: 18px;
}

.seo-link-group {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.026);
}

.seo-link-group__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.seo-link-group__head h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
}

.seo-link-group__head p {
  max-width: 520px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.seo-link-card {
  position: relative;
  min-height: 92px;
  border: 1px solid rgba(215, 171, 87, 0.18);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(215, 171, 87, 0.08), rgba(255, 255, 255, 0.025));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  overflow: hidden;
}

.seo-link-card::before {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(215, 171, 87, 0.12);
  transition: transform 0.22s ease;
}

.seo-link-card strong,
.seo-link-card span {
  position: relative;
  z-index: 1;
}

.seo-link-card strong {
  color: var(--text);
  font-weight: 700;
  line-height: 1.15;
}

.seo-link-card span {
  color: var(--muted);
  font-size: 13px;
}

.seo-link-card:hover {
  border-color: rgba(215, 171, 87, 0.54);
  transform: translateY(-1px);
}

.seo-link-card:hover::before {
  transform: scale(1.35);
}

.faq-section {
  border-top: 1px solid var(--line-soft);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px 16px;
  color: var(--muted);
  line-height: 1.7;
}

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

.service-geo-region-card {
  min-height: 0;
  gap: 14px;
}

.service-geo-region-card strong a {
  color: var(--text);
}

.service-geo-region-card strong a:hover {
  color: var(--gold-soft);
}

.service-geo-country-list {
  display: grid;
  gap: 12px;
}

.service-geo-country-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.22);
}

.service-geo-country-link {
  display: inline-block;
  margin-bottom: 8px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-geo-country-link:hover {
  color: var(--gold-soft);
}

.service-geo-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-geo-city-links a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(215, 171, 87, 0.28);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.service-geo-city-links a:hover {
  color: var(--text);
  border-color: var(--gold);
  background: rgba(215, 171, 87, 0.12);
}

.btn {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 15px;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  inset: -2px auto -2px -45%;
  width: 38%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  opacity: 0;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 1;
  animation: dyat-button-shine 0.72s ease forwards;
}

.btn-gold {
  color: #0b0b0b;
  border-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 35%),
    linear-gradient(180deg, #ebc674, #d7ab57);
  box-shadow: 0 14px 34px rgba(215, 171, 87, 0.16);
}

.btn-gold:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-dark {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.lead-form,
.grid-form {
  display: grid;
  gap: 14px;
}

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

.lead-form input,
.lead-form textarea,
.lead-form select,
.grid-form input,
.grid-form textarea,
.grid-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 11px 13px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
}

.lead-form textarea,
.grid-form textarea {
  min-height: 110px;
}

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

.grid-form .full {
  grid-column: 1 / -1;
}

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

.gallery-card {
  margin: 0;
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  filter: grayscale(22%);
}

.gallery-card figcaption {
  margin-top: 8px;
  color: var(--muted);
}

.pager {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.inline-toolbar {
  position: sticky;
  top: 90px;
  z-index: 40;
  width: min(1240px, 92%);
  margin: 14px auto;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 8, 8, 0.94);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.inline-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

[data-inline-field] {
  transition: box-shadow 0.2s ease, outline-color 0.2s ease;
}

[data-inline-field][contenteditable='true'] {
  outline: 1px dashed rgba(215, 171, 87, 0.38);
  outline-offset: 4px;
}

[data-inline-field].is-editing {
  outline-color: rgba(215, 171, 87, 0.8);
  box-shadow: 0 0 0 3px rgba(215, 171, 87, 0.15);
}

[data-inline-field].is-saving {
  opacity: 0.72;
}

.inline-saved {
  box-shadow: 0 0 0 3px rgba(215, 171, 87, 0.25);
}

.inline-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  background: #0d0d0d;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.2s ease;
}

.inline-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 38px 0 50px;
  background: #0b0b0b;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) minmax(150px, 0.8fr) minmax(250px, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 24px;
}

.footer-grid a {
  display: block;
  margin: 4px 0;
}

.footer-contact {
  justify-self: end;
  width: min(100%, 310px);
}

.footer-contact__label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-contact__offices {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-contact__office {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(215, 171, 87, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.footer-contact__office span {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-contact__office strong {
  margin: 0;
  color: var(--text);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.footer-contact__office:hover {
  border-color: rgba(242, 216, 160, 0.58);
  background: rgba(215, 171, 87, 0.08);
}

.footer-contact__phone {
  display: block;
  margin: 0 0 6px;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
}

.footer-contact__phone:hover {
  color: var(--gold-soft);
}

.footer-contact__email {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  word-break: break-word;
}

.footer-contact__email:hover {
  color: var(--gold-soft);
}

.footer-contact__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-contact__social {
  justify-content: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
}

.footer-contact__social svg {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

.footer-contact__social span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-inner {
  padding-top: 54px;
  padding-bottom: 34px;
}

.hero-copy {
  width: min(900px, 100%);
}

.content-section,
.prose-block {
  padding: 54px 0;
}

.small-muted,
.admin-hint,
.muted {
  color: #94a3b8;
  font-size: 12px;
}

.alert {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid transparent;
}

.alert.success {
  border-color: rgba(215, 171, 87, 0.3);
  background: rgba(215, 171, 87, 0.1);
}

.alert.error {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 18px;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(2px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(215, 171, 87, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(23, 23, 23, 0.96), rgba(8, 8, 8, 0.98));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.48);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lead-modal.is-open .lead-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lead-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.lead-modal__close:hover {
  border-color: var(--line);
  color: var(--gold-soft);
}

.lead-modal__subtitle {
  margin-bottom: 16px;
  color: var(--muted);
}

.lead-service-select-field,
.art-file-field {
  display: grid;
  gap: 8px;
}

.lead-service-select-field span,
.art-file-field span,
.art-logistics-fields legend {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.art-logistics-fields {
  display: grid;
  gap: 14px;
  margin: 2px 0 0;
  padding: 16px;
  border: 1px solid rgba(215, 171, 87, 0.24);
  border-radius: 16px;
  background: rgba(215, 171, 87, 0.06);
}

.art-logistics-fields[hidden] {
  display: none;
}

.art-logistics-fields legend {
  padding: 0 6px;
}

.form-hint {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.art-logistics-body,
.wysiwyg-body .art-logistics-body {
  display: grid;
  gap: 30px;
}

.art-logistics-body section {
  display: grid;
  gap: 14px;
}

.art-logistics-body h2,
.art-logistics-body h3 {
  margin-bottom: 0;
}

.art-logistics-cards,
.art-logistics-process,
.art-logistics-audience,
.art-logistics-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.art-logistics-cards article,
.art-logistics-process article,
.art-logistics-audience article,
.art-logistics-note,
.art-logistics-links a {
  border: 1px solid rgba(215, 171, 87, 0.18);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.art-logistics-cards strong,
.art-logistics-process strong,
.art-logistics-audience strong,
.art-logistics-links strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
}

.art-logistics-categories {
  columns: 2;
  column-gap: 30px;
  padding-left: 18px;
}

.art-logistics-categories li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.art-logistics-note {
  color: var(--muted);
}

.art-logistics-links a {
  color: var(--text);
  text-decoration: none;
}

.art-logistics-links a:hover {
  border-color: rgba(215, 171, 87, 0.42);
  color: var(--gold-soft);
}

.art-related-section {
  padding-top: 0;
}

.art-related-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(215, 171, 87, 0.25);
  border-radius: 16px;
  background:
    linear-gradient(110deg, rgba(215, 171, 87, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-decoration: none;
}

.art-related-card:hover {
  border-color: rgba(215, 171, 87, 0.48);
  transform: translateY(-1px);
}

.art-related-card__eyebrow {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.art-related-card strong {
  font-size: clamp(22px, 2.2vw, 32px);
  font-family: var(--font-serif);
}

.art-related-card span:last-child {
  color: var(--muted);
}

.art-request-wrap {
  border-color: rgba(215, 171, 87, 0.24);
  background:
    radial-gradient(circle at top right, rgba(215, 171, 87, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.035);
}

.art-logistics-request-form {
  margin-top: 18px;
}

.featured-services-section .tile-card {
  min-height: 330px;
}

.privacy-policy-body {
  display: grid;
  gap: 28px;
}

.legal-hero h1 {
  display: block;
  width: 100%;
  max-width: min(1040px, 100%);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  transform: none;
  animation: none;
}

.legal-hero h1::after {
  display: none;
}

.legal-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}

.legal-hero .hero-grid > div:first-child {
  min-width: 0;
  max-width: 100%;
}

.legal-hero .hero-visual {
  display: none;
}

.legal-hero .lead {
  max-width: 760px;
}

.privacy-policy-body section {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-policy-body section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-policy-body h2 {
  max-width: 980px;
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 34px);
}

.privacy-policy-body p {
  max-width: 980px;
  color: var(--muted);
  line-height: 1.78;
}

.privacy-policy-body p + p {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .art-logistics-cards,
  .art-logistics-process,
  .art-logistics-audience,
  .art-logistics-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .art-logistics-cards,
  .art-logistics-process,
  .art-logistics-audience,
  .art-logistics-links {
    grid-template-columns: 1fr;
  }

  .art-logistics-categories {
    columns: 1;
  }

  .art-logistics-fields,
  .art-related-card {
    padding: 16px;
  }
}

.back-to-top {
  position: fixed;
  right: 88px;
  bottom: 18px;
  z-index: 85;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(215, 171, 87, 0.48);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.86);
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--gold);
  color: var(--text);
}

.w-cookie-notify {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 260;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(720px, calc(100vw - 128px));
  padding: 16px;
  border: 1px solid rgba(215, 171, 87, 0.32);
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(215, 171, 87, 0.16), transparent 44%),
    #080808;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.w-cookie-notify.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.w-cookie-notify__copy {
  display: grid;
  gap: 5px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.w-cookie-notify__copy strong {
  color: var(--text);
  font-size: 14px;
}

.w-cookie-notify__copy p {
  width: 100%;
  max-width: 100%;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.w-cookie-notify__copy a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.w-cookie-notify__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.w-cookie-notify__actions .btn {
  min-height: 40px;
  padding: 10px 14px;
  white-space: nowrap;
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  font-family: 'Manrope', Arial, sans-serif;
}

.chat-widget__toggle {
  position: relative;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(242, 216, 160, 0.68);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(180deg, #f0ce83, #d7ab57);
  color: #0a0a0a;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.46), 0 10px 26px rgba(215, 171, 87, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.chat-widget__toggle:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.chat-widget__toggle svg {
  width: 30px;
  height: 30px;
}

.chat-widget__unread {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  border: 2px solid #090909;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.chat-widget__panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(380px, calc(100vw - 32px));
  max-height: min(640px, calc(100vh - 112px));
  border: 1px solid rgba(215, 171, 87, 0.34);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(180px, 1fr) auto;
  background:
    radial-gradient(circle at top right, rgba(215, 171, 87, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(7, 7, 7, 0.98));
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.58);
}

.chat-widget__panel[hidden] {
  display: none;
}

.chat-widget__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-widget__head h2 {
  margin: 2px 0 4px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
}

.chat-widget__head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.chat-widget__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chat-widget__status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.chat-widget__close {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.chat-widget__close:hover {
  border-color: rgba(242, 216, 160, 0.42);
  color: var(--gold-soft);
}

.chat-widget__messages {
  min-height: 220px;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
}

.chat-widget__empty {
  margin: auto;
  width: min(240px, 100%);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
}

.chat-message {
  max-width: 88%;
  border-radius: 16px;
  padding: 10px 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.chat-message--client {
  align-self: flex-end;
  border-color: rgba(215, 171, 87, 0.48);
  background: linear-gradient(180deg, #efcf86, #d7ab57);
  color: #0a0a0a;
}

.chat-message--operator {
  align-self: flex-start;
}

.chat-message--system {
  align-self: center;
  max-width: 94%;
  background: rgba(215, 171, 87, 0.08);
  color: var(--gold-soft);
  text-align: center;
}

.chat-message__text {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.45;
}

.chat-message__time {
  display: block;
  margin-top: 4px;
  opacity: 0.66;
  font-size: 11px;
  line-height: 1;
  text-align: right;
}

.chat-widget__form {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.chat-widget__contact {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid rgba(215, 171, 87, 0.18);
  background: rgba(215, 171, 87, 0.06);
}

.chat-widget__contact[hidden] {
  display: none;
}

.chat-widget__contact-copy {
  display: grid;
  gap: 3px;
}

.chat-widget__contact-copy strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
}

.chat-widget__contact-copy span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.chat-widget__contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.chat-widget__form input,
.chat-widget__form textarea,
.chat-widget__contact input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 10px 11px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.chat-widget__form textarea {
  min-height: 78px;
  max-height: 150px;
  resize: vertical;
}

.chat-widget__form input:focus,
.chat-widget__form textarea:focus,
.chat-widget__contact input:focus {
  outline: none;
  border-color: rgba(242, 216, 160, 0.58);
  box-shadow: 0 0 0 3px rgba(215, 171, 87, 0.12);
}

.chat-widget__actions,
.chat-widget__contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chat-widget__contact-actions {
  align-items: center;
}

.chat-widget__actions .btn,
.chat-widget__contact-actions .btn {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
}

.chat-widget__feedback {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.chat-widget__feedback.is-error {
  color: #fca5a5;
}

.contact-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
}

.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 171, 87, 0.34);
  border-radius: 28px;
  padding: clamp(24px, 3.4vw, 42px);
  background:
    linear-gradient(135deg, rgba(215, 171, 87, 0.16), rgba(242, 216, 160, 0.035) 38%, rgba(255, 255, 255, 0.045)),
    rgba(13, 13, 13, 0.9);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(242, 216, 160, 0.16);
  border-radius: 22px;
  pointer-events: none;
}

.contact-card__label {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card__phone {
  display: block;
  margin-bottom: 24px;
  color: var(--text);
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.contact-card__phone:hover {
  color: var(--gold-soft);
}

.contact-card__offices {
  position: relative;
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  z-index: 1;
}

.contact-card__office {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(215, 171, 87, 0.32);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
}

.contact-card__office span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card__office strong {
  color: var(--text);
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
}

.contact-card__office:hover {
  border-color: rgba(242, 216, 160, 0.72);
  background: rgba(215, 171, 87, 0.1);
}

.contact-card__email {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-soft);
  font-weight: 800;
  word-break: break-word;
  z-index: 1;
}

.contact-card__email:hover {
  color: #fff3d8;
}

.contact-socials {
  position: relative;
  display: grid;
  gap: 10px;
  z-index: 1;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid rgba(215, 171, 87, 0.34);
  border-radius: 999px;
  padding: 10px 16px 10px 12px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--gold-soft);
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-social svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: currentColor;
  filter: drop-shadow(0 0 12px rgba(215, 171, 87, 0.22));
}

.contact-social:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 216, 160, 0.72);
  background: rgba(215, 171, 87, 0.13);
  color: #fff3d8;
}

.site-footer .footer-contact__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.site-footer .footer-contact__social {
  display: inline-flex;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  gap: 0;
}

.site-footer .footer-contact__social svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.site-footer .footer-contact__social span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.contact-copy.prose {
  width: 100%;
  margin: 0;
}

.contact-form-card.form-wrap {
  margin: 0;
}

@media (max-width: 980px) {
  .contact-hero .hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    width: min(620px, 100%);
  }
}

@media (max-width: 520px) {
  .contact-card {
    padding: 22px;
  }

  .contact-card__phone {
    font-size: clamp(24px, 8vw, 32px);
    line-height: 1.08;
    white-space: normal;
  }

  .contact-card__office strong {
    font-size: clamp(23px, 7vw, 28px);
  }

  .contact-social {
    min-height: 50px;
  }

  .w-cookie-notify {
    left: 12px;
    right: 12px;
    bottom: 88px;
    grid-template-columns: 1fr;
    box-sizing: border-box;
    width: min(366px, calc(100vw - 24px));
    max-width: min(366px, calc(100vw - 24px));
    background: #080808;
  }

  .w-cookie-notify__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .w-cookie-notify__copy p {
    font-size: 12px;
  }

  .w-cookie-notify__actions .btn {
    width: 100%;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-widget__panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 96px);
    bottom: 70px;
  }

  .chat-widget__contact-grid {
    grid-template-columns: 1fr;
  }

  .chat-widget__contact-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .chat-widget__feedback {
    flex: 1 0 100%;
  }
}

/* Admin */
.admin-body {
  background:
    radial-gradient(circle at 10% -10%, rgba(59, 130, 246, 0.18), transparent 38%),
    radial-gradient(circle at 85% 0%, rgba(215, 171, 87, 0.12), transparent 32%),
    #040912;
  color: #e6edf8;
}

.admin-body h1,
.admin-body h2,
.admin-body h3 {
  text-transform: none;
  letter-spacing: 0.01em;
}

.admin-body h1 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.12;
}

.admin-body h2 {
  font-size: clamp(22px, 2.3vw, 34px);
}

.admin-body h3 {
  font-size: clamp(18px, 1.8vw, 26px);
}

.admin-layout {
  display: grid;
  grid-template-columns: 312px 1fr;
  min-height: 100vh;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  max-height: 100vh;
  padding: 20px 16px;
  border-right: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(8, 20, 42, 0.96), rgba(6, 14, 29, 0.98));
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.admin-content {
  padding: 24px 28px;
  overflow: auto;
}

.admin-content-inner {
  width: min(1320px, 100%);
}

.admin-sidebar a {
  display: block;
  border-radius: 12px;
  padding: 10px 12px;
  color: #c1cce4;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.admin-sidebar a:hover,
.admin-sidebar a.active,
.admin-sidebar .brand {
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(148, 163, 184, 0.26);
}

.admin-sidebar .brand {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.admin-user-chip {
  border: 1px solid rgba(215, 171, 87, 0.35);
  border-radius: 999px;
  padding: 6px 10px;
  color: #f8deb3;
  font-size: 13px;
  margin-bottom: 4px;
}

.admin-nav-tree {
  display: grid;
  gap: 10px;
}

.admin-nav-branch {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  background: rgba(9, 17, 34, 0.5);
}

.admin-nav-branch > summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 12px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e6edf7;
}

.admin-nav-branch > summary::-webkit-details-marker {
  display: none;
}

.admin-nav-links {
  display: grid;
  gap: 2px;
  padding: 0 6px 8px;
}

.admin-nav-links a {
  margin: 0;
  font-size: 14px;
  padding: 8px 10px;
}

.logout-link {
  margin-top: auto;
  color: #fca5a5;
}

.admin-content label {
  display: grid;
  gap: 6px;
  color: #d3dcf1;
  font-size: 14px;
}

.admin-content input,
.admin-content select,
.admin-content textarea {
  font-family: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
}

.admin-content .panel {
  border-color: rgba(148, 163, 184, 0.22);
  background: linear-gradient(180deg, rgba(15, 26, 49, 0.56), rgba(6, 12, 23, 0.72));
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.language-order-table td {
  vertical-align: middle;
}

.language-flag {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(215, 171, 87, 0.24);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  font-size: 21px;
  line-height: 1;
}

.language-order-input {
  width: 92px;
}

.language-order-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.table-wrap {
  overflow: auto;
}

.wide-table {
  min-width: 1800px;
  font-size: 13px;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.toolbar h1 {
  margin: 0;
}

.admin-filters {
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.admin-filters input,
.admin-filters select,
.admin-filters button,
.quick-status-form select,
.order-inline-table .order-quick-select,
.order-inline-table .order-quick-input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
  background: #0f172a;
  color: #e5e7eb;
  padding: 8px 10px;
}

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

.order-inline-table .order-actions-cell {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-meta-strip {
  margin-bottom: 16px;
}

.order-secondary-panels {
  margin-top: 18px;
}

.notes-list {
  display: grid;
  gap: 12px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.form-actions.compact {
  justify-content: flex-start;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid input[type="number"],
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
  background: #0f172a;
  color: #e5e7eb;
  padding: 9px 11px;
}

.form-grid textarea {
  min-height: 124px;
  resize: vertical;
  line-height: 1.55;
}

.toggle-line {
  display: flex;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.toggle-line input {
  flex: 0 0 auto;
}

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

.settings-language-grid small {
  color: #94a3b8;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .settings-language-grid {
    grid-template-columns: 1fr;
  }
}

.button-small {
  padding: 6px 10px;
  font-size: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.78);
  color: #e5edf9;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.button:hover {
  border-color: var(--gold);
  color: #fff8e8;
}

.panel-head-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.note-edit-form textarea {
  min-height: 110px;
}

.order-timeline-panel {
  margin-top: 20px;
}

.cell-ellipsis {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.note-item {
  border: 1px solid rgba(215, 171, 87, 0.2);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.note-meta {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 6px;
}

.timeline-item {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.45);
}

.timeline-item--status {
  border-color: rgba(215, 171, 87, 0.28);
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #94a3b8;
}

.timeline-body {
  white-space: pre-wrap;
  line-height: 1.6;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.team-grid__floor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.team-card {
  flex: 0 1 calc((100% - 36px) / 3);
  width: 100%;
  max-width: calc((100% - 36px) / 3);
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.team-photo-wrap {
  aspect-ratio: 4 / 3;
  background: radial-gradient(circle at 18% 12%, rgba(215, 171, 87, 0.3), transparent 45%), #111;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-body {
  padding: 16px;
}

.team-role {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-weight: 700;
}

.team-short {
  color: var(--muted);
}

.team-details {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.team-details p {
  margin-top: 8px;
  color: var(--muted);
}

.button-danger {
  border-color: #7f1d1d;
  background: #3a1111;
  color: #fecaca;
}

.media-picker-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.media-picker-top input {
  flex: 1;
}

.media-upload-inline {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 10px;
  margin-bottom: 10px;
}

.gallery-chip-list {
  margin-top: 10px;
}

.gallery-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(215, 171, 87, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  margin: 0 8px 8px 0;
  background: #0f172a;
  cursor: move;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.media-thumb {
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 8px;
  background: #0c111f;
  color: #f1f5f9;
}

.media-thumb img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
}

.media-thumb.is-hero {
  border-color: rgba(215, 171, 87, 0.72);
  box-shadow: 0 0 0 2px rgba(215, 171, 87, 0.2);
}

.media-thumb.is-gallery {
  outline: 2px solid rgba(215, 171, 87, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 14px 0;
}

.dashboard-grid-2,
.compact-grid {
  display: grid;
  gap: 14px;
}

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

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

.chart-row {
  display: grid;
  grid-template-columns: 180px 1fr 56px;
  gap: 10px;
  align-items: center;
}

.chart-row .bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.chart-row .bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #f2d38e);
}

.chat-dashboard-grid,
.chat-stats-grid,
.chat-filters {
  margin-bottom: 16px;
}

.chat-status,
.chat-direction {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 3px 8px;
  margin-top: 6px;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.chat-status--open {
  border-color: rgba(34, 197, 94, 0.34);
  color: #86efac;
  background: rgba(34, 197, 94, 0.08);
}

.chat-status--closed {
  border-color: rgba(148, 163, 184, 0.28);
  color: #94a3b8;
  background: rgba(148, 163, 184, 0.08);
}

.chat-direction--client {
  border-color: rgba(215, 171, 87, 0.4);
  color: #f2d8a0;
}

.chat-direction--operator {
  border-color: rgba(96, 165, 250, 0.38);
  color: #bfdbfe;
}

.chat-admin-table td {
  vertical-align: top;
}

.chat-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  align-items: start;
}

.chat-history-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.chat-admin-timeline {
  display: grid;
  gap: 12px;
}

.chat-admin-message {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.46);
}

.chat-admin-message--client {
  border-color: rgba(215, 171, 87, 0.32);
  background: rgba(215, 171, 87, 0.08);
}

.chat-admin-message--operator {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(30, 64, 175, 0.16);
}

.chat-admin-message__meta,
.chat-admin-message__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.chat-admin-message__meta {
  margin-bottom: 8px;
  color: #94a3b8;
  font-size: 12px;
}

.chat-admin-message__meta strong {
  color: #f8fafc;
}

.chat-admin-message__text {
  color: #f8fafc;
  line-height: 1.6;
  white-space: normal;
  overflow-wrap: anywhere;
}

.chat-admin-message__foot {
  margin-top: 10px;
  color: #94a3b8;
  font-size: 11px;
}

.chat-admin-reply {
  margin-bottom: 10px;
  border-left: 3px solid rgba(215, 171, 87, 0.54);
  padding: 8px 10px;
  color: #cbd5e1;
  background: rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  font-size: 12px;
}

.chat-side-column {
  display: grid;
  gap: 14px;
}

.chat-side-list {
  display: grid;
  gap: 10px;
}

.chat-side-list div {
  display: grid;
  gap: 3px;
}

.chat-side-list span {
  color: #94a3b8;
  font-size: 12px;
}

.chat-side-list strong {
  color: #f8fafc;
  overflow-wrap: anywhere;
}

.chat-page-link {
  margin-top: 12px;
  overflow-wrap: anywhere;
}

.chat-event-log {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
}

.chat-event {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 12px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.4);
}

.chat-event span,
.chat-event em {
  color: #94a3b8;
  font-size: 12px;
}

.chat-event code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #f2d8a0;
  font-size: 11px;
}

.admin-auth-body {
  min-height: 100vh;
}

.admin-auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-auth-card {
  width: min(620px, 100%);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(215, 171, 87, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(13, 27, 52, 0.92), rgba(6, 13, 25, 0.96));
}

.admin-auth-card h1 {
  margin-bottom: 8px;
}

.admin-auth-subtitle {
  color: #a5b4d1;
  margin-bottom: 18px;
}

.admin-auth-form {
  display: grid;
  gap: 12px;
}

.admin-auth-links {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-auth-links a {
  color: #a7c9ff;
}

.admin-auth-links a:hover {
  color: #f2d8a0;
}

.admin-auth-divider {
  margin: 20px 0 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  color: #95a3c1;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.admin-telegram-login {
  display: flex;
  justify-content: center;
}

.admin-auth-muted {
  color: #93a4c5;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .cards-grid,
  .gallery-grid,
  .team-grid,
  .chat-detail-grid,
  .stats-grid,
  .dashboard-grid-2,
  .compact-grid,
  .admin-filters,
  .grid-form,
  .grid-2,
  .event-schedule-grid,
  .transfer-vehicle-grid,
  .seo-commercial-grid,
  .seo-link-grid,
  .two-columns-public,
  .mini-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-self: start;
  }

  .team-card {
    flex-basis: calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }

  .service-geo-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 64px;
  }

  .hero::after {
    inset: 6% 4%;
  }

  .hero-visual {
    order: 0;
    min-height: 360px;
    transform: none;
    animation: none;
  }

  .chart-row {
    grid-template-columns: 130px 1fr 44px;
  }
}

@media (max-width: 980px) {
  .seo-commercial-block {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .seo-commercial-card,
  .seo-commercial-step {
    min-height: auto;
  }

  .nav-wrap {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .site-header .brand img,
  .site-header .brand-logo {
    height: 48px;
    max-width: 170px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-shell {
    position: fixed;
    top: 78px;
    right: 12px;
    left: 12px;
    z-index: 75;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 14px;
  }

  .nav-shell.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-links a {
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 0;
  }

  .nav-dropdown__link {
    border-radius: 10px 0 0 10px;
  }

  .nav-dropdown__toggle {
    width: 42px;
    height: auto;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .nav-dropdown__menu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-height: 280px;
    margin-top: 6px;
    box-shadow: none;
  }

  .nav-dropdown:not(.is-open):hover .nav-dropdown__menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .lang-switcher {
    margin-left: 0;
    flex-wrap: wrap;
  }

  .lang-switcher__link {
    width: 38px;
    height: 38px;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 74;
    background: rgba(0, 0, 0, 0.58);
  }

  body.menu-open .nav-backdrop {
    display: block;
  }

  .inline-toolbar {
    top: 78px;
    flex-direction: column;
    align-items: stretch;
  }

  .page-outline {
    top: 82px;
  }

  .page-outline__inner {
    padding: 8px 10px;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    padding: 12px;
    gap: 8px;
  }

  .admin-nav-tree {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .admin-nav-branch {
    min-width: 200px;
  }

  .logout-link {
    margin-top: 0;
  }

  .media-upload-inline {
    grid-template-columns: 1fr;
  }
}

/* Admin UX refresh */
.admin-layout {
  grid-template-columns: minmax(252px, 286px) minmax(0, 1fr);
  align-items: start;
}

.admin-content {
  padding: 18px clamp(14px, 2vw, 26px) 24px;
  min-width: 0;
}

.admin-content-inner {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.admin-sidebar {
  padding: 14px 12px 12px;
}

.admin-nav-branch > summary {
  font-family: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 700;
}

.admin-mobile-bar {
  display: none;
}

.admin-shell-backdrop {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.admin-menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  background: rgba(15, 23, 42, 0.86);
  color: #d6e3ff;
  padding: 10px 9px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.admin-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}

.orders-toolbar {
  margin-bottom: 12px;
  align-items: flex-end;
}

.orders-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.crm-filters {
  margin-bottom: 12px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
}

.crm-filters .btn {
  width: 100%;
}

.bulk-panel.compact-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.admin-table-wide,
.order-inline-table {
  min-width: 1940px;
}

.crm-table-wrap {
  overflow: auto;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  background: rgba(5, 12, 25, 0.66);
  max-height: calc(100vh - 322px);
}

.crm-table-wrap .admin-table {
  border: 0;
  background: transparent;
}

.order-inline-table th {
  position: sticky;
  top: 0;
  z-index: 4;
  white-space: nowrap;
  background: rgba(8, 18, 35, 0.96);
  backdrop-filter: blur(6px);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.order-inline-table td {
  white-space: nowrap;
  font-size: 12px;
}

.order-inline-table td:nth-child(16) {
  white-space: normal;
  min-width: 220px;
  max-width: 320px;
}

.order-inline-table th:first-child,
.order-inline-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 6;
  min-width: 44px;
  width: 44px;
  background: rgba(8, 18, 35, 0.96);
}

.order-inline-table th:nth-child(2),
.order-inline-table td:nth-child(2) {
  position: sticky;
  left: 44px;
  z-index: 6;
  min-width: 120px;
  background: rgba(8, 18, 35, 0.96);
}

.order-inline-table tr:hover td {
  background: rgba(30, 58, 106, 0.26);
}

.order-inline-table tr:hover td:first-child,
.order-inline-table tr:hover td:nth-child(2) {
  background: rgba(24, 50, 94, 0.96);
}

.order-inline-table .order-quick-select,
.order-inline-table .order-quick-input {
  min-width: 118px;
  padding: 6px 8px;
  font-size: 12px;
}

.order-inline-table .order-actions-cell {
  min-width: 108px;
}

.order-inline-table .order-actions-cell .button {
  width: 100%;
}

@media (max-width: 1180px) {
  .admin-mobile-bar {
    position: sticky;
    top: 0;
    z-index: 130;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(5, 13, 28, 0.96);
    backdrop-filter: blur(10px);
  }

  .admin-mobile-brand {
    font-weight: 700;
    color: #f7fbff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .admin-mobile-logout {
    border: 1px solid rgba(248, 113, 113, 0.3);
    border-radius: 10px;
    padding: 8px 10px;
    color: #fecaca;
    font-size: 13px;
    line-height: 1;
  }

  .admin-layout {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 62px);
  }

  .admin-sidebar {
    position: fixed;
    top: 62px;
    left: 0;
    bottom: 0;
    width: min(320px, 86vw);
    max-height: none;
    border-right: 1px solid rgba(148, 163, 184, 0.24);
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(7, 18, 38, 0.98), rgba(3, 10, 21, 0.98));
    transform: translateX(-102%);
    transition: transform 0.22s ease;
    z-index: 140;
    overflow-y: auto;
  }

  .admin-sidebar.is-open {
    transform: translateX(0);
  }

  .admin-shell-backdrop {
    position: fixed;
    inset: 62px 0 0;
    z-index: 135;
    display: block;
    background: rgba(2, 6, 14, 0.7);
    transition: opacity 0.2s ease;
  }

  body:not(.admin-menu-open) .admin-shell-backdrop {
    opacity: 0;
    pointer-events: none;
  }

  body.admin-menu-open .admin-shell-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .admin-content {
    padding: 12px 12px 18px;
  }

  .admin-sidebar .brand,
  .admin-sidebar .admin-user-chip,
  .admin-sidebar .admin-dashboard-link,
  .admin-sidebar .logout-link {
    display: none;
  }

  .admin-nav-tree {
    display: grid;
    gap: 10px;
    padding-bottom: 8px;
    overflow: visible;
  }

  .admin-nav-branch {
    min-width: 0;
  }

  .crm-table-wrap {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 74px 0 48px;
  }

  .hero h1 {
    font-size: clamp(40px, 14vw, 68px);
    line-height: 0.9;
  }

  .legal-hero h1 {
    width: min(100%, calc(100vw - 96px));
    max-width: calc(100vw - 96px);
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: none;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-visual {
    min-height: 260px;
    border-radius: 22px;
    animation: none;
  }

  .hero-visual img {
    min-height: 260px;
  }

  .hero-grid::before,
  .hero-grid::after {
    display: none;
  }

  .seo-link-group__head {
    display: block;
  }

  .seo-commercial-block__copy h2 {
    font-size: 28px;
    line-height: 1.06;
  }

  .seo-commercial-step {
    padding-left: 42px;
  }

  .page-outline__label {
    display: none;
  }

  .page-outline__inner {
    gap: 6px;
  }

  .back-to-top {
    right: 82px;
    bottom: 12px;
  }

  .orders-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .orders-toolbar-actions {
    justify-content: flex-start;
  }

  .orders-toolbar-actions .button,
  .orders-toolbar-actions .btn {
    width: 100%;
  }

  .order-inline-table th,
  .order-inline-table td {
    font-size: 11px;
    padding: 8px;
  }

  .order-inline-table .order-quick-select,
  .order-inline-table .order-quick-input {
    min-width: 92px;
    font-size: 11px;
    padding: 5px 6px;
  }
}

/* WP home layout layer */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wp-home {
  --wp-gold: #d8ad62;
  --wp-gold-deep: #9e7338;
  --wp-ink: #080808;
  --wp-paper: #f7f3ea;
  --wp-muted: rgba(247, 243, 234, 0.76);
  --wp-border: rgba(216, 173, 98, 0.42);
  background: #080808;
  color: var(--wp-paper);
  font-family: 'Onest', 'Raleway', 'Source Sans 3', Arial, sans-serif;
}

.body-wp-home .page-outline {
  display: none !important;
}

.wp-home .section {
  padding: 86px 0;
}

.wp-home .section-title {
  width: min(1180px, 92%);
  margin: 0 auto;
  color: #f8f0df;
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: clamp(30px, 4.7vw, 68px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wp-title-band {
  padding: 76px 0 42px;
  background: #0c0c0c;
}

.wp-section-kicker {
  color: var(--wp-gold);
  font-family: 'Bad Script', cursive;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1;
}

.border-bottom-gold {
  border-bottom: 1px solid var(--wp-border);
}

.firstscreen {
  position: relative;
  min-height: calc(100svh - 90px);
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.firstscreen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.2));
}

.firstscreen::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, #080808);
}

.belka-hero__grid {
  min-height: calc(100svh - 90px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: 64px 0 72px;
}

.belka-hero__content {
  max-width: 760px;
}

.belka-hero__logo {
  display: inline-flex;
  width: min(220px, 46vw);
  margin-bottom: 28px;
}

.belka-hero__logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
}

.belka-hero__title {
  max-width: 620px;
  margin: 0;
  color: #fff8e8;
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: clamp(22px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.belka-hero__lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}

.belka-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.wp-home .button,
.wp-home .btn {
  min-height: 48px;
  border-radius: 0;
  padding: 13px 22px;
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wp-home .blue-btn,
.wp-home .btn-gold {
  border-color: var(--wp-gold);
  background: var(--wp-gold);
  color: #111;
}

.wp-home .transparent-btn,
.wp-home .btn-dark {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
}

.belka-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.belka-hero__proof li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 9px 13px;
  background: rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.belka-hero__form {
  border: 1px solid var(--wp-border);
  padding: 30px;
  background: rgba(6, 6, 6, 0.72);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.belka-hero__form h2 {
  margin-bottom: 18px;
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0;
}

.belka-hero__lead-form {
  display: grid;
  gap: 12px;
}

.belka-hero__lead-form .grid-2 {
  gap: 12px;
}

.belka-hero__lead-form input,
.belka-hero__lead-form textarea,
.wp-home input,
.wp-home textarea,
.wp-home select {
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Onest', Arial, sans-serif;
}

.wp-home input::placeholder,
.wp-home textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.transfer-widget-section {
  padding: clamp(28px, 4vw, 56px) 0;
  border-top: 1px solid var(--wp-border);
  border-bottom: 1px solid var(--wp-border);
  background: #101010;
  color: var(--wp-paper);
}

.transfer-widget {
  display: grid;
  gap: 22px;
  border: 1px solid var(--wp-border);
  border-radius: 0;
  padding: clamp(20px, 3vw, 34px);
  background: #080808;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.transfer-widget__header {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  align-items: end;
}

.transfer-widget__eyebrow {
  margin: 0 0 8px;
  color: var(--wp-gold);
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.transfer-widget h2 {
  margin: 0;
  color: #f8f0df;
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.transfer-widget__header > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

.transfer-order-form {
  display: grid;
  gap: 16px;
}

.transfer-widget__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.transfer-widget__tabs label {
  cursor: pointer;
}

.transfer-widget .transfer-widget__tabs input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  opacity: 0;
  pointer-events: none;
}

.transfer-widget__tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(216, 173, 98, 0.4);
  border-radius: 0;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: 0.18s ease;
}

.transfer-widget__tabs input:checked + span {
  border-color: var(--wp-gold);
  background: var(--wp-gold);
  color: #111;
}

.transfer-widget__tabs label:hover span {
  border-color: var(--wp-gold);
}

.transfer-widget__route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: 10px;
  align-items: end;
  position: relative;
  z-index: 5;
}

.transfer-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.transfer-field span {
  color: rgba(248, 240, 223, 0.64);
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.transfer-widget input,
.transfer-widget select,
.transfer-widget textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  color-scheme: dark;
  font: 600 15px/1.3 'Onest', Arial, sans-serif;
}

.transfer-widget select option {
  background: #161616;
  color: #fff;
}

.transfer-widget textarea {
  min-height: 96px;
  resize: vertical;
}

.transfer-widget input::placeholder,
.transfer-widget textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.transfer-widget input:focus,
.transfer-widget select:focus,
.transfer-widget textarea:focus {
  border-color: var(--wp-gold);
  box-shadow: 0 0 0 3px rgba(216, 173, 98, 0.14);
  outline: none;
}

.transfer-autocomplete {
  position: relative;
  min-width: 0;
}

.transfer-autocomplete__panel {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  z-index: 40;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 98, 0.52);
  border-radius: 4px;
  background: #141414;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
}

.transfer-autocomplete__panel[hidden] {
  display: none;
}

.transfer-autocomplete__list {
  max-height: min(370px, 52vh);
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 5px;
  list-style: none;
  scrollbar-color: rgba(216, 173, 98, 0.7) #1a1a1a;
  scrollbar-width: thin;
}

.transfer-autocomplete__option {
  display: grid;
  grid-template-columns: minmax(68px, auto) minmax(0, 1fr);
  gap: 3px 11px;
  min-height: 58px;
  padding: 10px 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.transfer-autocomplete__option:last-child {
  border-bottom: 0;
}

.transfer-autocomplete__option:hover,
.transfer-autocomplete__option.is-active,
.transfer-autocomplete__option[aria-selected='true'] {
  background: rgba(216, 173, 98, 0.14);
}

.transfer-autocomplete__option .transfer-autocomplete__type {
  grid-row: 1 / span 2;
  align-self: start;
  min-width: 0;
  margin-top: 2px;
  color: var(--wp-gold);
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.transfer-autocomplete__option .transfer-autocomplete__main {
  overflow: hidden;
  color: #fff;
  font-family: 'Onest', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.transfer-autocomplete__option .transfer-autocomplete__secondary {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-family: 'Onest', Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.transfer-autocomplete__state {
  min-height: 52px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.transfer-autocomplete__state--loading::before {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin: 0 8px -2px 0;
  border: 2px solid rgba(216, 173, 98, 0.35);
  border-top-color: var(--wp-gold);
  border-radius: 50%;
  content: '';
  animation: transfer-autocomplete-spin 0.7s linear infinite;
}

.transfer-autocomplete__attribution {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.3;
  text-align: right;
}

.transfer-autocomplete__attribution[hidden] {
  display: none;
}

.transfer-autocomplete__attribution a {
  color: rgba(239, 209, 143, 0.78);
  text-decoration: none;
}

.transfer-autocomplete__attribution a:hover,
.transfer-autocomplete__attribution a:focus-visible {
  color: #efd18f;
  text-decoration: underline;
}

@keyframes transfer-autocomplete-spin {
  to {
    transform: rotate(360deg);
  }
}

.transfer-widget__swap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 173, 98, 0.48);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--wp-gold);
  cursor: pointer;
  font: 800 22px/1 'Onest', Arial, sans-serif;
  transition: 0.18s ease;
}

.transfer-widget__swap:hover,
.transfer-widget__swap:focus-visible {
  border-color: var(--wp-gold);
  background: var(--wp-gold);
  color: #111;
}

.transfer-widget__grid,
.transfer-widget__contact {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.transfer-widget__grid .transfer-field {
  grid-column: span 1;
}

.transfer-widget__grid .transfer-field--wide {
  grid-column: span 2;
}

.transfer-widget__contact .transfer-field {
  grid-column: span 2;
}

.transfer-widget__contact .transfer-field--wide {
  grid-column: 1 / -1;
}

.transfer-widget__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(216, 173, 98, 0.28);
  padding-top: 18px;
}

.transfer-widget__footer p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.45;
}

.wp-home .transfer-widget__footer .btn {
  min-width: 210px;
  border-color: var(--wp-gold);
  border-radius: 0;
  background: var(--wp-gold);
  color: #111;
}

.wp-home .transfer-widget__footer .btn:hover,
.wp-home .transfer-widget__footer .btn:focus-visible {
  border-color: #efd18f;
  background: #efd18f;
  color: #111;
}

.wp-about {
  background: #0a0a0a;
}

.wp-about__header {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 54px);
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(216, 173, 98, 0.34);
}

.wp-about__header .section-title {
  width: auto;
  margin: 0;
}

.wp-about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.wp-about__text {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.8;
}

.wp-about-video {
  min-width: 0;
  margin: 0;
}

.wp-about-video__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(216, 173, 98, 0.62);
  border-radius: 4px;
  background: #020202;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.wp-about-video__player,
.wp-about-video__frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.wp-about-video__player {
  overflow: hidden;
  padding: 0;
  background: #020202;
  color: #fff;
  cursor: pointer;
}

.wp-about-video__player:focus-visible {
  outline: 3px solid #efd18f;
  outline-offset: -5px;
}

.wp-about-video__player img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.wp-about-video__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.72) 100%);
}

.wp-about-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.76);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.wp-about-video__play span {
  margin-left: 4px;
  color: #efd18f;
  font-size: 24px;
  line-height: 1;
}

.wp-about-video__meta {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.wp-about-video__meta strong,
.wp-about-video__meta span {
  letter-spacing: 0;
}

.wp-about-video__meta strong {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 600;
}

.wp-about-video__meta span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-transform: uppercase;
}

.wp-about-video__player:hover img {
  filter: brightness(1.06);
  transform: scale(1.018);
}

.wp-about-video__player:hover .wp-about-video__play {
  border-color: #efd18f;
  background: rgba(10, 10, 10, 0.92);
  transform: translate(-50%, -50%) scale(1.06);
}

.fullscreen-slider {
  position: relative;
  overflow: hidden;
  background: #080808;
}

.wp-slider {
  position: relative;
  overflow: hidden;
  --wp-slider-index: 0;
  --wp-slider-offset: 0px;
}

.wp-slider [data-wp-slider-track] {
  display: flex;
  gap: 0;
  transform: translate3d(var(--wp-slider-offset), 0, 0);
  transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  touch-action: pan-y;
}

.wp-slider.is-dragging [data-wp-slider-track] {
  cursor: grabbing;
  transition: none;
}

.wp-services-track {
  display: flex;
  align-items: stretch;
}

.wp-service-panel {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: min(78svh, 720px);
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(216, 173, 98, 0.18);
}

.wp-services-slider .wp-service-panel {
  display: grid;
}

.wp-service-slide {
  width: auto;
  max-width: none;
  height: auto;
  flex: initial;
  min-height: 0;
  overflow: hidden;
}

.wp-services-slider .wp-service-tile {
  min-width: 0;
}

.wp-service-tile--featured {
  grid-row: 1 / span 2;
}

.wp-service-panel .wp-service-tile:only-child {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.wp-service-panel .wp-service-tile:nth-child(2):last-child {
  grid-row: 1 / span 2;
}

.firstscreen-slider__wrap {
  position: relative;
  display: flex;
  height: 100%;
  min-height: min(78svh, 720px);
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.wp-service-panel .firstscreen-slider__wrap {
  height: 100%;
  min-height: 100%;
}

.firstscreen-slider__inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.firstscreen-slider__wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
}

.firstscreen-slider__wrap:hover .firstscreen-slider__inner {
  transform: scale(1.04);
}

.firstscreen-slider__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 20px;
  width: 100%;
  padding: clamp(24px, 4vw, 52px);
}

.wp-service-slide__title {
  max-width: 560px;
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: clamp(28px, 3.2vw, 54px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.wp-service-tile--compact .firstscreen-slider__content {
  gap: 16px;
  padding: clamp(22px, 3vw, 36px);
}

.wp-service-tile--compact .wp-service-slide__title {
  max-width: 420px;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.02;
}

.wp-geo-section {
  background: #0b0b0b;
}

.wp-geo-track {
  display: flex;
  gap: 0;
}

.wp-geo-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  min-height: 680px;
  border-top: 1px solid rgba(216, 173, 98, 0.18);
}

.geography-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(216, 173, 98, 0.18);
}

.geography-gallery__image {
  min-height: 190px;
  overflow: hidden;
  background: #111;
}

.geography-gallery__image:first-child,
.geography-gallery__image:nth-child(4) {
  grid-row: span 2;
}

.geography-gallery__image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.geography-gallery__image:hover img {
  transform: scale(1.04);
}

.geography__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 82px);
  background: #111;
}

.geography__texts h2 {
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: clamp(32px, 4vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.geography__texts p {
  max-width: 560px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.7;
}

.geography__texts .button {
  width: max-content;
  margin-top: 28px;
}

.team-section {
  background: #080808;
  text-align: center;
}

.team-section .section-title {
  margin-bottom: 46px;
}

.team-wrapper {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.team-floor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.team-item {
  flex: 0 1 calc((100% - 84px) / 4);
  width: 100%;
  max-width: calc((100% - 84px) / 4);
  min-width: 0;
  text-align: left;
}

.team-item__image {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}

.team-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12);
}

.team-item h3 {
  margin: 18px 0 6px;
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.team-item .team-item__role {
  margin: 0 0 8px;
  color: #d8ad62;
  font-weight: 700;
  text-transform: uppercase;
}

.team-item p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.section-testimonial {
  background: #111;
}

.section-testimonial .section-title {
  margin-bottom: 38px;
}

.wp-testimonials-track {
  display: flex;
  gap: 0;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 320px;
  border: 1px solid rgba(216, 173, 98, 0.28);
  padding: 28px;
  background: #0a0a0a;
}

.wp-slider-controls {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(216, 173, 98, 0.28);
  padding: 10px;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(12px);
}

.section-testimonial .wp-slider-controls {
  position: static;
  justify-content: center;
  width: max-content;
  margin: 24px auto 0;
}

.wp-slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 173, 98, 0.46);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: #f8f0df;
  cursor: pointer;
  font: 700 18px/1 'Onest', Arial, sans-serif;
  transition: 0.2s ease;
}

.wp-slider-button:hover,
.wp-slider-button:focus-visible {
  border-color: var(--wp-gold);
  background: var(--wp-gold);
  color: #111;
}

.wp-slider-pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 54px;
  justify-content: center;
}

.wp-slider-pagination--fraction {
  min-width: 68px;
  color: rgba(248, 240, 223, 0.86);
  font: 700 13px/1 'Onest', Arial, sans-serif;
}

.wp-slider-dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(248, 240, 223, 0.82);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.72;
  transition: 0.2s ease;
}

.wp-slider-dot.is-active {
  width: 24px;
  border-radius: 999px;
  border-color: var(--wp-gold);
  background: var(--wp-gold);
  opacity: 1;
}

.testimonial-card__stars {
  color: var(--wp-gold);
  font-size: 18px;
  letter-spacing: 0;
}

.testimonial-card h3 {
  margin: 16px 0 12px;
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: none;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.news {
  background: #080808;
}

.news__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 68px);
}

.news__list .section-title {
  width: auto;
  margin: 0 0 28px;
}

.news-list-item {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(216, 173, 98, 0.24);
  padding: 18px 0;
}

.news-list-item span,
.news-card__body span {
  color: var(--wp-gold);
  font-size: 12px;
  text-transform: uppercase;
}

.news-list-item strong {
  color: #fff;
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

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

.news-card {
  border: 1px solid rgba(216, 173, 98, 0.22);
  background: #111;
}

.news-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body {
  padding: 20px;
}

.news-card h3 {
  margin: 8px 0 10px;
  font-family: 'Raleway', 'Manrope', sans-serif;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
}

.news-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.seo {
  background: #111;
}

.seo__inner {
  max-width: 980px;
}

.seo .section-title {
  width: auto;
  margin: 0 0 24px;
}

.seo p,
.seo .wysiwyg-body {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.8;
}

.seo-wrapper {
  margin-top: 24px;
  border-top: 1px solid rgba(216, 173, 98, 0.28);
  padding-top: 18px;
}

.seo-wrapper summary {
  width: max-content;
  cursor: pointer;
  color: var(--wp-gold);
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .belka-hero__grid {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .belka-hero__form {
    max-width: 680px;
  }

  .transfer-widget__header {
    grid-template-columns: 1fr;
  }

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

  .transfer-widget__grid .transfer-field,
  .transfer-widget__grid .transfer-field--wide,
  .transfer-widget__contact .transfer-field {
    grid-column: span 1;
  }

  .transfer-widget__contact .transfer-field--wide {
    grid-column: 1 / -1;
  }

  .wp-service-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    min-height: 620px;
  }

  .wp-service-tile--compact .wp-service-slide__title {
    font-size: clamp(22px, 3vw, 34px);
  }

  .wp-geo-slide,
  .news__grid {
    grid-template-columns: 1fr;
  }

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

  .team-item {
    flex-basis: calc((100% - 28px) / 2);
    max-width: calc((100% - 28px) / 2);
  }
}

@media (max-width: 760px) {
  .wp-home .section {
    padding: 62px 0;
  }

  .firstscreen,
  .belka-hero__grid {
    min-height: auto;
  }

  .belka-hero__grid {
    padding: 46px 0 54px;
  }

  .belka-hero__form {
    padding: 22px;
  }

  .transfer-widget-section {
    padding: 28px 0;
  }

  .transfer-widget {
    padding: 18px;
  }

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

  .transfer-widget__tabs span {
    justify-content: center;
    width: 100%;
    padding-inline: 10px;
    text-align: center;
  }

  .transfer-widget__route {
    grid-template-columns: 1fr;
  }

  .transfer-widget__swap {
    width: 100%;
  }

  .transfer-widget__grid,
  .transfer-widget__contact {
    grid-template-columns: 1fr;
  }

  .transfer-widget__grid .transfer-field,
  .transfer-widget__grid .transfer-field--wide,
  .transfer-widget__contact .transfer-field,
  .transfer-widget__contact .transfer-field--wide {
    grid-column: 1;
  }

  .transfer-widget__footer {
    display: grid;
  }

  .wp-home .transfer-widget__footer .btn {
    width: 100%;
    min-width: 0;
  }

  .belka-hero__lead-form .grid-2,
  .wp-about__header,
  .wp-about__grid,
  .news__cards {
    grid-template-columns: 1fr;
  }

  .wp-about__header {
    gap: 12px;
  }

  .wp-about__grid {
    gap: 30px;
  }

  .wp-about-video__meta {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .wp-about-video__play {
    width: 56px;
    height: 56px;
  }

  .team-wrapper {
    gap: 34px;
  }

  .team-floor,
  .team-grid__floor {
    gap: 18px;
  }

  .team-item,
  .team-card {
    flex-basis: 100%;
    max-width: 520px;
  }

  .wp-service-panel {
    min-height: 690px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(330px, 1.15fr) minmax(260px, 0.85fr);
  }

  .wp-service-tile--featured,
  .wp-service-panel .wp-service-tile:nth-child(2):last-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .wp-service-panel .firstscreen-slider__wrap {
    min-height: 100%;
  }

  .wp-service-tile--featured .wp-service-slide__title {
    font-size: clamp(26px, 8vw, 36px);
  }

  .wp-service-tile--compact .firstscreen-slider__content {
    gap: 12px;
    padding: 20px 16px;
  }

  .wp-service-tile--compact .wp-service-slide__title {
    font-size: clamp(17px, 5.2vw, 23px);
    line-height: 1.05;
  }

  .wp-services-slider .wp-slider-controls {
    right: 14px;
    bottom: 14px;
    gap: 8px;
    padding: 8px;
  }

  .wp-services-slider .wp-slider-button {
    width: 40px;
    height: 40px;
  }

  .wp-services-slider .wp-slider-pagination--fraction {
    min-width: 54px;
  }

  .wp-geo-slide {
    min-height: auto;
  }

  .geography-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(150px, 34vw);
  }

  .geography-gallery__image:first-child,
  .geography-gallery__image:nth-child(4) {
    grid-row: span 1;
  }

  .geography__texts {
    padding: 30px 22px 42px;
  }

  .wp-testimonials-track {
    grid-auto-columns: minmax(284px, 86vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}

