:root {
  --mb-bg: #160b08;
  --mb-bg-deep: #090504;

  --mb-wine: #651d23;
  --mb-wine-bright: #8b2c31;

  --mb-gold: #d8b268;
  --mb-gold-light: #f3ddb0;
  --mb-gold-dark: #9d7439;

  --mb-cream: #f4eee2;
  --mb-text: #f8f2e8;
  --mb-muted: rgba(248, 242, 232, 0.72);

  --mb-serif:
    "Times New Roman",
    "Iowan Old Style",
    "Baskerville",
    Georgia,
    serif;

  --mb-sans:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

  --mb-container: 1280px;
}


/* =========================
   RESET
   ========================= */

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 320px;
}

body {
  background: var(--mb-bg-deep);
  color: var(--mb-text);
  font-family: var(--mb-sans);
  -webkit-font-smoothing: antialiased;
}

body.mb-modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}


/* =========================
   PAGE
   ========================= */

.mb-page {
  width: 100%;
  overflow: hidden;
}


/* =========================
   HERO
   ========================= */

.mb-hero {
  position: relative;
  min-height: 100svh;
  min-height: 760px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #0b0705;
}

.mb-hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
}

.mb-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mb-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(7, 4, 3, 0.94) 0%,
      rgba(9, 5, 4, 0.90) 18%,
      rgba(12, 7, 5, 0.70) 38%,
      rgba(12, 7, 5, 0.26) 59%,
      rgba(12, 7, 5, 0.05) 78%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.22) 0%,
      rgba(0, 0, 0, 0.00) 62%,
      rgba(0, 0, 0, 0.38) 100%
    );
}

.mb-hero__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin: 0 auto;
  padding:
    clamp(38px, 6vh, 80px)
    clamp(28px, 5vw, 72px);
}

.mb-hero__content {
  width: min(650px, 48vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mb-hero__logo {
  display: block;
  width: clamp(170px, 16vw, 245px);
  height: auto;
  margin: 0 0 clamp(18px, 2.5vh, 30px);
  filter:
    drop-shadow(0 5px 15px rgba(0, 0, 0, 0.30))
    drop-shadow(0 0 14px rgba(222, 175, 87, 0.11));
}

.mb-hero__eyebrow {
  margin-bottom: 13px;

  color: var(--mb-gold-light);

  font-family: var(--mb-sans);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.mb-hero__title {
  margin: 0;

  font-family: var(--mb-serif);
  font-weight: 400;
  text-transform: uppercase;

  color: var(--mb-cream);

  line-height: 0.88;
  letter-spacing: -0.035em;

  text-shadow:
    0 4px 25px rgba(0, 0, 0, 0.45);
}

.mb-hero__title span {
  display: block;
}

.mb-hero__title span:first-child {
  font-size: clamp(66px, 7.2vw, 112px);
}

.mb-hero__title span:last-child {
  margin-top: 8px;
  font-size: clamp(48px, 5.4vw, 84px);
  color: var(--mb-gold-light);
}

.mb-hero__divider {
  width: min(380px, 88%);
  display: flex;
  align-items: center;
  gap: 13px;

  margin: clamp(20px, 2.8vh, 30px) 0;
}

.mb-hero__divider span {
  height: 1px;
  flex: 1;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(232, 197, 127, 0.78)
    );
}

.mb-hero__divider span:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(232, 197, 127, 0.78),
      transparent
    );
}

.mb-hero__divider b {
  color: var(--mb-gold);
  font-size: 15px;
  line-height: 1;
  font-weight: normal;
}

.mb-hero__lead {
  max-width: 570px;
  margin: 0;

  color: rgba(249, 242, 230, 0.88);

  font-family: var(--mb-serif);
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.42;
}

.mb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: clamp(28px, 4vh, 42px);
}


/* =========================
   BUTTONS
   ========================= */

