/* =============================================================
   MAPLE HEAD SPA — FAQ PAGE STYLES
============================================================= */

body { background: var(--paper); }

/* === PAGE HEADER (matches services.html) === */
.page-head {
  background: var(--paper); text-align: center;
  padding: 140px 24px 30px;
}
.page-eyebrow {
  font-family: var(--sans); font-weight: 400;
  font-size: 12px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 18px;
  opacity: 0; transform: translateY(8px);
  animation: rise .9s .1s ease-out forwards;
}
.page-title {
  display: block; margin: 0 auto; width: 180px; height: auto;
  opacity: 0; transform: translateY(12px);
  animation: rise 1.1s .25s ease-out forwards;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* === MAIN CONTENT WRAPPER === */
.faq-wrap {
  max-width: 900px; margin: 0 auto;
  padding: 20px 24px 100px;
}

/* === SECTION BLOCK === */
.faq-section {
  padding: 48px 0 0;
  border-top: 1px solid var(--line);
}
.faq-section:first-child { border-top: none; padding-top: 16px; }

.faq-section-title {
  font-family: var(--sans); font-weight: 400;
  font-size: 13px; letter-spacing: .44em; text-transform: uppercase;
  color: var(--deep-brown); margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.faq-section-title::after {
  content: ""; flex: 1; height: 1px;
  background: var(--line);
}

/* === FAQ Q&A ITEMS === */
.faq-list { list-style: none; padding: 0; }
.faq-item {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 24px 40px; padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  font-family: var(--sans); font-weight: 400;
  font-size: 14px; line-height: 1.5; color: var(--deep-brown);
}
.faq-answer {
  font-family: var(--sans); font-weight: 300;
  font-size: 14px; line-height: 1.7; color: var(--text-soft);
}

/* === BULLET LISTS (Aftercare / Policy) === */
.faq-columns {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.faq-col-title {
  font-family: var(--sans); font-weight: 400;
  font-size: 12px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--deep-brown); margin-bottom: 20px;
}
.faq-bullet-list {
  list-style: none; padding: 0; margin: 0;
}
.faq-bullet-list li {
  font-family: var(--sans); font-weight: 300;
  font-size: 14px; line-height: 1.75; color: var(--text-soft);
  padding: 8px 0 8px 18px; position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.faq-bullet-list li:last-child { border-bottom: none; }
.faq-bullet-list li::before {
  content: ""; position: absolute; left: 0; top: 17px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--bronze);
}

/* === CONSULTATION SECTION === */
.faq-consultation-intro {
  font-family: var(--sans); font-weight: 300;
  font-size: 14px; line-height: 1.75; color: var(--text-soft);
  margin-bottom: 28px;
}
.contraindication-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 32px;
}
.contraindication-tag {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(246,241,230,.6);
}
.contraindication-tag span {
  font-family: var(--sans); font-weight: 300;
  font-size: 12px; letter-spacing: .06em; color: var(--text-dark);
  line-height: 1.3;
}
.faq-legal {
  font-family: var(--sans); font-weight: 300;
  font-size: 12px; line-height: 1.7; color: var(--text-soft);
  padding-top: 24px; border-top: 1px solid var(--line-soft);
}
.faq-legal p + p { margin-top: 8px; }

/* === RESPONSIVE === */
@media (max-width: 760px) {
  .faq-item {
    grid-template-columns: 1fr;
    gap: 8px; padding: 20px 0;
  }
  .faq-question { color: var(--deep-brown); font-weight: 400; }
  .faq-columns  { grid-template-columns: 1fr; gap: 32px; }
  .contraindication-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { padding: 20px 20px 80px; }
}
@media (max-width: 480px) {
  .contraindication-grid { grid-template-columns: 1fr; }
}
