@charset "UTF-8";
.header {
  display: flex;
  width: 100%;
  min-height: 140px;
  height: auto;
  border-bottom: 1px solid #e0d1bc;
}

/* Вертикальна лінія після лого */
.header__logo-wrapper {
  padding: 0px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e0d1bc;
  /* ТА САМА ВЕРТИКАЛЬНА ЛІНІЯ */
}

.header__main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.logo {
  width: 120px;
  height: 134px;
  object-fit: contain;
  /* Логотип масштабується так, щоб повністю вписатися в розміри без обрізки */
}

/* Горизонтальна лінія між top-bar та nav */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  border-bottom: 1px solid #e0d1bc;
  /* ТА САМА ГОРИЗОНТАЛЬНА ЛІНІЯ */
  font-size: 12px;
  color: #1a2b3c;
}

.top-bar__left {
  display: flex;
  /* Вмикає режим флекс-контейнера */
  flex-direction: row;
  /* Вибудовує елементи в рядок (це значення за замовчуванням) */
  gap: 30px;
  /* Створює однаковий відступ між елементами (телефон та годинник) */
}

.top-bar__item {
  display: flex;
  align-items: center;
  /* Вирівнює іконку та текст по вертикальній осі (по центру) */
  gap: 8px;
  /* Відступ між іконкою та самим текстом */
}

.top-bar__icon {
  color: #bf9874;
  fill: currentColor;
  width: 28px;
  height: 28px;
}

.header__nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-grow: 1;
}

.btn-consultation {
  border: 1px solid #001025;
  padding: 10px 25px 16px 32px;
  width: 228px;
  height: 49px;
  background: transparent;
  cursor: pointer;
  margin: 15px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #001025;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 120ms ease, box-shadow 180ms ease;
}
.btn-consultation:hover {
  background-color: #bf9874;
  border-color: #bf9874;
  color: #FFFFFF;
}
.btn-consultation:active {
  background-color: #bf9874;
  border-color: #bf9874;
  color: #FFFFFF;
  transform: translateY(1px);
}
.btn-consultation:focus-visible {
  background-color: #bf9874;
  border-color: #bf9874;
  color: #FFFFFF;
  outline: 2px solid rgba(196, 165, 123, 0.55);
  outline-offset: 3px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2em;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #001025;
  transition: color 200ms ease;
}
.nav-link::before {
  content: "←";
  font-size: 24px;
  line-height: 1;
  width: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #bf9874;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 180ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-link:hover, .nav-link:focus-visible {
  color: #1a2b3c;
}
.nav-link:hover::before, .nav-link:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}
.nav-link:hover .nav-link__icon, .nav-link:focus-visible .nav-link__icon {
  opacity: 0;
  transform: translateX(6px);
}
.nav-link:active {
  transform: translateY(1px);
  color: #bf9874;
  box-shadow: 0 2px 0 0 rgba(191, 152, 116, 0.35);
}
.nav-link:active::before {
  opacity: 1;
  transform: translateX(0);
}
.nav-link:active .nav-link__icon {
  opacity: 0;
  transform: translateX(6px);
}

.nav-link__icon {
  width: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  line-height: 1;
  color: #1a2b3c;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 180ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.top-bar__left {
  flex: 1;
  /* займе всю ширину top-bar */
}

.top-bar__item--social {
  margin-left: auto;
  /* виштовхує блок вправо */
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.top-bar__item--social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 152, 116, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: transform 140ms ease, background 180ms ease, border-color 180ms ease;
}

.top-bar__item--social a:hover,
.top-bar__item--social a:focus-visible {
  transform: translateY(-1px);
  background: rgba(191, 152, 116, 0.12);
  border-color: rgba(191, 152, 116, 0.55);
}

.top-bar__item--social .top-bar__icon {
  color: #bf9874;
  fill: currentColor;
  transition: transform 140ms ease, opacity 180ms ease;
  width: 22px;
  height: 22px;
}

