:root{
  --bg0:#05060a;
  --bg1:#0a0c12;
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --text:#f4f5f7;
  --muted: rgba(244,245,247,.72);
  --gold:#d7b46a;
  --gold2:#f1d08a;
  --shadow: 0 26px 80px rgba(0,0,0,.60);
  --r: 22px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(1100px 700px at 15% -10%, rgba(215,180,106,.18), transparent 60%),
    radial-gradient(900px 650px at 92% 10%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

a{ color:inherit; }

.container{
  width:min(1080px, 100%);
  margin:0 auto;
  padding: 22px 14px 36px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brandMark{
  width:46px;height:46px;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(215,180,106,.35);
  background: rgba(0,0,0,.18);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  flex:0 0 auto;
}
.brandMark img{ width:100%; height:100%; object-fit:cover; }

.brandText{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brandText strong{
  font-size:14px;
  letter-spacing:.35px;
}
.brandText span{
  font-size:12px;
  color:var(--muted);
  margin-top:4px;
}

.menu{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.menu a{
  text-decoration:none;
  font-size:13px;
  color: rgba(244,245,247,.86);
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  transition: .2s ease;
}
.menu a:hover{
  border-color: rgba(215,180,106,.35);
  background: rgba(0,0,0,.28);
}

.hero{
  position:relative;
  border-radius: calc(var(--r) + 10px);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(7,8,11,.30) 0%, rgba(7,8,11,.78) 70%, rgba(7,8,11,.92) 100%),
    url("../img/hero.jpg") center 55% / cover no-repeat;
}

.heroInner{
  padding: 26px 18px 18px;
  min-height: 420px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:14px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius:999px;
  border:1px solid rgba(215,180,106,.28);
  background: rgba(215,180,106,.10);
  color: rgba(244,245,247,.85);
  font-size:12px;
  width: fit-content;
}
.kicker .dot{
  width:8px;height:8px;border-radius:999px;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  box-shadow: 0 0 0 3px rgba(215,180,106,.14);
}

h1{
  margin:0;
  font-size: clamp(22px, 3.2vw, 34px);
  letter-spacing:.35px;
  line-height:1.15;
}
.lead{
  margin:0;
  max-width: 62ch;
  color: rgba(244,245,247,.82);
  font-size: 14px;
  line-height:1.55;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding-top: 4px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  text-decoration:none;
  color: var(--text);
  font-size: 14px;
  transition: .2s ease;
}
.btn:hover{
  border-color: rgba(215,180,106,.42);
  background: rgba(0,0,0,.42);
  transform: translateY(-1px);
}
.btnPrimary{
  border-color: rgba(215,180,106,.42);
  background: rgba(215,180,106,.16);
}
.btnPrimary:hover{
  background: rgba(215,180,106,.22);
}

.section{
  margin-top: 18px;
  padding: 18px;
  border-radius: calc(var(--r) + 6px);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.section h2{
  margin:0 0 10px 0;
  font-size: 18px;
  letter-spacing:.2px;
}
.section p{
  margin:0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.grid3{
  display:grid;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 860px){
  .grid3{ grid-template-columns: 1fr 1fr 1fr; }
}

.card{
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  padding: 14px;
}
.card h3{
  margin:0;
  font-size: 15px;
  letter-spacing:.2px;
}
.card p{
  margin-top: 8px;
  font-size: 13px;
}

.list{
  display:grid;
  gap: 12px;
  margin-top: 12px;
}
.item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 14px;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
}
.badge{
  width:38px;height:38px;
  border-radius: 14px;
  border: 1px solid rgba(215,180,106,.30);
  background: rgba(215,180,106,.10);
  display:grid;place-items:center;
  color: rgba(244,245,247,.90);
  font-weight: 700;
  flex:0 0 auto;
}
.item strong{ display:block; font-size:14px; }
.item span{ display:block; color: var(--muted); font-size:13px; line-height:1.5; margin-top:4px; }

.footer{
  margin-top: 18px;
  padding: 14px 4px 0;
  text-align:center;
  color: rgba(244,245,247,.55);
  font-size: 12px;
}
.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: rgba(244,245,247,.62);
}

/* Simple page header (non-hero pages) */
.pageHead{
  border-radius: calc(var(--r) + 6px);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  padding: 18px;
}
.pageHead h1{ font-size: 22px; }
.pageHead p{ margin-top:10px; color: var(--muted); line-height:1.6; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .btn, .menu a{ transition:none; }
  .btn:hover{ transform:none; }
}