:root {
    --deep-charcoal: #1a1a1a;
    --off-white: #f4f4f4;
    --sage-green: #6b8e23;
    --terracotta: #c2410c;
    --muted-gold: #b5a642;
    --border-color: #333333;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--deep-charcoal);
    color: var(--off-white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    margin: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1rem; margin-top: 3rem; }
h3 { font-size: 1.5rem; color: var(--muted-gold); }

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

section {
    padding: 100px 0;
    position: relative;
}

.institutional-border {
    border: 1px solid var(--border-color);
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
}

.btn-institutional {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--sage-green);
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-institutional:hover {
    background-color: #556b2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-section {
    height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(26,26,26,1) 30%, rgba(26,26,26,0.4) 100%);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: #222;
    padding: 30px;
    border-top: 4px solid var(--muted-gold);
    transition: transform 0.3s ease;
}

.info-card:hover { transform: translateY(-10px); }

.image-frame {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(30%) contrast(110%);
    border: 1px solid var(--border-color);
}

.table-container {
    overflow-x: auto;
    margin: 40px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: var(--sage-green);
    text-align: left;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.faq-trigger {
    padding: 20px;
    cursor: pointer;
    background: #252525;
    display: flex;
    justify-content: space-between;
}

.faq-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-content.active {
    padding: 20px;
    max-height: 500px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #222;
    padding: 20px;
    border: 1px solid var(--sage-green);
    z-index: 9999;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.disclaimer-box {
    background: rgba(194, 65, 12, 0.1);
    border-left: 4px solid var(--terracotta);
    padding: 20px;
    margin: 20px 0;
}

header {
    background: var(--deep-charcoal);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.catalog-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #222;
    border: 1px solid var(--border-color);
}

.catalog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-body { padding: 30px; }

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