
.hero{
  position:relative;
  min-height:78vh;
  display:grid;
  place-items:center;
  border-radius:12px;
  overflow:hidden;
  padding:40px 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.6));
}
.hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 600px at 50% 20%, rgba(209,163,95,.25), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55)),
    var(--hero-bg, none);
  background-size:cover;
  background-position:center;
  filter:saturate(0.9) contrast(1.05) brightness(0.9);
  z-index:0;
}
.hero-inner{ position:relative; z-index:1; text-align:center; max-width:820px; padding:10px 16px }
.hero-logo img{ width:96px; height:96px; margin:0 auto 12px; border-radius:10px; box-shadow:0 6px 28px rgba(0,0,0,.45) }
.hero-title{ font-family: Cinzel, 'Cinzel Decorative', Georgia, serif; font-weight:800; font-size: clamp(32px, 6vw, 56px); letter-spacing:.5px; margin:10px 0 6px }
.hero-sub{ color:var(--muted); font-size: clamp(16px, 2.5vw, 20px); margin: 0 0 16px }
.hero-actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:8px }
.hero-cta{
  display:inline-block; padding:12px 16px; border-radius:10px;
  background: var(--accent); color:#22160c; font-weight:800;
  border:1px solid #754d21;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.25), inset 0 -4px 0 rgba(0,0,0,.1);
}
.hero-cta:hover{ filter:brightness(1.06); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.3) }

.hero-info{ margin-top:22px }
.hero-info-inner{ padding: 8px 6px }
.hero-info h2{ margin:0 0 8px }
.hero-grid{ display:grid; gap:18px; margin-top:12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) }
.hero-grid article{ background: var(--panel); border:1px solid var(--line); border-radius:10px; padding:14px; box-shadow: inset 0 0 60px rgba(0,0,0,.2) }
.hero-grid h3{ margin:4px 0 8px; color: var(--accent) }
.hero-grid p{ margin:0 0 10px; color: var(--muted) }
.hero-grid .link{ color: var(--text); text-decoration:none }
.hero-grid .link:hover{ color: var(--accent) }

@media (max-width: 720px){
  .hero{ min-height:68vh }
  .hero-logo img{ width:84px; height:84px }
}
