:root {
    --c-primary: #183746; /* Deep Arctic Blue */
    --c-secondary: #28605E; /* Nordic Teal */
    --c-bg-mist: #DCEBE8; /* Lake Mist */
    --c-bg-sky: #EAF1F0; /* Pale Sky */
    --c-accent-clay: #B77C67; /* Soft Clay */
    --c-accent-stone: #C8BBAA; /* Warm Stone */
    --c-light: #FAFBF9; /* Snow */
    --c-text-main: #222222;
    --c-text-light: #666666;
    
    --f-heading: 'Playfair Display', serif;
    --f-body: 'Lato', sans-serif;
    
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--f-body);
    color: var(--c-text-main);
    background-color: var(--c-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-heading);
    font-weight: 400;
    color: var(--c-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--c-secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--c-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background-color: var(--c-light);
    border-bottom: 1px solid var(--c-bg-sky);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.brand {
    font-family: var(--f-heading);
    font-size: 1.8rem;
    color: var(--c-primary);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--c-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--c-accent-clay);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--c-secondary);
    color: var(--c-light);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--c-primary);
    color: var(--c-light);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--c-light);
    color: var(--c-light);
}

.btn-outline:hover {
    background-color: var(--c-light);
    color: var(--c-primary);
}

.btn-secondary {
    background-color: var(--c-accent-clay);
}

.btn-secondary:hover {
    background-color: #a06854;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--c-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--c-primary);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(24, 55, 70, 0.9) 0%, rgba(24, 55, 70, 0.4) 100%);
    z-index: 1;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: var(--c-light);
}

.hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    color: var(--c-bg-mist);
}

.hero-content h1 {
    color: var(--c-light);
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--c-bg-sky);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-bg-light {
    background-color: var(--c-bg-sky);
}

.section-bg-dark {
    background-color: var(--c-primary);
    color: var(--c-light);
}

.section-bg-dark h2, .section-bg-dark h3 {
    color: var(--c-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
}

/* Editorial block */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.editorial-img img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Cards Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--c-light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-img-wrapper {
    height: 240px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-accent-clay);
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--c-text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-btn {
    align-self: flex-start;
    color: var(--c-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-btn:hover {
    color: var(--c-primary);
    gap: 0.8rem;
}

/* Seasonal Interactive Section */
.season-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.season-btn {
    background-color: transparent;
    border: 1px solid var(--c-secondary);
    color: var(--c-secondary);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--f-body);
    font-size: 1rem;
    transition: var(--transition);
}

.season-btn.active, .season-btn:hover {
    background-color: var(--c-secondary);
    color: var(--c-light);
}

.season-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.season-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.season-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.season-img img {
    border-radius: 4px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.season-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.season-list {
    list-style: none;
    margin-bottom: 2rem;
}

.season-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.season-list li::before {
    content: '•';
    color: var(--c-accent-clay);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

/* Safety Section */
.safety-box {
    background-color: var(--c-bg-mist);
    padding: 3rem;
    border-radius: 4px;
    border-left: 4px solid var(--c-secondary);
}

.safety-box h3 {
    color: var(--c-secondary);
}

/* Articles */
.article-header {
    text-align: center;
    padding: 6rem 0 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.article-hero {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    margin-bottom: 4rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-block;
    margin-top: 3rem;
    font-weight: 600;
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--c-light);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--c-primary);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--f-body);
    font-size: 1rem;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--c-primary);
    color: var(--c-bg-sky);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    font-family: var(--f-heading);
    font-size: 1.5rem;
    color: var(--c-light);
    margin-bottom: 1rem;
    display: block;
}

.footer-col h4 {
    color: var(--c-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--c-bg-sky);
}

.footer-links a:hover {
    color: var(--c-accent-clay);
}

.footer-label {
    font-weight: 700;
    color: var(--c-accent-stone);
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--c-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    max-width: 800px;
    margin: 0 auto;
    display: none;
    border-left: 4px solid var(--c-secondary);
}

.cookie-popup h3 {
    margin-bottom: 0.5rem;
}

.cookie-popup p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-cookie-outline {
    background-color: transparent;
    border: 1px solid var(--c-primary);
    color: var(--c-primary);
}
.btn-cookie-outline:hover {
    background-color: var(--c-primary);
    color: var(--c-light);
}

.page-header {
    background-color: var(--c-bg-mist);
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .editorial-grid, .season-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--c-light);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        gap: 1.5rem;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .header-inner .btn {
        display: none;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cookie-buttons {
        flex-direction: column;
    }
}