/* ──────────────────────────────────────────────
   support.css — styles unique to the support page
   ────────────────────────────────────────────── */

/* SUPPORT HERO */
.support-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  background: var(--cream);
}
.support-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
}
.support-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.support-hero p {
  color: var(--ink-muted);
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0; animation: fadeUp 0.9s 0.35s forwards;
}

/* FAQ */
.section-faq {
  background: var(--warm-white);
  padding: 4rem 2rem 5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}
.faq-list details {
  border-bottom: 0.5px solid var(--border);
}
.faq-list details:first-child {
  border-top: 0.5px solid var(--border);
}
.faq-list summary {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: var(--ink);
  line-height: 1.4;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ink-faint);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after {
  content: "\2212";
}
.faq-answer {
  padding: 0 0 1.5rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 600px;
}
.faq-answer a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 102, 93, 0.3);
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.faq-answer a:hover { opacity: 0.7; }
.faq-answer .sep { color: var(--ink-faint); }

/* CONTACT */
.section-contact {
  background: var(--cream);
  padding: 4rem 2rem 5rem;
}
.contact-sub {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 600px;
}
.contact-sub a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 102, 93, 0.3);
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.contact-sub a:hover { opacity: 0.7; }
.contact-sub .sep { color: var(--ink-faint); }

/* RESPONSIVE (support-specific) */
@media (max-width: 680px) {
  .support-hero { padding: 6rem 1.25rem 2.5rem; }
  .section-faq { padding: 3rem 1.25rem 4rem; }
  .section-contact { padding: 3rem 1.25rem 4rem; }
}
