@charset "UTF-8";
:root {
  --black: #0c0c0c;
  --black-2: #141414;
  --black-3: #1c1c1c;
  --white: #fafaf8;
  --cream: #f5f2ec;
  --grey-light: #e8e5de;
  --accent: #ceaa1d;
  --accent-dark: #897112;
  --border: #242424;
  --text-dark: #0c0c0c;
  --text-light: #f0ede6;
  --text-muted: #666666;
  --text-muted-2: #888888;
  --font-main: Space Grotesk, sans-serif;
  --font-mono: Space Mono, monospace;
  --container-max: 1524px;
  --header-h: 90px;
  --radius: 2px;
  --transition: 0.2s ease;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html.lock {
  overflow: hidden;
}

body {
  font-family: var(--font-main);
  margin: 0;
  overflow-x: hidden;
  background-color: #ffffff;
  color: var(--text-light);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
body.lock {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  padding: 0;
  margin: 0;
  cursor: default;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: inherit;
}

img {
  display: block;
}

.container {
  max-width: var(--container-max);
  width: 100%;
  padding: 0 56px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0px 32px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0px 16px;
  }
}

section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 48px 0;
  }
}
section .back-title {
  position: absolute;
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(232, 160, 32, 0.12)),
    to(rgba(232, 160, 32, 0.03))
  );
  background: linear-gradient(
    90deg,
    rgba(232, 160, 32, 0.12) 0%,
    rgba(232, 160, 32, 0.03) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1024px) {
  section .back-title {
    font-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  section .back-title {
    font-size: 70px;
  }
}

.btn {
  background-color: var(--accent);
  color: var(--black);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  padding: 13px 30px;
  border-radius: var(--radius);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
.btn:hover {
  opacity: 0.88;
}
.btn:hover path {
  stroke: var(--black);
}
.btn--ghost {
  background-color: transparent;
  color: var(--text-light);
  border: 0.5px solid var(--text-light);
  font-weight: 500;
}
.btn--ghost:hover {
  opacity: 1;
  border-color: var(--accent);
  color: var(--accent);
}
.btn--ghost-soft {
  background-color: transparent;
  color: var(--text-light);
  border: 0.5px solid var(--border);
  font-weight: 500;
}
.btn--ghost-soft:hover {
  opacity: 1;
  border-color: #555;
}
.btn--white {
  background-color: var(--white);
  color: var(--black);
}
.btn--white:hover {
  opacity: 0.88;
}

.slider-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .slider-navigation {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.slider-navigation .prev,
.slider-navigation .next {
  width: 50px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #ccc;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.slider-navigation .prev:hover,
.slider-navigation .next:hover {
  border: 1px solid #000000;
}
.just-validate-error-label {
  font-size: 12px;
  color: #dc2626;
  min-height: 16px;
}

body.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--accent);
  pointer-events: all;
}
.preloader__inner {
  text-align: center;
}
.preloader__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  font-size: clamp(52px, 14vw, 108px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--text-light);
  font-family: var(--font-main);
}
.preloader__char {
  display: inline-block;
  visibility: hidden;
  will-change: opacity;
}
.preloader__char--accent {
  color: var(--black);
}

@media (prefers-reduced-motion: reduce) {
  .preloader {
    display: none;
  }
}
.slider {
  position: relative;
}

/* Слайдер */
/* Слайдер запущен */
/* Слайдер с точками */
/* Ограничивающая оболочка */
.slick-list {
  overflow: hidden;
}

/* Лента слайдов */
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Слайд */
/* Слайд активный (показывается) */
/* Слайд основной */
/* Слайд по центру */
/* Клонированный слайд */
/* Стрелка */
/* Стрелка влево */
/* Стрелка вправо */
/* Стрелка не активная */
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slick-dots li {
  height: 12px;
}

.slick-dots button {
  font-size: 0;
  width: 12px;
  height: 12px;
  padding: 0;
  background-color: #e1e1e1;
  border: 1px solid #ffffff;
  display: block;
  border-radius: 50%;
}

/* Активная точка */
.slick-dots li.slick-active button {
  background-color: var(--accent-color1);
}

.text_18 {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}

.text_16 {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

.title_18 {
  font-size: 18px;
  font-weight: 600;
}

.title_20 {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .title_20 {
    font-size: 18px;
  }
}

.title_24 {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .title_24 {
    font-size: 20px;
  }
}

.sec-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.sec-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-light);
}