.top-bar__item--social a:hover .top-bar__icon {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* ===== Responsive header ===== */
@media (max-width: 1200px) {
  /* <= 1200 */
  .header {
    min-height: 120px;
    height: auto;
  }
  .header__logo-wrapper {
    padding: 24px 28px;
  }
  .top-bar {
    padding: 10px 24px;
  }
  .header__nav-wrapper {
    padding: 16px 24px;
  }
  .header__nav {
    gap: 28px;
  }
  .nav-link {
    font-size: 15px;
    letter-spacing: 1px;
  }
  .btn-consultation {
    width: auto;
    min-width: 210px;
  }
}
@media (max-width: 992px) {
  /* <= 992 */
  .header {
    height: auto;
  }
  .top-bar__left {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .header__nav {
    gap: 18px;
    flex-wrap: wrap;
  }
  .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  /* <= 768 */
  .header {
    flex-direction: column;
  }
  .header__logo-wrapper {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #e0d1bc;
    padding: 16px 20px;
  }
  .header__nav-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px 20px 18px;
  }
  .header__nav {
    justify-content: center;
    gap: 12px 18px;
  }
  .btn-consultation {
    width: 100%;
    max-width: 420px;
    align-self: center;
  }
}
.header__burger,
.header__mobile {
  display: none;
}

@media (max-width: 992px) {
  .header__nav,
  .btn-consultation {
    display: none;
  }
  .header__nav-wrapper {
    position: relative;
    padding: 14px 16px;
  }
  .header__burger {
    display: inline-flex;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 1px solid #e0d1bc;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
  }
  .header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #001025;
  }
  .header__mobile {
    display: block;
    position: fixed;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 999;
  }
  .header__mobile.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .header__mobile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
  }
  .header__mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(320px, 86vw);
    background: #fff;
    padding: 18px 16px;
    transform: translateX(100%);
    transition: transform 220ms ease;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .header__mobile.is-open .header__mobile-panel {
    transform: translateX(0);
  }
  .header__mobile-close {
    align-self: flex-end;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #001025;
  }
  .header__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .header__mobile-cta {
    width: 100%;
  }
  body.menu-open {
    overflow: hidden;
  }
}
.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;
}

.hero {
  position: relative;
  background: #0e1b2a;
  overflow: hidden;
}

.hero__slide {
  position: relative;
  height: 600px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: end;
  padding: 80px 0 60px;
  height: 100%;
}

.hero__content {
  color: #fff;
  padding: 10px;
}

.hero__eyebrow {
  color: #bf9874;
  font-size: clamp(12px, 2vw, 20px);
  font-weight: 500;
  line-height: 349%;
  letter-spacing: 0.2em;
}

.hero__title {
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 90px);
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero__text {
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 400;
  line-height: 169%;
  color: #FFFFFF;
  padding-bottom: 15px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  padding: 0 18px;
  background: #bf9874;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  transition: filter 180ms ease, transform 120ms ease;
}
.hero__btn:hover {
  filter: brightness(0.95);
}
.hero__btn:active {
  transform: translateY(1px);
}

.hero__media {
  align-self: stretch;
  min-height: 0;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  padding-left: 10px;
}
.hero__media::before {
  content: "";
  position: absolute;
  left: -40px;
  right: 0px;
  bottom: calc(var(--hero-media-offset) * -1);
  height: 58%;
  background: #eef3f8 url("../assets/img/back.png") center/cover no-repeat;
  opacity: 0.95;
  z-index: 0;
}

.hero__img {
  position: relative;
  z-index: 1;
  width: min(874px, 100%);
  height: auto;
  max-height: 100%;
  display: block;
}

.hero__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.hero__arrow {
  width: 42px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #bf9874;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 120ms ease, opacity 180ms ease;
}
.hero__arrow:hover {
  transform: translateX(-1px);
}
.hero__arrow:active {
  transform: translateX(-1px) translateY(1px);
}

