.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #2a1505;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 12, 2, 0.62);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 760px;
    margin: 0 auto;
}

.hero-kicker {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.72);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.86);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.intro-section {
    padding: 72px 0;
    background-color: #faf8f5;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 56px;
    align-items: center;
}

.intro-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 16px;
    color: #444;
    margin-bottom: 16px;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background-color: #fff;
    border: 1px solid #e8e0d8;
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-brand);
    line-height: 1.6;
    display: block;
}

.stat-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    display: block;
}

.timeline-section {
    padding: 80px 0;
    background-color: #fff;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e8e0d8;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
}

.timeline-item--left {
    flex-direction: row;
    padding-right: calc(50% + 32px);
}

.timeline-item--right {
    flex-direction: row-reverse;
    padding-left: calc(50% + 32px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    z-index: 2;
    background-color: #fff;
    border-radius: 50%;
    padding: 4px;
    border: 2px solid #e8e0d8;
    line-height: 1;
}

.timeline-card {
    background-color: #faf8f5;
    border: 1px solid #e8e0d8;
    border-radius: 8px;
    padding: 24px;
    width: 100%;
}

.timeline-step {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand);
    margin-bottom: 8px;
}

.timeline-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 12px;
}

.timeline-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 16px;
}

.timeline-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 12px;
}

.articles-section {
    padding: 80px 0;
    background-color: #faf8f5;
}

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

.article-card {
    background-color: #fff;
    border: 1px solid #e8e0d8;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s, translateY 0.2s;
}

.article-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.article-card__img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-card__body {
    padding: 20px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.article-card__cat {
    color: var(--color-brand);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.article-card__read {
    color: #888;
    font-size: 12px;
}

.article-card__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.article-card__title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.article-card__title a:hover {
    color: var(--color-brand);
}

.article-card__excerpt {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.article-card__date {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    margin-bottom: 0;
}

.categories-section {
    padding: 80px 0;
    background-color: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cat-card {
    background-color: #faf8f5;
    border: 1px solid #e8e0d8;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.cat-card:hover {
    box-shadow: 0 4px 16px rgba(146, 64, 14, 0.12);
}

.cat-card__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.cat-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 8px;
}

.cat-card__name a {
    color: var(--color-brand);
    text-decoration: none;
}

.cat-card__name a:hover {
    text-decoration: underline;
}

.cat-card__desc {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.cat-card__count {
    font-size: 12px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.calculator-section {
    padding: 80px 0;
    background-color: #faf8f5;
}

.calculator-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    align-items: flex-start;
}

.calculator-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 16px;
}

.calculator-text p {
    font-size: 15px;
    color: #555;
}

.calc-selector {
    margin-bottom: 20px;
}

.calc-selector label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.calc-selector select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2392400e' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.calc-selector select:focus {
    outline: none;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 2px rgba(146, 64, 14, 0.15);
}

#drying-table th,
#drying-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #e8e0d8;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
}

#drying-table th {
    background-color: var(--color-brand);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

#drying-table tr:last-child td {
    border-bottom: none;
}

#drying-table tr:nth-child(even) td {
    background-color: #faf8f5;
}

.calc-note {
    font-size: 13px;
    font-weight: 400;
    color: #888;
    font-style: italic;
    margin-top: 12px;
}

.kpis-section {
    padding: 80px 0;
    background-color: #fff;
}

.kpis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.kpi-card {
    background-color: #faf8f5;
    border: 1px solid #e8e0d8;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.kpi-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.kpi-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.kpi-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-brand);
    line-height: 1.6;
    margin-bottom: 8px;
}

.kpi-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
}

.accordion-section {
    padding: 80px 0;
    background-color: #faf8f5;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e8e0d8;
    border-radius: 8px;
    margin-bottom: 12px;
    background-color: #fff;
    overflow: hidden;
}

.accordion-toggle {
    display: none;
}

.accordion-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
    transition: background-color 0.2s;
    user-select: none;
}