.section-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.section-label::before {
  content: '';
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3px;
  height: 18px;
  border-radius: 1px;
  background: var(--accent);
}
.section--dark .section-label {
  color: var(--text-light);
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin: 0 0 32px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-dark);
}
.section-title::before {
  content: '';
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
@media screen and (max-width: 768px) {
  .section-title {
    margin-bottom: 24px;
    gap: 12px;
  }
  .section-title::before {
    width: 7px;
    height: 7px;
  }
}
.section--dark .section-title {
  color: var(--text-light);
}

.logo__accent {
  color: var(--accent);
}

.logo__dot {
  color: var(--accent);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--black)),
    to(transparent)
  );
  background: linear-gradient(180deg, var(--black) 0%, transparent 100%);
}
.header .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1002;
}
.header .left {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}
.header .header-logo {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-light);
}
.header .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1001;
}
@media screen and (max-width: 768px) {
  .header .header-nav {
    position: fixed;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    top: 0;
    left: 100%;
    background-color: var(--black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: left 0.45s cubic-bezier(1, -0.01, 0.61, 0.93);
    transition: left 0.45s cubic-bezier(1, -0.01, 0.61, 0.93);
    z-index: 1000;
  }
  .header .header-nav.open {
    left: 0;
  }
}
.header .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .header .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
  }
}
.header .nav-link {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.08em;
  position: relative;
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}
.header .nav-link::after {
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--accent);
  position: absolute;
  bottom: -6px;
  left: 0;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.header .nav-link:hover {
  color: var(--text-light);
}
.header .nav-link:hover::after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header .nav-link {
    font-size: 18px;
  }
}
.header .lang-selector-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .lang-selector-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 40px;
  }
  .header .lang-selector-mobile .lang-dropdown__list {
    top: auto;
    bottom: calc(100% + 6px);
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  .header .lang-selector-mobile .lang-dropdown.is-open .lang-dropdown__list {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.header .lang-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  border-left: 0.5px solid var(--text-light);
}
@media screen and (max-width: 768px) {
  .header .lang-selector {
    display: none;
  }
}
.header .lang-dropdown {
  position: relative;
}
.header .lang-dropdown.is-open .lang-dropdown__toggle {
  border-color: rgba(206, 170, 29, 0.55);
  color: var(--accent);
}
.header .lang-dropdown.is-open .lang-dropdown__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header .lang-dropdown.is-open .lang-dropdown__list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header .lang-dropdown__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  min-width: 72px;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-light);
  background-color: transparent;
  border: 0.5px solid var(--text-light);
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-transition:
    border-color var(--transition),
    color var(--transition);
  transition:
    border-color var(--transition),
    color var(--transition);
}
.header .lang-dropdown__toggle:hover {
  border-color: rgba(206, 170, 29, 0.55);
  color: var(--accent);
}
@media screen and (max-width: 768px) {
  .header .lang-dropdown__toggle {
    min-width: 88px;
    font-size: 14px;
    padding: 10px 14px;
  }
}
.header .lang-dropdown__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: var(--accent);
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition:
    transform var(--transition),
    -webkit-transform var(--transition);
}
.header .lang-dropdown__list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  margin: 0;
  padding: 4px;
  list-style: none;
  background: var(--black);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-transition:
    opacity var(--transition),
    visibility var(--transition),
    -webkit-transform var(--transition);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    -webkit-transform var(--transition);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition),
    -webkit-transform var(--transition);
  z-index: 10;
}
.header .lang-dropdown__link {
  display: block;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-light);
  border-radius: calc(var(--radius) - 2px);
  -webkit-transition:
    background-color var(--transition),
    color var(--transition);
  transition:
    background-color var(--transition),
    color var(--transition);
}
.header .lang-dropdown__link:hover {
  background: rgba(206, 170, 29, 0.12);
  color: var(--accent);
}
.header .lang-dropdown__link.is-active {
  color: var(--accent);
}
@media screen and (max-width: 768px) {
  .header .lang-dropdown__link {
    font-size: 14px;
    padding: 10px 14px;
  }
}
.header .burger-menu {
  position: relative;
  display: none;
  width: 28px;
  height: 32px;
  cursor: pointer;
  z-index: 1002;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .header .burger-menu {
    display: block;
  }
}
.header .burger-menu span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  left: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header .burger-menu span:first-child {
  top: 10px;
}
.header .burger-menu span:last-child {
  bottom: 10px;
}
.header .burger-menu.open span {
  background-color: var(--accent);
}
.header .burger-menu.open span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 15px;
}
.header .burger-menu.open span:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 15px;
}

.hero-wrap {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
}

