/**
 * Storefront FAQ — 1:1 with the design spec. Header/footer are the site's
 * Elementor globals. `.so-topic`, `.so-acc__q` and `.so-handoff__cta` are
 * <button>/<a>, so their colours/backgrounds are written descendant/2-class to
 * beat the Elementor kit's `a`/`button` bleed (0,1,1).
 */

.so-faqpage { background: #0B0508; color: #F5EDE7; font-family: 'Manrope', system-ui, sans-serif; }

/* hero — the only gradient on the page */
.so-hero { border-bottom: 1px solid rgba(245,237,231,.12); background: radial-gradient(120% 140% at 50% 0%, #1A0F15, #0B0508 62%); }
.so-hero > div { max-width: 760px; margin: 0 auto; padding: 64px clamp(20px,4vw,48px) 48px; text-align: center; }
.so-hero__eyebrow { margin: 0 0 12px; font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #E0102F; }
.so-hero__title { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: 42px; font-weight: 600; line-height: 1.1; color: #F5EDE7; }
.so-hero__lede { margin: 16px auto 0; max-width: 520px; font-size: 15px; line-height: 1.65; color: #A98D96; }

/* search pill */
.so-search { position: relative; max-width: 440px; margin: 32px auto 0; }
.so-search__icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); display: flex; color: #A98D96; pointer-events: none; }
.so-search__input { width: 100%; box-sizing: border-box; font-family: 'Manrope', system-ui, sans-serif; font-size: 14px; color: #F5EDE7; background: #160C11; border: 1px solid rgba(245,237,231,.12); border-radius: 999px; padding: 14px 18px 14px 48px; outline: none; transition: border-color 150ms cubic-bezier(.22,1,.36,1); }
.so-search__input:focus { border-color: rgba(224,16,47,.5); }
.so-search__input::placeholder { color: #77606A; }

/* two-column layout */
.so-faq { max-width: 1200px; margin: 0 auto; padding: 48px clamp(20px,4vw,48px) 0; display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }

/* sticky topic rail */
.so-topics { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 4px; }
.so-topics__head { margin: 0 0 12px; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #A98D96; }
.so-topics .so-topic { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 10px; border: 1px solid transparent; background: transparent; font-family: 'Manrope', system-ui, sans-serif; font-size: 13px; font-weight: 500; color: #A98D96; text-decoration: none; text-align: left; cursor: pointer; transition: all 150ms cubic-bezier(.22,1,.36,1); }
.so-topics .so-topic:hover { background: rgba(245,237,231,.05); color: #F5EDE7; }
.so-topics .so-topic.is-active { font-weight: 600; color: #F5EDE7; background: rgba(224,16,47,.12); border-color: rgba(224,16,47,.5); }
.so-topic__n { font-size: 11px; color: #77606A; }
.so-topics .so-topic.is-active .so-topic__n { color: #E0102F; }

/* body + group headers (explicit margins so the rhythm is exact) */
.so-faq__body { display: flex; flex-direction: column; }
.so-group + .so-group { margin-top: 40px; }
.so-group__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.so-group__title { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: 25px; font-weight: 600; color: #F5EDE7; }
.so-group__rule { flex: 1; height: 1px; background: rgba(245,237,231,.12); }
.so-group__n { font-size: 11px; color: #77606A; white-space: nowrap; }
.so-group__list { display: flex; flex-direction: column; gap: 10px; }

/* accordion — the + rotates 45° into an × */
.so-acc { background: #1A0F15; border: 1px solid rgba(245,237,231,.12); border-radius: 14px; overflow: hidden; transition: border-color 150ms cubic-bezier(.22,1,.36,1); }
.so-acc:hover { border-color: rgba(245,237,231,.24); }
.so-acc .so-acc__q { display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%; padding: 18px 22px; background: transparent; border: 0; font-family: 'Manrope', system-ui, sans-serif; font-size: 15px; font-weight: 600; line-height: 1.4; color: #F5EDE7; text-align: left; cursor: pointer; }
.so-acc__plus { flex-shrink: 0; font-size: 20px; line-height: 1; color: #A98D96; transition: transform 240ms cubic-bezier(.22,1,.36,1), color 240ms cubic-bezier(.22,1,.36,1); }
.so-acc.is-open .so-acc__plus { color: #E0102F; transform: rotate(45deg); }
.so-acc__a { padding: 0 22px 20px; }
.so-acc__a p { margin: 0; font-size: 14px; line-height: 1.7; color: #DCC6CC; }
.so-acc:not(.is-open) .so-acc__a { display: none; }
.so-acc[hidden] { display: none; }
.so-group[hidden] { display: none; }

/* empty state (search no match) */
.so-empty { text-align: center; padding: 64px 32px; background: #1A0F15; border: 1px solid rgba(245,237,231,.12); border-radius: 20px; }
.so-empty[hidden] { display: none; }
.so-empty__title { margin: 0 0 10px; font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 600; color: #F5EDE7; }
.so-empty__body { margin: 0 auto; max-width: 360px; font-size: 14px; line-height: 1.6; color: #A98D96; }

/* promise */
.so-promise { margin-top: 64px; background: #1A0F15; border: 1px solid rgba(245,237,231,.12); border-radius: 20px; padding: 40px; }
.so-promise__eyebrow { margin: 0 0 10px; font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #E0102F; }
.so-promise__title { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: 25px; font-weight: 600; color: #F5EDE7; }
.so-promise__body { margin: 14px 0 32px; font-size: 14px; line-height: 1.7; color: #DCC6CC; }
.so-promise__badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.so-tb { display: flex; gap: 14px; align-items: flex-start; }
.so-tb__ic { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 999px; color: #E0102F; background: rgba(224,16,47,.07); border: 1px solid rgba(224,16,47,.35); }
.so-tb__ic svg { width: 19px; height: 19px; }
.so-tb__title { margin: 0 0 3px; font-size: 13px; font-weight: 600; color: #F5EDE7; }
.so-tb__body { margin: 0; font-size: 12.5px; line-height: 1.5; color: #A98D96; }

/* contact hand-off */
.so-handoff { margin-top: 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; padding: 32px 40px; border: 1px solid rgba(224,16,47,.5); border-radius: 20px; background: radial-gradient(120% 160% at 85% 10%, rgba(224,16,47,.12), #120A0F 65%); }
.so-handoff__text { flex: 1; min-width: 240px; }
.so-handoff__title { margin: 0 0 8px; font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 600; color: #F5EDE7; }
.so-handoff__body { margin: 0; font-size: 13.5px; line-height: 1.6; color: #DCC6CC; }
.so-handoff .so-handoff__cta { flex-shrink: 0; padding: 15px 30px; border-radius: 999px; background: #E0102F; color: #FFF6F0; font-family: 'Manrope', system-ui, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; text-decoration: none; border: 0; transition: background 150ms cubic-bezier(.22,1,.36,1); }
.so-handoff .so-handoff__cta:hover { background: #F03A50; color: #FFF6F0; }

/* responsive: rail → horizontal chip row, badges → one column */
@media (max-width: 900px) {
	.so-faq { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; }
	.so-topics { position: static; flex-direction: row; flex-wrap: nowrap; overflow-x: auto; gap: 8px; padding-bottom: 4px; }
	.so-topics__head { display: none; }
	.so-topics .so-topic { white-space: nowrap; }
	.so-hero__title { font-size: 32px; }
	.so-promise__badges { grid-template-columns: 1fr; }
	.so-handoff { flex-direction: column; align-items: flex-start; }
}
