.erc-contact-central {
  --contact-accent: #f7cb68;
  --contact-accent-dark: #c28d24;
  --contact-text: #111111;
  --contact-muted: #5e6670;
  --contact-border: rgba(247,203,104,0.42);
  color: var(--contact-text);
  margin: 40px 0;
}
.erc-contact-central__grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
}
.erc-contact-central__badge {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid var(--contact-accent);
  border-radius: 999px;
  color: #9c7a22;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.erc-contact-central__title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  color: #b8861d;
  letter-spacing: .08em;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-weight: 400;
}
.erc-contact-central__subtitle {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 18px;
  font-weight: 600;
}
.erc-contact-central__description p {
  margin: 0 0 16px;
  font-size: 1.35rem;
  line-height: 1.65;
  color: #2a2d33;
}
.erc-contact-central__items {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.erc-contact-central__items li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.22rem;
  font-weight: 700;
}
.erc-contact-central__item-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 999px;
  background: rgba(247, 203, 104, 0.18);
  color: #b8861d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.erc-contact-central__item-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.erc-contact-central__form-card {
  background: #fff;
  border: 1px solid var(--contact-border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
}
.erc-contact-row {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}
.erc-contact-row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.erc-contact-field label {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--contact-muted);
  font-weight: 700;
}
.erc-contact-central input[type="text"],
.erc-contact-central input[type="email"],
.erc-contact-central textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9d9d9 !important;
  border-radius: 999px !important;
  background: #f3f3f3 !important;
  color: #1f1c18 !important;
  padding: 14px 18px !important;
  font-size: 16px !important;
  box-shadow: none !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.erc-contact-central textarea {
  min-height: 150px;
  border-radius: 28px !important;
  resize: vertical;
}
.erc-contact-central input:focus,
.erc-contact-central textarea:focus {
  outline: none !important;
  border-color: var(--contact-accent) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(247,203,104,.25) !important;
}
.erc-contact-consent {
  margin: 4px 0 26px;
}
.erc-contact-consent label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #1f1c18;
  line-height: 1.4;
}
.erc-contact-consent a {
  color: #b8861d;
  text-decoration: underline;
}
.erc-contact-central input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #f3f3f3;
  cursor: pointer;
  position: relative;
  transition: all .2s ease;
}
.erc-contact-central input[type="checkbox"]:checked {
  background: var(--contact-accent);
  border-color: var(--contact-accent);
}
.erc-contact-central input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border: solid #1f1c18;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}
.erc-contact-central__submit {
  width: 100%;
  min-height: 56px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #f7cb68, #c28d24) !important;
  color: #111 !important;
  font-weight: 800 !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.erc-contact-central__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
}
.erc-contact-central__submit:disabled {
  opacity: .68;
  cursor: wait;
}
.erc-contact-central__message {
  display: none;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  text-align: center;
  line-height: 1.5;
}
.erc-contact-central__message.is-success,
.erc-contact-central__message.is-error {
  display: block;
}
.erc-contact-central__message.is-success {
  background: #e9fbef;
  border: 1px solid #9be5b3;
  color: #2dbf60;
}
.erc-contact-central__message.is-error {
  background: #fff0ef;
  border: 1px solid #f3b3ac;
  color: #b42318;
}
body.dark-mode .erc-contact-central,
body.erc-dark-mode .erc-contact-central,
body.theme-dark .erc-contact-central,
html.dark-mode .erc-contact-central,
html.erc-dark-mode .erc-contact-central,
html.theme-dark .erc-contact-central {
  color: #f5f5f5;
}
body.dark-mode .erc-contact-central__title,
body.erc-dark-mode .erc-contact-central__title,
body.theme-dark .erc-contact-central__title,
html.dark-mode .erc-contact-central__title,
html.erc-dark-mode .erc-contact-central__title,
html.theme-dark .erc-contact-central__title {
  color: #f7cb68 !important;
}
body.dark-mode .erc-contact-central__subtitle,
body.dark-mode .erc-contact-central__description p,
body.dark-mode .erc-contact-central__items li,
body.erc-dark-mode .erc-contact-central__subtitle,
body.erc-dark-mode .erc-contact-central__description p,
body.erc-dark-mode .erc-contact-central__items li,
body.theme-dark .erc-contact-central__subtitle,
body.theme-dark .erc-contact-central__description p,
body.theme-dark .erc-contact-central__items li,
html.dark-mode .erc-contact-central__subtitle,
html.dark-mode .erc-contact-central__description p,
html.dark-mode .erc-contact-central__items li,
html.erc-dark-mode .erc-contact-central__subtitle,
html.erc-dark-mode .erc-contact-central__description p,
html.erc-dark-mode .erc-contact-central__items li,
html.theme-dark .erc-contact-central__subtitle,
html.theme-dark .erc-contact-central__description p,
html.theme-dark .erc-contact-central__items li {
  color: #f1f1f1 !important;
}
body.dark-mode .erc-contact-central__badge,
body.erc-dark-mode .erc-contact-central__badge,
body.theme-dark .erc-contact-central__badge,
html.dark-mode .erc-contact-central__badge,
html.erc-dark-mode .erc-contact-central__badge,
html.theme-dark .erc-contact-central__badge {
  color: #f7cb68 !important;
  border-color: #f7cb68 !important;
  background: transparent !important;
}
body.dark-mode .erc-contact-central__form-card,
body.erc-dark-mode .erc-contact-central__form-card,
body.theme-dark .erc-contact-central__form-card,
html.dark-mode .erc-contact-central__form-card,
html.erc-dark-mode .erc-contact-central__form-card,
html.theme-dark .erc-contact-central__form-card {
  background: #f5f5f5 !important;
  color: #1f1c18 !important;
}
@media (max-width: 991px) {
  .erc-contact-central__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
@media (max-width: 767px) {
  .erc-contact-central__form-card {
    padding: 28px 22px;
    border-radius: 22px;
  }
  .erc-contact-row--2 {
    grid-template-columns: 1fr;
  }
  .erc-contact-central__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .erc-contact-central__subtitle {
    font-size: 1.55rem;
  }
}