.hero {
  position: relative;
  background: var(--black);
  height: 100%;
  max-height: 100vh;
  max-height: 100dvh;
  padding: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero__watermark-zone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(58%, 720px);
  height: clamp(100px, 18vh, 180px);
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.2)),
    color-stop(22%, rgba(0, 0, 0, 0.75)),
    color-stop(42%, rgb(0, 0, 0)),
    to(rgb(0, 0, 0))
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.75) 22%,
    rgb(0, 0, 0) 42%,
    rgb(0, 0, 0) 100%
  );
  mask-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.2)),
    color-stop(22%, rgba(0, 0, 0, 0.75)),
    color-stop(42%, rgb(0, 0, 0)),
    to(rgb(0, 0, 0))
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.75) 22%,
    rgb(0, 0, 0) 42%,
    rgb(0, 0, 0) 100%
  );
}
@media screen and (max-width: 768px) {
  .hero__watermark-zone {
    width: min(78%, 400px);
    height: clamp(80px, 14vh, 120px);
  }
}
.hero__watermark {
  display: flex;
  position: absolute;
  right: clamp(16px, 3vw, 56px);
  bottom: clamp(20px, 3vh, 36px);
  left: auto;
  top: auto;
  -webkit-transform: none;
  transform: none;
  font-family: var(--font-main);
  font-size: clamp(72px, 11vw, 148px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.85;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  text-align: right;
}
@media screen and (min-width: 1025px) {
  .hero__watermark {
    font-size: clamp(88px, 10vw, 164px);
  }
}
@media screen and (max-width: 768px) {
  .hero__watermark {
    font-size: clamp(58px, 15vw, 92px);
    right: 16px;
    bottom: 16px;
  }
}
.hero__watermark-base {
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 237, 230, 0.12);
}
.hero__watermark-accent {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 225, 0, 0.2);
  text-shadow: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  min-height: 0;
  padding-top: var(--header-h);
  padding-bottom: 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.hero__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 0;
}
.hero__grid > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 1.5rem);
  flex: 1 1 calc(50% - 1.5rem);
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .hero__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__grid > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 100%;
  }
}
.hero__text {
  min-width: 0;
}
.hero__visual {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 540px;
  overflow: visible;
  z-index: 1;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .hero__visual {
    min-height: 380px;
    max-width: none;
    margin: 0 auto;
  }
}
.hero__orb {
  --orb-size: min(540px, 100%);
  position: relative;
  width: var(--orb-size);
  aspect-ratio: 1;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .hero__orb {
    --orb-size: min(320px, 80vw);
  }
}
.hero__orb--paused .hero__orb-orbit {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.hero__orb-orbit {
  --count: 6;
  --duration: 60s;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: visible;
}
.hero__orb-orbit--1 {
  --count: 6;
  --duration: 60s;
  -webkit-animation: hero-orb-spin var(--duration) linear infinite;
  animation: hero-orb-spin var(--duration) linear infinite;
}
.hero__orb-orbit--2 {
  --count: 5;
  --duration: 48s;
  width: 72%;
  height: 72%;
  animation: hero-orb-spin var(--duration) linear infinite reverse;
}
.hero__orb-orbit--3 {
  --count: 4;
  width: 48%;
  height: 48%;
}
.hero__orb-orbit--4 {
  --count: 2;
  width: 24%;
  height: 24%;
}
.hero__orb-ring {
  position: absolute;
  inset: 0;
  border: 0.5px solid var(--accent);
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
}
.hero__orb-orbit--2 .hero__orb-ring {
  opacity: 0.32;
}
.hero__orb-orbit--3 .hero__orb-ring {
  opacity: 0.4;
}
.hero__orb-orbit--4 .hero__orb-ring {
  opacity: 0.55;
  border-color: var(--text-light);
}
.hero__orb-axis {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent);
  opacity: 0.12;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hero__orb-axis--h {
  width: 100%;
  height: 0.5px;
}
.hero__orb-axis--v {
  width: 0.5px;
  height: 100%;
}
.hero__orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-box-shadow: 0 0 20px rgba(255, 225, 0, 0.35);
  box-shadow: 0 0 20px rgba(255, 225, 0, 0.35);
}
.hero__orb-tag {
  --angle: calc(360deg / var(--count) * var(--i));
  position: absolute;
  left: 0;
  top: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  padding: 6px 11px;
  border: 0.5px solid rgba(255, 225, 0, 0.35);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.92);
  -webkit-box-shadow: 0 0 14px rgba(255, 225, 0, 0.1);
  box-shadow: 0 0 14px rgba(255, 225, 0, 0.1);
  offset-path: circle(50% at 50% 50%);
  offset-distance: calc(75% + 100% * var(--i) / var(--count));
  offset-anchor: center;
  offset-rotate: auto;
}
@supports not (offset-path: circle(50% at 50% 50%)) {
  .hero__orb-tag {
    top: 50%;
    left: 50%;
    offset-path: none;
    offset-distance: unset;
    offset-rotate: unset;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(var(--angle))
      translate3d(0, -50%, 0);
    transform: translate3d(-50%, -50%, 0) rotate(var(--angle))
      translate3d(0, -50%, 0);
  }
}
.hero__orb-orbit--1 .hero__orb-tag {
  border-color: rgba(255, 225, 0, 0.45);
}
.hero__orb-orbit--2 .hero__orb-tag {
  font-size: 8px;
  color: var(--grey-light);
  border-color: rgba(255, 225, 0, 0.38);
}
.hero__orb-orbit--3 .hero__orb-tag {
  font-size: 8px;
  font-weight: 700;
  color: var(--accent);
  border-color: rgba(255, 225, 0, 0.5);
  -webkit-box-shadow: 0 0 16px rgba(255, 225, 0, 0.14);
  box-shadow: 0 0 16px rgba(255, 225, 0, 0.14);
}
.hero__orb-orbit--4 .hero__orb-tag {
  font-size: 9px;
  color: var(--accent);
  border-color: rgba(255, 225, 0, 0.6);
  font-weight: 700;
  -webkit-box-shadow: 0 0 20px rgba(255, 225, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 225, 0, 0.2);
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hero__title {
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text-light);
  max-width: 620px;
}
.hero__accent {
  color: var(--accent);
}
.hero__outline {
  -webkit-text-stroke: 2px var(--text-light);
  color: transparent;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 400px;
  margin-top: 1.75rem;
}
.hero__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2.75rem;
}
.hero__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: auto;
  padding-top: 1.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.hero__stats > div {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.hero__stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
}
.hero__stat-num span {
  color: var(--accent);
}
.hero__stat-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0.5px solid var(--border);
  background: var(--black-2);
  color: var(--text-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition:
    border-color var(--transition),
    color var(--transition);
  transition:
    border-color var(--transition),
    color var(--transition);
}
.hero__scroll:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hero__scroll svg {
  display: block;
}

