:root {
    --primary-color: #8A8886;
    --secondary-color: #F2F0EC;
    --accent-green: #6B7C6E;
    --accent-terracotta: #B87B6A;
    --dark-indigo: #3A4750;
    --white: #FFFFFF;
    --text-main: #2D2D2D;
    --spacing-unit: 8px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark-indigo);
    line-height: 1.2;
}

h1 { font-size: 4rem; margin-bottom: 2rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 600; color: var(--accent-green); }

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

/* Header & Navigation */
header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

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

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

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

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

/* Sections */
section {
    padding: 100px 0;
}

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

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

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

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

/* Layout Patterns */
.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: 30px;
}

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

.museum-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.museum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.image-wrapper:hover img {
    filter: grayscale(0%);
}

/* Components */
.btn-neutral {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-green);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-neutral:hover {
    background: var(--dark-indigo);
    padding-right: 45px;
}

.quote-block {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    border-left: 4px solid var(--accent-terracotta);
    padding-left: 40px;
    margin: 40px 0;
    color: var(--primary-color);
}

.timeline {
    position: relative;
    padding-left: 40px;
    border-left: 1px solid var(--primary-color);
}

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

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

/* Footer */
footer {
    background: var(--dark-indigo);
    color: var(--white);
    padding: 80px 0 40px;
}

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

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

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

/* Tables & Matrix */
.matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.matrix-table th, .matrix-table td {
    padding: 20px;
    border: 1px solid #ddd;
    text-align: left;
}

.matrix-table th {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .hero { height: 60vh; }
}