.mb-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 28px;

  border-radius: 2px;

  font-family: var(--mb-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  text-decoration: none;

  cursor: pointer;

  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mb-button:hover {
  transform: translateY(-2px);
}

.mb-button:active {
  transform: translateY(0);
}

.mb-button--primary {
  border: 1px solid var(--mb-gold);
  color: #2a1609;

  background:
    linear-gradient(
      135deg,
      #f3deb0 0%,
      #c99c50 52%,
      #efd599 100%
    );

  box-shadow:
    0 8px 32px rgba(152, 101, 36, 0.26);
}

.mb-button--primary:hover {
  box-shadow:
    0 10px 38px rgba(179, 126, 52, 0.34);
}

.mb-button--ghost {
  color: var(--mb-cream);
  border: 1px solid rgba(238, 213, 167, 0.42);
  background: rgba(12, 7, 5, 0.20);
  backdrop-filter: blur(4px);
}

.mb-button--ghost:hover {
  border-color: rgba(238, 213, 167, 0.72);
  background: rgba(54, 24, 17, 0.42);
}


/* =========================
   SCROLL INDICATOR
   ========================= */

.mb-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  color: rgba(255, 245, 227, 0.58);

  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mb-hero__scroll i {
  display: block;
  width: 1px;
  height: 30px;

  background:
    linear-gradient(
      rgba(226, 186, 110, 0.65),
      transparent
    );
}


/* =========================
   PLACEHOLDER
   ========================= */

.mb-placeholder {
  min-height: 650px;
  padding: 100px 32px;

  display: flex;
  align-items: center;

  color: #28140e;

  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(199, 156, 86, 0.10),
      transparent 35%
    ),
    #f0e8da;
}

.mb-placeholder__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.mb-placeholder__number {
  color: #9b7143;
  font-family: var(--mb-serif);
  font-size: 18px;
}

.mb-placeholder h2 {
  max-width: 770px;
  margin: 20px 0;

  font-family: var(--mb-serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.mb-placeholder p {
  font-size: 18px;
}


/* =========================
   MODAL
   ========================= */

.mb-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  visibility: hidden;
  opacity: 0;

  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.mb-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.mb-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(5, 3, 2, 0.82);
  backdrop-filter: blur(7px);
}

.mb-modal__dialog {
  position: relative;
  z-index: 1;

  width: min(520px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;

  padding: 48px 46px 42px;

  border: 1px solid rgba(226, 184, 103, 0.37);

  color: var(--mb-text);

  background:
    radial-gradient(
      circle at top right,
      rgba(139, 44, 49, 0.22),
      transparent 37%
    ),
    linear-gradient(
      145deg,
      #27130e,
      #120907
    );

  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.58);
}

.mb-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 9px;
  pointer-events: none;

  border: 1px solid rgba(219, 175, 95, 0.13);
}

.mb-modal__close {
  position: absolute;
  top: 13px;
  right: 16px;
  z-index: 2;

  width: 42px;
  height: 42px;

  padding: 0;
  border: 0;

  color: rgba(255, 239, 208, 0.75);
  background: transparent;

  font-family: var(--mb-sans);
  font-size: 38px;
  font-weight: 200;
  line-height: 1;

  cursor: pointer;
}

.mb-modal__close:hover {
  color: #fff;
}

