:root{
  --ivory:#E6E394;
  --gold:#E5BD5F;
  --amber:#E49A2A;
  --taupe:#796D5A;

  --bg:#0f1110;
  --panel:rgba(255,255,255,0.04);
  --border:rgba(255,255,255,0.10);
  --text:rgba(255,255,255,0.92);
  --muted:rgba(255,255,255,0.72);

  --title-font:"Garamond","EB Garamond","Times New Roman",serif;
  --body-font:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  --radius:14px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:var(--body-font);
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 5%, rgba(229,189,95,.14), transparent 60%),
    linear-gradient(180deg,#0b0c0b,#121512);
}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:40px 18px 56px;
}

/* Header */

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  padding:22px;
  border-radius:var(--radius);
  background:var(--panel);
  border:1px solid var(--border);
}

.brand{
  display:flex;
  gap:14px;
  align-items:center;
}

.brand img{
  width:52px;
  height:52px;
  object-fit:contain;
}

.brand h1{
  margin:0;
  font-family:var(--title-font);
  font-size:30px;
  font-weight:600;
}

.brand small{
  display:block;
  margin-top:2px;
  font-size:13px;
  color:var(--muted);
}

.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  text-decoration:none;
  color:var(--text);
  font-size:14px;
}

/* Layout blocks */

.hero{
  margin-top:22px;
  padding:34px 22px;
  border-radius:var(--radius);
  border:1px solid rgba(229,189,95,.28);
  background:linear-gradient(135deg,rgba(121,109,90,.15),rgba(0,0,0,.20));
}

.hero h2{
  margin:0 0 10px;
  font-family:var(--title-font);
  font-size:40px;
  font-weight:600;
}

.hero p{
  max-width:880px;
  color:var(--muted);
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.badge{
  padding:7px 10px;
  font-size:12px;
  border-radius:999px;
  border:1px solid rgba(230,227,148,.25);
  background:rgba(230,227,148,.06);
  color:rgba(255,255,255,.85);
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
  margin-top:18px;
}

.card{
  padding:18px;
  border-radius:var(--radius);
  background:var(--panel);
  border:1px solid var(--border);
}

.card h3{
  margin:0 0 8px;
  font-family:var(--title-font);
  font-size:20px;
  font-weight:600;
  color:var(--gold);
}

.card p{
  margin:0;
  color:var(--muted);
}

.list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.list li{
  margin:6px 0;
}

.split{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:16px;
  margin-top:18px;
}

@media (max-width:820px){
  .split{grid-template-columns:1fr}
  .hero h2{font-size:34px}
}

/* Buttons */

.cta{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  padding:12px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  border:1px solid var(--border);
}

.btnPrimary{
  background:linear-gradient(180deg,var(--amber),#d98a17);
  color:#1c1408;
  border-color:rgba(228,154,42,.55);
}

/* Contact page */

.contact-card{
  max-width:800px;
  margin:22px auto 0;
}

/* Contact layout helpers */

.page-title{
  margin:0 0 8px;
  font-family:var(--title-font);
  font-size:36px;
  font-weight:600;
  color:var(--gold);
}

.section{
  margin-top:18px;
}

.kv{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:10px 14px;
  margin-top:12px;
  color:var(--muted);
}

.kv strong{
  color:rgba(255,255,255,.88);
  font-weight:600;
}

.link{
  color:var(--amber);
  text-decoration:none;
  font-weight:600;
}

.rule{
  height:1px;
  background:rgba(255,255,255,.10);
  border:0;
  margin:18px 0;
}

/* Footer */

footer{
  margin-top:28px;
  text-align:center;
  font-size:13px;
  color:rgba(255,255,255,.55);
}

