/* ── Guides Specific Styles ── */

.guide-hero {
    height: 50vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: var(--header-offset);
}

.guide-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.guide-hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.guide-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.guide-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.guide-section {
    padding: 100px 0;
}

.guide-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.guide-stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.guide-stat-card .label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.guide-stat-card .value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.recipe-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    display: flex;
    gap: 2.5rem;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.03);
    align-items: center;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(187,59,23,0.15);
    line-height: 1;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.melinda-tip {
    background: linear-gradient(135deg, #1a0e0a 0%, #2a1510 100%);
    border: 1px solid rgba(187,59,23,0.3);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.melinda-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.melinda-text h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.melinda-text p {
    font-style: italic;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .guide-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .step-card { flex-direction: column; text-align: center; gap: 1rem; padding: 2rem; }
    .melinda-tip { flex-direction: column; text-align: center; }
}

/* --- Nouvelles Sections Savoir --- */
.guide-long-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.history-section {
    padding: 2rem 0;
}

.history-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.history-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .history-content { grid-template-columns: 1fr; }
}

.history-dropcap {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-top: 8px;
    padding-right: 15px;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.know-how-section {
    margin-top: 5rem;
    padding: 4rem;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-xl);
}

/* --- Recette Discrète --- */
.recipe-encart {
    background: var(--card-bg);
    padding: 3rem auto;
    border-radius: var(--radius-lg);
    margin: 4rem 0;
    border: 1px solid rgba(187,59,23,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
}

.recipe-encart h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.recipe-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    width: 100%;
}

.recipe-item span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.recipe-item strong {
    font-size: 1.4rem;
    color: var(--text-main);
}

/* --- Accords Gourmands --- */
.pairing-section {
    margin-top: 6rem;
    text-align: center;
}

.pairing-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(to right, rgba(187,59,23,0.1), transparent);
    padding: 1.5rem 3rem;
    border-radius: 100px;
    border: 1px solid rgba(187,59,23,0.1);
}

.pairing-icon { font-size: 2.5rem; }
.pairing-text { text-align: left; }
.pairing-text span { display: block; font-size: 0.8rem; color: var(--primary); font-weight: 700; text-transform: uppercase; }
.pairing-text strong { font-size: 1.2rem; color: var(--text-main); }