@-webkit-keyframes hero-orb-spin {
  from {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  to {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}

@keyframes hero-orb-spin {
  from {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  to {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__orb-orbit {
    -webkit-animation: none !important;
    animation: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .hero__title {
    font-size: clamp(36px, 8vw, 56px);
  }
  .hero__scroll {
    bottom: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-wrap {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: none;
  }
  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: none;
    overflow: visible;
  }
  .hero__content {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: calc(var(--header-h) + 0.75rem);
    padding-bottom: 1.5rem;
  }
  .hero__grid {
    gap: 1.5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .hero__text {
    text-align: left;
  }
  .hero__eyebrow {
    font-size: 9px;
    margin-bottom: 1rem;
    gap: 10px;
  }
  .hero__eyebrow::before {
    width: 20px;
  }
  .hero__title {
    font-size: clamp(32px, 9vw, 44px);
    max-width: none;
  }
  .hero__outline {
    -webkit-text-stroke-width: 1.5px;
  }
  .hero__sub {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 1rem;
    max-width: none;
  }
  .hero__cta {
    margin-top: 1.25rem;
    gap: 10px;
  }
  .hero__cta .btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    font-size: 13px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__visual {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: min(320px, 78vw);
    min-height: min(320px, 78vw);
    max-width: min(320px, 78vw);
    max-height: none;
    margin: 0.75rem auto 0;
    overflow: visible;
  }
  .hero__orb {
    --orb-size: 100%;
    width: 100%;
  }
  .hero__orb-orbit--1 {
    --duration: 80s;
  }
  .hero__orb-orbit--2 {
    --duration: 64s;
  }
  .hero__orb-tag {
    font-size: 6px;
    padding: 4px 7px;
    letter-spacing: 0.1em;
  }
  .hero__orb-orbit--2 .hero__orb-tag {
    font-size: 6px;
  }
  .hero__orb-orbit--3 .hero__orb-tag {
    font-size: 7px;
    padding: 4px 8px;
  }
  .hero__orb-orbit--4 .hero__orb-tag {
    font-size: 7px;
  }
  .hero__stats {
    gap: 1rem 1.5rem;
    margin-top: 40px;
    padding-top: 1rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .hero__stats > div {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 0.75rem);
    flex: 0 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
  .hero__stat-num {
    font-size: 24px;
  }
  .hero__stat-lbl {
    font-size: 8px;
  }
  .hero__scroll {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .hero__content {
    padding-top: calc(var(--header-h) + 0.5rem);
  }
  .hero__title {
    font-size: clamp(28px, 8.5vw, 36px);
  }
  .hero__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .hero__visual {
    width: min(280px, 82vw);
    min-height: min(280px, 82vw);
    max-width: min(280px, 82vw);
  }
  .hero__stats {
    gap: 0.75rem 1rem;
  }
  .hero__stat-num {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) and (max-height: 740px) {
  .hero__grid {
    gap: 1rem;
  }
  .hero__eyebrow {
    margin-bottom: 0.5rem;
  }
  .hero__sub {
    margin-top: 0.75rem;
    font-size: 13px;
  }
  .hero__cta {
    margin-top: 1rem;
  }
  .hero__visual {
    width: min(240px, 70vw);
    min-height: min(240px, 70vw);
    max-width: min(240px, 70vw);
    margin-top: 0.5rem;
  }
}
.about {
  background: var(--cream);
  color: var(--text-dark);
}
.about__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.about__head-main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 520px;
  flex: 1 1 520px;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.about__title {
  max-width: 920px;
  font-size: clamp(26px, 2.4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-dark);
}
.about__mark {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  white-space: nowrap;
}
.about__mark span {
  color: var(--accent-dark);
}
.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media screen and (max-width: 1024px) {
  .about__body {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.about__gallery {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 340px;
  flex: 1 1 340px;
  max-width: 42%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}
@media screen and (max-width: 1024px) {
  .about__gallery {
    max-width: 100%;
  }
}
.about__photo {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 0.5px solid rgba(0, 0, 0, 0.06);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1025px) {
  .about__photo {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    min-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .about__photo--tall {
    aspect-ratio: 4/3.2;
  }
}
@media screen and (max-width: 1024px) {
  .about__photo--wide {
    aspect-ratio: 16/11;
  }
}
.about__photo-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(
    145deg,
    var(--white) 0%,
    var(--grey-light) 55%,
    #ddd9d0 100%
  );
  color: var(--text-muted-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .about__photo-placeholder {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 0;
  }
}
.about__side {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 480px;
  flex: 1 1 480px;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.75rem;
}
.about__lead {
  max-width: 520px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-dark);
}
.about__cta {
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.about__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}
.about__stats-col {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.about__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  padding: 24px;
  min-width: 0;
}
.about__card--main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(58% - 8px);
  flex: 1 1 calc(58% - 8px);
  min-height: 300px;
}
.about__card--compact {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 112px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.about__card--brands {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 172px;
}
.about__card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.about__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.about__card-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--text-dark);
  opacity: 0.85;
}
.about__card-text {
  margin-top: auto;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}
.about__card-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
}
.about__card-index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted-2);
}
.about__card-num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}
.about__card-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .about__card--main,
  .about__card--brands {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    min-height: 0;
  }
  .about__stats-col {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-orient: vertical;
  }
  .about__photo--tall,
  .about__photo--wide {
    aspect-ratio: 6/2.5;
  }
}
.services {
  background: var(--black);
  color: var(--text-light);
}
.services__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services__head-main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 520px;
  flex: 1 1 520px;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.services__title {
  max-width: 920px;
  font-size: clamp(26px, 2.4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-light);
}
.services__visual {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: clamp(168px, 16vw, 240px);
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.services__visual svg {
  display: block;
  width: 100%;
  height: auto;
}
.services__list {
  border-top: 0.5px solid var(--border);
}
.services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-bottom: 0.5px solid var(--border);
  color: rgba(255, 255, 255, 0.599);
  -webkit-transition: color 0.35s ease;
  transition: color 0.35s ease;
}
.services__item.is-active,
.services__item:hover {
  color: var(--text-light);
}
.services__item.is-active .services__name,
.services__item:hover .services__name {
  color: var(--text-light);
}
.services__item.is-active .services__tag,
.services__item:hover .services__tag {
  color: rgba(240, 237, 230, 0.85);
}
.services__item.is-active .services__desc,
.services__item:hover .services__desc {
  color: rgba(240, 237, 230, 0.75);
}
.services__item.is-active .services__preview,
.services__item:hover .services__preview {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.services__col {
  padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 24px);
  border-right: 0.5px solid var(--border);
  min-width: 0;
}
.services__col:last-child {
  border-right: none;
}
.services__col--title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 220px;
  flex: 1 1 220px;
  max-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}
.services__col--tags {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 240px;
  flex: 1 1 240px;
  max-width: 320px;
}
.services__col--desc {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 280px;
  flex: 1 1 280px;
}
.services__col--preview {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 220px;
  flex: 1 1 220px;
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.services__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: inherit;
  opacity: 0.7;
}
.services__name {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: inherit;
  -webkit-transition: color 0.35s ease;
  transition: color 0.35s ease;
}
.services__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  list-style: none;
}
.services__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.85;
  -webkit-transition: color 0.35s ease;
  transition: color 0.35s ease;
}
.services__tag::before {
  content: '# ';
  opacity: 0.5;
}
.services__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: inherit;
  opacity: 0.85;
  max-width: 360px;
  -webkit-transition: color 0.35s ease;
  transition: color 0.35s ease;
}
.services__preview {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
  -webkit-transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    -webkit-transform 0.35s ease;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    -webkit-transform 0.35s ease;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
}
.services__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__item.is-active .services__preview,
.services__item:hover .services__preview {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.services__preview-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    var(--black-3) 0%,
    var(--black-2) 45%,
    #2a2800 100%
  );
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 225, 0, 0.45);
  border: 0.5px solid rgba(255, 225, 0, 0.12);
}