.hero__arrow--next:hover {
  transform: translateX(1px);
}

.hero__arrow--next:active {
  transform: translateX(1px) translateY(1px);
}

.hero__arrow-icon {
  font-size: 60px;
  line-height: 1;
}

/* ===== Responsive hero ===== */
@media (max-width: 992px) { /* <= 992 */
  .hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    padding: 56px 0 40px;
  }
  .hero__content {
    max-width: 680px;
    margin: 0 auto;
  }
  .hero__controls {
    justify-content: center;
  }
  .hero__media {
    --hero-media-offset: 40px;
    justify-content: center;
    padding-left: 0;
  }
  .hero__media::before {
    left: -20px;
    right: -20px;
    bottom: calc(var(--hero-media-offset) * -1);
    height: 52%;
  }
  .hero__img {
    width: auto;
    max-width: min(640px, 100%);
    height: auto;
  }
}
@media (max-width: 768px) { /* <= 768 */
  .hero__slide {
    min-height: 520px;
  }
  .hero__inner {
    padding: 44px 0 28px;
  }
  .hero__controls {
    margin-top: 24px;
  }
  /* щоб не було “гігантського” міжряддя на мобілках */
  .hero__eyebrow {
    line-height: 1.4;
  }
  .hero__text {
    line-height: 1.6;
  }
}
@media (max-width: 576px) { /* <= 576 */
  .hero__slide {
    min-height: 480px;
  }
  .hero__media {
    --hero-media-offset: 24px;
  }
  .hero__media::before {
    left: -12px;
    right: -12px;
    bottom: calc(var(--hero-media-offset) * -1);
    height: 46%;
  }
}
.services {
  position: relative;
  overflow: hidden;
  isolation: isolate; /* важливо: щоб відео не “провалювалось” назад */
  padding: 70px 8px;
  background: #0e1b2a;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 27, 42, 0.78) 0%, rgba(14, 27, 42, 0.62) 55%, rgba(14, 27, 42, 0.72) 100%);
  z-index: 1; /* було 0 */
  pointer-events: none;
}

.services__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  z-index: 0; /* було -1 */
  pointer-events: none;
}

.services__inner {
  position: relative;
  z-index: 2; /* було 1 */
}

.services__head {
  max-width: 720px;
  margin-bottom: 34px;
  padding: 8px;
}

.services__eyebrow {
  color: #bf9874;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.services__title {
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  color: #1B2A3D;
  margin: 0 0 12px;
}

.services__subtitle {
  color: white;
  opacity: 0.85;
  font-size: 14px;
  line-height: 1.7;
}

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

.service-card-item {
  display: flex;
  flex-direction: column;
}

.service-card {
  appearance: none;
  border: 1px solid #e0d1bc;
  background: #fff;
  cursor: pointer;
  font: inherit;
  width: 100%;
  text-align: left;
  padding: 18px 18px 16px;
  transition: transform 140ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}
.service-card[aria-expanded=true] {
  border-bottom: 0;
}
.service-card:focus-visible {
  outline: 2px solid rgba(196, 165, 123, 0.55);
  outline-offset: 3px;
}
.service-card.is-active {
  background: rgba(191, 152, 116, 0.12);
  border-color: rgba(191, 152, 116, 0.9);
}
.service-card.is-active .service-card__title,
.service-card.is-active .service-card__text {
  color: #fff;
}
.service-card.is-active .service-card__text {
  opacity: 0.9;
}

.service-card.is-active + .service-card__details .service-card__details-title,
.service-card.is-active + .service-card__details .service-card__details-list {
  color: #fff;
}
.service-card.is-active + .service-card__details .service-card__details-list {
  opacity: 0.9;
}

.service-card__details {
  margin-top: 0;
  padding: 12px 18px 16px;
  background: #fff;
  border: 1px solid #e0d1bc;
  border-top: 0;
}
.service-card__details[hidden] {
  display: none;
}

