/* ============================================================
   StayJC — faq.css
   FAQ page (faq.php).
   ============================================================ */

.faq-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.faq-head {
  text-align: center;
  margin-bottom: 56px;
}
.faq-head .sec-label { margin-bottom: 12px; }
.faq-title {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.faq-sub {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.faq-sub a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); }
.faq-sub a:hover { opacity: 0.7; }

/* ---------- Q&A LIST ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: transparent;
  border-top: 1px solid var(--hairline);
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item[open] { border-color: var(--ink); }

.faq-q {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--brick); }

.faq-q::after {
  content: '+';
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96, 'SOFT' 100, 'WONK' 1;
  font-size: 32px;
  font-weight: 300;
  color: var(--brick);
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after {
  content: '–';
}

.faq-a {
  padding: 0 0 26px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 90%;
}

/* ---------- BOTTOM CTA ---------- */
.faq-footer {
  margin-top: 80px;
  padding: 56px 24px;
  background: var(--paper-deep);
  border-radius: 0;
  text-align: center;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.faq-footer-title {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 60, 'SOFT' 50, 'WONK' 1;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.faq-footer p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 520px;
}
.faq-footer p a {
  color: var(--brick);
  text-decoration: none;
  border-bottom: 1px solid var(--brick);
}
.faq-footer-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-secondary-light {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--tan);
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary-light:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .faq-page { padding: 100px 16px 60px; }
  .faq-head { margin-bottom: 36px; }
  .faq-q { padding: 16px 18px; font-size: 15px; }
  .faq-a { padding: 0 18px 18px; font-size: 14px; }
  .faq-footer { padding: 32px 20px; }
}