.accordion-label:hover {
    background-color: #faf8f5;
}

.accordion-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.accordion-toggle:checked + .accordion-label .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-toggle:checked + .accordion-label {
    color: var(--color-brand);
    background-color: #faf8f5;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-toggle:checked ~ .accordion-body {
    max-height: 400px;
}

.accordion-body p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.slider-section {
    padding: 80px 0;
    background-color: #fff;
}

.seasons-slider {
    border: 1px solid #e8e0d8;
    border-radius: 8px;
    overflow: hidden;
}

.season-tabs {
    display: flex;
    border-bottom: 1px solid #e8e0d8;
    background-color: #faf8f5;
}

.season-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s, background-color 0.2s;
    user-select: none;
    line-height: 1.6;
}

.season-tab:hover {
    color: var(--color-brand);
    background-color: #f0ebe4;
}

#s-hiver:checked ~ .season-tabs label[for="s-hiver"],
#s-printemps:checked ~ .season-tabs label[for="s-printemps"],
#s-ete:checked ~ .season-tabs label[for="s-ete"],
#s-automne:checked ~ .season-tabs label[for="s-automne"] {
    color: var(--color-brand);
    border-bottom-color: var(--color-brand);
    background-color: #fff;
}

.season-panels {
    position: relative;
}

.season-panel {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    align-items: stretch;
}

#s-hiver:checked ~ .season-panels #panel-hiver,
#s-printemps:checked ~ .season-panels #panel-printemps,
#s-ete:checked ~ .season-panels #panel-ete,
#s-automne:checked ~ .season-panels #panel-automne {
    display: grid;
}

.season-panel__img img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.season-panel__content {
    padding: 32px 28px;
}

.season-panel__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 14px;
}

.season-panel__content p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
}

.season-products {
    list-style: none;
    padding: 0;
    margin: 0;
}

.season-products li {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0ebe4;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    margin-bottom: 0;
}

.season-products li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-brand);
}

.season-products li:last-child {
    border-bottom: none;
}

.newsletter-section {
    padding: 72px 0;
    background-color: var(--color-brand);
}

.newsletter-section h2,
.newsletter-section p {
    color: #fff;
}

.newsletter-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 760px;
    margin: 0 auto;
}

.newsletter-icon {
    flex-shrink: 0;
}

.newsletter-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.newsletter-content > p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.newsletter-fields {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-fields input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 13px 18px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    background-color: #fff;
}

.newsletter-fields input[type="email"]:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.newsletter-mention {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
}

@media (max-width: 900px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item--left,
    .timeline-item--right {
        flex-direction: column;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-section {
        min-height: 70vh;
    }

    .intro-section,
    .timeline-section,
    .articles-section,
    .categories-section,
    .calculator-section,
    .kpis-section,
    .accordion-section,
    .slider-section,
    .newsletter-section {
        padding: 48px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }

    .calculator-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .kpis-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .season-tabs {
        flex-wrap: wrap;
    }

    .season-tab {
        flex: 0 0 50%;
        border-right: 1px solid #e8e0d8;
        font-size: 13px;
        padding: 12px 8px;
    }

    .season-panel__img img {
        min-height: 200px;
        max-height: 240px;
    }

    .newsletter-wrap {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .newsletter-fields {
        flex-direction: column;
    }

    .newsletter-fields input[type="email"] {
        min-width: 0;
    }

    .newsletter-fields .btn-cta {
        width: 100%;
        text-align: center;
    }

    #drying-table th,
    #drying-table td {
        padding: 10px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .hero-kicker {
        font-size: 11px;
    }

    .stat-number {
        font-size: 28px;
    }

    .kpis-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .kpi-value {
        font-size: 24px;
    }

    .timeline-item--left,
    .timeline-item--right {
        padding-left: 50px;
    }

    .accordion-label {
        padding: 16px 16px;
        font-size: 15px;
    }

    .accordion-body p {
        padding: 0 16px 16px;
    }
}