.service-card.is-active + .service-card__details {
  background: rgba(191, 152, 116, 0.12);
  border-color: rgba(191, 152, 116, 0.9);
}

.service-card__details-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #1B2A3D;
}

.service-card__details-list {
  margin: 0;
  padding-left: 18px;
  color: #1a2b3c;
  opacity: 0.9;
  font-size: 13px;
  line-height: 1.6;
}
.service-card__details-list li + li {
  margin-top: 6px;
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.service-card__mark {
  color: #bf9874;
  font-size: 12px;
}

.service-card__arrow {
  color: #bf9874;
  opacity: 0.8;
  transform: translateX(0);
  transition: transform 140ms ease, opacity 180ms ease;
}

.service-card__title {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}

.service-card__text {
  display: block;
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #1a2b3c;
  opacity: 0.85;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(191, 152, 116, 0.8);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-card:hover .service-card__arrow,
.service-card:focus-visible .service-card__arrow {
  opacity: 1;
  transform: translateX(3px);
}

.service-card:active {
  transform: translateY(0);
}

.services__workflow {
  margin-top: 34px;
  padding-top: 28px;
  padding-left: 8px;
  padding-right: 8px;
}

.services__workflow-head {
  max-width: 720px;
  margin-bottom: 18px;
}

.services__workflow-title {
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  color: white;
  margin: 0 0 8px;
}

.services__workflow-subtitle {
  margin: 0;
  color: white;
  opacity: 0.85;
  font-size: 14px;
  line-height: 1.7;
}

.workflow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.workflow__step {
  background: #fff;
  border: 1px solid #e0d1bc;
  padding: 16px 16px 14px;
  display: flex;
  gap: 12px;
  transition: transform 140ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.workflow__step:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 152, 116, 0.8);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.workflow__step:active {
  transform: translateY(0);
}

.workflow__num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 152, 116, 0.12);
  border: 1px solid rgba(191, 152, 116, 0.35);
  color: #bf9874;
  font-weight: 700;
  flex: 0 0 auto;
}

.workflow__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.workflow__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #1a2b3c;
  opacity: 0.85;
}

.workflow__badges {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.workflow-badge {
  appearance: none;
  border: 1px solid rgba(191, 152, 116, 0.55);
  background: #fff;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #1B2A3D;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 120ms ease, background-color 180ms ease, border-color 180ms ease;
}
.workflow-badge::before {
  content: "◆";
  color: #bf9874;
  font-size: 10px;
  line-height: 1;
}
.workflow-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(191, 152, 116, 0.8);
}
.workflow-badge:active {
  transform: translateY(0);
}
.workflow-badge:focus-visible {
  outline: 2px solid rgba(196, 165, 123, 0.55);
  outline-offset: 3px;
}
.workflow-badge.is-active {
  background: rgba(191, 152, 116, 0.12);
  border-color: rgba(191, 152, 116, 0.9);
  color: #fff;
}

.workflow__principle {
  margin-top: 14px;
  max-width: 720px;
  background: #fff;
  border: 1px solid #e0d1bc;
  padding: 16px 16px 14px;
}

.workflow__principle-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #1B2A3D;
}

.workflow__principle-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #1a2b3c;
  opacity: 0.85;
}

.services__title {
  color: #fff;
}

.services__subtitle {
  color: rgba(255, 255, 255, 0.82);
}

