:root{
  --ink:#0b0805;
  --card:#1c130c;
  --card-border:#3a2414;
  --cream:#f3e6d3;
  --cream-dim:#c9b8a3;
  --ember:#8a2a0f;
  --flame1:#e8461a;
  --flame2:#f0871f;
  --gold:#e8b23d;
  --gold-soft:#c99a4a;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(232,70,26,0.16), transparent 60%),
    radial-gradient(ellipse 50% 30% at 20% 90%, rgba(232,178,61,0.08), transparent 60%),
    var(--ink);
  color:var(--cream);
  font-family:'Manrope', sans-serif;
  display:flex;
  justify-content:center;
  min-height:100vh;
}
.page{
  width:100%;
  max-width:460px;
  padding:20px 22px 64px;
  position:relative;
}

/* LANGUAGE SWITCH */
.lang-switch{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-bottom:30px;
}
.lang-btn{
  font-family:'Manrope', sans-serif;
  font-weight:600;
  font-size:12.5px;
  letter-spacing:0.3px;
  color:var(--cream-dim);
  background:transparent;
  border:1px solid var(--card-border);
  padding:7px 16px;
  border-radius:20px;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
  transition:background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.lang-btn.active{
  color:#1a0e04;
  background:linear-gradient(135deg, var(--flame1), var(--gold));
  border-color:transparent;
}

/* HEADER */
.brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-bottom:34px;
}
.logo-ring{
  width:132px; height:132px;
  border-radius:50%;
  padding:4px;
  background: conic-gradient(from 200deg, var(--flame1), var(--gold), var(--flame2), var(--ember), var(--flame1));
  margin-bottom:22px;
  box-shadow: 0 0 40px rgba(232,113,26,0.25);
}
.logo-ring img{
  width:100%; height:100%;
  border-radius:50%;
  display:block;
  object-fit:cover;
  background:var(--ink);
}
.brand h1{
  font-family:'Unbounded', sans-serif;
  font-weight:700;
  font-size:30px;
  letter-spacing:0.5px;
  line-height:1.15;
  background: linear-gradient(180deg, #fbe3b8, var(--gold-soft));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom:10px;
}
.brand p.tagline{
  font-size:14.5px;
  color:var(--cream-dim);
  line-height:1.55;
  max-width:340px;
}

/* STAT STRIP */
.stats{
  display:flex;
  gap:12px;
  margin:28px 0 34px;
}
.stat{
  flex:1;
  background:linear-gradient(180deg, rgba(232,113,26,0.08), rgba(232,113,26,0.02));
  border:1px solid var(--card-border);
  border-radius:14px;
  padding:16px 10px;
  text-align:center;
}
.stat .num{
  font-family:'Unbounded', sans-serif;
  font-weight:600;
  font-size:21px;
  color:var(--gold);
  display:block;
  margin-bottom:4px;
}
.stat .label{
  font-size:11.5px;
  color:var(--cream-dim);
  line-height:1.3;
}

/* SECTION LABEL */
.section-intro{
  text-align:center;
  margin:40px 0 18px;
}
.section-intro h2{
  font-family:'Unbounded', sans-serif;
  font-size:16px;
  font-weight:600;
  color:var(--cream);
}

/* PILLAR CARDS */
.pillars{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.pillar{
  background:var(--card);
  border:1px solid var(--card-border);
  border-radius:16px;
  padding:20px 20px 18px;
  position:relative;
  overflow:hidden;
}
.pillar::before{
  content:"";
  position:absolute;
  top:0; left:0;
  width:3px; height:100%;
  background:linear-gradient(180deg, var(--flame1), var(--gold));
}
.pillar-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  margin-bottom:8px;
}
.pillar-head h3{
  font-family:'Unbounded', sans-serif;
  font-size:15.5px;
  font-weight:600;
  color:var(--gold);
  letter-spacing:0.3px;
}
.pillar-head span.sigil{
  font-size:13px;
  color:var(--gold-soft);
  opacity:0.8;
}
.pillar p{
  font-size:13.5px;
  line-height:1.6;
  color:var(--cream-dim);
  margin-bottom:10px;
}
.pillar ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:4px;
}
.pillar li{
  font-size:13px;
  line-height:1.5;
  color:var(--cream);
  text-align:left;
}
.pillar p.lead{
  color:var(--cream);
  margin-bottom:10px;
}
.pillar p.closing{
  margin-top:12px;
  margin-bottom:0;
}