.mb-modal__eyebrow {
  margin-bottom: 9px;

  color: var(--mb-gold);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mb-modal__title {
  margin: 0 0 14px;

  font-family: var(--mb-serif);
  font-size: clamp(37px, 5vw, 51px);
  font-weight: 400;
  line-height: 0.97;
  text-transform: uppercase;
}

.mb-modal__text {
  margin: 0 0 28px;

  color: var(--mb-muted);

  font-family: var(--mb-serif);
  font-size: 18px;
  line-height: 1.45;
}


/* =========================
   FORM
   ========================= */

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

.mb-form__field {
  display: grid;
  gap: 7px;
}

.mb-form__field span {
  color: rgba(245, 228, 198, 0.66);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mb-form__field input {
  width: 100%;
  height: 52px;

  padding: 0 15px;

  border:
    1px solid rgba(221, 181, 107, 0.28);
  border-radius: 0;
  outline: none;

  color: #fff;
  background: rgba(255, 255, 255, 0.045);

  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.mb-form__field input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.mb-form__field input:focus {
  border-color: rgba(231, 193, 121, 0.72);
  background: rgba(255, 255, 255, 0.07);
}

.mb-form__submit {
  width: 100%;
  margin-top: 6px;
}

.mb-form__note {
  margin: 1px 0 0;

  color: rgba(255, 255, 255, 0.40);

  font-size: 10px;
  line-height: 1.45;
}

.mb-form__message {
  min-height: 20px;

  color: var(--mb-gold-light);

  font-size: 13px;
  line-height: 1.4;
}


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

@media (max-width: 1100px) {

  .mb-hero {
    min-height: 720px;
  }

  .mb-hero__inner {
    padding-left: 42px;
    padding-right: 42px;
  }

  .mb-hero__content {
    width: 53vw;
    max-width: 580px;
  }

  .mb-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(6, 4, 3, 0.94) 0%,
        rgba(8, 5, 4, 0.87) 28%,
        rgba(10, 6, 5, 0.52) 58%,
        rgba(10, 6, 5, 0.10) 82%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16),
        transparent 62%,
        rgba(0, 0, 0, 0.33)
      );
  }

}


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

@media (max-width: 700px) {

  .mb-hero {
    min-height: 100svh;
    align-items: flex-start;
  }

  .mb-hero__image {
    object-position: center center;
  }

  .mb-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(8, 5, 3, 0.92) 0%,
        rgba(8, 5, 3, 0.73) 25%,
        rgba(9, 5, 4, 0.30) 49%,
        rgba(8, 4, 3, 0.10) 66%,
        rgba(7, 4, 3, 0.62) 100%
      );
  }

  .mb-hero__inner {
    padding:
      max(28px, env(safe-area-inset-top))
      20px
      70px;
  }

  .mb-hero__content {
    width: 100%;
    max-width: 100%;

    align-items: center;
    text-align: center;
  }

  .mb-hero__logo {
    width: 145px;
    margin-bottom: 11px;
  }

  .mb-hero__eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: 0.19em;
  }

  .mb-hero__title {
    width: 100%;
    line-height: 0.91;
  }

  .mb-hero__title span:first-child {
    font-size: clamp(54px, 17vw, 78px);
  }

  .mb-hero__title span:last-child {
    margin-top: 5px;
    font-size: clamp(41px, 12.5vw, 61px);
  }

  .mb-hero__divider {
    width: 72%;
    margin: 16px auto;
  }

  .mb-hero__lead {
    max-width: 410px;

    font-size: 17px;
    line-height: 1.35;

    text-shadow:
      0 3px 20px rgba(0, 0, 0, 0.9);
  }

  .mb-hero__actions {
    width: 100%;
    max-width: 390px;

    display: grid;

    margin-top: 21px;
  }

  .mb-button {
    width: 100%;
    min-height: 52px;
  }

  .mb-hero__scroll {
    display: none;
  }

  .mb-placeholder {
    min-height: 580px;
    padding: 80px 21px;
  }

  .mb-placeholder h2 {
    font-size: 43px;
  }

  .mb-modal {
    align-items: flex-end;
    padding: 0;
  }

  .mb-modal__dialog {
    width: 100%;
    max-height: 92svh;

    padding:
      39px
      21px
      calc(25px + env(safe-area-inset-bottom));

    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .mb-modal__dialog::before {
    inset: 7px 7px auto;
    height: calc(100% - 14px);
  }

  .mb-modal__title {
    padding-right: 30px;
  }

}


/* =========================
   VERY SMALL MOBILE
   ========================= */

@media (max-width: 380px) {

  .mb-hero__inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mb-hero__logo {
    width: 125px;
  }

  .mb-hero__title span:first-child {
    font-size: 50px;
  }

  .mb-hero__title span:last-child {
    font-size: 38px;
  }

  .mb-hero__lead {
    font-size: 15px;
  }

}


