/* ================================================================
   FARFETCHD — Static Pages (About / FAQ)
   ================================================================ */

/* ── Shared page layout ── */
.fd-page-atelier,
.fd-page-faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 40px 100px;
}
@media (max-width: 640px) {
  .fd-page-atelier,
  .fd-page-faq { padding: 48px 24px 72px; }
}

/* ── Page hero text ── */
.fd-page-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8975A;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fd-page-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #B8975A;
  flex-shrink: 0;
}
.fd-page-hero-text h1 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  color: #1a1a1a !important;
  margin: 0 0 1.25rem !important;
}
.fd-page-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
  max-width: 640px;
  margin: 0 0 2.5rem;
}

/* ── Divider ── */
.fd-page-rule {
  border: none;
  border-top: 1px solid #e8e4de;
  margin: 3rem 0;
}

/* ── About body copy ── */
.fd-page-atelier h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
  margin: 2.5rem 0 0.75rem !important;
  letter-spacing: 0.02em !important;
}
.fd-page-atelier p {
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  margin: 0 0 1.25rem;
}

/* ── About stats grid ── */
.fd-page-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e8e4de;
  border: 1px solid #e8e4de;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  .fd-page-stats-grid { grid-template-columns: 1fr 1fr; }
}
.fd-page-stat {
  background: #fafaf8;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fd-page-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 300;
  color: #B8975A;
  line-height: 1;
}
.fd-page-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  line-height: 1.4;
}

/* ── FAQ layout ── */
.fd-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.fd-faq-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
  margin: 0 0 1.25rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 1px solid #e8e4de !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* ── FAQ item ── */
.fd-faq-item {
  border-bottom: 1px solid #f0ede8;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}
.fd-faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.fd-faq-item h3 {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  margin: 0 0 0.625rem !important;
  line-height: 1.45 !important;
  cursor: default;
}
.fd-faq-item p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}
