:root {
    --bg-color: #EAEAEA;
    --accent-primary: #5A7F8C;
    --accent-secondary: #A9C2C7;
    --accent-warm: #C1B4AB;
    --text-main: #333333;
    --text-muted: #666666;
    --max-width: 1440px;
    --transition: all 0.4s ease;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

/* Header & Navigation */
header {
    background: rgba(234, 234, 234, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    width: 100%;
    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: 800;
    color: var(--accent-primary);
    text-decoration: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

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

.hero h1 { color: #fff; }

/* Grid Systems */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

/* Components */
.img-wrapper {
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: var(--transition);
    border: none;
}

.btn-primary:hover {
    background: #46636d;
    transform: translateY(-2px);
}

.card {
    background: #fff;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-secondary);
}

/* Signature Elements */
.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid var(--accent-secondary);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.stat-strip {
    display: flex;
    justify-content: space-around;
    background: var(--accent-warm);
    padding: 60px 0;
    margin: 40px 0;
}

.stat-item { text-align: center; }
.stat-number { font-size: 3rem; font-family: 'Playfair Display', serif; display: block; }
.stat-label { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; }

/* Footer */
footer {
    background: #fff;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

/* Forms */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

.disclaimer-box {
    background: #f4f4f4;
    padding: 30px;
    border-left: 4px solid var(--accent-primary);
    margin-bottom: 30px;
}

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