.brand-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 16px;
}
@media (max-width: 520px) {
  .brand-page {
    padding: 48px 24px 8px;
  }
}
.brand-page__header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.brand-page__eyebrow {
  font-family: "Jost", "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5c6266;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #835a20;
}
.brand-page__title {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 400;
  line-height: 1;
}
.brand-page__content {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: 17px;
  line-height: 1.85;
}
.brand-page__content p {
  margin-bottom: 24px;
}
.brand-page__content ul,
.brand-page__content ol {
  margin: 0 0 28px;
  padding-left: 32px;
}
.brand-page__content ul {
  list-style: disc;
}
.brand-page__content ol {
  list-style: decimal;
}
.brand-page__content li {
  margin-bottom: 10px;
  padding-left: 8px;
}
.brand-page__content ul li::marker,
.brand-page__content ol li::marker {
  color: #835a20;
}
.brand-page__content h2,
.brand-page__content h3 {
  margin: 40px 0 16px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}
.brand-page__content a:not(.social-list__link) {
  color: #835a20;
  text-decoration: underline;
}

.brand-page__contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(420px, 1.25fr);
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .brand-page__contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.brand-page__socials {
  margin-top: 32px;
  flex-wrap: wrap;
}
.brand-page__content .brand-page__socials {
  margin: 32px 0 0;
  padding-left: 0;
  list-style: none;
}
.brand-page__socials .social-list__item {
  margin-bottom: 0;
  padding-left: 0;
}

.contact-form {
  display: grid;
  gap: 24px;
  padding: 40px;
  background: #dde4e9;
}
@media (max-width: 520px) {
  .contact-form {
    padding: 24px;
  }
}
.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 520px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}
.contact-form__field {
  display: grid;
  gap: 8px;
}
.contact-form__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.contact-form__input {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(43, 47, 51, 0.35);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #2b2f33;
  font: inherit;
  transition: border-color 0.2s ease;
}
.contact-form__input:focus {
  border-color: #2b2f33;
}
.contact-form__input:-webkit-autofill, .contact-form__input:-webkit-autofill:hover, .contact-form__input:-webkit-autofill:focus {
  -webkit-text-fill-color: #2b2f33;
  -webkit-box-shadow: 0 0 0 1000px #dde4e9 inset;
  caret-color: #2b2f33;
}
.contact-form__input--message {
  resize: vertical;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid #2b2f33;
  background: #2b2f33;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}
.contact-form__submit:hover {
  background: transparent;
  color: #2b2f33;
}
.contact-form__notice {
  padding: 12px 16px;
  border-left: 2px solid #835a20;
  background: rgba(255, 255, 255, 0.55);
}
.contact-form__honeypot {
  position: absolute;
  left: -9999px;
}