/* PHILOSOPHY BLOCK */
.philosophy{
  text-align:center;
  margin:40px 0 36px;
  padding:26px 18px;
  border-top:1px solid var(--card-border);
  border-bottom:1px solid var(--card-border);
}
.philosophy .eyebrow{
  font-size:12px;
  color:var(--gold-soft);
  margin-bottom:10px;
}
.philosophy p{
  font-size:14px;
  line-height:1.7;
  color:var(--cream-dim);
  margin-bottom:10px;
}
.philosophy p strong{
  color:var(--cream);
  font-weight:700;
}
.philosophy p:last-child{
  margin-bottom:0;
}
.philosophy .final-line{
  font-family:'Unbounded', sans-serif;
  font-size:16px;
  font-weight:600;
  color:var(--gold);
  margin-top:14px;
}
.philosophy h3{
  font-family:'Unbounded', sans-serif;
  font-size:19px;
  font-weight:600;
  line-height:1.5;
  color:var(--cream);
}
.philosophy h3 em{
  font-style:normal;
  color:var(--gold);
}

/* CTA LINKS (taplink-style buttons) */
.links{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  padding:16px 18px;
  border-radius:14px;
  font-family:'Manrope', sans-serif;
  font-weight:600;
  font-size:15px;
  transition:transform 0.15s ease, box-shadow 0.15s ease;
  border:none;
  cursor:pointer;
}
.btn:active{ transform:scale(0.98); }
.btn-primary{
  background:linear-gradient(135deg, var(--flame1), var(--gold));
  color:#1a0e04;
  box-shadow:0 8px 24px rgba(232,113,26,0.28);
}
.btn-secondary{
  background:var(--card);
  color:var(--cream);
  border:1px solid var(--card-border);
}
.btn-secondary:hover, .btn-primary:hover{
  box-shadow:0 10px 28px rgba(232,113,26,0.35);
}

footer{
  text-align:center;
  margin-top:40px;
  font-size:12px;
  color:var(--cream-dim);
  opacity:0.7;
}

/* DIVIDER */
.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:44px 0 8px;
}
.divider::before,
.divider::after{
  content:"";
  flex:1;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--card-border));
}
.divider::after{
  background:linear-gradient(90deg, var(--card-border), transparent);
}
.divider span{
  width:8px; height:8px;
  margin:0 14px;
  background:linear-gradient(135deg, var(--flame1), var(--gold));
  border-radius:2px;
  transform:rotate(45deg);
  flex-shrink:0;
}

/* PARTNERS ACCORDION */
.partners{
  display:flex;
  flex-direction:column;
  gap:12px;
}
details.partner{
  background:var(--card);
  border:1px solid var(--card-border);
  border-radius:16px;
  overflow:hidden;
}
details.partner summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px 20px;
}
details.partner summary::-webkit-details-marker{
  display:none;
}
.partner-summary-text{
  display:flex;
  align-items:baseline;
  gap:8px;
  flex:1;
}
.partner-num{
  font-family:'Unbounded', sans-serif;
  font-size:13px;
  font-weight:600;
  color:var(--gold-soft);
  flex-shrink:0;
}
.partner-title{
  font-family:'Unbounded', sans-serif;
  font-size:14px;
  font-weight:600;
  color:var(--gold);
  line-height:1.4;
}
.chevron{
  color:var(--gold-soft);
  font-size:18px;
  flex-shrink:0;
  transition:transform 0.2s ease;
}
details.partner[open] .chevron{
  transform:rotate(180deg);
}
.partner-body{
  padding:0 20px 22px;
  border-top:1px solid var(--card-border);
  padding-top:16px;
}
.partner-body p{
  font-size:13.5px;
  line-height:1.65;
  color:var(--cream-dim);
  margin-bottom:12px;
}
.partner-body p:last-child{
  margin-bottom:0;
}
.partner-body p strong{
  color:var(--cream);
}
.partner-body ul,
.partner-body ol{
  margin:0 0 12px 18px;
  padding:0;
}
.partner-body li{
  font-size:13.5px;
  line-height:1.6;
  color:var(--cream-dim);
  margin-bottom:4px;
}
.partner-body .sub-block{
  margin-bottom:12px;
}
.partner-body .sub-block strong{
  display:block;
  color:var(--gold-soft);
  font-size:13.5px;
  margin-bottom:3px;
}
.partner-body .sub-block p{
  margin-bottom:0;
}

@media (prefers-reduced-motion: reduce){
  .btn, .lang-btn, .chevron{ transition:none; }
}
