/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rch-bg-color: #0b1528;
    --rch-card-bg: #14213d;
    --rch-accent: #d4af37;
    --rch-accent-hover: #f1ca58;
    --rch-text: #e0e6ed;
    --rch-text-muted: #9ba6b5;
    --rch-white: #ffffff;
    --rch-font-heading: 'Playfair Display', serif;
    --rch-font-body: 'Lato', sans-serif;
    --rch-radius: 12px;
    --rch-transition: 0.3s ease;
}

body {
    font-family: var(--rch-font-body);
    background-color: var(--rch-bg-color);
    color: var(--rch-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header */
.rch-head-area {
    background-color: rgba(11, 21, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.rch-head-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rch-head-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rch-head-logo {
    font-family: var(--rch-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--rch-accent);
    letter-spacing: 2px;
}

.rch-head-titles {
    display: flex;
    flex-direction: column;
}

.rch-brand-name {
    font-family: var(--rch-font-heading);
    font-size: 1.25rem;
    color: var(--rch-white);
    font-weight: 600;
}

.rch-brand-sub {
    font-size: 0.85rem;
    color: var(--rch-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rch-head-badge {
    background-color: transparent;
    border: 2px solid var(--rch-accent);
    color: var(--rch-accent);
    font-family: var(--rch-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* Page Wrapper */
.rch-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* Intro / Hero Section */
.rch-intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.rch-intro-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, rgba(11,21,40,0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.rch-intro-kicker {
    display: inline-block;
    color: var(--rch-accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.rch-intro-title {
    font-family: var(--rch-font-heading);
    font-size: 4rem;
    color: var(--rch-white);
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 900px;
}

.rch-intro-desc {
    font-size: 1.25rem;
    color: var(--rch-text-muted);
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* Grid Three (Hero) */
.rch-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.rch-grid-item {
    background-color: var(--rch-card-bg);
    padding: 2rem;
    border-radius: var(--rch-radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform var(--rch-transition), box-shadow var(--rch-transition);
}

.rch-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.rch-grid-mini-title {
    font-family: var(--rch-font-heading);
    font-size: 1.5rem;
    color: var(--rch-accent);
    margin-bottom: 1rem;
}

.rch-grid-mini-text {
    font-size: 1rem;
    color: var(--rch-text);
}

/* Sections General */
.rch-section-heading-wrap {
    text-align: center;
    margin-bottom: 4rem;
}

.rch-section-title {
    font-family: var(--rch-font-heading);
    font-size: 3rem;
    color: var(--rch-white);
    margin-bottom: 1.5rem;
}

.rch-section-intro {
    font-size: 1.15rem;
    color: var(--rch-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Cards Grid */
.rch-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.rch-card {
    background-color: var(--rch-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--rch-radius);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--rch-transition);
}

.rch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--rch-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.rch-card:hover {
    background-color: rgba(20, 33, 61, 0.8);
}

.rch-card:hover::before {
    transform: scaleX(1);
}

.rch-card-kicker {
    display: block;
    font-size: 0.75rem;
    color: var(--rch-accent);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.rch-card-title {
    font-family: var(--rch-font-heading);
    font-size: 1.75rem;
    color: var(--rch-white);
    margin-bottom: 1.5rem;
}

.rch-card-desc {
    color: var(--rch-text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.rch-card-list {
    list-style: none;
}

.rch-card-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--rch-text);
    font-size: 0.95rem;
}

.rch-card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--rch-accent);
}

/* Footer */
.rch-foot-area {
    background-color: #060b14;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 2rem 3rem 2rem;
}

.rch-foot-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.rch-foot-slogan {
    font-family: var(--rch-font-heading);
    font-size: 2.5rem;
    color: var(--rch-white);
    text-align: center;
    margin-bottom: 4rem;
}

.rch-foot-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rch-foot-text {
    color: var(--rch-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.rch-foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.rch-foot-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rch-contact-item {
    color: var(--rch-text);
    font-size: 0.95rem;
}

.rch-contact-item strong {
    color: var(--rch-accent);
    font-weight: normal;
}

.rch-foot-nav {
    display: flex;
    gap: 2rem;
}

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

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

/* Cookie Banner */
.rch-cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: var(--rch-card-bg);
    border: 1px solid var(--rch-accent);
    padding: 1.5rem 2rem;
    border-radius: var(--rch-radius);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: none;
}

.rch-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.rch-cookie-content p {
    color: var(--rch-text);
    font-size: 0.95rem;
    margin: 0;
}

.rch-cookie-btn {
    background-color: var(--rch-accent);
    color: var(--rch-bg-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: var(--rch-font-body);
    font-weight: 700;
    cursor: pointer;
    transition: background-color var(--rch-transition);
}

.rch-cookie-btn:hover {
    background-color: var(--rch-accent-hover);
}

/* Responsive */
@media (max-width: 992px) {
    .rch-intro-title {
        font-size: 3rem;
    }
    
    .rch-grid-three, .rch-cards-grid {
        grid-template-columns: 1fr;
    }

    .rch-foot-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rch-foot-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .rch-head-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rch-intro-title {
        font-size: 2.5rem;
    }
    
    .rch-section-title {
        font-size: 2.25rem;
    }

    .rch-cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
