/* =========================================================
   Belgrave — Policy / Legal / FAQ template CSS
   Used by: page-policy.php (Privacy, Terms, Shipping, Return & Refund)
            page-faq.php (FAQ accordion)
   ========================================================= */

/* ===== PAGE HEADER (legal variant) ===== */
.page-header{
  padding:160px 0 50px;
  border-bottom:1px solid var(--line);
}
.page-header h1{
  font-family:'Fraunces',serif;
  font-weight:800;
  font-size:clamp(34px,5.5vw,60px);
  text-transform:uppercase;
  letter-spacing:-0.01em;
  margin-top:16px;
}
.page-header .updated{
  font-family:'Space Mono',monospace;
  font-size:11.5px;
  color:var(--bone-dim);
  letter-spacing:0.05em;
  margin-top:18px;
  display:block;
}
.back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Space Mono',monospace;
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--bone-dim);
  margin-bottom:32px;
  transition:color 0.25s;
}
.back-link:hover{color:var(--bone);}

/* ===== LEGAL BODY (Privacy / Terms / Shipping / Return & Refund) ===== */
.legal-body{
  padding:80px 5vw 160px;
  max-width:760px;
  margin:0 auto;
  box-sizing:border-box;
}
.legal-section{
  margin-bottom:48px;
  padding-bottom:40px;
  border-bottom:1px solid var(--line);
}
.legal-section:last-of-type{border-bottom:none;}
.legal-section h2{
  font-family:'Fraunces',serif;
  font-weight:700;
  font-size:21px;
  text-transform:uppercase;
  letter-spacing:-0.005em;
  margin-bottom:16px;
  display:flex;
  gap:14px;
  align-items:baseline;
}
.legal-section h2 .num{
  font-family:'Space Mono',monospace;
  font-size:13px;
  color:var(--burgundy-light);
  font-weight:700;
}
.legal-section h3{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:16px;
  color:var(--bone);
  margin:20px 0 10px;
}
.legal-section p{
  font-size:14.5px;
  line-height:1.85;
  color:var(--bone-dim);
  margin-bottom:14px;
}
.legal-section ul{
  margin:0 0 14px 0;
  padding-left:20px;
  list-style:none;
}
.legal-section ul li{
  font-size:14.5px;
  line-height:1.85;
  color:var(--bone-dim);
  position:relative;
  padding-left:18px;
  margin-bottom:8px;
}
.legal-section ul li::before{
  content:'—';
  position:absolute;
  left:0;
  color:var(--pewter-light);
}
.legal-contact{
  font-family:'Space Mono',monospace;
  font-size:13.5px;
  color:var(--bone);
  line-height:1.9;
}

/* ===== CALLOUT (used on Return & Refund policy) ===== */
.callout{
  border:1px solid var(--line-strong);
  background:var(--charcoal);
  padding:32px 36px;
  margin:0 0 48px;
}
.callout .tag{
  font-family:'Space Mono',monospace;
  font-size:10.5px;letter-spacing:0.16em;text-transform:uppercase;
  color:var(--burgundy-light); font-weight:700; margin-bottom:14px; display:block;
}
.callout p{
  font-size:14.5px;
  line-height:1.75;
  color:var(--bone-dim);
  margin:0 0 10px;
}
.callout p:last-child{margin-bottom:0;}
.callout p strong{color:var(--bone);font-weight:700;}

/* ===== STAT STRIP (used on Shipping policy) ===== */
.stat-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line-strong);
  border-bottom:1px solid var(--line-strong);
  margin:50px 0 60px;
}
.stat-strip .stat{
  padding:28px 24px;
  border-right:1px solid var(--line);
  text-align:center;
}
.stat-strip .stat:last-child{border-right:none;}
.stat-strip .stat .val{
  font-family:'Fraunces',serif;
  font-weight:800;
  font-size:24px;
  color:var(--bone);
  display:block;
  margin-bottom:6px;
}
.stat-strip .stat .lbl{
  font-family:'Space Mono',monospace;
  font-size:10.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--bone-dim);
}
@media (max-width:600px){
  .stat-strip{grid-template-columns:1fr;}
  .stat-strip .stat{border-right:none;border-bottom:1px solid var(--line);}
  .stat-strip .stat:last-child{border-bottom:none;}
}

/* ===== FAQ ACCORDION ===== */
.faq-body{
  padding:90px 5vw 160px;
  max-width:800px;
  margin:0 auto;
  box-sizing:border-box;
}
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item:first-child{border-top:1px solid var(--line-strong);}
.faq-q{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding:28px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  cursor:pointer;
  color:var(--bone);
}
.faq-q .num{
  font-family:'Space Mono',monospace;
  font-size:12px;
  color:var(--burgundy-light);
  font-weight:700;
  flex-shrink:0;
  width:28px;
}
.faq-q h2{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:18px;
  flex:1;
  line-height:1.4;
}
.faq-q .toggle{
  font-family:'Space Mono',monospace;
  font-size:18px;
  color:var(--bone-dim);
  flex-shrink:0;
  transition:transform 0.3s ease;
  width:20px;
  text-align:center;
}
.faq-item.open .faq-q .toggle{transform:rotate(45deg);}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s cubic-bezier(.16,1,.3,1);
}
.faq-a-inner{
  padding:0 0 28px 48px;
}
.faq-a-inner p{
  font-size:14.5px;
  line-height:1.8;
  color:var(--bone-dim);
}
.faq-a-inner a{
  color:var(--bone);
  border-bottom:1px solid var(--line-strong);
}

/* ===== MOBILE ===== */
@media (max-width:768px){
  .legal-body{padding:60px 6vw 100px;}
  .faq-body{padding:60px 0 100px;}
  .faq-a-inner{padding-left:0;}
  .faq-q{gap:14px;}
}