/* =========================
   REDUCED MOTION
   ========================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

}


/* ==================================================
   MOBILE HERO V2
   Отдельная композиция мобильного первого экрана
   ================================================== */

@media (max-width: 700px) {

  .mb-hero {
    min-height: 100svh;
  }

  .mb-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(7, 4, 3, 0.94) 0%,
        rgba(7, 4, 3, 0.78) 24%,
        rgba(7, 4, 3, 0.20) 48%,
        rgba(7, 4, 3, 0.08) 66%,
        rgba(7, 4, 3, 0.74) 100%
      );
  }

  .mb-hero__inner {
    width: 100%;
    min-height: 100svh;

    display: flex;

    padding:
      max(20px, env(safe-area-inset-top))
      18px
      calc(22px + env(safe-area-inset-bottom));
  }

  .mb-hero__content {
    width: 100%;
    max-width: none;
    min-height: calc(
      100svh
      - max(20px, env(safe-area-inset-top))
      - 22px
      - env(safe-area-inset-bottom)
    );

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    text-align: left;
  }

  .mb-hero__logo {
    width: 112px;
    margin: 0 0 17px;
  }

  .mb-hero__eyebrow {
    margin: 0 0 9px;

    font-size: 8px;
    line-height: 1.3;
    letter-spacing: 0.20em;
  }

  .mb-hero__title {
    width: 100%;
    line-height: 0.91;
    letter-spacing: -0.035em;
  }

  .mb-hero__title span:first-child {
    font-size: clamp(43px, 13vw, 54px);
  }

  .mb-hero__title span:last-child {
    margin-top: 4px;

    font-size: clamp(34px, 10.4vw, 43px);

    white-space: nowrap;
  }

  .mb-hero__divider {
    width: 190px;

    margin:
      15px
      0
      14px;
  }

  .mb-hero__lead {
    max-width: 295px;

    font-size: 15px;
    line-height: 1.36;

    color: rgba(249, 242, 230, 0.88);
  }

  /*
   * Оставляем центральную часть экрана фотографии.
   * Кнопки автоматически уходят вниз.
   */
  .mb-hero__actions {
    width: 100%;
    max-width: none;

    display: flex;
    flex-direction: column;

    gap: 9px;

    margin-top: auto;
  }

  .mb-hero__actions .mb-button--primary {
    width: 100%;
    min-height: 55px;

    font-size: 12px;
  }

  /*
   * Вторичное действие превращаем
   * из большой кнопки в лёгкую ссылку.
   */
  .mb-hero__actions .mb-button--ghost {
    width: auto;
    min-height: auto;

    align-self: center;

    padding: 8px 8px 3px;

    border: 0;
    background: transparent;
    backdrop-filter: none;

    color: rgba(246, 231, 203, 0.76);

    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .mb-hero__actions .mb-button--ghost::after {
    content: " ↓";
  }

  .mb-hero__actions .mb-button--ghost:hover {
    background: transparent;
    border: 0;
  }

}


/* Совсем узкие телефоны */

@media (max-width: 380px) {

  .mb-hero__logo {
    width: 100px;
  }

  .mb-hero__title span:first-child {
    font-size: 40px;
  }

  .mb-hero__title span:last-child {
    font-size: 31px;
  }

  .mb-hero__lead {
    max-width: 260px;
    font-size: 14px;
  }

}

/* ==================================================
   HERO FIXES 2026-09-14
   ================================================== */

.mb-hero__eyebrow {
  margin: 0 0 13px;
}

