/* ═══════════════════════════════════════════════════
    HERO
═══════════════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 2fr;
    position: relative;
    background: var(--parchment);
    overflow: hidden;
    padding-top: 70px; /* navbar offset */
}

/* ambient glow behind photo */
.hero::before {
    content: '';
    position: absolute;
    width: 640px; height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, #e8d5c0 0%, transparent 68%);
    top: -80px; right: -60px;
    pointer-events: none;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem 3rem clamp(1.5rem, 5vw, 5rem);
    position: relative;
    z-index: 2;
}

.hero-text .hero-eyebrow {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: .75rem;

    opacity: 0;
    animation: fadeUp .6s .1s ease forwards;
}

.hero-text h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: var(--brown);
    margin-bottom: .5rem;

    opacity: 0;
    animation: fadeUp .6s .22s ease forwards;
}

.hero-text .hero-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 1.4rem;

    opacity: 0;
    animation: fadeUp .6s .34s ease forwards;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2.4rem;

    opacity: 0;
    animation: fadeUp .6s .46s ease forwards;
}

.hero-tag {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.hero-tag + .hero-tag::before {
    content: '·';
    color: var(--terracotta-light);
    font-size: 1.1rem;
    line-height: 1;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;

    opacity: 0;
    animation: fadeUp .6s .58s ease forwards;
}

/* Photo column */
.hero-photo {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}
.hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
/* left-edge soft bleed into text column */
.hero-photo::before {
    content: '';
    position: absolute;
    inset: 0; z-index: 1;
    background: linear-gradient(90deg, var(--parchment) 0%, transparent 15%);
}

/* leaf decoration */
.hero-leaf {
    position: absolute;
    bottom: 2.5rem;
    left: clamp(1rem, 4vw, 3.5rem);
    z-index: 3;
}

/* ── Hero mobile ─────────────────────────────── */
@media (max-width: 767px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-photo {
        height: 55vw;
        min-height: 280px;
        order: -1;
    }
    .hero-photo::before {
        background: linear-gradient(180deg, transparent 60%, var(--parchment) 100%);
    }
    .hero-text {
        padding: 2rem 1.25rem 3rem;
    }
    .hero-leaf { display: none; }
}

/* ═══════════════════════════════════════════════════
    SPÉCIALITÉS STRIP
═══════════════════════════════════════════════════ */
.specialties-strip {
    background: var(--cream);
    padding: 5rem 0;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (max-width: 991px) { .specialty-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .specialty-grid { grid-template-columns: 1fr; } }

.specialty-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .32s ease, box-shadow .32s ease;
}
.specialty-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.scard-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--parchment);
}
.scard-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.specialty-card:hover .scard-img img { transform: scale(1.05); }

.scard-body {
    padding: 1.1rem 1.25rem 1.4rem;
}
.scard-body h3 {
    font-size: 1.3rem;
    margin-bottom: .35rem;
}
.scard-body p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
    CRÉATIONS
═══════════════════════════════════════════════════ */
.creations-section {
    padding: 5.5rem 0;
    background: var(--warm-white);
}

.creation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 991px) { .creation-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .creation-grid { grid-template-columns: 1fr; } }

.creation-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .32s ease, box-shadow .32s ease;
    display: flex;
    flex-direction: column;
}
.creation-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.ccard-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--parchment);
}
.ccard-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.creation-card:hover .ccard-img img { transform: scale(1.05); }

/* "Voir" overlay on hover */
.ccard-overlay {
    position: absolute; inset: 0;
    background: rgba(59,35,20,.38);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}
.creation-card:hover .ccard-overlay { opacity: 1; }

.ccard-body {
    padding: 1.2rem 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.ccard-body h3 {
    font-size: 1.3rem;
    margin: 0;
}
.ccard-body p {
    font-size: .84rem;
    color: var(--muted);
    margin: 0;
    flex: 1;
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════════
    ATELIERS
═══════════════════════════════════════════════════ */
.ateliers-section {
    padding: 5.5rem 0;
    background: var(--white);
}

/* Left intro column */
.ateliers-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    position: sticky;
    top: 90px; /* stick while scrolling through cards */
}
.ateliers-intro .section-title { margin-bottom: 0; }
.ateliers-intro p {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* Botanical deco inside intro */
.ateliers-leaf {
    margin-top: 1.5rem;
}

/* Atelier cards stack */
.atelier-cards {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.atelier-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: transform .32s ease, box-shadow .32s ease;
}
.atelier-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 575px) {
    .atelier-card { grid-template-columns: 1fr; }
}

/* Photo side */
.atelier-img {
    position: relative;
    overflow: hidden;
    background: var(--parchment);
    min-height: 190px;
}
.atelier-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.atelier-card:hover .atelier-img img { transform: scale(1.05); }

.atelier-img .badge-marie {
    position: absolute;
    top: .85rem;
    left: .85rem;
    backdrop-filter: blur(4px);
}

/* Info side */
.atelier-info {
    padding: 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.atelier-info h3 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin: 0;
}
.atelier-info .atelier-desc {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

/* Meta pills row */
.atelier-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .25rem;
}
.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 400;
    color: var(--muted);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
    padding: .28rem .75rem;
}
.meta-pill i { font-size: .8rem; opacity: .75; }
.meta-pill.meta-date  { color: var(--terracotta); border-color: var(--terracotta-pale); background: var(--terracotta-pale); }
.meta-pill.meta-spots { color: var(--terracotta); border-color: var(--terracotta-pale); background: var(--terracotta-pale); }
.meta-pill.meta-spots strong { font-weight: 500; }

/* Reserve CTA */
.atelier-footer { margin-top: .4rem; }

.btn-reserver {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--terracotta);
    color: #fff;
    border-radius: var(--radius-btn);
    padding: .65rem 1.6rem;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    border: none;
}
.btn-reserver:hover {
    background: var(--terracotta-light);
    color: #fff;
    transform: translateX(3px);
}

/* Responsive: stack on tablet */
@media (max-width: 767px) {
    .ateliers-intro {
        position: static;
        margin-bottom: 2.5rem;
    }
}


/* ═══════════════════════════════════════════════════
    À PROPOS
═══════════════════════════════════════════════════ */
.about-section {
    padding: 5.5rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* ambient circle */
.about-section::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237,224,208,.6) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    pointer-events: none;
}

.about-photo {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 3/4;
    position: relative;
}
.about-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
/* warm tint border */
.about-photo::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--radius-card);
    box-shadow: inset 0 0 0 1px rgba(160,81,58,.15);
    z-index: 1;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}
.about-text .section-title { margin-bottom: 0; }
.about-text p {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: var(--radius-btn);
    padding: .75rem 1.75rem;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    /* Instagram gradient */
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(220,39,67,.25);
}
.btn-instagram:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220,39,67,.35);
}

/* ═══════════════════════════════════════════════════
    ANIMATIONS
═══════════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
