/* CSS Reset and Variables */
:root {
    --orh-bg-main: #0B1120;
    --orh-bg-alt: #111827;
    --orh-text-primary: #F3F4F6;
    --orh-text-muted: #9CA3AF;
    --orh-accent-gold: #D4AF37;
    --orh-accent-dark: #B08D28;
    --orh-border-light: rgba(212, 175, 55, 0.2);
    --orh-font-head: 'Playfair Display', serif;
    --orh-font-body: 'Montserrat', sans-serif;
    --orh-shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);
    --orh-radius-lg: 16px;
    --orh-radius-sm: 8px;
}

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

body {
    background-color: var(--orh-bg-main);
    color: var(--orh-text-primary);
    font-family: var(--orh-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.orh-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.orh-nav-area {
    background-color: rgba(11, 17, 32, 0.95);
    border-bottom: 1px solid var(--orh-border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.orh-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.orh-brand-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.orh-logo-mark {
    font-family: var(--orh-font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--orh-bg-main);
    background: linear-gradient(135deg, var(--orh-accent-gold), #FFF);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--orh-shadow-glow);
}

.orh-brand-texts {
    display: flex;
    flex-direction: column;
}

.orh-brand-name {
    font-family: var(--orh-font-head);
    font-size: 24px;
    font-weight: 600;
    color: var(--orh-accent-gold);
    letter-spacing: 1px;
}

.orh-brand-sub {
    font-size: 12px;
    color: var(--orh-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.orh-nav-badge {
    border: 1px solid var(--orh-accent-gold);
    color: var(--orh-accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Section */
.orh-hero-zone {
    padding: 120px 0 100px;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    text-align: center;
}

.orh-hero-align {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.orh-hero-kicker {
    font-size: 14px;
    color: var(--orh-accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.orh-hero-title {
    font-family: var(--orh-font-head);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 800px;
    line-height: 1.2;
}

.orh-hero-desc {
    font-size: 18px;
    color: var(--orh-text-muted);
    max-width: 600px;
    margin-bottom: 64px;
}

.orh-perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.orh-perk-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: var(--orh-radius-lg);
    transition: transform 0.3s ease, background 0.3s ease;
}

.orh-perk-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.orh-perk-title {
    font-family: var(--orh-font-head);
    font-size: 20px;
    color: var(--orh-text-primary);
    margin-bottom: 12px;
}

.orh-perk-desc {
    font-size: 14px;
    color: var(--orh-text-muted);
}

/* Content Sections */
.orh-content-zone {
    padding: 100px 0;
}

.orh-alt-bg {
    background-color: var(--orh-bg-alt);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.orh-zone-title {
    font-family: var(--orh-font-head);
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--orh-accent-gold);
}

.orh-zone-intro {
    text-align: center;
    color: var(--orh-text-muted);
    max-width: 700px;
    margin: 0 auto 64px;
    font-size: 16px;
}

.orh-cards-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.orh-feature-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05));
    border: 1px solid var(--orh-border-light);
    border-radius: var(--orh-radius-lg);
    padding: 40px 32px;
    transition: all 0.4s ease;
}

.orh-feature-box:hover {
    box-shadow: var(--orh-shadow-glow);
    border-color: var(--orh-accent-gold);
}

.orh-box-kicker {
    display: inline-block;
    font-size: 12px;
    color: var(--orh-text-primary);
    background: var(--orh-accent-dark);
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.orh-box-title {
    font-family: var(--orh-font-head);
    font-size: 24px;
    margin-bottom: 16px;
}

.orh-box-text {
    font-size: 14px;
    color: var(--orh-text-muted);
    margin-bottom: 24px;
    min-height: 48px;
}

.orh-box-list {
    list-style: none;
}

.orh-list-tick {
    font-size: 14px;
    color: var(--orh-text-primary);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.orh-list-tick::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: var(--orh-accent-gold);
    border-radius: 50%;
}

/* Footer */
.orh-foot-area {
    background-color: #050810;
    padding: 80px 0 40px;
    border-top: 1px solid var(--orh-border-light);
}

.orh-foot-slogan {
    font-family: var(--orh-font-head);
    font-size: 32px;
    text-align: center;
    color: var(--orh-accent-gold);
    margin-bottom: 64px;
}

.orh-foot-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.orh-foot-head {
    font-family: var(--orh-font-head);
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFF;
}

.orh-foot-text {
    font-size: 14px;
    color: var(--orh-text-muted);
}

.orh-foot-bottom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.orh-contact-list, .orh-foot-links {
    list-style: none;
}

.orh-contact-item {
    font-size: 14px;
    color: var(--orh-text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.orh-foot-links li {
    margin-bottom: 12px;
}

.orh-foot-anchor {
    color: var(--orh-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.orh-foot-anchor:hover {
    color: var(--orh-accent-gold);
}

.orh-foot-copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .orh-perks-grid, .orh-cards-layout, .orh-foot-layout, .orh-foot-bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .orh-hero-title {
        font-size: 40px;
    }
    
    .orh-foot-layout, .orh-foot-bottom-grid {
        gap: 40px;
    }
}