@media (max-width: 700px) {

  .mb-hero__content {
    position: relative;
  }

  .mb-hero__content > * {
    position: relative;
    z-index: 1;
  }

  .mb-hero__content::after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    bottom: -20px;
    height: 48%;
    pointer-events: none;
    z-index: 0;

    background:
      linear-gradient(
        180deg,
        rgba(7, 4, 3, 0.00) 0%,
        rgba(7, 4, 3, 0.18) 24%,
        rgba(7, 4, 3, 0.52) 58%,
        rgba(7, 4, 3, 0.84) 84%,
        rgba(7, 4, 3, 0.96) 100%
      );
  }

  .mb-hero__logo {
    align-self: center;
    margin: 0 auto 15px;
  }

  .mb-hero__eyebrow {
    margin: 0 0 8px;
    max-width: 280px;
  }

  .mb-hero__lead {
    max-width: 300px;
    margin-top: auto;
    margin-bottom: 0;
  }

  .mb-hero__actions {
    margin-top: 14px;
  }
}

/* ==================================================
   HERO FIXES 2026-09-14
   ================================================== */

.mb-hero__eyebrow {
  margin: 0 0 13px;
}

@media (max-width: 700px) {

  .mb-hero__content {
    position: relative;
  }

  .mb-hero__content > * {
    position: relative;
    z-index: 1;
  }

  .mb-hero__content::after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    bottom: -20px;
    height: 48%;
    pointer-events: none;
    z-index: 0;

    background:
      linear-gradient(
        180deg,
        rgba(7, 4, 3, 0.00) 0%,
        rgba(7, 4, 3, 0.18) 24%,
        rgba(7, 4, 3, 0.52) 58%,
        rgba(7, 4, 3, 0.84) 84%,
        rgba(7, 4, 3, 0.96) 100%
      );
  }

  .mb-hero__logo {
    align-self: center;
    margin: 0 auto 15px;
  }

  .mb-hero__eyebrow {
    margin: 0 0 8px;
    max-width: 280px;
  }

  .mb-hero__lead {
    max-width: 300px;
    margin-top: auto;
    margin-bottom: 0;
  }

  .mb-hero__actions {
    margin-top: 14px;
  }
}


/* HERO DATE / BRAND */

.mb-hero__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  margin: 0 0 24px;
}

.mb-hero__brand .mb-hero__logo {
  margin: 0;
}

.mb-hero__date {
  color: var(--mb-gold-light);

  font-family: var(--mb-serif);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  line-height: 1;

  letter-spacing: 0.01em;

  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.45);
}


/* Desktop — дата под логотипом */

@media (min-width: 701px) {

  .mb-hero__date {
    margin-left: 5px;
  }

}


/* Mobile — дата слева от логотипа */

@media (max-width: 700px) {

  .mb-hero__brand {
    width: 100%;

    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin: 0 0 16px;
  }

  .mb-hero__brand .mb-hero__logo {
    width: 108px;
    margin: 0;
  }

  .mb-hero__date {
    order: -1;

    margin: 0;

    font-size: 21px;
    line-height: 1;

    white-space: nowrap;
    text-align: right;
  }

}


@media (max-width: 380px) {

  .mb-hero__brand {
    gap: 10px;
  }

  .mb-hero__brand .mb-hero__logo {
    width: 98px;
  }

  .mb-hero__date {
    font-size: 18px;
  }

}

/* MOBILE DATE REWORK 2026-09-14 */

.mb-hero__date {
  display: flex;
  flex-direction: column;
}

.mb-hero__date-numbers,
.mb-hero__date-month {
  display: block;
}

