:root {
    --primary-dark: #1a1a1a;
    --charcoal: #2c2c2c;
    --beige: #f5f5dc;
    --terracotta: #c05c44;
    --ochre: #d4a017;
    --text-main: #333333;
    --text-light: #f9f9f9;
    --border-color: #e0e0e0;
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: 'Merriweather', serif;
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--charcoal);
}

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

.section-spacing {
    padding: 100px 0;
}

/* Institutional Header */
header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--charcoal);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--charcoal);
    overflow: hidden;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
}

.hero h1 {
    color: var(--text-light);
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Grid Components */
.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;
}

/* Compliance Block */
.compliance-block {
    background: var(--beige);
    padding: 40px;
    border-left: 4px solid var(--terracotta);
    margin: 40px 0;
    font-size: 0.9rem;
}

/* Cards */
.info-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: var(--transition-slow);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--charcoal);
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--terracotta);
}

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

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    font-size: 12px;
    text-align: center;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: white;
    padding: 20px;
    z-index: 2000;
    display: none;
}

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

/* Utility Classes */
.bg-beige { background-color: var(--beige); }
.text-center { text-align: center; }
.img-fluid { max-width: 100%; height: auto; }

/* Timeline for relaxation */
.timeline {
    border-left: 2px solid var(--ochre);
    padding-left: 30px;
    margin-left: 20px;
}

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

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

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