@media screen and (max-width: 1024px) {
  .services__col {
    border-right: none;
  }
  .services__col--title,
  .services__col--tags,
  .services__col--desc,
  .services__col--preview {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .services__col--title {
    padding-bottom: 12px;
  }
  .services__col--tags {
    padding-top: 0;
    padding-bottom: 12px;
  }
  .services__col--desc {
    padding-top: 0;
  }
  .services__col--preview {
    padding-top: 0;
    padding-bottom: 28px;
  }
  .services__preview {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    transform: none;
    max-width: 360px;
  }
  .services__item:not(.is-active) .services__preview {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .services__visual {
    width: min(270px, 72vw);
    margin: 0 auto;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .services__desc {
    max-width: none;
    font-size: 13px;
  }
  .services__tag {
    font-size: 9px;
  }
}
.process {
  background: var(--cream);
  color: var(--text-dark);
}
.process__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.process__head-main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 520px;
  flex: 1 1 520px;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.process__title {
  max-width: 920px;
  font-size: clamp(26px, 2.4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-dark);
}
.process__visual {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: clamp(200px, 18vw, 280px);
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.process__visual svg {
  display: block;
  width: 100%;
  height: auto;
}
.process__steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 0 minmax(0, 1fr) 0 minmax(0, 1fr) 0
    minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0.5px solid rgba(0, 0, 0, 0.1);
}
.process__step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(12px, 2vw, 18px);
  padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 24px);
  border-right: 0.5px solid rgba(0, 0, 0, 0.1);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  min-width: 0;
}
.process__step:last-child {
  border-right: none;
}
.process__step::before {
  content: '';
  position: absolute;
  top: clamp(24px, 3vw, 36px);
  left: clamp(16px, 2vw, 24px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  -webkit-box-shadow: 0 0 0 4px rgba(206, 170, 29, 0.15);
  box-shadow: 0 0 0 4px rgba(206, 170, 29, 0.15);
}
.process__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted-2);
  padding-left: 20px;
}
.process__name {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.process__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.process__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 999px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted-2);
}