@media (min-width: 701px) {

  .mb-hero__date {
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }

  .mb-hero__date-numbers {
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .mb-hero__date-month {
    font-size: clamp(18px, 1.3vw, 22px);
    line-height: 1;
    opacity: 0.95;
  }

}

@media (max-width: 700px) {

  .mb-hero__brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 14px;
  }

  .mb-hero__brand .mb-hero__logo {
    width: 108px;
    margin: 0 auto;
    align-self: center;
  }

  .mb-hero__date {
    width: 100%;
    max-width: 280px;
    align-self: flex-start;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin: 0;
    padding: 0;
  }

  .mb-hero__date-numbers {
    font-size: 26px;
    line-height: 0.95;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .mb-hero__date-month {
    margin-top: 3px;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.01em;
    opacity: 0.95;
  }

}

@media (max-width: 380px) {

  .mb-hero__date {
    max-width: 255px;
  }

  .mb-hero__date-numbers {
    font-size: 23px;
  }

  .mb-hero__date-month {
    font-size: 14px;
  }

}

/* ==================================================
   MOBILE HERO POLISH
   ================================================== */

@media (max-width: 700px) {

  /*
   * Дата слева, логотип строго по центру.
   */
  .mb-hero__brand {
    position: relative;

    width: 100%;
    height: 92px;

    display: block;

    margin: 0 0 9px;
  }

  .mb-hero__brand .mb-hero__logo {
    position: absolute;

    top: 0;
    left: 50%;

    width: 116px;

    margin: 0;

    transform: translateX(-50%);
  }

  .mb-hero__date {
    position: absolute;

    top: 7px;
    left: 0;

    width: auto;
    max-width: none;

    margin: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .mb-hero__date-numbers {
    font-size: 25px;
    line-height: 0.95;
    letter-spacing: 0.04em;
  }

  .mb-hero__date-month {
    margin-top: 5px;

    font-size: 14px;
    line-height: 1;
  }

  /*
   * Немного освобождаем балерину.
   */
  .mb-hero__title span:first-child {
    font-size: 50px;
  }

  .mb-hero__title span:last-child {
    font-size: 33px;
  }

  /*
   * Нижний текст.
   */
  .mb-hero__lead {
    max-width: 315px;

    font-size: 15px;
    line-height: 1.34;
  }

  /*
   * Затемнение только снизу.
   */
  .mb-hero__content::after {
    left: -18px;
    right: -18px;
    bottom: -20px;

    height: 43%;

    background:
      linear-gradient(
        180deg,
        rgba(6, 3, 2, 0.00) 0%,
        rgba(6, 3, 2, 0.12) 18%,
        rgba(6, 3, 2, 0.42) 44%,
        rgba(6, 3, 2, 0.72) 68%,
        rgba(6, 3, 2, 0.94) 100%
      );
  }

}

@media (max-width: 380px) {

  .mb-hero__brand {
    height: 86px;
  }

  .mb-hero__brand .mb-hero__logo {
    width: 105px;
  }

  .mb-hero__date-numbers {
    font-size: 22px;
  }

  .mb-hero__date-month {
    font-size: 13px;
  }

  .mb-hero__title span:first-child {
    font-size: 45px;
  }

  .mb-hero__title span:last-child {
    font-size: 33px;
  }

}

/* ==================================================
   SECTION 02 — ABOUT
   ================================================== */

.mb-about {
  position: relative;

  min-height: 760px;

  display: grid;
  grid-template-columns: 54% 46%;

  overflow: hidden;

  background: #f2ede3;
  color: #241513;
}

.mb-about__copy {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(198, 157, 93, 0.10),
      transparent 34%
    ),
    #f2ede3;
}

.mb-about__copy-inner {
  width: min(720px, 100%);

  margin-left: auto;

  padding:
    clamp(70px, 8vw, 118px)
    clamp(48px, 6vw, 92px)
    clamp(68px, 7vw, 104px)
    clamp(34px, 5vw, 72px);
}

.mb-about__title {
  margin: 0 0 27px;

  max-width: 650px;

  font-family: var(--mb-serif);
  font-size: clamp(43px, 4.2vw, 68px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-transform: uppercase;

  color: #1d1411;
}

.mb-about__accent {
  margin: 0 0 27px;

  max-width: 620px;

  font-family: var(--mb-serif);
  font-size: clamp(26px, 2.15vw, 35px);
  line-height: 1.13;

  color: #751923;
}

.mb-about__text {
  margin: 0;

  max-width: 610px;

  font-family: var(--mb-serif);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.38;

  color: #2a211c;
}

.mb-about__benefits {
  margin-top: clamp(38px, 4.3vw, 58px);

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px;
}

.mb-about__benefit {
  min-width: 0;

  text-align: center;
}

.mb-about__icon {
  width: 47px;
  height: 47px;

  margin: 0 auto 12px;

  color: #841723;
}

.mb-about__icon svg {
  display: block;
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mb-about__benefit:last-child .mb-about__icon svg {
  fill: currentColor;
  stroke-width: 1.4;
}

.mb-about__benefit-text {
  font-family: var(--mb-serif);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.18;

  color: #291a17;
}


/* PHOTO */

.mb-about__visual {
  position: relative;

  min-width: 0;
  min-height: 760px;

  overflow: hidden;

  background: #251713;
}

.mb-about__visual::before {
  content: "";

  position: absolute;
  inset: 0 auto 0 0;

  z-index: 1;

  width: 18%;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      #f2ede3 0%,
      rgba(242, 237, 227, 0.82) 21%,
      rgba(242, 237, 227, 0.32) 56%,
      rgba(242, 237, 227, 0) 100%
    );
}

.mb-about__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 54% center;
}


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

@media (max-width: 1100px) {

  .mb-about {
    min-height: 700px;
    grid-template-columns: 56% 44%;
  }

  .mb-about__copy-inner {
    padding:
      65px
      42px
      65px
      36px;
  }

  .mb-about__title {
    font-size: clamp(40px, 4.7vw, 56px);
  }

  .mb-about__accent {
    font-size: clamp(24px, 2.8vw, 31px);
  }

  .mb-about__text {
    font-size: 18px;
  }

  .mb-about__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px 20px;
  }

  .mb-about__visual {
    min-height: 700px;
  }

}


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

