/* ===============================
   Leilani Kai — FAQ Page
   (Matches warm/luxury theme)
================================ */

:root{
  --lk-bg:#f7f1e7;
  --lk-ink:#2f2f2f;
  --lk-ink-soft:#5e574f;
  --lk-border: rgba(222,214,203,1);
  --lk-card: rgba(255,255,255,.30);
  --lk-dark:#4a3f35;
  --lk-dark-2:#3f3a32;
}

.faq-page{
  background: var(--lk-bg);
  color: var(--lk-ink);
}

.faq-page *{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

/* HERO */
.faq-hero{
  max-width:1400px;
  margin:0 auto 40px;
  padding:0 40px;
}
.faq-hero-card{
  position:relative;
  border:1px solid var(--lk-border);
  background: rgba(255,255,255,.18);
  overflow:hidden;
}
.faq-hero-media img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}
.faq-hero-content{
  position:absolute;
  right:8%;
  top:50%;
  transform:translateY(-50%);
  max-width:520px;
}

/* DESKTOP ONLY: eco-lux “cream glass” panel behind hero text
   (Mobile stays exactly as-is) */
@media (min-width: 981px){
  .faq-hero-content{
    background: rgba(255, 249, 242, 0.72);
    border: 1px solid rgba(222, 214, 203, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 22px 22px 24px;
    border-radius: 22px;
    box-shadow: 0 16px 45px rgba(0,0,0,0.12);
  }
}
.faq-kicker{
  font-family: Inter, sans-serif;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--lk-ink-soft);
}
.faq-title{
  font-family:"Cormorant Garamond", serif;
  font-size:52px;
  line-height:1.05;
  margin:10px 0 6px;
  color:#2F2A24;
}
.faq-subtitle em{
  display:block;
  font-family:"Cormorant Garamond", serif;
  font-style:italic;
  font-size:22px;
  color:#3A342D;
  margin:0 0 14px;
}
.faq-lede{
  font-family: Inter, sans-serif;
  font-size:14px;
  line-height:1.85;
  color: var(--lk-ink-soft);
  margin:0 0 18px;
}
.faq-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}

/* If your styles.css doesn’t define btn-outline, this makes it match */
.btn.btn-outline{
  background: transparent;
  color: var(--lk-dark);
  border: 1px solid var(--lk-border);
}
.btn.btn-outline:hover{
  background: rgba(63,58,50,.06);
  border-color: var(--lk-dark-2);
}

/* CATEGORY PILLS */
.faq-nav-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:18px 24px;
}
.faq-nav-inner{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}
.faq-pill{
  border:1px solid var(--lk-border);
  background: transparent;
  padding:10px 14px;
  border-radius:999px;
  font-family:"Cormorant Garamond", serif;
  font-size:18px;
  color:#3A342D;
  text-decoration:none;
  transition:.2s ease;
}
.faq-pill:hover{
  background: rgba(63,58,50,.06);
}

/* SECTIONS */
.faq-section{
  max-width:1100px;
  margin:0 auto;
  padding:50px 24px;
}
.faq-h2{
  margin:0 0 10px;
  text-align:center;
  font-family:"Cormorant Garamond", serif;
  font-style:italic;
  font-size:36px;
  color:#3A342D;
}
.faq-intro{
  margin:0 auto 22px;
  max-width:720px;
  text-align:center;
  font-family: Inter, sans-serif;
  font-size:14px;
  line-height:1.85;
  color: var(--lk-ink-soft);
}

/* ACCORDION */
.faq-accordion{
  max-width:820px;
  margin:0 auto;
}
.faq-item{
  border:1px solid var(--lk-border);
  background: var(--lk-card);
  margin-bottom:12px;
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:16px 16px;
  font-family:"Cormorant Garamond", serif;
  font-size:22px;
  color:#2F2A24;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.faq-item summary::-webkit-details-marker{ display:none; }

.faq-item summary::after{
  content:"+";
  font-family: Inter, sans-serif;
  font-size:18px;
  letter-spacing:0;
  color: var(--lk-ink-soft);
  border:1px solid var(--lk-border);
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  flex:0 0 28px;
  background: rgba(255,255,255,.18);
}

.faq-item[open] summary::after{
  content:"–";
  border-color: rgba(63,58,50,.30);
}

.faq-body{
  padding:0 16px 16px;
  font-family: Inter, sans-serif;
  font-size:14px;
  line-height:1.9;
  color:#3A342D;
}

/* TRUST CARDS */
.faq-cards-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  max-width:980px;
  margin:0 auto;
}
.faq-card{
  border:1px solid var(--lk-border);
  background: rgba(255,255,255,.22);
  padding:18px;
}
.faq-h3{
  margin:0 0 8px;
  font-family:"Cormorant Garamond", serif;
  font-size:26px;
  color:#2F2A24;
}
.faq-muted{
  margin:0 0 14px;
  font-family: Inter, sans-serif;
  font-size:14px;
  line-height:1.85;
  color: var(--lk-ink-soft);
}
.faq-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* NEWSLETTER */
.faq-newsletter{
  max-width:1100px;
  margin:0 auto;
  padding:50px 24px 70px;
  text-align:center;
}
.faq-form{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:16px;
}
.faq-form input{
  border:1px solid var(--lk-border);
  background: rgba(255,255,255,.25);
  padding:14px 16px;
  min-width:320px;
  font-family: Inter, sans-serif;
  font-size:14px;
  outline: none;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .faq-hero{ padding:0 20px; }
}
@media(max-width:980px){
  .faq-hero-media img{ height:420px; }
  .faq-hero-content{
    position:static;
    transform:none;
    max-width:none;
    padding:18px 18px 22px;
    border-top:1px solid var(--lk-border);
    background: rgba(247,241,231,.88);
  }
  .faq-title{ font-size:40px; }
  .faq-cards-2{ grid-template-columns:1fr; }
}
