@charset "UTF-8";
/*
 * Внутрішні сторінки: «Власникам», «Кар'єра», «Контакти», 404.
 * Еталони — Owners.dc.html, Career.dc.html, Contacts.dc.html, 404.dc.html.
 *
 * «Власникам» і «Кар'єра» побудовані на одному каркасі: геро → сітка карток →
 * спліт-секція з анкетою. Тому блоки спільні, різниться лише наповнення.
 */

/* ------------------------------------------------------------- геро ------- */

.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 44px 0 32px;
  text-align: center;
}

.page-hero__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--c-navy);
  text-transform: uppercase;
  text-wrap: balance;
}

.page-hero__subtitle {
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #212121;
  text-wrap: balance;
}

/* Підпис бренду збоку — на вузьких екранах він накладався б на заголовок. */
.page-hero__brand {
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: -0.06em;
  color: #b17c3f;
  white-space: nowrap;
}

@media (max-width: 1279px) {
  .page-hero__brand {
    display: none;
  }
}

.page-section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--c-navy);
  text-wrap: balance;
}

/* ------------------------------------------------ переваги / цінності ----- */

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 628fr) minmax(0, 696fr);
  gap: 16px;
  align-items: stretch;
}

.feature-split--reverse {
  grid-template-columns: minmax(0, 696fr) minmax(0, 640fr);
}

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

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 32px;
  border-radius: 24px;
  background: var(--c-bg);
  color: #212121;
}

/* Дві з чотирьох карток у макеті темні — по діагоналі. */
.feature-card--dark {
  background: var(--c-navy);
  color: var(--c-surface);
}

.feature-card--dark::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 75px;
  width: 77px;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
}

.feature-card__title {
  padding-bottom: 16px;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.011em;
}

.feature-card__text {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.48;
  letter-spacing: -0.014em;
}

/* Колонка цифр поруч із картками */

.stat-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1px;
  background: #f4f3f1;
}

.stat-column__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

.stat-column__value {
  font-family: var(--f-ui);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.016em;
  color: var(--c-navy);
}

.stat-column__label {
  font-family: var(--f-ui);
  font-size: 12px;
  line-height: 1.12;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  text-transform: uppercase;
}

.feature-split__image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 27px;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .feature-split,
  .feature-split--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-split__image {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .feature-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-card {
    padding: 24px;
  }
}

/* ------------------------------------------------------- анкета-секція ---- */

.lead-split {
  display: grid;
  grid-template-columns: minmax(0, 690fr) minmax(0, 661fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 48px;
  background: var(--c-line);
}

.lead-split__intro,
.lead-split__form {
  padding: 41px 38px;
  background: var(--c-bg);
}

.lead-split__title {
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #212121;
}

.lead-split__proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.lead-split__avatars {
  display: flex;
  flex: 0 0 auto;
}

.lead-split__avatars img {
  width: 32px;
  height: 32px;
  border: 2px solid var(--c-surface);
  border-radius: 50%;
  object-fit: cover;
}

.lead-split__avatars img + img {
  margin-left: -10px;
}

.lead-split__proof-text {
  max-width: 20ch;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.48;
  letter-spacing: 0.02em;
  color: #212121;
}

.lead-split__note {
  max-width: 42ch;
  margin-top: 20px;
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.48;
  color: var(--c-muted);
}

/* Поля анкети — прямокутні, на відміну від «пігулок» решти сайту. */
.lead-split__form .wpcf7 input[type="text"],
.lead-split__form .wpcf7 input[type="tel"],
.lead-split__form .wpcf7 input[type="email"],
.lead-split__form .wpcf7 textarea {
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: var(--c-bg);
  box-shadow: none;
  font-size: 14px;
}

.lead-split__form .wpcf7 textarea {
  padding: 12px 13px;
  min-height: 88px;
}

.lead-split__form .wpcf7 input[type="submit"] {
  width: 100%;
  border-radius: 38px;
  box-shadow: var(--shadow-cta);
}

.lead-split__form .wpcf7 p {
  margin: 0 0 10px;
}

.lead-split__form label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.48;
  letter-spacing: 0.018em;
  color: #212121;
}

@media (max-width: 1023px) {
  .lead-split {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 32px;
  }
}

@media (max-width: 640px) {
  .lead-split {
    border-radius: 24px;
  }

  .lead-split__intro,
  .lead-split__form {
    padding: 28px 20px;
  }
}

/* ------------------------------------------------------------ контакти --- */

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 443fr) minmax(0, 901fr);
  gap: 40px;
  align-items: start;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contacts__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.contacts__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--c-ink);
}

.contacts__icon svg {
  width: 24px;
  height: 24px;
}

.contacts__label {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: 0.014em;
  color: #000;
}

.contacts__hint {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.48;
  color: var(--c-muted);
}

.contacts__value {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: -0.022em;
  color: var(--c-ink);
}

.contacts__map {
  height: 520px;
  border-radius: 35px;
  overflow: hidden;
  background: var(--c-line);
}

.contacts__map-canvas {
  width: 100%;
  height: 100%;
}

@media (max-width: 1023px) {
  .contacts {
    grid-template-columns: minmax(0, 1fr);
  }

  .contacts__map {
    height: 360px;
    border-radius: 24px;
  }
}

/* ---------------------------------------------------------------- 404 ----- */

.notfound {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 640px;
  padding: 80px var(--gutter);
  overflow: hidden;
}

.notfound__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.notfound__photo {
  position: absolute;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 4px 9px -1px rgba(0, 0, 0, 0.18);
}

.notfound__photo--1 {
  left: 8%;
  top: 12%;
  width: 243px;
  height: 145px;
  transform: rotate(13deg);
}

.notfound__photo--2 {
  right: 10%;
  top: 30%;
  width: 184px;
  height: 214px;
  transform: rotate(-21deg);
}

.notfound__photo--3 {
  left: 12%;
  bottom: 8%;
  width: 291px;
  height: 190px;
  transform: rotate(-15deg);
}

.notfound__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.notfound__code {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(64px, 10vw, 96px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--c-navy);
}

.notfound__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--c-navy);
  text-transform: uppercase;
}

.notfound__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 801px);
  min-height: 60px;
  margin-top: 16px;
  padding: 16px 24px;
  border-radius: 36px;
  background: #fffaf0;
  box-shadow: inset 0 0 0 1px #e9d5bf;
  font-family: var(--f-ui);
  font-size: 14px;
  color: var(--c-ink);
  transition: background 0.25s ease;
}

.notfound__cta:hover {
  background: #fff;
}

@media (max-width: 1023px) {
  .notfound__decor {
    opacity: 0.35;
  }

  .notfound__photo--1,
  .notfound__photo--2,
  .notfound__photo--3 {
    width: 160px;
    height: 120px;
  }
}
