/* ── Blog sections — each is a full viewport page ──────────────── */
.blog-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

/* First section pairs with the 55vh header to fill the first viewport */
.blog-section--first {
    min-height: 45vh;
}

.blog-section:nth-child(odd)  { background: #FAFAF8; }
.blog-section:nth-child(even) { background: #F2EDE3; }

.blog-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(139,105,20,0.12), transparent);
}

.blog-section-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ── Blog content typography ─────────────────────────────────────── */
.blog-content {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-family: 'Geist Mono', 'Courier New', monospace;
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    line-height: 1.8;
    color: #2C2A26;
    will-change: transform, opacity;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    font-family: 'Geist Mono', 'Courier New', monospace !important;
    letter-spacing: -0.025em;
    color: #1C1C1A;
    margin-bottom: 0.85rem;
    line-height: 1.25;
}

.blog-content h2 { font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 700; }
.blog-content h3 { font-size: clamp(1.15rem, 2.2vw, 1.65rem); font-weight: 600; }

.blog-content p {
    margin-bottom: 1.2rem;
    color: #3A3830;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
}

.blog-content ul,
.blog-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.2rem;
}

.blog-content li { margin-bottom: 0.35em; }

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.875em;
}

.blog-content td,
.blog-content th {
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(0,0,0,0.08);
    text-align: left;
}

.blog-content th {
    background: rgba(139,105,20,0.07);
    font-weight: 600;
}

.blog-content tr.odd-row  { background: rgba(153,178,223,0.12); }
.blog-content tr.veggy-row { background: rgba(76,255,0,0.10); }

/* ── Section number watermark ──────────────────────────────────── */
.section-watermark { display: none; }

.section-watermark {
    position: absolute;
    right: 3vw;
    bottom: 0;
    font-family: 'Geist Mono', monospace;
    font-size: clamp(7rem, 20vw, 22rem);
    font-weight: 900;
    color: rgba(139, 105, 20, 0.042);
    line-height: 0.82;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -0.07em;
}


/* ── Contact section embedded at end of accueil ─────────────────── */
.blog-section--contact .form-control {
    font-family: 'Geist Mono', monospace;
    font-size: 0.9rem;
    border-radius: 2px;
    border-color: rgba(139,105,20,0.25);
    background: rgba(255,255,255,0.7);
}

.blog-section--contact .form-control:focus {
    border-color: #8B6914;
    box-shadow: 0 0 0 3px rgba(139,105,20,0.12);
}

.blog-section--contact label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #3A3830;
}

.blog-section--contact h5 {
    font-family: 'Geist Mono', monospace;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8B6914;
    margin-top: 2rem;
}

.blog-section--contact .btn-primary {
    font-family: 'Geist Mono', monospace;
    background: #8B6914;
    border-color: #8B6914;
    border-radius: 2px;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    padding: 0.6rem 2rem;
}

.blog-section--contact .btn-primary:hover {
    background: #6B5010;
    border-color: #6B5010;
}