@media (prefers-reduced-motion: reduce) {
  .services__bg-video {
    display: none;
  }
}
@media (max-width: 992px) {
  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .services__workflow {
    margin-top: 26px;
    padding-top: 22px;
  }
  .workflow {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .services {
    padding: 52px 0;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.promo-video {
  position: relative;
  background: #fff;
  padding: 80px 0;
}

.promo-video__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Vector фон позаду (як на макеті) */
}
.promo-video__inner::before {
  content: "";
  position: absolute;
  inset: -20px 0;
  background: url("../assets/img/Vector.svg") center/min(1200px, 92vw) auto no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.promo-video__frame {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  border: 16px solid #fff;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.promo-video__media {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.promo-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 140ms ease, background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}
.promo-video__play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-left: 14px solid rgba(0, 0, 0, 0.55);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
.promo-video__play:hover {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}
.promo-video__play:active {
  transform: translate(-50%, -50%) scale(0.98);
}
.promo-video__play:focus-visible {
  outline: 2px solid rgba(191, 152, 116, 0.8);
  outline-offset: 4px;
}

/* коли відео запущене — ховаємо play */
.promo-video__frame.is-playing .promo-video__play {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 576px) {
  .promo-video {
    padding: 56px 0;
  }
  .promo-video__frame {
    border-width: 12px;
  }
  .promo-video__play {
    width: 50px;
    height: 50px;
  }
}
.inquiry {
  position: relative;
  background: #fff;
  padding: 78px 8px;
  overflow: hidden;
  background: linear-gradient(rgba(238, 243, 248, 0.92), rgba(238, 243, 248, 0.92)), url("../assets/img/photo_lawyer/IMG_1959.JPG") no-repeat center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inquiry__inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.inquiry__head {
  position: relative;
  text-align: center;
  margin-bottom: 34px;
}

.inquiry__title {
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: 0.04em;
  color: #0e1b2a;
  margin: 0 0 8px;
}

.inquiry__subtitle {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #bf9874;
}

.inquiry__form {
  position: relative;
  z-index: 1;
}

.inquiry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
  align-items: end;
}

.inquiry__field--wide {
  grid-column: 1/-1;
}

.inquiry__label {
  display: block;
  font-size: 20px;
  color: rgba(14, 27, 42, 0.75);
  margin-bottom: 6px;
}

.inquiry__input,
.inquiry__select,
.inquiry__textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(191, 152, 116, 0.55);
  background: transparent;
  padding: 10px 0 12px;
  font-size: 14px;
  outline: none;
  color: #0e1b2a;
}

.inquiry__textarea {
  resize: vertical;
  min-height: 70px;
}

.inquiry__input:focus,
.inquiry__select:focus,
.inquiry__textarea:focus {
  border-bottom-color: #bf9874;
}

.inquiry__actions {
  margin-top: 22px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.inquiry__btn {
  height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(14, 27, 42, 0.6);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 120ms ease;
}
.inquiry__btn:hover {
  background: #bf9874;
  border-color: #bf9874;
  color: #fff;
}
.inquiry__btn:active {
  transform: translateY(1px);
}

.inquiry__status {
  min-height: 18px;
  font-size: 12px;
  color: rgba(14, 27, 42, 0.75);
}

@media (max-width: 768px) {
  .inquiry__grid {
    grid-template-columns: 1fr;
  }
  .inquiry__inner::after {
    right: -220px;
    opacity: 0.25;
  }
}
.attorney {
  padding: 0;
  background: linear-gradient(90deg, #eef3f8 0 44%, #eef3f8 44% 100%);
}

.attorney__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.attorney__photo {
  margin: 0;
  display: flex;
  align-items: stretch;
  background: #eef3f8;
}

.attorney__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  background: #fff;
}

.attorney__panel {
  position: relative;
  padding: 64px 56px;
  background: #eef3f8;
  overflow: hidden;
}
.attorney__panel::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 20px;
  width: min(760px, 58vw);
  height: 420px;
  background: url("../assets/img/Vector.svg") right center/contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.attorney__name {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: clamp(22px, 2.6vw, 60px);
  color: #001025;
}

.attorney__role {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: clamp(18px, 2vw + 1rem, 24px);
  font-weight: 500;
  text-align: left;
  color: #001025;
}

.attorney__text {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 135%;
  color: #667c99;
}

.attorney__marks {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  justify-content: center;
}

.attorney-mark {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 152, 116, 0.55);
  background: rgba(255, 255, 255, 0.7);
}

.attorney-mark__icon {
  width: 34px;
  height: 34px;
  color: #bf9874;
}

.attorney__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  /* letter-spacing: 0.18em; */
  /* text-transform: uppercase; */
  transition: background-color 180ms ease, color 180ms ease, transform 120ms ease;
  border: 1px solid #001025;
  /* padding: 16px 25px 16px 32px; */
  width: clamp(200px, 30vw, 281px);
  height: clamp(40px, 4vw, 49px);
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #001025;
}
.attorney__btn:hover {
  background: #bf9874;
  border-color: #bf9874;
  color: #fff;
}
.attorney__btn:active {
  transform: translateY(1px);
}

@media (max-width: 992px) {
  .attorney {
    background: #eef3f8;
    padding: 56px 0;
  }
  .attorney__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }
  .attorney__img {
    min-height: 360px;
    border: 1px solid #e0d1bc;
    background: #fff;
  }
  .attorney__panel {
    padding: 34px 22px;
    border: 1px solid #e0d1bc;
    background: #fff;
  }
}
.experts {
  position: relative;
  padding: 84px 0;
  background: #0e1b2a;
  overflow: hidden;
}
.experts::before {
  content: "";
  position: absolute;
  inset: -40px 0;
  background: radial-gradient(900px 420px at 20% 0%, rgba(191, 152, 116, 0.18), transparent 60%), radial-gradient(900px 420px at 80% 100%, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.experts__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.experts__head {
  margin-bottom: 36px;
}

.experts__eyebrow {
  color: #bf9874;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 20px;
  line-height: 349%;
  letter-spacing: 0.2em;
}

.experts__title {
  margin: 0;
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 3.2vw, 80px);
  letter-spacing: 0.04em;
  font-size: 60px;
  color: #fff;
}

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

.expert-card {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
}

.expert-card__media,
.expert-card__name,
.expert-card__role {
  display: block;
}

.expert-card__media {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.expert-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.01);
  transition: transform 280ms ease;
  will-change: transform;
}

.expert-card:hover .expert-card__img,
.expert-card:focus-visible .expert-card__img {
  transform: scale(1.08);
}

.expert-card:focus-visible {
  outline: 2px solid rgba(191, 152, 116, 0.65);
  outline-offset: 4px;
}

.expert-card.is-active .expert-card__media {
  border-color: rgba(191, 152, 116, 0.55);
}

.expert-card__name {
  margin: 14px 0 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 20px;
  color: #fff;
}

.expert-card__role {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  color: #829bbc;
}

.experts__details {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
}

.expert-card__details.experts__details {
  margin-top: 16px;
  padding: 16px;
}

@media (max-width: 576px) {
  #expertDetails {
    display: none;
  }
}
@media (min-width: 577px) {
  .expert-card__details {
    display: none;
  }
}
.experts__details-name {
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}

