/* Reset & Base */
:root {
    --hrh-bg-main: #0b1325;
    --hrh-bg-alt: #121c33;
    --hrh-accent-gold: #d4af37;
    --hrh-accent-light: #fbe69b;
    --hrh-text-main: #f5f5f5;
    --hrh-text-muted: #a0aabf;
    --hrh-border-color: rgba(212, 175, 55, 0.2);
    --hrh-card-bg: rgba(18, 28, 51, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--hrh-bg-main);
    color: var(--hrh-text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, .hrh-brand, .hrh-logo-abbr {
    font-family: 'Georgia', serif;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

.hrh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.hrh-header-wrap {
    background-color: rgba(11, 19, 37, 0.95);
    border-bottom: 1px solid var(--hrh-border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.hrh-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.hrh-logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hrh-logo-abbr {
    font-size: 2rem;
    color: var(--hrh-accent-gold);
    border: 2px solid var(--hrh-accent-gold);
    padding: 5px 10px;
    border-radius: 4px;
    line-height: 1;
}

.hrh-logo-text {
    display: flex;
    flex-direction: column;
}

.hrh-brand {
    font-size: 1.2rem;
    color: var(--hrh-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hrh-subbrand {
    font-size: 0.8rem;
    color: var(--hrh-accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hrh-age-badge {
    background: linear-gradient(135deg, var(--hrh-accent-gold), #aa8529);
    color: #000;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Hero */
.hrh-hero-section {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, var(--hrh-bg-alt) 0%, var(--hrh-bg-main) 100%);
    border-bottom: 1px solid var(--hrh-border-color);
}

.hrh-hero-inner {
    max-width: 900px;
}

.hrh-kicker-label {
    display: inline-block;
    color: var(--hrh-accent-gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--hrh-accent-gold);
    padding-bottom: 5px;
}

.hrh-main-heading {
    font-size: 4rem;
    color: var(--hrh-text-main);
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hrh-hero-desc {
    font-size: 1.2rem;
    color: var(--hrh-text-muted);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hrh-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hrh-hero-card {
    background: var(--hrh-card-bg);
    border: 1px solid var(--hrh-border-color);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hrh-hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--hrh-accent-gold);
}

.hrh-hc-kicker {
    font-size: 0.8rem;
    color: var(--hrh-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hrh-hc-title {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    color: var(--hrh-accent-gold);
}

/* Info Sections */
.hrh-info-section {
    padding: 80px 0;
}

.hrh-alt-bg {
    background-color: var(--hrh-bg-alt);
    border-top: 1px solid var(--hrh-border-color);
    border-bottom: 1px solid var(--hrh-border-color);
}

.hrh-section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--hrh-accent-gold);
    margin-bottom: 15px;
}

.hrh-section-intro {
    text-align: center;
    color: var(--hrh-text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.hrh-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hrh-feat-card {
    background: var(--hrh-card-bg);
    border: 1px solid var(--hrh-border-color);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.hrh-feat-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--hrh-accent-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hrh-fc-kicker {
    font-size: 0.8rem;
    color: var(--hrh-accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.hrh-fc-title {
    font-size: 1.8rem;
    color: var(--hrh-text-main);
    margin-bottom: 20px;
}

.hrh-fc-text {
    color: var(--hrh-text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.hrh-fc-list {
    list-style: none;
}

.hrh-fc-list li {
    color: var(--hrh-text-main);
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.hrh-fc-list li::before {
    content: "•";
    color: var(--hrh-accent-gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Footer */
.hrh-footer-wrap {
    background-color: #060b16;
    padding: 60px 0 20px;
    border-top: 2px solid var(--hrh-accent-gold);
}

.hrh-footer-top {
    text-align: center;
    margin-bottom: 50px;
}

.hrh-footer-slogan {
    font-size: 2rem;
    color: var(--hrh-accent-light);
    letter-spacing: 1px;
}

.hrh-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.hrh-fc-head {
    font-size: 1.2rem;
    color: var(--hrh-accent-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hrh-fc-desc {
    color: var(--hrh-text-muted);
    font-size: 0.9rem;
}

.hrh-contact-list {
    list-style: none;
}

.hrh-contact-list li {
    color: var(--hrh-text-muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.hrh-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hrh-footer-nav {
    display: flex;
    gap: 20px;
}

.hrh-nav-link {
    color: var(--hrh-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.hrh-nav-link:hover {
    color: var(--hrh-accent-gold);
}

.hrh-copyright {
    color: var(--hrh-text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hrh-card-grid, .hrh-hero-grid, .hrh-footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hrh-main-heading {
        font-size: 2.5rem;
    }
    
    .hrh-card-grid, .hrh-hero-grid, .hrh-footer-cols {
        grid-template-columns: 1fr;
    }
    
    .hrh-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hrh-header-inner {
        flex-direction: column;
        gap: 15px;
    }
}
