.hero { position: relative; min-height: 92svh; display: grid; align-items: center; overflow: hidden; background: var(--navy); color: #fff; }
.hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(16,28,63,.95), rgba(16,28,63,.75) 42%, rgba(16,28,63,.18)), linear-gradient(0deg, rgba(16,28,63,.78), transparent 35%); }
.hero-content { position: relative; z-index: 1; padding: 116px 0 72px; }
.hero h1 { max-width: 760px; margin: 0; font-family: var(--heading); font-size: clamp(2.6rem, 8vw, 5.35rem); line-height: 1.02; letter-spacing: 0; }
.hero-lead { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.76); font-size: clamp(1rem, 2vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 820px; margin: 58px 0 0; }
.hero-facts div { min-height: 106px; padding: 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.hero-facts dt { font-family: var(--heading); font-size: 1.2rem; font-weight: 700; }
.hero-facts dd { margin: 6px 0 0; color: rgba(255,255,255,.6); font-size: .88rem; }
.quick-section { padding: 28px 0; background: var(--warm); }
.quick-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.quick-card { display: flex; align-items: center; gap: 12px; min-height: 78px; padding: 16px; border: 1px solid rgba(16,28,63,.1); border-radius: 8px; background: var(--paper); color: var(--ink); font-weight: 800; text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.quick-card:hover { border-color: rgba(217,155,55,.38); box-shadow: var(--shadow); transform: translateY(-2px); }
.quick-card i { color: var(--gold); font-size: 1.35rem; }
@media (max-width: 980px) { .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .hero { min-height: 96svh; } .hero-content { padding-top: 98px; } .hero h1 { font-size: clamp(2.3rem, 13vw, 3.6rem); } .hero-actions { flex-direction: column; } .hero-facts, .quick-grid { grid-template-columns: 1fr; } }
