:root{
  --gold:#c9a227;
  --gold-soft:#e6cf78;
  --ink:#121212;
  --text:#232323;
  --muted:#6b6b6b;
  --bg:#ffffff;
  --paper:#faf9f6;
  --line:rgba(18,18,18,.12);
  --shadow:0 12px 32px rgba(0,0,0,.06);
  --max:1020px;
}

/* Reset */
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;color:var(--text);background:var(--bg);line-height:1.75}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

/* Skip */
.skip{position:absolute;left:-999px}
.skip:focus{left:1rem;top:1rem;background:#fff;padding:.5rem 1rem;border-radius:999px}

/* Layout */
.wrap{max-width:var(--max);margin:0 auto;padding:0 1.1rem}

/* HEADER */
.topbar{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.9rem 0;
}
.brand{display:flex;flex-direction:column;gap:.25rem}
.brand__logo{height:44px;width:auto;object-fit:contain}
.brand__tag{font-size:.85rem;color:var(--muted)}

.nav{display:flex;gap:.75rem}
.nav a{
  padding:.3rem .6rem;
  border-radius:999px;
}
.nav a:hover{background:rgba(201,162,39,.12)}

/* HERO */
.hero{padding:2.2rem 0 1.2rem}
.hero__kicker{display:flex;align-items:center;gap:.6rem;color:var(--muted)}
.badge{
  padding:.2rem .6rem;
  border-radius:999px;
  border:1px solid rgba(201,162,39,.35);
  background:rgba(201,162,39,.12);
  font-weight:800;
}
.dot{width:6px;height:6px;border-radius:50%;background:var(--gold)}
.h1{font-size:clamp(1.9rem,4vw,2.6rem);line-height:1.15;margin:.8rem 0 .6rem}
.lead{max-width:70ch;color:var(--muted);font-size:1.02rem}

/* SECTIONS */
.section{padding:1.4rem 0}
.h2{font-size:1.25rem;margin-bottom:.6rem}
.item{border-top:1px solid var(--line);padding:1rem 0}
.item:first-child{border-top:none}
.item__title{font-size:1.12rem;font-weight:900}
.item__title:hover{color:#6a5400}
.item__desc{color:var(--muted);max-width:80ch}
.item__meta{font-size:.9rem;color:var(--muted)}
.pill{
  border:1px solid rgba(201,162,39,.35);
  padding:.15rem .5rem;
  border-radius:999px;
  background:rgba(201,162,39,.1);
  font-weight:800;
  color:#6a5400;
}

/* TRUST */
.trust{
  border:1px solid var(--line);
  background:var(--paper);
  border-radius:14px;
  padding:1.1rem;
}

/* FOOTER */
.footer{
  margin-top:1.6rem;
  background:#0f0f0f;
  color:rgba(255,255,255,.78);
  padding:1.4rem 0 1rem;
}
.footer__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.2rem;
}
.footer__brand{font-weight:900;color:#fff;letter-spacing:.06em}
.footer__links{display:flex;flex-wrap:wrap;gap:.6rem 1rem}
.footer__links a:hover{color:var(--gold-soft)}
.footer__bottom{
  margin-top:1rem;
  padding-top:.8rem;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:.9rem;
}

/* Responsive */
@media(max-width:860px){
  .nav{display:none}
}
@media(max-width:520px){
  .brand__logo{height:38px}
}
