:root {
    --primary-slate: #708090;
    --accent-teal: #008080;
    --bg-beige: #F5F5DC;
    --forest-green: #228B22;
    --text-dark: #333333;
    --text-muted: #555555;
    --border-light: #CCCCCC;
    --white: #FFFFFF;
    --max-width: 1440px;
    --container-width: 1280px;
}

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

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

h1, h2, h3, h4, .nav-link, .btn-cta {
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: none;
    font-weight: 600;
}

h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 2rem; color: var(--primary-slate); }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--primary-slate); }
h3 { font-size: 1.75rem; margin-bottom: 1rem; color: var(--accent-teal); }

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

section {
    padding: 80px 0;
}

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-slate);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-teal);
}

/* Hero Section */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.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: var(--white); }

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border-light);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

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

/* Zigzag Layout */
.zigzag {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.zigzag:nth-child(even) {
    flex-direction: row-reverse;
}

.zigzag-img {
    flex: 1;
}

.zigzag-img img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
}

.zigzag-text {
    flex: 1;
}

/* Buttons */
.btn-cta {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-teal);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background: #006666;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.faq-question {
    cursor: pointer;
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding-top: 15px;
    color: var(--text-muted);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    border-top: 2px solid var(--primary-slate);
    z-index: 2000;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Footer */
footer {
    background: var(--primary-slate);
    color: var(--white);
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    font-size: 0.8rem;
    text-align: center;
}

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

.catalog-card {
    background: var(--white);
    border: 1px solid var(--border-light);
}

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

.catalog-card-body {
    padding: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .zigzag { flex-direction: column !important; }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .catalog-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}