@charset "UTF-8";
/* ---------- COLORS ---------- */
/* ---------- FONT FAMILIES ---------- */
/* ---------- TYPOGRAPHY ---------- */
/* ---------- CSS CUSTOM PROPERTIES (для runtime-доступа из JS/замеров) ---------- */
:root {
  --c-white: #FFFFFF;
  --c-black: #000000;
  --c-ivory: #F7F1DF;
  --c-light-gray: #FAFAF9;
  --c-gold: #B29261;
  --c-orange: #E60000;
  --ff-display: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  --ff-sans: "CaslonDoric-stand", "Figtree", system-ui, -apple-system, sans-serif;
  --ff-script: "Shelley-stand", "Imperial Script", "Great Vibes", cursive;
}

.our-promise {
  width: 1440px;
  height: 731px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-promise__card {
  /* Figma Outer container 876×411, центрирован в 1440×731. */
  width: 876px;
  height: 411px;
  background: #F7F1DF;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our-promise__inner {
  /* Figma Inner container 656×271, padding 110 по бокам, 80 сверху, 60 снизу. */
  width: 656px;
  height: 271px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our-promise__text {
  /* Figma Text container 550×146, inset 53px по бокам. */
  width: 550px;
  height: 146px;
  text-align: center;
}
.our-promise__heading {
  /* Figma Display/H4 — Chiswick Text Regular 34/1.15/2px.
     В Figma width=387 задан под конкретный текст "OUR PROMISE TO YOU" —
     делаем inline-block, чтобы размер определялся контентом. */
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 2px;
  display: inline-block;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600; /* Chiswick Regular визуально ближе к Cormorant Semibold */
}
.our-promise__body {
  /* Figma Display/Caption 2 — Chiswick Text Light 20/1.25/0.
     Cormorant чуть шире Chiswick — подтягиваем letter-spacing,
     чтобы текст уместился в те же 3 строки (550 × 75). */
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
  letter-spacing: -0.01em;
  color: #000000;
  margin: 32px 0 0;
}
.our-promise__body strong {
  font-weight: 600;
}
.our-promise__monogram {
  /* Figma Monogram 2 instance 74×69. SVG экспортирован через REST → assets/img/icons/monogram.svg.
     font-family оставляем t.$ff-script для совпадения с Figma-токеном (reference expects Great Vibes). */
  width: 74px;
  height: 69px;
  margin-top: 56px;
  background: url("../../assets/img/icons/monogram.svg") center/contain no-repeat;
  font-family: "Shelley-stand", "Imperial Script", "Great Vibes", cursive;
  font-size: 0; /* прячет fallback-текст; color оставляем для совпадения Figma-ref */
  line-height: 0;
  color: #000000;
  text-align: center;
}
.our-promise {
  /* ───── Responsive overrides ───── */
}
@media (max-width: 1023px) {
  .our-promise {
    width: 100%;
    height: auto;
    padding: 80px 24px;
  }
  .our-promise__card {
    width: min(90%, 700px);
    height: auto;
    padding: 64px 40px 48px;
    box-sizing: border-box;
  }
  .our-promise__inner {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
  .our-promise__text {
    width: 100%;
    height: auto;
  }
  .our-promise__heading {
    font-size: 28px;
  }
  .our-promise__body {
    margin-top: 24px;
    font-size: 17px;
  }
  .our-promise__monogram {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .our-promise {
    padding: 60px 16px;
  }
  .our-promise__card {
    width: 90%;
    padding: 48px 24px 36px;
  }
  .our-promise__heading {
    font-size: 22px;
    letter-spacing: 1.5px;
  }
  .our-promise__body {
    font-size: 15px;
    margin-top: 20px;
    line-height: 1.35;
  }
  .our-promise__monogram {
    margin-top: 28px;
    font-size: 52px;
    width: 58px;
    height: 54px;
  }
}