.hero {
    padding: 0.5rem 0 1.75rem;
    text-align: center;
}

.badge {
    display: inline-block;
    max-width: 100%;
    padding: 0.4rem 0.7rem;
    background: var(--wood-pale);
    color: var(--wood-deep);
    border: 2px solid var(--card-border);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: clamp(0.58rem, 2.5vw, 0.72rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(1.65rem, 5.5vw + 0.5rem, 2.75rem);
    line-height: 1.15;
    margin: 0 0 0.85rem;
    color: var(--on-light);
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--muted);
    max-width: 32rem;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
}

.hero-lead strong {
    color: var(--on-light);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}

.hero-actions .btn {
    width: 100%;
}

.features {
    margin: 1.75rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.feature-card {
    background: var(--card);
    padding: 1.15rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--card-border);
    box-shadow: 0 3px 0 rgba(35, 28, 20, 0.05);
}

@media (hover: hover) {
    .feature-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(35, 28, 20, 0.08);
    }
}

.feature-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--wood-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-title {
    font-size: clamp(1.05rem, 3vw, 1.25rem);
    margin: 0 0 0.4rem;
    color: var(--on-light);
}

.feature-text {
    color: var(--muted);
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
}

.highlight-section {
    margin: 1.75rem 0;
}

.highlight-card {
    background: linear-gradient(155deg, var(--wood-deep) 0%, #2e2214 100%);
    color: var(--on-dark);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.15rem;
    text-align: center;
    border: none;
    border-top: 3px solid var(--gold);
}

.highlight-title {
    font-size: clamp(1.15rem, 4vw, 1.6rem);
    margin: 0 0 0.65rem;
    line-height: 1.25;
    color: var(--on-dark);
}

.highlight-desc {
    font-size: 0.92rem;
    color: var(--wood-pale);
    max-width: 28rem;
    margin: 0 auto 1.1rem;
    line-height: 1.45;
}

.highlight-card .btn-accent {
    width: 100%;
    background: var(--gold);
    color: var(--wood-deep);
    border: 2px solid var(--gold);
}

.highlight-card .btn-accent:hover {
    background: var(--card);
    color: var(--on-light);
}

.info-section {
    margin: 1.5rem 0 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.info-card {
    padding: 1.15rem;
    border: 2px dashed var(--card-border);
    border-radius: var(--radius-md);
    text-align: center;
    background: var(--card);
}

.info-h {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin: 0 0 0.65rem;
}

.info-p {
    margin: 0 0 0.3rem;
    font-size: 0.95rem;
    color: var(--on-light);
}

.info-note {
    display: block;
    margin-top: 0.65rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--wood-dark);
    line-height: 1.35;
}

.info-link {
    display: inline-block;
    margin-top: 0.75rem;
    min-height: 2.5rem;
    line-height: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--wood-deep);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--wood-dark);
    padding-bottom: 2px;
    touch-action: manipulation;
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-actions .btn,
    .highlight-card .btn-accent {
        width: auto;
    }
}

@media (min-width: 600px) {
    .hero {
        padding: 1rem 0 2.5rem;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .feature-card {
        padding: 1.35rem;
    }

    .highlight-card {
        padding: 2rem 1.75rem;
        border-radius: var(--radius-lg);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 749px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 900px) {
    .hero-title {
        font-size: 2.85rem;
    }
}
