:root {
    --grh-bg: #090b10;
    --grh-bg-alt: #12151e;
    --grh-text: #e2e8f0;
    --grh-text-muted: #94a3b8;
    --grh-accent: #d4af37;
    --grh-accent-hover: #f1cd5a;
    --grh-card-bg: rgba(255, 255, 255, 0.03);
    --grh-border: rgba(212, 175, 55, 0.2);
    --grh-font-heading: "Didot", "Playfair Display", "Georgia", serif;
    --grh-font-body: "Helvetica Neue", "Arial", sans-serif;
    --grh-radius: 12px;
    --grh-transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

.grh-body {
    background-color: var(--grh-bg);
    color: var(--grh-text);
    font-family: var(--grh-font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #151a28 0%, transparent 50%),
                      radial-gradient(circle at 100% 100%, #151a28 0%, transparent 50%);
}

.grh-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.grh-header {
    background-color: rgba(9, 11, 16, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grh-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.grh-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grh-logo-wrap {
    display: flex;
    flex-direction: column;
}

.grh-logo-title {
    font-family: var(--grh-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--grh-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.grh-logo-sub {
    font-size: 0.75rem;
    color: var(--grh-text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
}

.grh-header-badge {
    border: 1px solid var(--grh-accent);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--grh-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero */
.grh-hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.grh-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

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

.grh-hero-title {
    font-family: var(--grh-font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(to right, #fff, var(--grh-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grh-hero-desc {
    font-size: 1.2rem;
    color: var(--grh-text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.grh-hero-card {
    background: var(--grh-card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: var(--grh-radius);
    text-align: left;
    transition: var(--grh-transition);
}

.grh-hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--grh-border);
    background: rgba(212, 175, 55, 0.05);
}

.grh-hc-kicker {
    font-size: 0.8rem;
    color: var(--grh-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.grh-hc-title {
    font-family: var(--grh-font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.grh-hc-text {
    font-size: 0.95rem;
    color: var(--grh-text-muted);
}

/* Sections */
.grh-section {
    padding: 100px 0;
}

.grh-section-bg {
    background-color: var(--grh-bg-alt);
    padding: 100px 0;
}

.grh-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.grh-section-title {
    font-family: var(--grh-font-heading);
    font-size: 3rem;
    color: var(--grh-accent);
    margin-bottom: 20px;
}

.grh-section-subtitle {
    font-size: 1.1rem;
    color: var(--grh-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Three */
.grh-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grh-grid-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: var(--grh-radius);
    transition: var(--grh-transition);
    position: relative;
    overflow: hidden;
}

.grh-grid-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--grh-accent), transparent);
    opacity: 0;
    transition: var(--grh-transition);
}

.grh-grid-card:hover {
    border-color: var(--grh-border);
    transform: translateY(-5px);
}

.grh-grid-card:hover::before {
    opacity: 1;
}

.grh-gc-kicker {
    font-size: 0.85rem;
    color: var(--grh-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.grh-gc-title {
    font-family: var(--grh-font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.grh-gc-text {
    color: var(--grh-text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
}

.grh-gc-list {
    list-style: none;
}

.grh-gc-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.grh-gc-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--grh-accent);
    font-size: 0.8rem;
}

/* Footer */
.grh-footer {
    background-color: #050608;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 80px 0 20px;
}

.grh-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grh-footer-slogan {
    font-family: var(--grh-font-heading);
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.grh-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.grh-footer-col-title {
    font-size: 1.1rem;
    color: var(--grh-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.grh-footer-text, .grh-footer-address p {
    color: var(--grh-text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.grh-footer-address {
    font-style: normal;
}

.grh-footer-nav {
    list-style: none;
}

.grh-footer-nav li {
    margin-bottom: 12px;
}

.grh-footer-nav a {
    color: var(--grh-text-muted);
    text-decoration: none;
    transition: var(--grh-transition);
}

.grh-footer-nav a:hover {
    color: var(--grh-accent);
}

.grh-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    color: var(--grh-text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .grh-hero-cards, .grh-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
    .grh-footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    .grh-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .grh-hero-cards, .grh-grid-three {
        grid-template-columns: 1fr;
    }
    .grh-footer-columns {
        grid-template-columns: 1fr;
    }
    .grh-hero-title {
        font-size: 2.5rem;
    }
    .grh-header-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .grh-section-title {
        font-size: 2.2rem;
    }
}

/* Cookie Banner */
.grh-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--grh-accent);
    color: #000;
    text-align: center;
    padding: 15px;
    z-index: 1000;
}
.grh-cookie-banner button {
    background-color: #000;
    color: var(--grh-accent);
    border: none;
    padding: 5px 15px;
    margin-left: 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
}