.experts__details-line {
  margin-bottom: 4px;
  color: rgba(191, 152, 116, 0.95);
}

.experts__details-body p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
}
.experts__details-body ul {
  margin: 0 0 8px;
  padding-left: 18px;
}
.experts__details-body li {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.82);
}

.experts__details-section-title {
  margin: 14px 0 8px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 1200px) {
  .experts__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 992px) {
  .experts {
    padding: 72px 0;
  }
  .experts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .experts {
    padding: 60px 0;
  }
  .experts__grid {
    grid-template-columns: 1fr;
  }
}
.footer {
  background: #0e1b2a;
  color: rgba(255, 255, 255, 0.82);
  padding: 70px 8px 18px;
  border-top: 1px solid rgba(191, 152, 116, 0.28);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
  gap: 34px;
}

.footer__logo-img {
  width: 120px;
  height: 121px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__about {
  margin: 12px 0 16px;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 360px;
}

.footer__title {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}

.footer__link,
.footer__text {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
}

.footer__link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 160ms ease, transform 120ms ease;
}
.footer__link:hover {
  color: #bf9874;
  transform: translateX(2px);
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer__contact-icon {
  color: #bf9874;
  fill: currentColor;
  opacity: 0.95;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 152, 116, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: #bf9874;
  text-decoration: none;
  transition: transform 140ms ease, background 180ms ease, border-color 180ms ease;
}
.footer__social-link:hover {
  transform: translateY(-1px);
  background: rgba(191, 152, 116, 0.12);
  border-color: rgba(191, 152, 116, 0.55);
}

.footer__social-icon {
  fill: currentColor;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, transform 120ms ease;
}
.footer__cta:hover {
  background: #bf9874;
  border-color: #bf9874;
}
.footer__cta:active {
  transform: translateY(1px);
}

.footer__bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__copy {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

.footer__to-top {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 152, 116, 0.35);
  color: #bf9874;
  text-decoration: none;
  transition: transform 120ms ease, background 180ms ease;
}
.footer__to-top:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer__col--services {
    display: none;
  }
}
@media (max-width: 992px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 56px 8px 16px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about {
  padding: 70px 0;
  background: linear-gradient(rgba(238, 243, 248, 0.92), rgba(238, 243, 248, 0.92)), url("../assets/img/hero-bg-2.jpg") no-repeat center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about__inner {
  padding: 0 40px;
}

.about__head {
  max-width: 980px;
  margin-bottom: 26px;
}

.about__eyebrow {
  color: #bf9874;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about__title {
  margin: 0;
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  color: #001025;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.about__col {
  background: #fff;
  border: 1px solid #e0d1bc;
  padding: 22px 22px 20px;
}

.about__subtitle {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1B2A3D;
}

.about__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #1a2b3c;
  opacity: 0.85;
}

.about__trust {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(191, 152, 116, 0.35);
}

.about__trust-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1B2A3D;
}

