:root {
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #111111;
    --text-dark: #222222;
    --text-light: #ffffff;
    --text-muted: #666666;
    --accent: #d4af37; /* Gold accent for that premium feel */
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography styles */
.typography-section {
    font-size: 1.125rem;
}

.huge-claim {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    margin: 40px 0;
    color: var(--text-dark);
}

.huge-claim.text-accent {
    color: var(--accent);
}

.bg-dark .huge-claim {
    color: var(--text-light);
}

.massive-text {
    font-size: 6vw;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
}

/* Backgrounds */
.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: var(--text-light);
}

.text-white .section-title {
    color: var(--text-light);
}

.text-white .text-muted {
    color: #cccccc;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
    border-bottom: 1px solid #eeeeee;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding-right: 40px;
}

.hero-image-container {
    flex: 1;
    height: 80vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Sections */
.section {
    padding: 120px 5%;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 700;
}

/* Grid Layouts */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Split Layout for Image Integration */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-layout > div {
    min-width: 0; /* Prevents grid blowout from intrinsic image sizes */
}

.split-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.split-image:hover {
    transform: scale(1.02);
}

.bg-dark .split-layout {
    text-shadow: none;
}

.bg-dark .split-image {
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.stat-item {
    border-left: 4px solid var(--accent);
    padding-left: 30px;
}

.stat-number {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-desc {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 500px;
}

/* Utilities */
.margin-top {
    margin-top: 80px;
}

.center-text {
    text-align: center;
}

.claim-details {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 60px 5%;
    text-align: center;
}

.fine-print {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666666;
}

/* Responsive */
@media (max-width: 1024px) {
    .split-layout {
        display: flex !important;
        flex-direction: column;
        gap: 40px;
    }

    .huge-claim {
        font-size: 3rem;
    }
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-container {
        justify-content: center;
    }

    .massive-text {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .huge-claim {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none; /* simple mobile fallback */
    }

    .massive-text {
        font-size: 3rem;
    }

    .stat-number {
        font-size: 4rem;
    }
}
