.contact-page {
  background: #f8f5f2;
  padding: 70px 20px;
}

.contact-hero,
.quick-contact-grid,
.contact-layout,
.pickup-section,
.order-help-box {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero {
  text-align: center;
  background: white;
  border: 1px solid #eaded2;
  border-radius: 28px;
  padding: 54px 24px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.05);
}

.contact-kicker {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff7f0;
  color: #8b5a2b;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-hero h1,
.contact-form h2,
.contact-faq h2,
.pickup-section h2,
.order-help-box h2 {
  font-family: "Playfair Display", serif;
  color: #3f2a1d;
}

.contact-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 0 0 14px;
}

.contact-hero p,
.contact-form p,
.pickup-section p,
.order-help-box p {
  color: #75665c;
  line-height: 1.7;
  margin: 0;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.quick-contact-card,
.contact-form,
.contact-faq,
.pickup-section,
.order-help-box {
  background: white;
  border: 1px solid #eaded2;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.04);
}

.quick-contact-card {
  padding: 24px;
}

.quick-contact-card i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3e7da;
  color: #8b5a2b;
  margin-bottom: 14px;
}

.quick-contact-card h2 {
  color: #3f2a1d;
  font-size: 17px;
  margin: 0 0 8px;
}

.quick-contact-card p,
.quick-contact-card span {
  color: #75665c;
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-top: 28px;
}

.contact-form,
.contact-faq {
  padding: 28px;
}

.contact-form h2,
.contact-faq h2,
.pickup-section h2,
.order-help-box h2 {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  margin-top: 12px;
  border: 1px solid #eaded2;
  border-radius: 12px;
  font-family: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8b5a2b;
  box-shadow: 0 0 0 3px rgba(139,90,43,0.1);
}

.contact-form button,
.order-help-box a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  padding: 13px 24px;
  border: none;
  border-radius: 999px;
  background: #8b5a2b;
  color: white;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.contact-faq details {
  border-top: 1px solid #eaded2;
  padding: 15px 0;
}

.contact-faq details:first-of-type {
  border-top: none;
}

.contact-faq summary {
  color: #3f2a1d;
  font-weight: 700;
  cursor: pointer;
}

.contact-faq details p {
  color: #75665c;
  line-height: 1.7;
  margin-bottom: 0;
}

.pickup-section,
.order-help-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 30px;
  margin-top: 28px;
}

.pickup-address-card {
  min-width: 260px;
  background: #fffaf6;
  border: 1px solid #eaded2;
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 8px;
  color: #75665c;
}

.pickup-address-card i {
  color: #8b5a2b;
  font-size: 24px;
}

.pickup-address-card strong {
  color: #3f2a1d;
}

@media (max-width: 900px) {
  .quick-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout,
  .pickup-section,
  .order-help-box {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .contact-page {
    padding: 42px 14px;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero,
  .contact-form,
  .contact-faq,
  .pickup-section,
  .order-help-box {
    padding: 22px;
  }
}
