/* ─── FAQ page ───────────────────────────────────────────────────────────────── */

/* ─── Header ─────────────────────────────────────────────────────────────────── */
.faq-header {
  background: var(--sp-ivory);
  background-image: radial-gradient(ellipse at 60% 0%, rgba(196,148,58,0.05) 0%, transparent 55%);
  border-bottom: 1px solid var(--sp-border);
  padding: 108px 48px 56px;
  text-align: center;
}

.faq-header-inner {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sp-gold);
  background: rgba(196,148,58,0.08);
  border: 1px solid rgba(196,148,58,0.22);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.faq-header h1 {
  font-family: var(--sp-serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--sp-charcoal);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.faq-sub {
  font-size: 16px;
  color: var(--sp-text-dim);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* ─── Body ───────────────────────────────────────────────────────────────────── */
.faq-body {
  background: var(--sp-ivory);
  padding: 0 0 64px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── Groups ─────────────────────────────────────────────────────────────────── */
.faq-group {
  padding: 44px 0 0;
}
.faq-group:last-child {
  padding-bottom: 0;
}

.faq-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sp-gold);
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sp-border);
}

/* ─── Accordion items ────────────────────────────────────────────────────────── */
.faq-items {
  border-bottom: 1px solid var(--sp-border);
}

.faq-item {
  border-top: 1px solid var(--sp-border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--sp-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--sp-charcoal);
  line-height: 1.4;
  transition: color 0.15s;
}
.faq-q:hover {
  color: var(--sp-gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(196,148,58,0.13);
  border: 1px solid rgba(196,148,58,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sp-gold);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.15s,
              border-color 0.15s;
}
.faq-icon svg { stroke-width: 2.5; }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(196,148,58,0.20);
  border-color: rgba(196,148,58,0.48);
}

.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a-wrap {
  max-height: 500px;
}

.faq-a {
  padding: 0 40px 20px 0;
  font-size: 14.5px;
  color: var(--sp-text-dim);
  line-height: 1.75;
}
.faq-a a {
  color: var(--sp-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,148,58,0.3);
}
.faq-a a:hover {
  border-color: var(--sp-gold);
  text-decoration: none;
}

/* ─── Atmospheric rule ───────────────────────────────────────────────────────── */
.faq-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196,148,58,0.18) 30%, rgba(196,148,58,0.38) 50%, rgba(196,148,58,0.18) 70%, transparent 100%);
  margin: 48px 0 0;
}

/* ─── Bottom CTA ─────────────────────────────────────────────────────────────── */
.faq-cta-section {
  background: #0A1210;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.faq-cta-section .faq-inner {
  padding-top: 72px;
  padding-bottom: 72px;
}

.faq-cta-inner {
  text-align: center;
}

.faq-cta-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sp-gold);
  opacity: 0.75;
  margin-bottom: 14px;
}

.faq-cta-section h2 {
  font-family: var(--sp-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.faq-cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}

.faq-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-cta-outline {
  color: rgba(255,255,255,0.65) !important;
  border-color: rgba(255,255,255,0.16) !important;
  background: transparent !important;
}
.faq-cta-outline:hover {
  color: rgba(255,255,255,0.9) !important;
  border-color: rgba(255,255,255,0.35) !important;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.hiw-footer {
  background: var(--sp-charcoal);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.hiw-footer-brand {
  font-family: var(--sp-serif);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.hiw-footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.hiw-footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; }
.hiw-footer-links a:hover { color: rgba(255,255,255,0.75); }

/* ─── Scroll reveal ──────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease var(--reveal-delay, 0s), transform 0.55s ease var(--reveal-delay, 0s);
  }
  [data-reveal].revealed { opacity: 1; transform: none; }
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .faq-header { padding: 100px 24px 48px; }
  .faq-header h1 { font-size: clamp(30px, 10vw, 44px); }
  .faq-inner { padding: 0 24px; }
  .faq-group { padding-top: 36px; }
  .faq-q { font-size: 14px; padding: 14px 0; }
  .faq-a { font-size: 14px; padding-right: 0; }
  .faq-cta-section .faq-inner { padding: 56px 24px; }
  .faq-cta-btns { flex-direction: column; align-items: center; }
  .hiw-footer { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
  .hiw-footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
}

/* ─── Floating chat button ─────────────────────────────────────────────────── */
.chat-btn { position:fixed; bottom:28px; right:28px; z-index:9999; display:inline-flex; align-items:center; gap:8px; background:#0A1210; border:1px solid rgba(201,168,76,0.4); border-radius:50px; padding:11px 20px; text-decoration:none; box-shadow:0 4px 24px rgba(0,0,0,0.35); transition:border-color 0.15s,transform 0.15s; }
.chat-btn:hover { border-color:#C9A84C; transform:translateY(-2px); text-decoration:none; }
.chat-btn-dot { width:7px; height:7px; border-radius:50%; background:#C9A84C; flex-shrink:0; animation:chat-pulse 2s infinite; }
.chat-btn-text { font-family:'Inter',Arial,sans-serif; font-size:13px; font-weight:600; color:rgba(255,255,255,0.85); white-space:nowrap; }
@keyframes chat-pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
@media(max-width:480px){.chat-btn{padding:11px 14px;bottom:20px;right:16px}.chat-btn-text{display:none}}
