:root{
  --bg:#0b0b0b;
  --panel:#121212;
  --text:#f2f2f2;
  --muted:#c9c9c9;
  --gold:#d4af37;
  --gold2:#c8a24a;
  --border:rgba(255,255,255,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max: 980px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 20% 0%, rgba(212,175,55,.08), transparent 60%),
              radial-gradient(900px 600px at 80% 20%, rgba(200,162,74,.06), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:var(--gold); text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:var(--max); margin:0 auto; padding:22px}

.header{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}

.brand{display:flex; align-items:center; gap:14px}
.logo{
  width:98px; height:98px;
  border-radius:18px;
  object-fit:contain;
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.08);
}
.brandtext .name{font-weight:800; letter-spacing:.2px}
.brandtext .tag{color:var(--muted); font-size:13px}
.tm{font-weight:800; font-size: .85em; vertical-align: super; margin-left:1px}

.nav{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.nav a{color:var(--muted)
  padding:6px 8px;
  border-radius:10px;
}
.nav a.active{color:var(--text); text-decoration:none}
.nav a.cta{
  color:#000;
  background: linear-gradient(140deg, #f6e4a4, var(--gold) 45%, #8a6a1f);
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  box-shadow: var(--shadow);
  text-decoration:none;
}

.hero{padding:26px 0 10px}
.page-hero{padding-top:18px}
h1{font-size:38px; line-height:1.15; margin:0 0 12px}
.lead{font-size:16px; color:var(--muted); max-width:820px}
.lead strong{color:var(--text)}

.section{padding:30px 0 10px}
h2{margin:0 0 10px; font-size:26px}

.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:14px}

.card{
  background: rgba(18,18,18,.9);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}

.linkcard{display:block}
.linkcard:hover{ text-decoration:none; border-color: rgba(212,175,55,.28); }

.cardtitle{font-weight:800; margin-bottom:8px}
.cardhint{margin-top:10px; color:rgba(242,242,242,.75); font-weight:700}

.muted{color:var(--muted)}
.fineprint{color:rgba(242,242,242,.7); font-size:13px; margin-top:14px}

.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.button{
  display:inline-block;
  background: linear-gradient(140deg, #f6e4a4, var(--gold) 45%, #8a6a1f);
  color:#000;
  padding:10px 14px;
  border-radius:12px;
  font-weight:900;
  box-shadow: var(--shadow);
  text-decoration:none;
  border: none;
}
.button.secondary{
  background: transparent;
  color:var(--gold2);
  border: 1px solid rgba(200,162,74,.45);
}
.button.secondary:hover{ text-decoration:none; border-color: rgba(200,162,74,.9); }

ul{margin:10px 0 0 18px; padding:0}
li{margin:6px 0; color:var(--muted)}
ol.steps{margin:10px 0 0 18px; color:var(--muted)}
ol.steps li{margin:8px 0}

.two-col{display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:14px}
.smalltitle{font-weight:900; color:var(--text); font-size:13px; letter-spacing:.4px; text-transform:uppercase}

.about-card{ padding:18px; }
.about-top{display:flex; gap:16px; align-items:flex-start}
.about-copy{flex:1; min-width: 0;}
.headshot{
  width:140px;
  height:140px;
  border-radius: 22px;
  object-fit: cover;
  background: rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}

.faq .q{font-weight:900; margin-top:12px}
.faq .a{color:var(--muted); margin-top:6px}

.footer{margin-top:20px; border-top:1px solid var(--border)}
.footer-inner{display:flex; justify-content:space-between; gap:10px; align-items:flex-start}
.right{text-align:right}

/* Form */
.form { margin-top: 10px; }
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top: 12px;
}
label{display:flex; flex-direction:column; gap:6px; font-weight:800; color:var(--text); font-size:14px}
input, textarea{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--text);
  padding:10px 12px;
  font: inherit;
  font-weight: 650;
}
textarea{resize:vertical; min-height: 90px}
input:focus, textarea:focus{
  outline:none;
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 0 0 4px rgba(212,175,55,.12);
}
.full{grid-column: 1 / -1;}
.form-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; align-items:center}
.req{color: var(--gold); font-weight:950}

@media (max-width: 920px){
  .grid{grid-template-columns:1fr}
  h1{font-size:32px}
  .two-col{grid-template-columns:1fr}
  .footer-inner{flex-direction:column}
  .right{text-align:left}
  .form-grid{grid-template-columns:1fr}
  .logo{width:82px;height:82px;}
  .headshot{width:120px;height:120px;}
}