@media screen and (max-width: 1024px) {
  .process__visual {
    width: min(240px, 70vw);
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .process__steps {
    -ms-grid-columns: (minmax(0, 1fr)) [2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process__step:nth-child(2n) {
    border-right: none;
  }
}
@media screen and (max-width: 640px) {
  .process__visual {
    width: min(220px, 88vw);
  }
  .process__steps {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .process__step {
    border-right: none;
  }
}
.faq {
  background: var(--black);
  color: var(--text-light);
}
.faq__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.faq__head-main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 520px;
  flex: 1 1 520px;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.faq__title {
  max-width: 920px;
  font-size: clamp(26px, 2.4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-light);
}
.faq__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(260px, 0.9fr) minmax(0, 1.45fr);
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.45fr);
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: clamp(24px, 4vw, 48px);
}
.faq__media {
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.faq__photo {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--black-2);
}
.faq__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}
.faq__photo-placeholder {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(
    160deg,
    var(--black-3) 0%,
    var(--black-2) 45%,
    #2a2800 100%
  );
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.35);
}
.faq__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 480px;
  flex: 1 1 480px;
  min-width: 0;
}
.faq__list {
  border-top: 0.5px solid var(--border);
}
.faq__item {
  border-bottom: 0.5px solid var(--border);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.faq__item:hover {
  background: rgba(255, 255, 255, 0.025);
}
.faq__item:hover .faq__question {
  color: var(--text-light);
}
.faq__item:hover .faq__icon {
  border-color: rgba(206, 170, 29, 0.55);
  background: rgba(206, 170, 29, 0.08);
}
.faq__item.is-open {
  background: rgba(206, 170, 29, 0.04);
}
.faq__item.is-open .faq__body {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.faq__item.is-open .faq__icon {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-color: rgba(206, 170, 29, 0.65);
  background: rgba(206, 170, 29, 0.12);
}
.faq__item.is-open .faq__question {
  color: var(--text-light);
}
.faq__item.is-open .faq__answer {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: clamp(20px, 3vw, 28px) clamp(12px, 2vw, 20px);
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
  font-family: inherit;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: left;
  color: rgba(240, 237, 230, 0.72);
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.faq__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0.5px solid rgba(206, 170, 29, 0.35);
  position: relative;
  -webkit-transition:
    border-color 0.3s ease,
    background 0.3s ease,
    -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease,
    background 0.3s ease;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.faq__icon::before {
  width: 10px;
  height: 1px;
}
.faq__icon::after {
  width: 1px;
  height: 10px;
}
.faq__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    -ms-grid-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__body-inner {
  overflow: hidden;
  min-height: 0;
}
.faq__answer {
  margin: 0;
  padding: 0 clamp(12px, 2vw, 20px) clamp(20px, 3vw, 28px);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(240, 237, 230, 0.65);
  opacity: 0;
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-transition:
    opacity 0.4s ease 0.06s,
    -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.04s;
  transition:
    opacity 0.4s ease 0.06s,
    -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.04s;
  transition:
    opacity 0.4s ease 0.06s,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.04s;
  transition:
    opacity 0.4s ease 0.06s,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.04s,
    -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.04s;
}

@media screen and (max-width: 1024px) {
  .faq__layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .faq__media {
    min-width: 0;
  }
  .faq__photo {
    min-height: 280px;
    aspect-ratio: 16 / 10;
    height: auto;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}
@media screen and (max-width: 768px) {
  .faq__question {
    gap: 1rem;
    padding-left: 8px;
    padding-right: 8px;
  }
  .faq__answer {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
  }
  .faq__photo {
    min-height: 220px;
    border-radius: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq__body,
  .faq__answer,
  .faq__icon,
  .faq__question,
  .faq__item {
    -webkit-transition: none;
    transition: none;
  }
  .faq__answer {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  .faq__item:not(.is-open) .faq__answer {
    opacity: 0;
  }
}
.contact {
  background: var(--black);
  color: var(--text-light);
}
.contact__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.contact__head-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 720px;
}
.contact__title {
  font-size: clamp(26px, 2.4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-light);
}
.contact__lead {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
  color: rgba(240, 237, 230, 0.65);
  max-width: 560px;
}
.contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: clamp(20px, 3vw, 32px);
}
.contact__card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 480px;
  flex: 1 1 480px;
  min-width: 0;
  background: var(--white);
  color: var(--text-dark);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  border: 0.5px solid rgba(0, 0, 0, 0.06);
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.quick-contact__form {
  position: relative;
}
.contact__form-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.contact__form-sub {
  margin: 0 0 clamp(24px, 3vw, 32px);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}
.contact__form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}
.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px;
}
.contact__row .contact__field {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
  min-width: 0;
}
.contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.contact__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted-2);
}
.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: var(--cream);
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-dark);
  -webkit-transition:
    border-color 0.2s ease,
    background 0.2s ease;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.contact__input::-webkit-input-placeholder,
.contact__select::-webkit-input-placeholder,
.contact__textarea::-webkit-input-placeholder {
  color: var(--text-muted-2);
}
.contact__input::-moz-placeholder,
.contact__select::-moz-placeholder,
.contact__textarea::-moz-placeholder {
  color: var(--text-muted-2);
}
.contact__input:-ms-input-placeholder,
.contact__select:-ms-input-placeholder,
.contact__textarea:-ms-input-placeholder {
  color: var(--text-muted-2);
}
.contact__input::-ms-input-placeholder,
.contact__select::-ms-input-placeholder,
.contact__textarea::-ms-input-placeholder {
  color: var(--text-muted-2);
}
.contact__input::placeholder,
.contact__select::placeholder,
.contact__textarea::placeholder {
  color: var(--text-muted-2);
}
.contact__input:hover,
.contact__select:hover,
.contact__textarea:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.contact__input.is-invalid,
.contact__select.is-invalid,
.contact__textarea.is-invalid {
  border-color: #c0392b;
}
.contact__input.is-valid,
.contact__select.is-valid,
.contact__textarea.is-valid {
  border-color: rgba(206, 170, 29, 0.65);
}
.contact__textarea {
  min-height: 140px;
  resize: vertical;
}
.phone-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.phone-field__country {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 108px;
  flex: 0 0 108px;
  width: 108px;
  min-width: 108px;
  padding-left: 12px;
  padding-right: 32px;
  font-size: 13px;
}
.phone-field__input {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
}
.contact__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888888' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact__submit {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: 8px;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.contact__media {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 360px;
  flex: 1 1 360px;
  max-width: 42%;
  min-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.contact__photo {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: clamp(360px, 50vh, 560px);

  border-radius: 20px;
  overflow: hidden;
  border: 0.5px solid var(--border);
}
.contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__photo-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(
    160deg,
    var(--black-3) 0%,
    var(--black-2) 45%,
    #2a2800 100%
  );
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.35);
}
.contact__caption {
  padding: 0 4px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(240, 237, 230, 0.55);
}
.contact__caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
}

