/* =========================================================
   BROD HERO
   первый экран страницы БРОД
   ========================================================= */

.brod-hero,
.brod-hero * {
  box-sizing: border-box;
}

.brod-hero {
  width: 100%;
  min-height: 100svh;
  background: #000;
  color: #eadfce;
  font-family: 'Montserrat', Arial, sans-serif;

  display: flex;
  align-items: center;

  padding: clamp(56px, 6vw, 96px) clamp(28px, 4vw, 64px);
}

.brod-hero__card {
  position: relative;
  overflow: hidden;

  width: 100%;
  max-width: 1320px;
  margin: 0 auto;

  border-radius: 22px;
  border: 1px solid rgba(234, 223, 206, 0.26);

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.92) 42%,
      rgba(0, 0, 0, 0.78) 66%,
      rgba(0, 0, 0, 0.94) 100%
    ),
    radial-gradient(
      560px 340px at 18% 82%,
      rgba(234, 223, 206, 0.055),
      transparent 70%
    ),
    #000;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 54px rgba(0,0,0,0.34);
}

/* лёгкая водная/тёмная подложка как на старом экране */
.brod-hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(
      620px 320px at 42% 88%,
      rgba(234, 223, 206, 0.035),
      transparent 70%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255,255,255,0.018) 100%
    );

  opacity: 0.9;
}

.brod-hero__top,
.brod-hero__features {
  position: relative;
  z-index: 1;
}

.brod-hero__top {
  display: grid;
  grid-template-columns: minmax(420px, 0.98fr) minmax(320px, 0.72fr);
  gap: clamp(42px, 5vw, 80px);
  align-items: center;

  padding:
    clamp(56px, 6vw, 84px)
    clamp(48px, 5vw, 72px)
    clamp(34px, 4vw, 48px);
}

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

.brod-hero__eyebrow {
  margin: 0 0 34px;

  color: rgba(234, 223, 206, 0.62);
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brod-hero__title {
  max-width: 760px;
  margin: 0 0 34px;

  color: #f3f0e8;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.006em;
}

.brod-hero__text {
  max-width: 760px;

  color: rgba(234, 223, 206, 0.58);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.022em;
  text-align: justify;
}

.brod-hero__text p {
  margin: 0;
}

.brod-hero__text p + p {
  margin-top: 18px;
}

.brod-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  pointer-events: none;
}

.brod-hero__visual img {
  display: block;
  width: min(250px, 80%);
  max-width: 100%;
  height: auto;
  mix-blend-mode: screen; 
}

/* нижние карточки */

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

  padding:
    0
    clamp(48px, 5vw, 72px)
    clamp(56px, 6vw, 76px);
}

.brod-hero__feature {
  min-width: 0;
  padding: 22px 22px 24px;

  border-radius: 18px;
  border: 1px solid rgba(234, 223, 206, 0.14);

  background:
    linear-gradient(
      180deg,
      rgba(7, 10, 16, 0.74),
      rgba(4, 6, 10, 0.86)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.025),
    0 10px 24px rgba(0,0,0,0.18);
}

.brod-hero__feature h3 {
  margin: 0 0 12px;

  color: rgba(145, 210, 70, 0.9);
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brod-hero__feature p {
  margin: 0;

  color: rgba(234, 223, 206, 0.62);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.015em;
}

/* =========================
   LARGE DESKTOP
   ========================= */

@media (min-width: 1920px) {
  .brod-hero__card {
    max-width: 1460px;
  }

  .brod-hero__title {
    font-size: 52px;
  }

  .brod-hero__text {
    font-size: 14px;
  }

  .brod-hero__visual img {
    width: 300px;
  }
}

/* =========================
   LAPTOP
   ========================= */

@media (min-width: 1200px) and (max-width: 1439px) {
  .brod-hero {
    padding: 56px 34px;
  }

  .brod-hero__card {
    max-width: 1180px;
  }

  .brod-hero__top {
    padding: 52px 48px 30px;
    gap: 48px;
  }

  .brod-hero__title {
    font-size: 38px;
  }

  .brod-hero__visual img {
    width: 250px;
  }

  .brod-hero__features {
    padding: 0 48px 52px;
  }
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 991px) {
  .brod-hero {
    min-height: auto;
    padding: 64px 24px;
  }

  .brod-hero__top {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 32px 30px;
  }

  .brod-hero__content,
  .brod-hero__text,
  .brod-hero__title {
    max-width: none;
  }

  .brod-hero__visual {
    order: -1;
  }

  .brod-hero__visual img {
    width: min(240px, 60vw);
  }

  .brod-hero__features {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 32px 46px;
  }

  .brod-hero__text {
    text-align: left;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {
  .brod-hero {
    padding: 54px 14px;
  }

  .brod-hero__card {
    width: 94%;
    border-radius: 18px;
  }

  .brod-hero__top {
    padding: 34px 20px 26px;
    gap: 28px;
  }

  .brod-hero__eyebrow {
    margin-bottom: 24px;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.16em;
  }

  .brod-hero__title {
    margin-bottom: 24px;
    font-size: clamp(25px, 7.4vw, 32px);
    line-height: 1.18;
  }

  .brod-hero__text {
    font-size: 12.5px;
    line-height: 1.58;
    letter-spacing: 0.012em;
  }

  .brod-hero__visual img {
    width: min(220px, 64vw);
  }

  .brod-hero__features {
    padding: 0 20px 34px;
  }

  .brod-hero__feature {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .brod-hero__feature h3 {
    font-size: 11.5px;
    letter-spacing: 0.18em;
  }

  .brod-hero__feature p {
    font-size: 12px;
    line-height: 1.52;
  }
}