.contact-page {
  color: #1f1f1f;
  background: #fdfbf8;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section-space {
  padding: 90px 0;
}

/* Hero */
.contact-hero {
  padding: 140px 0 100px;
  background:
    linear-gradient(rgba(250, 247, 243, 0.88), rgba(250, 247, 243, 0.88)),
    url('../images/contact-hero.png') center center / cover no-repeat;
}

.contact-hero__content {
  max-width: 760px;
}

.contact-hero__eyebrow,
.contact-form__eyebrow,
.contact-cta__eyebrow,
.contact-faq__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6f57;
}

.contact-hero__title {
  margin: 0 0 20px;
  font-family: "GFS Didot", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  color: #161616;
}

.contact-hero__text {
  max-width: 650px;
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #4e4a46;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid #1f1f1f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn--primary {
  background: #1f1f1f;
  color: #fff;
}

.btn--primary:hover {
  background: transparent;
  color: #1f1f1f;
}

.btn--secondary {
  background: transparent;
  color: #1f1f1f;
}

.btn--secondary:hover {
  background: #1f1f1f;
  color: #fff;
}

.btn--full {
  width: 100%;
}

/* Intro */
.contact-intro {
  background: #fff;
}

.contact-intro__inner {
  max-width: 820px;
}

.contact-intro__inner h2 {
  margin: 0 0 18px;
  font-family: "GFS Didot", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 400;
  color: #161616;
}

.contact-intro__inner p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: #4e4a46;
}

/* Main grid */
.contact-main {
  background: transparent;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 38px;
  align-items: start;
}

/* Details */
.contact-details {
  display: grid;
  gap: 20px;
}

.contact-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 31, 31, 0.08);
}

.contact-card h3 {
  margin: 0 0 12px;
  font-family: "GFS Didot", serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  color: #161616;
}

.contact-card p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.8;
  color: #4e4a46;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: #1f1f1f;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 31, 31, 0.25);
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

.contact-card a:hover {
  opacity: 0.7;
  border-color: #1f1f1f;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Form */
.contact-form-box {
  padding: 40px;
  background: #fff;
  border: 1px solid rgba(31, 31, 31, 0.08);
}

.contact-form-box h2 {
  margin: 0 0 14px;
  font-family: "GFS Didot", serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 400;
  color: #161616;
}

.contact-form__intro {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #4e4a46;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6c625b;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(31, 31, 31, 0.14);
  background: #fff;
  color: #1f1f1f;
  font-size: 15px;
  line-height: 1.5;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #8a6f57;
  box-shadow: 0 0 0 3px rgba(138, 111, 87, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 180px;
}

/* CTA */
.contact-cta {
  background: #fff;
}

.contact-cta__box {
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: 30px;
  align-items: center;
  padding: 44px;
  background: transparent;
 
}

.contact-cta__content h2 {
  margin: 0 0 16px;
  font-family: "GFS Didot", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 400;
  color: #161616;
}

.contact-cta__content p {
  margin: 0;
  max-width: 780px;
  font-size: 16px;
  line-height: 1.85;
  color: #4e4a46;
}

/* FAQ */
.contact-faq {
  background: #fdfbf8;
}

.contact-faq__inner {
  max-width: 900px;
}

.contact-faq__inner h2 {
  margin: 0 0 30px;
  font-family: "GFS Didot", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 400;
  color: #161616;
}

.contact-faq__list {
  display: grid;
  gap: 20px;
}

.contact-faq__item {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(31, 31, 31, 0.08);
}

.contact-faq__item h3 {
  margin: 0 0 12px;
  font-family: "GFS Didot", serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  color: #161616;
}

.contact-faq__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #4e4a46;
}

/* Responsive */
@media (max-width: 991px) {
  .section-space {
    padding: 70px 0;
  }

  .contact-hero {
    padding: 120px 0 80px;
  }

  .contact-main__grid,
  .contact-cta__box,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 30px;
  }

  .contact-cta__box {
    padding: 34px;
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
  }

  .section-space {
    padding: 44px 0;
  }

  .contact-hero {
    padding: 48px 0 44px;
    background:
      linear-gradient(rgba(250, 247, 243, 0.93), rgba(250, 247, 243, 0.93)),
      url('../images/contact-hero.png') center center / cover no-repeat;
  }

  .contact-hero__content {
    max-width: 100%;
  }

  .contact-hero__eyebrow,
  .contact-form__eyebrow,
  .contact-cta__eyebrow,
  .contact-faq__eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .contact-hero__title {
    margin: 0 0 14px;
    font-size: 56px;
    line-height: 0.95;
  }

  .contact-hero__text,
  .contact-intro__inner p,
  .contact-form__intro,
  .contact-cta__content p,
  .contact-faq__item p,
  .contact-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-hero__actions {
    margin-top: 24px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 12px;
    letter-spacing: 0.07em;
  }

  .contact-main__grid,
  .contact-cta__box,
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card,
  .contact-faq__item,
  .contact-form-box,
  .contact-cta__box {
    padding: 20px;
  }

  .contact-intro__inner h2,
  .contact-form-box h2,
  .contact-cta__content h2,
  .contact-faq__inner h2 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .contact-card h3,
  .contact-faq__item h3 {
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .contact-form {
    gap: 14px;
  }

  .form-row {
    gap: 14px;
  }

  .form-group label {
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 14px;
    font-size: 14px;
  }

  .form-group textarea {
    min-height: 140px;
  }
}
@media (max-width: 420px) {
  .container {
    width: calc(100% - 24px);
  }

  .contact-hero {
    padding: 40px 0 38px;
  }

  .contact-hero__title {
    font-size: 48px;
  }

  .contact-hero__text {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .btn {
    min-height: 46px;
    padding: 11px 16px;
    font-size: 11px;
  }

  .contact-intro__inner h2,
  .contact-form-box h2,
  .contact-cta__content h2,
  .contact-faq__inner h2 {
    font-size: 30px;
  }

  .contact-card h3,
  .contact-faq__item h3 {
    font-size: 20px;
  }
}