/* ════════════════════════════════
   PAGE — how-it-works.html
   ════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 50vh;
  padding: 8rem 2rem 4rem;
}

.hero::before {
  background: radial-gradient(ellipse at 50% 40%, rgba(166, 130, 107, 0.07) 0%, transparent 60%);
}

.hero h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }

.hero-sub { max-width: 520px; }

/* ── TYPOGRAPHY ── */
.prose { max-width: 680px; }

/* ── BUTTON OVERRIDE ── */
.btn-primary { cursor: pointer; }

/* ── TIMELINE ── */
.timeline {
  margin-top: 3rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--terra-light), transparent);
}

.timeline-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  padding-left: 0.5rem;
}

.timeline-step.visible { animation: fadeUp 0.7s ease forwards; }

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--terra);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terra);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--warm-black);
  margin-bottom: 0.6rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid rgba(166, 130, 107, 0.15);
  padding: 1.75rem 0;
  opacity: 0;
  transform: translateY(16px);
}

.faq-item.visible { animation: fadeUp 0.6s ease forwards; }

.faq-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--warm-black);
  margin-bottom: 0.65rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CONTACT FORM ── */
.contact-section {
  padding: 6rem 0;
  text-align: left;
}

.contact-form {
  margin-top: 3rem;
  max-width: 640px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra-dark);
  font-family: 'Cormorant Garamond', serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(166, 130, 107, 0.3);
  padding: 0.85rem 1rem;
  font-family: 'Questrial', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: border-color 0.3s ease;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terra);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.75rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .container { padding: 0 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .about-section { padding: 4rem 0; }
}
