@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;
}

.cta {
  width: 1440px;
  height: 1270px;
  background: #FFFFFF;
  padding: 160px 64px 0;
  box-sizing: border-box;
  position: relative;
}
.cta__inner {
  width: 1312px;
  height: 950px;
  position: relative;
}
.cta__photo {
  /* Figma Frame 2147228928: 829 × 950 at (547, 0).
     Demo placeholder: intimate celebration из Unsplash + fallback gradient. */
  position: absolute;
  top: 0;
  left: 547px;
  width: 829px;
  height: 950px;
  background: url("../../assets/img/sections/cta-photo.png") center/cover no-repeat, linear-gradient(135deg, #b9a382 0%, #8e7454 50%, #5f4a35 100%);
  overflow: hidden;
}
.cta__text {
  /* Text container 765 × 709 at (0, 150). */
  position: absolute;
  top: 150px;
  left: 0;
  width: 765px;
}
.cta__heading-box {
  width: 555px;
}
.cta__heading {
  /* Figma 512:20585 — Display/H4: Chiswick Text 34/1.15/+2px, UPPERCASE. */
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 2px;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  width: 487px;
}
.cta__heading em, .cta__heading .cta__accent {
  font-style: italic;
  color: #B29261;
}
.cta__sub {
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #000000;
  margin: 24px 0 0;
}
.cta__form {
  margin-top: 56px;
  width: 765px;
  padding: 32px;
  background: #F7F1DF;
  box-sizing: border-box;
}
.cta__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.cta__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta__label {
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #000000;
  font-weight: 400;
}
.cta__input {
  height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  background: transparent;
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-size: 16px;
  color: #000000;
  padding: 0 4px;
  outline: none;
}
.cta__input:focus {
  border-bottom-color: #000000;
}
.cta__textarea {
  margin-bottom: 40px;
}
.cta__input-wide {
  width: 100%;
  height: 46px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  background: transparent;
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-size: 16px;
  color: #000000;
  padding: 0 4px;
  outline: none;
  resize: vertical;
}
.cta__input-wide:focus {
  border-bottom-color: #000000;
}
.cta__footer {
  display: flex;
  align-items: center;
  gap: 32px;
}
.cta__submit {
  padding: 8px 24px;
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #000000;
  border: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.cta__submit:hover {
  background: #2a2420;
}
.cta__or {
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #000000;
  margin: 0;
  font-style: italic;
}
.cta__or a {
  color: #B29261;
  text-decoration: underline;
}
.cta {
  /* ───── Responsive overrides ───── */
}
@media (max-width: 1023px) {
  .cta {
    width: 100%;
    height: auto;
    padding: 96px 32px 80px;
  }
  .cta__inner {
    width: 100%;
    height: auto;
  }
  .cta__photo {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 420px;
    margin-bottom: 40px;
  }
  .cta__text {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
  .cta__heading-box {
    width: 100%;
  }
  .cta__heading {
    width: 100%;
    font-size: 56px;
  }
  .cta__form {
    width: 100%;
    padding: 28px;
  }
  .cta__row {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .cta {
    padding: 64px 20px 60px;
  }
  .cta__photo {
    height: 280px;
    margin-bottom: 32px;
  }
  .cta__heading {
    font-size: 40px;
    line-height: 1.15;
  }
  .cta__sub {
    margin-top: 20px;
    font-size: 14px;
  }
  .cta__form {
    margin-top: 40px;
    padding: 20px;
  }
  .cta__row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .cta__textarea {
    margin-bottom: 24px;
  }
  .cta__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cta__submit {
    width: 100%;
    padding: 12px 24px;
  }
}