/* GWA Base Styles & Variables */
:root {
    --gwa-bg-color: #0d1117;
    --gwa-bg-alt: #161b22;
    --gwa-text-main: #c9d1d9;
    --gwa-text-muted: #8b949e;
    --gwa-accent: #d4af37; /* Gold */
    --gwa-accent-hover: #f1e05a;
    --gwa-border: rgba(212, 175, 55, 0.2);
    --gwa-card-bg: #1c2128;
    
    --gwa-font-heading: "Playfair Display", Georgia, serif;
    --gwa-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

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

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

/* Header */
.gwa-top-nav {
    background-color: rgba(13, 17, 23, 0.95);
    border-bottom: 1px solid var(--gwa-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.gwa-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gwa-brand-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gwa-logo-text {
    font-family: var(--gwa-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gwa-accent);
    letter-spacing: 2px;
    border: 2px solid var(--gwa-accent);
    padding: 4px 8px;
    border-radius: 4px;
}

.gwa-brand-details {
    display: flex;
    flex-direction: column;
}

.gwa-brand-name {
    font-family: var(--gwa-font-heading);
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

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

.gwa-age-badge {
    display: inline-block;
    border: 1px solid var(--gwa-accent);
    color: var(--gwa-accent);
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
}

/* Hero Section */
.gwa-hero-section {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, #1f2937 0%, var(--gwa-bg-color) 60%);
    border-bottom: 1px solid var(--gwa-border);
}

.gwa-hero-inner {
    max-width: 800px;
}

.gwa-hero-label {
    display: inline-block;
    color: var(--gwa-accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.gwa-hero-title {
    font-family: var(--gwa-font-heading);
    font-size: 56px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.gwa-hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid var(--gwa-border);
    padding-top: 32px;
}

.gwa-feature-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--gwa-font-heading);
}

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

/* Info Sections */
.gwa-info-section {
    padding: 100px 0;
}

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

.gwa-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.gwa-section-title {
    font-family: var(--gwa-font-heading);
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
}

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

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

.gwa-info-card {
    background-color: var(--gwa-card-bg);
    border: 1px solid var(--gwa-border);
    padding: 32px;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gwa-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gwa-accent);
}

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

.gwa-card-title {
    font-family: var(--gwa-font-heading);
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}

.gwa-card-text {
    color: var(--gwa-text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    min-height: 60px;
}

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

.gwa-card-list li {
    font-size: 14px;
    color: var(--gwa-text-main);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.gwa-card-list li::before {
    content: "•";
    color: var(--gwa-accent);
    position: absolute;
    left: 0;
    top: 0;
}

/* Footer */
.gwa-bottom-area {
    background-color: #060913;
    padding: 80px 0 32px;
    border-top: 1px solid var(--gwa-border);
}

.gwa-footer-slogan {
    font-family: var(--gwa-font-heading);
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin-bottom: 64px;
}

.gwa-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.gwa-footer-heading {
    color: var(--gwa-accent);
    font-size: 16px;
    margin-bottom: 24px;
    font-family: var(--gwa-font-heading);
}

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

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

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

.gwa-nav-list {
    list-style: none;
}

.gwa-nav-list li {
    margin-bottom: 12px;
}

.gwa-footer-link {
    color: var(--gwa-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.gwa-footer-link:hover {
    color: var(--gwa-accent);
}

.gwa-footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #586069;
    font-size: 12px;
}

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

@media (max-width: 768px) {
    .gwa-hero-title {
        font-size: 40px;
    }
    .gwa-card-grid, .gwa-footer-grid {
        grid-template-columns: 1fr;
    }
    .gwa-brand-details {
        display: none;
    }
}