.contact-success {
  display: none;
  max-width: 420px;
  padding: 32px;
  background: var(--white);
  color: var(--text-dark);
  border-radius: 20px;
  text-align: center;
}
.contact-success__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.contact-success__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Fancybox: success modal centered with dimmed backdrop */
.fancybox__container {
  z-index: 100000;
}
.fancybox__backdrop {
  background: rgba(12, 12, 12, 0.72);
}
.fancybox__slide {
  padding: 24px;
}
.fancybox__content.contact-success,
.fancybox__content .contact-success,
.fancybox__slide .contact-success {
  display: block;
  width: min(420px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 36px 32px;
  background: #fff;
  color: var(--text-dark);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .contact__media {
    max-width: 100%;
    min-width: 0;
  }
  .contact__photo {
    min-height: 320px;
  }
}
@media screen and (max-width: 768px) {
  .contact__card {
    padding: 24px 20px;
  }
  .contact__submit {
    width: 100%;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
}
.footer-reveal {
  position: relative;
  z-index: 1;
}
.footer-reveal .contact {
  position: sticky;
  bottom: 0;
  z-index: 2;
  min-height: 100vh;
  -webkit-box-shadow: 0 -32px 64px rgba(0, 0, 0, 0.35);
  box-shadow: 0 -32px 64px rgba(0, 0, 0, 0.35);
}

.footer {
  position: relative;
  z-index: 1;
  background: var(--cream);
  color: var(--text-dark);
  padding: clamp(48px, 6vw, 72px) 0 clamp(28px, 4vw, 40px);
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem 3rem;
  padding-bottom: clamp(32px, 5vw, 48px);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}
.footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
}
.footer__logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-dark);
}
.footer__tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}
.footer__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
}
.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  min-width: 120px;
}
.footer__label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted-2);
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: var(--accent-dark);
}
.footer__email {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer__email:hover {
  color: var(--accent-dark);
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: clamp(24px, 4vw, 32px);
}
.footer__copy {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted-2);
}
.footer__mark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-2);
}

@media screen and (max-width: 768px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__cols {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-reveal .contact {
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.page-hero {
  padding: 100px 0 48px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef7f0 50%, #e8f4f6 100%);
}
@media screen and (max-width: 768px) {
  .page-hero {
    padding: 88px 0 32px;
  }
}
.page-hero .page-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  max-width: 720px;
}
@media screen and (max-width: 768px) {
  .page-hero .page-hero-title {
    font-size: 32px;
  }
}
.page-hero .page-hero-text {
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 700px;
}
.page-hero--compact {
  padding: 96px 0 0;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .page-hero--compact {
    padding: 88px 0 0;
  }
}
.page-hero--compact .container {
  max-width: 860px;
}
.page-hero--compact .single-post-back {
  margin-bottom: 0;
}

body.page-inner .mobile-floating-cta {
  display: none;
}

.nav-link.active {
  color: var(--grey-blue);
  font-weight: 600;
}

.hidden {
  display: none !important;
}

body.aos-not-loaded [data-aos] {
  opacity: 1 !important;
  -webkit-transform: none !important;
  transform: none !important;
  pointer-events: auto;
}

.blog .section-title {
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .blog .section-title {
    text-align: left;
    margin-bottom: 32px;
  }
  .blog .section-title::before {
    display: none;
  }
}

.blog-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .blog-filters {
    margin-bottom: 32px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.blog-filter {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  -webkit-transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.blog-filter:hover {
  border-color: var(--grey-blue);
  color: var(--grey-blue);
}
.blog-filter.is-active {
  border-color: transparent;
  background: var(--gradient);
  color: #fff;
}

.blog-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 28px;
}
@media screen and (max-width: 640px) {
  .blog-grid {
    gap: 20px;
  }
}
.blog-grid .blog-card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc((100% - 56px) / 3);
  flex: 1 1 calc((100% - 56px) / 3);
  min-width: 0;
}
@media screen and (max-width: 1200px) {
  .blog-grid .blog-card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc((100% - 28px) / 2);
    flex: 1 1 calc((100% - 28px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .blog-grid .blog-card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
  -webkit-transition:
    border-color 0.2s ease,
    opacity 0.25s ease,
    -webkit-box-shadow 0.2s ease,
    -webkit-transform 0.25s ease;
  transition:
    border-color 0.2s ease,
    opacity 0.25s ease,
    -webkit-box-shadow 0.2s ease,
    -webkit-transform 0.25s ease;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    opacity 0.25s ease,
    transform 0.25s ease,
    -webkit-box-shadow 0.2s ease,
    -webkit-transform 0.25s ease;
}
.blog-card.is-hidden {
  display: none;
}
.blog-card:hover {
  border-color: rgba(121, 200, 148, 0.5);
  -webkit-box-shadow: 0 12px 36px rgba(36, 48, 82, 0.1);
  box-shadow: 0 12px 36px rgba(36, 48, 82, 0.1);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.blog-card .blog-card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.blog-card .blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f3f4f6;
}
.blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition:
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
}
.blog-card .blog-card-image:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
.blog-card .blog-card-image.no-image {
  background: var(--gradient);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px;
}
.blog-card .blog-card-image.no-image img {
  display: none;
}
.blog-card .blog-card-fallback {
  color: #fff;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  max-width: 90%;
}
.blog-card .blog-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.blog-card .blog-card-badge--news {
  background: var(--grey-blue);
}
.blog-card .blog-card-badge--events {
  background: var(--blue);
}
.blog-card .blog-card-badge--vacancies {
  background: var(--light-green);
}
.blog-card .blog-card-body {
  padding: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 10px;
}
.blog-card .blog-card-date {
  font-size: 13px;
  color: #9ca3af;
}
.blog-card .blog-card-title {
  color: var(--blue);
  line-height: 1.3;
}
.blog-card .blog-card-excerpt {
  color: #6b7280;
  line-height: 1.5;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card .blog-card-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-blue);
  margin-top: 4px;
}

.blog-empty {
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed #d1d5db;
  border-radius: 16px;
  background: #f9fafb;
  margin-top: 8px;
}
.blog-empty .title_24 {
  color: var(--blue);
  margin-bottom: 8px;
}
.blog-empty .text_16 {
  color: #6b7280;
}

.single-post {
  padding: 16px 0 72px;
}
@media screen and (max-width: 768px) {
  .single-post {
    padding-bottom: 56px;
  }
}
.single-post .container {
  max-width: 860px;
}
.single-post--standalone {
  padding-top: 96px;
}
@media screen and (max-width: 768px) {
  .single-post--standalone {
    padding-top: 88px;
  }
}
.single-post--standalone .single-post-back {
  margin-bottom: 24px;
}

.single-post-back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-blue);
  margin-bottom: 24px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.single-post-back:hover {
  color: var(--light-green);
}

.single-post-header {
  margin-bottom: 24px;
}

.single-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 12px;
}

