:root {
    --primary-color: #2C3E50;
    --secondary-color: #F7F9FB;
    --accent-1: #7F8C8D;
    --accent-2: #9C3848;
    --accent-3: #D0A761;
    --text-main: #2C3E50;
    --text-muted: #546E7A;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

h1 { font-size: 3.5rem; line-height: 1.2; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; line-height: 1.3; }
h3 { font-size: 1.75rem; line-height: 1.4; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding { padding: 80px 0; }

header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

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

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

.hero h1, .hero h2 { color: var(--white); }

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-2);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #822e3c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--accent-3);
}

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

.footer {
    background: var(--primary-color);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 40px;
}

.footer h3 { color: var(--white); margin-bottom: 1.5rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-3); }

.disclaimer-bar {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border-left: 5px solid var(--accent-3);
}

.cookie-btns { display: flex; gap: 1rem; }

.grid-3 { display: grid; grid-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.img-fluid { max-width: 100%; height: auto; display: block; }
.img-cinematic { box-shadow: 20px 20px 0 var(--secondary-color); border-radius: 2px; }

.disclaimer-box {
    border: 2px solid var(--accent-2);
    padding: 2rem;
    margin: 2rem 0;
    background: rgba(156, 56, 72, 0.05);
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
}