.about__trust-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #1a2b3c;
  opacity: 0.85;
}

.advantages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.advantages__item {
  border: 1px solid rgba(191, 152, 116, 0.35);
  background: rgba(191, 152, 116, 0.06);
  padding: 14px 14px 12px;
}

.advantages__title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #001025;
  display: flex;
  align-items: center;
  gap: 10px;
}
.advantages__title::before {
  content: "◆";
  color: #bf9874;
  font-size: 10px;
  line-height: 1;
}

.advantages__text {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #1a2b3c;
  opacity: 0.85;
}

.about__goal {
  margin-top: 22px;
  background: #fff;
  border: 1px solid #e0d1bc;
  padding: 18px 22px;
}

.about__goal-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1B2A3D;
}

.about__goal-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #001025;
  font-weight: 600;
}

@media (max-width: 992px) {
  .about {
    padding: 56px 0;
  }
  .about__inner {
    padding: 0 22px;
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__col {
    padding: 18px 16px;
  }
}
.gallery-section {
  padding: 70px 0;
  background: #FFFFFF;
}
.gallery-section .container {
  padding: 0 40px;
}

.gallery-title {
  margin: 0 0 30px;
  text-align: center;
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 1.2;
  color: #001025;
}

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

.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(191, 152, 116, 0.35);
  background: #FFFFFF;
}
.gallery__item:focus-visible {
  outline: 2px solid rgba(191, 152, 116, 0.65);
  outline-offset: 4px;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.06);
}

.gallery__img {
  width: 100%;
  height: 100%;
  display: block;
  filter: blur(2px);
  transition: transform 0.35s ease, filter 0.35s ease;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.gallery__item--tall {
  grid-row: span 2;
}

@media (max-width: 992px) {
  .gallery-section {
    padding: 56px 0;
  }
  .gallery-section .container {
    padding: 0 22px;
  }
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }
}
@media (max-width: 576px) {
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery__item {
    height: 340px;
  }
  .gallery__item--tall {
    grid-row: span 1;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Archivo", sans-serif;
  color: #1A1A1A;
  font-size: 16px;
  line-height: 1.5;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 0px;
}/*# sourceMappingURL=main.css.map */