@media (max-width: 700px) {

  .mb-about {
    min-height: 0;

    display: block;

    background: #f2ede3;
  }

  .mb-about__copy {
    position: relative;
    z-index: 3;

    display: block;

    background: #f2ede3;
  }

  .mb-about__copy::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -96px;

    height: 98px;

    pointer-events: none;

    background:
      linear-gradient(
        180deg,
        #f2ede3 0%,
        rgba(242, 237, 227, 0.94) 25%,
        rgba(242, 237, 227, 0.66) 57%,
        rgba(242, 237, 227, 0) 100%
      );
  }

  .mb-about__copy-inner {
    width: 100%;

    padding:
      66px
      20px
      55px;

    margin: 0;
  }

  .mb-about__title {
    max-width: 100%;

    margin-bottom: 23px;

    font-size: clamp(38px, 10.6vw, 49px);
    line-height: 0.98;
  }

  .mb-about__accent {
    margin-bottom: 21px;

    font-size: clamp(23px, 6.7vw, 30px);
    line-height: 1.13;
  }

  .mb-about__text {
    max-width: 100%;

    font-size: 17px;
    line-height: 1.42;
  }

  .mb-about__benefits {
    margin-top: 37px;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 15px;
  }

  .mb-about__icon {
    width: 42px;
    height: 42px;

    margin-bottom: 10px;
  }

  .mb-about__benefit-text {
    font-size: 16px;
    line-height: 1.18;
  }


  /* Photo continues directly from the light text area */

  .mb-about__visual {
    min-height: 520px;
    height: 70svh;

    margin-top: 0;

    background: #251713;
  }

  .mb-about__visual::before {
    inset: 0;

    width: 100%;
    height: 155px;

    background:
      linear-gradient(
        180deg,
        #f2ede3 0%,
        rgba(242, 237, 227, 0.82) 25%,
        rgba(242, 237, 227, 0.38) 57%,
        rgba(242, 237, 227, 0) 100%
      );
  }

  .mb-about__image {
    width: 100%;
    height: 100%;

    object-position: 53% center;
  }

}


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

@media (max-width: 380px) {

  .mb-about__copy-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mb-about__title {
    font-size: 36px;
  }

  .mb-about__accent {
    font-size: 22px;
  }

  .mb-about__text {
    font-size: 16px;
  }

  .mb-about__benefit-text {
    font-size: 15px;
  }

  .mb-about__visual {
    min-height: 470px;
  }

}

/* END SECTION 02 */

