/* ===============================
   Leilani Kai — Policies Hub
================================ */

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

.policies-page{ background: var(--lk-bg); color: var(--lk-ink); }
.policies-page *{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

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

/* DESKTOP ONLY: eco-lux “cream glass” panel behind hero text
   (Mobile stays exactly as-is) */
@media (min-width: 981px){
  .policies-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);
  }
}
.policies-kicker{
  font-family: Inter, sans-serif;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--lk-ink-soft);
}
.policies-title{
  font-family:"Cormorant Garamond", serif;
  font-size:52px;
  line-height:1.05;
  margin:10px 0 6px;
  color:#2F2A24;
}
.policies-subtitle em{
  display:block;
  font-family:"Cormorant Garamond", serif;
  font-style:italic;
  font-size:22px;
  color:#3A342D;
  margin:0 0 14px;
}
.policies-lede{
  font-family: Inter, sans-serif;
  font-size:14px;
  line-height:1.85;
  color: var(--lk-ink-soft);
  margin:0 0 18px;
}
.policies-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}

/* Dark filled luxury button */
.lk-btn-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  min-height:44px;
  background:#3F3A32;
  color:#fff;
  border:1px solid rgba(63,58,50,.9);
  font-family: Inter, sans-serif;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.lk-btn-dark:hover{
  background:#2f2a24;
  border-color:rgba(47,42,36,.95);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(63,58,50,.18);
}
.lk-btn-dark:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(63,58,50,.14);
}

/* Ensure outline style exists if global CSS doesn’t */
.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);
}

/* HIGHLIGHTS STRIP */
.policies-highlights{
  max-width:1100px;
  margin:0 auto;
  padding:22px 24px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.policies-highlight{
  border:1px solid var(--lk-border);
  background: rgba(255,255,255,.22);
  padding:14px;
}
.ph-kicker{
  font-family: Inter, sans-serif;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--lk-ink-soft);
  margin-bottom:6px;
}
.ph-text{
  font-family:"Cormorant Garamond", serif;
  font-size:20px;
  color:#2F2A24;
}

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

/* POLICY CARDS */
.policies-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  align-items:stretch;
}
.policy-card{
  border:1px solid var(--lk-border);
  background: var(--lk-card);
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.policy-top{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin-bottom:8px;
}
.policy-num{
  font-family: Inter, sans-serif;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--lk-ink-soft);
  border:1px solid var(--lk-border);
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.18);
}
.policy-h3{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-size:28px;
  color:#2F2A24;
}
.policy-muted{
  margin:0 0 14px;
  font-family: Inter, sans-serif;
  font-size:14px;
  line-height:1.85;
  color: var(--lk-ink-soft);
}
.policy-actions{ margin-top:auto; }

/* ACCORDION */
.policies-accordion{
  max-width:820px;
  margin:0 auto;
}
.p-item{
  border:1px solid var(--lk-border);
  background: rgba(255,255,255,.22);
  margin-bottom:12px;
  overflow:hidden;
}
.p-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;
}
.p-item summary::-webkit-details-marker{ display:none; }
.p-item summary::after{
  content:"+";
  font-family: Inter, sans-serif;
  font-size:18px;
  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);
}
.p-item[open] summary::after{
  content:"–";
  border-color: rgba(63,58,50,.30);
}
.p-body{
  padding:0 16px 16px;
  font-family: Inter, sans-serif;
  font-size:14px;
  line-height:1.9;
  color:#3A342D;
}

/* Newsletter */
.policies-newsletter{
  max-width:1100px;
  margin:0 auto;
  padding:50px 24px 70px;
  text-align:center;
}
.policies-form{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:16px;
}
.policies-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){
  .policies-hero{ padding:0 20px; }
}
@media(max-width:980px){
  .policies-hero-media img{ height:420px; }
  .policies-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);
  }
  .policies-title{ font-size:40px; }
  .policies-highlights{ grid-template-columns:1fr; }
  .policies-grid{ grid-template-columns:1fr; }
}
