:root {
    --primary-color: #1A2A4A;
    --accent-gold: #C8A26A;
    --light-gray: #AAB7C4;
    --blue-gray: #6A8EAE;
    --text-main: #2D3436;
    --text-light: #F8F9FA;
    --bg-light: #FFFFFF;
    --bg-alt: #F4F7F9;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.25rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

/* Header */
header {
    background: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-decoration: none;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(26,42,74,0.9) 0%, rgba(26,42,74,0.4) 100%);
}

.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-top: 4px solid var(--accent-gold);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* Utility */
.soft-cta {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--accent-gold);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.soft-cta:hover {
    background-color: var(--primary-color);
    color: var(--accent-gold);
}

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

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-info h3 { color: var(--accent-gold); margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--light-gray); text-decoration: none; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--accent-gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--light-gray);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 20px 30px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-left: 5px solid var(--accent-gold);
}

.cookie-btns { display: flex; gap: 15px; }
.btn-cookie { padding: 8px 20px; cursor: pointer; border: none; font-weight: 600; }
.btn-accept { background: var(--accent-gold); color: var(--primary-color); }
.btn-decline { background: transparent; color: white; border: 1px solid white; }

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    .container { padding: 0 20px; }
    .nav-container { flex-direction: column; gap: 20px; }
    nav ul li { margin: 0 15px; }
    section { padding: 60px 0; }
}