.hero {
    min-height: 100vh;
    background: var(--ink);
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: 72px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 65% 50%, rgba(200,150,62,.18) 0%, transparent 70%),
                radial-gradient(ellipse 60% 60% at 20% 80%, rgba(46,107,53,.18) 0%, transparent 60%);
}
.hero-grid {
    position: absolute; inset: 0; opacity: .04;
    background-image: linear-gradient(var(--gold) 1px, transparent 1px),
                      linear-gradient(90deg, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 80px 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-content { animation: fadeInLeft .8s ease both; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,150,62,.15); border: 1px solid rgba(200,150,62,.4);
    padding: 8px 18px; border-radius: 40px; margin-bottom: 28px;
}
.hero-badge span { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-lt); }
.hero-badge .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-title { font-size: clamp(40px, 5.5vw, 72px); color: var(--white); margin-bottom: 24px; }
.hero-title .highlight { color: var(--gold); display: block; }
.hero-desc { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 40px; margin-top: 56px;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hero-visual { position: relative; animation: fadeInRight .8s .2s ease both; }
.hero-img-wrap {
    position: relative; border-radius: 24px; overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.5);
    aspect-ratio: 4/5; background: var(--ink-med);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-badge {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    background: rgba(26,18,8,.85); backdrop-filter: blur(10px);
    border: 1px solid rgba(200,150,62,.3); border-radius: 16px;
    padding: 18px 20px; display: flex; align-items: center; gap: 16px;
}
.hero-img-badge-icon { font-size: 32px; }
.hero-img-badge-txt { font-size: 13px; font-weight: 600; color: var(--white); }
.hero-img-badge-sub { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; }
.hero-float-card {
    position: absolute; top: -20px; right: -20px;
    background: var(--gold); border-radius: 16px; padding: 16px 20px;
    box-shadow: 0 16px 48px rgba(200,150,62,.4);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}
.hero-float-card .num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--ink); }
.hero-float-card .lbl { font-size: 10px; font-weight: 600; text-transform: uppercase; color: var(--ink-med); letter-spacing: 1px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .hero-stats { gap: 24px; }
}