.single-post-date {
  font-size: 14px;
  color: #9ca3af;
}

.single-post-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .single-post-title {
    font-size: 28px;
  }
}

.single-post-cover {
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 28px;
  aspect-ratio: 16/9;
  background: #f3f4f6;
}
.single-post-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-post-content {
  font-size: 17px;
  line-height: 1.65;
  color: #374151;
}
.single-post-content > *:last-child {
  margin-bottom: 0;
}
.single-post-content p {
  margin: 0 0 1em;
  cursor: text;
}
.single-post-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
  margin: 1.5rem 0 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}
.single-post-content h2:first-child {
  margin-top: 0;
}
.single-post-content ul {
  margin: 0 0 1rem;
  padding-left: 1.5em;
  list-style: disc;
}
.single-post-content ul li {
  margin-bottom: 0.35em;
  padding-left: 0.15em;
  cursor: text;
}
.single-post-content ul li:last-child {
  margin-bottom: 0;
}

.single-post-event-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 12px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(121, 200, 148, 0.12)),
    to(rgba(99, 166, 173, 0.12))
  );
  background: linear-gradient(
    90deg,
    rgba(121, 200, 148, 0.12) 0%,
    rgba(99, 166, 173, 0.12) 100%
  );
  margin: 0 0 24px;
}
.single-post-event-info .single-post-event-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 6px 10px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--blue);
}
.single-post-event-info .single-post-event-row strong {
  font-weight: 600;
  min-width: 88px;
}

.single-post-actions {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-post-actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
}

.header-contact-btn {
  padding: 10px 18px;
  font-size: 13px;
  white-space: nowrap;
}
.header-contact-btn--desktop {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.header .nav-item--cta {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-contact-btn--desktop {
    display: none;
  }
  .header .nav-item--cta {
    display: block;
    margin-top: 12px;
  }
  .header .nav-item--cta .header-contact-btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.quick-contact {
  position: fixed;
  inset: 0;
  z-index: 100010;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.quick-contact.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.quick-contact__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.72);
}
.quick-contact__dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 32px 28px 28px;
  background: #fff;
  color: var(--text-dark);
  border-radius: 20px;
  -webkit-box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.quick-contact__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(12, 12, 12, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
}
.quick-contact__title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.quick-contact__subtitle {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}
.quick-contact__field {
  margin-bottom: 16px;
}
.quick-contact__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
}
.quick-contact__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(12, 12, 12, 0.12);
  border-radius: 10px;
  background: var(--white);
  font: inherit;
}
.quick-contact .phone-field__country {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 108px;
  flex: 0 0 108px;
  width: 108px;
  min-width: 108px;
  padding-right: 32px;
  font-size: 13px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888888' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.quick-contact__input.is-invalid {
  border-color: #d14343;
}
.quick-contact__hint {
  margin: 0 0 18px;
  font-size: 12px;
  color: var(--text-muted);
}
.quick-contact__submit {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.quick-contact__success {
  text-align: center;
}
