:root {
    --lgh-bg-dark: #0A0F1D;
    --lgh-bg-alt: #111727;
    --lgh-gold: #C69C6D;
    --lgh-gold-light: #E3BE92;
    --lgh-text-main: #F4F4F5;
    --lgh-text-muted: #A1A5B5;
    --lgh-accent: #8E1628; /* Deep Ruby */
    
    --lgh-font-heading: 'Playfair Display', serif;
    --lgh-font-body: 'Lato', sans-serif;
    
    --lgh-border-radius: 4px;
    --lgh-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--lgh-font-body);
    background-color: var(--lgh-bg-dark);
    color: var(--lgh-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Container */
.lgh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.lgh-hdr {
    background-color: rgba(10, 15, 29, 0.95);
    border-bottom: 1px solid rgba(198, 156, 109, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.lgh-hdr-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.lgh-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lgh-logo-abbr {
    font-family: var(--lgh-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--lgh-gold);
    letter-spacing: 2px;
    border: 2px solid var(--lgh-gold);
    padding: 4px 8px;
}

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

.lgh-logo-main {
    font-family: var(--lgh-font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--lgh-text-main);
    letter-spacing: 1px;
}

.lgh-logo-sub {
    font-size: 11px;
    color: var(--lgh-gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lgh-hdr-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lgh-nav {
    display: flex;
    gap: 24px;
}

.lgh-nav-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lgh-text-muted);
    transition: var(--lgh-transition);
}

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

.lgh-badge {
    background-color: var(--lgh-accent);
    color: var(--lgh-text-main);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--lgh-border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.lgh-hero {
    padding: 100px 0 80px;
    position: relative;
    background: radial-gradient(circle at 50% 0%, #1a223a 0%, var(--lgh-bg-dark) 70%);
}

.lgh-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(198,156,109,0.05) 0%, transparent 100%);
    pointer-events: none;
}

.lgh-hero-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.lgh-hero-kicker {
    display: inline-block;
    font-size: 14px;
    color: var(--lgh-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lgh-gold);
    padding-bottom: 4px;
}

.lgh-hero-h1 {
    font-family: var(--lgh-font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--lgh-text-main);
    line-height: 1.1;
    margin-bottom: 32px;
}

.lgh-hero-desc {
    font-size: 18px;
    color: var(--lgh-text-muted);
    line-height: 1.8;
}

.lgh-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.lgh-hero-card {
    background-color: rgba(17, 23, 39, 0.6);
    border: 1px solid rgba(198, 156, 109, 0.15);
    padding: 32px;
    border-radius: var(--lgh-border-radius);
    text-align: center;
    transition: var(--lgh-transition);
}

.lgh-hero-card:hover {
    border-color: rgba(198, 156, 109, 0.5);
    transform: translateY(-5px);
}

.lgh-hero-card-title {
    display: block;
    font-family: var(--lgh-font-heading);
    font-size: 20px;
    color: var(--lgh-gold);
    margin-bottom: 12px;
}

.lgh-hero-card-desc {
    font-size: 14px;
    color: var(--lgh-text-muted);
}

/* Common Section */
.lgh-sec {
    padding: 100px 0;
}

.lgh-sec-alt {
    background-color: var(--lgh-bg-alt);
    border-top: 1px solid rgba(198, 156, 109, 0.05);
    border-bottom: 1px solid rgba(198, 156, 109, 0.05);
}

.lgh-sec-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.lgh-sec-h2 {
    font-family: var(--lgh-font-heading);
    font-size: 42px;
    color: var(--lgh-text-main);
    margin-bottom: 24px;
}

.lgh-sec-intro {
    font-size: 16px;
    color: var(--lgh-text-muted);
}

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

.lgh-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--lgh-border-radius);
    transition: var(--lgh-transition);
}

.lgh-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(198, 156, 109, 0.3);
}

.lgh-card-kicker {
    font-size: 12px;
    color: var(--lgh-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.lgh-card-h3 {
    font-family: var(--lgh-font-heading);
    font-size: 24px;
    margin-bottom: 16px;
}

.lgh-card-txt {
    font-size: 15px;
    color: var(--lgh-text-muted);
    margin-bottom: 24px;
    min-height: 70px;
}

.lgh-card-list {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.lgh-card-item {
    font-size: 14px;
    color: var(--lgh-text-main);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.lgh-card-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--lgh-gold);
    border-radius: 50%;
}

.lgh-card-item:last-child {
    margin-bottom: 0;
}

/* Footer */
.lgh-ftr {
    background-color: #05080E;
    padding: 80px 0 40px;
    border-top: 2px solid var(--lgh-gold);
}

.lgh-ftr-slogan {
    font-family: var(--lgh-font-heading);
    font-size: 32px;
    color: var(--lgh-gold);
    text-align: center;
    margin-bottom: 60px;
}

.lgh-ftr-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.lgh-ftr-h4 {
    font-family: var(--lgh-font-heading);
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--lgh-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lgh-ftr-txt {
    font-size: 14px;
    color: var(--lgh-text-muted);
    line-height: 1.8;
}

.lgh-ftr-contact-list {
    list-style: none;
}

.lgh-ftr-contact-list li {
    font-size: 14px;
    color: var(--lgh-text-muted);
    margin-bottom: 12px;
}

.lgh-contact-label {
    color: var(--lgh-gold);
    font-weight: 700;
    margin-right: 8px;
}

.lgh-ftr-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lgh-ftr-copy {
    font-size: 13px;
    color: rgba(161, 165, 181, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .lgh-hero-cards, .lgh-grid, .lgh-ftr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lgh-hero-h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .lgh-hdr-right {
        gap: 16px;
    }
    .lgh-nav {
        display: none;
    }
    .lgh-hero-cards, .lgh-grid, .lgh-ftr-grid {
        grid-template-columns: 1fr;
    }
    .lgh-hero-h1 {
        font-size: 36px;
    }
    .lgh-sec {
        padding: 60px 0;
    }
}
