/* =============================================
   MADYSON BRAZEAU - Style Principal
   Thème: Cream / Terracotta / Sage / Gold
   ============================================= */

/* === VARIABLES CSS === */
:root {
    --cream: #FDF6EE;
    --cream-dark: #F5EBDD;
    --cream-border: #EDE0D0;
    --terracotta: #C4725A;
    --terracotta-light: #D4917D;
    --terracotta-dark: #A85840;
    --terracotta-soft: rgba(196, 114, 90, 0.12);
    --sage: #8BA888;
    --sage-light: #A7C4A4;
    --sage-dark: #6A8A67;
    --sage-soft: rgba(139, 168, 136, 0.15);
    --gold: #C9A96E;
    --gold-light: #DBBF8A;
    --gold-soft: rgba(201, 169, 110, 0.18);
    --text-dark: #3D3632;
    --text-muted: #7A6E68;
    --text-light: #A69A93;
    --card-bg: rgba(253, 246, 238, 0.85);
    --card-border: rgba(196, 114, 90, 0.2);
    --shadow-soft: 0 4px 24px rgba(61, 54, 50, 0.08);
    --shadow-hover: 0 12px 40px rgba(61, 54, 50, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-pill: 100px;
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === TYPOGRAPHIE === */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.75; color: var(--text-muted); }

.accent { color: var(--terracotta); font-style: italic; }
.accent-sage { color: var(--sage-dark); }
.accent-gold { color: var(--gold); }

/* === AMBIENT BACKGROUND (orbs animés) === */
.ambient {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.ambient-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.4;
}
.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--terracotta-soft) 0%, transparent 70%);
    top: -10%; right: -5%;
    animation: float-orb-1 18s ease-in-out infinite;
}
.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--sage-soft) 0%, transparent 70%);
    bottom: -5%; left: -8%;
    animation: float-orb-2 22s ease-in-out infinite;
}
.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
    top: 40%; left: 50%; transform: translateX(-50%);
    animation: float-orb-3 15s ease-in-out infinite;
}
@keyframes float-orb-1 {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.05); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes float-orb-2 {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.08); }
    66% { transform: translate(-25px, 15px) scale(0.92); }
}
@keyframes float-orb-3 {
    0%, 100% { transform: translateX(-50%) translate(0,0) scale(1); }
    50% { transform: translateX(-50%) translate(15px, -25px) scale(1.1); }
}

/* === GRAIN OVERLAY === */
.grain {
    position: fixed; top: -50%; left: -50%;
    width: 200%; height: 200%;
    pointer-events: none; z-index: 1; opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === CONTENU PAR-DESSUS AMBIENT === */
.page-content { position: relative; z-index: 2; }

/* === NAVIGATION === */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(253, 246, 238, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-border);
    padding: 0 2rem;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem; font-weight: 600;
    color: var(--text-dark);
}
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }
.nav-links {
    display: flex; align-items: center; gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.9rem; font-weight: 400;
    color: var(--text-muted); letter-spacing: 0.02em;
    transition: color 0.25s ease;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -3px; left: 0; width: 0; height: 1px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    font-size: 0.88rem; font-weight: 500;
    color: var(--cream) !important;
    background: var(--terracotta);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    transition: background 0.3s ease, transform 0.2s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    color: var(--cream) !important;
    transform: translateY(-1px);
}

/* === HAMBURGER MOBILE === */
.nav-toggle {
    display: none; flex-direction: column;
    gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === SECTION BASE === */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section-full { padding: 6rem 2rem; }
.section-title {
    text-align: center;
    margin-bottom: 1rem;
}
.section-title h2 { margin-bottom: 0.5rem; }
.section-subtitle {
    text-align: center;
    font-size: 1rem; color: var(--text-muted);
    max-width: 600px; margin: 0 auto 3.5rem;
}
.section-divider {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--terracotta-light), transparent);
    margin: 1rem auto 0;
}

/* === ANIMATIONS D'ENTRÉE === */
@keyframes rise {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.rise-1 { animation-delay: 0.1s; }
.rise-2 { animation-delay: 0.2s; }
.rise-3 { animation-delay: 0.3s; }
.rise-4 { animation-delay: 0.4s; }
.rise-5 { animation-delay: 0.5s; }

/* === HERO === */
.hero {
    min-height: unset;
    display: flex; align-items: center;
    padding: 2rem 2rem 2.5rem;
}
.hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.hero-text { }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--sage-soft);
    border: 1px solid rgba(139, 168, 136, 0.3);
    padding: 0.4rem 1rem; border-radius: var(--radius-pill);
    font-size: 0.82rem; font-weight: 500;
    color: var(--sage-dark); letter-spacing: 0.04em;
    text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-text p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-muted); margin-bottom: 2rem;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === BOUTONS === */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500; font-size: 0.95rem;
    padding: 0.85rem 2rem; border-radius: var(--radius-pill);
    border: none; cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}
.btn-primary {
    background: var(--terracotta); color: var(--cream);
    box-shadow: 0 4px 20px rgba(196, 114, 90, 0.3);
}
.btn-primary:hover {
    background: var(--terracotta-dark); color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196, 114, 90, 0.4);
}
.btn-outline {
    background: transparent; color: var(--text-dark);
    border: 1px solid var(--cream-border);
}
.btn-outline:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-2px);
}

/* === PHOTO PLACEHOLDER === */
.photo-placeholder {
    position: relative;
    width: 100%; max-width: 420px;
    aspect-ratio: 4/5;
    background: var(--cream-dark);
    border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    border: 2px solid var(--cream-border);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}
.photo-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(
        ellipse at 30% 30%,
        var(--terracotta-soft) 0%,
        transparent 60%
    );
}
.photo-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(
        ellipse at 70% 80%,
        var(--sage-soft) 0%,
        transparent 60%
    );
}
.photo-placeholder-inner {
    position: relative; z-index: 1;
    text-align: center; padding: 2rem;
}
.photo-placeholder-icon svg {
    width: 80px; height: 80px;
    color: var(--sage); opacity: 0.7;
    margin: 0 auto 1rem;
}
.photo-placeholder-tag {
    display: inline-block;
    background: var(--cream);
    border: 1px solid var(--cream-border);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.photo-placeholder-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem; font-weight: 500;
    color: var(--text-dark); margin-bottom: 0.5rem;
}
/* Hero photo floating dots decoration */
.hero-photo-wrap {
    position: relative;
    display: flex; justify-content: center;
}
.photo-dot {
    position: absolute;
    border-radius: 50%;
}
.photo-dot-1 {
    width: 80px; height: 80px;
    background: var(--terracotta-soft);
    top: -20px; right: -20px;
}
.photo-dot-2 {
    width: 50px; height: 50px;
    background: var(--gold-soft);
    bottom: 30px; left: -25px;
}
.photo-dot-3 {
    width: 30px; height: 30px;
    background: var(--sage-soft);
    top: 40%; left: -10px;
}

/* === CARTES SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    display: flex; flex-direction: column;
    gap: 1rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease,
                border-color 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(4px);
    text-decoration: none;
    color: inherit;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--terracotta-light);
}
.service-icon {
    width: 52px; height: 52px;
    background: var(--terracotta-soft);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 26px; height: 26px; color: var(--terracotta); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0; }
.service-card p { font-size: 0.92rem; flex: 1; }
.service-arrow {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; font-weight: 500;
    color: var(--terracotta);
    margin-top: 0.5rem;
}
.service-arrow svg {
    width: 14px; height: 14px;
    transition: transform 0.3s ease;
}
.service-card:hover .service-arrow svg { transform: translateX(4px); }

/* === VIDÉO PLACEHOLDER (dans les pages service) === */
.video-placeholder {
    width: 100%; aspect-ratio: 16/9;
    background: var(--cream-dark);
    border-radius: var(--radius);
    border: 1px solid var(--cream-border);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.75rem;
    color: var(--text-light);
}
.video-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.video-placeholder span {
    font-size: 0.85rem; letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* === FORFAITS === */
.forfaits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.forfait-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2.25rem 1.75rem;
    display: flex; flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease;
    text-decoration: none; color: inherit;
    backdrop-filter: blur(4px);
    position: relative;
}
.forfait-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.forfait-card.featured {
    border-color: var(--terracotta);
    background: linear-gradient(145deg,
        rgba(196, 114, 90, 0.06),
        rgba(253, 246, 238, 0.9));
}
.forfait-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--terracotta);
    color: var(--cream);
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.3rem 1rem; border-radius: var(--radius-pill);
    white-space: nowrap;
}
.forfait-icon {
    width: 56px; height: 56px;
    background: var(--terracotta-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.forfait-icon svg { width: 28px; height: 28px; color: var(--terracotta); }
.forfait-card h3 { font-size: 1.35rem; }
.forfait-price {
    display: flex; align-items: baseline; gap: 0.25rem;
}
.forfait-amount {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem; font-weight: 600;
    color: var(--text-dark); line-height: 1;
}
.forfait-unit { font-size: 0.9rem; color: var(--text-muted); }
.forfait-note { font-size: 0.85rem; color: var(--text-light); }
.forfait-features {
    list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
}
.forfait-features li {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.9rem; color: var(--text-muted);
}
.forfait-features li::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: var(--sage);
    margin-top: 0.55rem; flex-shrink: 0;
}
.forfait-cta {
    margin-top: 0.5rem;
    display: flex; flex-direction: column; gap: 0.75rem;
}
.btn-forfait-email {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-size: 0.85rem; font-weight: 500;
    color: var(--sage-dark);
    border: 1px solid rgba(139, 168, 136, 0.4);
    padding: 0.55rem 1rem; border-radius: var(--radius-pill);
    transition: all 0.25s ease;
}
.btn-forfait-email:hover {
    background: var(--sage-soft);
    border-color: var(--sage);
    color: var(--sage-dark);
}
.btn-forfait-email svg { width: 14px; height: 14px; }

/* === MODES DE LIVRAISON (bannière sur toutes les pages) === */
.livraison-strip {
    background: var(--cream-dark);
    border-top: 1px solid var(--cream-border);
    border-bottom: 1px solid var(--cream-border);
    padding: 1.5rem 2rem;
}
.livraison-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: center; gap: 3rem;
    flex-wrap: wrap;
}
.livraison-item {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.88rem; color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.livraison-item:hover { color: var(--terracotta); }
.livraison-item svg { width: 18px; height: 18px; color: var(--terracotta); flex-shrink: 0; }
.livraison-sep {
    width: 1px; height: 24px; background: var(--cream-border);
}

/* === VILLES === */
.villes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}
.ville-card {
    display: flex; align-items: center; gap: 0.6rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1rem;
    font-size: 0.9rem; color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}
.ville-card:hover {
    border-color: var(--terracotta-light);
    color: var(--terracotta);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}
.ville-card svg { width: 14px; height: 14px; color: var(--terracotta); flex-shrink: 0; }

/* === À PROPOS (section teaser index) === */
.apropos-strip {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    border-radius: var(--radius);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem; align-items: center;
}
.apropos-photo { }
.apropos-text h2 { margin-bottom: 1rem; }
.apropos-text p { margin-bottom: 1.25rem; }
.apropos-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
}
.tag {
    background: var(--cream);
    border: 1px solid var(--cream-border);
    padding: 0.3rem 0.85rem; border-radius: var(--radius-pill);
    font-size: 0.82rem; color: var(--text-muted);
}

/* === CONTACT === */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
    display: flex; align-items: flex-start; gap: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}
.contact-card-icon {
    width: 44px; height: 44px;
    background: var(--terracotta-soft);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--terracotta); }
.contact-card h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 0.25rem; }
.contact-card a, .contact-card p { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }
.contact-card a:hover { color: var(--terracotta); }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.83rem; font-weight: 500; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    background: var(--cream);
    border: 1px solid var(--cream-border);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta-light);
    box-shadow: 0 0 0 3px rgba(196, 114, 90, 0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--text-light); }

/* === FOOTER === */
.footer {
    background: var(--text-dark);
    color: var(--cream); padding: 4rem 2rem 2rem;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; color: rgba(253,246,238,0.6); margin-top: 0.75rem; line-height: 1.6; }
.footer h4 { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(253,246,238,0.5); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.9rem; color: rgba(253,246,238,0.75); transition: color 0.2s; }
.footer-links a:hover { color: var(--terracotta-light); }
.footer-bottom {
    border-top: 1px solid rgba(253,246,238,0.1);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(253,246,238,0.4); }
.footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem; color: var(--cream); margin-bottom: 0.5rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(253,246,238,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--terracotta); }
.footer-social svg { width: 16px; height: 16px; color: var(--cream); }

/* === BREADCRUMB === */
.breadcrumb {
    padding: 0.75rem 2rem;
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem; color: var(--text-light);
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--terracotta); }

/* === PAGE INTERNE HERO === */
.page-hero {
    padding: 3rem 2rem 2rem;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 320px;
    gap: 3rem; align-items: center;
}
.page-hero-text h1 { margin-bottom: 0.75rem; }
.page-hero-text p { max-width: 520px; }
.page-hero-photo .photo-placeholder {
    max-width: 320px;
    border-radius: 24px;
    aspect-ratio: 3/4;
}

/* === SECTION FORFAITS COMPACTE (pages service/ville) === */
.forfaits-compact {
    background: var(--cream-dark);
    border-radius: var(--radius);
    padding: 3rem;
    margin-top: 4rem;
}
.forfaits-compact h2 { text-align: center; margin-bottom: 0.5rem; }
.forfaits-compact .section-subtitle { margin-bottom: 2.5rem; }

/* === UTILITAIRES === */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.flex-center { display: flex; justify-content: center; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-photo-wrap { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .forfaits-grid { grid-template-columns: repeat(2, 1fr); }
    .villes-grid { grid-template-columns: repeat(3, 1fr); }
    .apropos-strip { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; }
    .apropos-photo { display: none; }
    .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .page-hero { grid-template-columns: 1fr; }
    .page-hero-photo { display: none; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .section { padding: 4rem 1.25rem; }
    .services-grid { grid-template-columns: 1fr; }
    .forfaits-grid { grid-template-columns: 1fr; }
    .villes-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .livraison-inner { gap: 1.5rem; flex-direction: column; }
    .livraison-sep { display: none; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
    .villes-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .nav { padding: 0 1rem; }
}

/* === MOBILE NAV OPEN === */
.nav.nav-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; width: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-border);
    padding: 1.5rem 2rem; gap: 1.25rem;
}

/* === BANNIÈRE PRINCIPALE === */
.site-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
    z-index: 2;
}
.site-banner img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    object-position: center center;
    display: block;
}
@media (max-width: 768px) {
    .site-banner img { max-height: 180px; }
}
@media (max-width: 480px) {
    .site-banner img { max-height: 130px; }
}

/* === FOND ANIMÉ — gradient + particules === */
@keyframes bgBreath {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    background: linear-gradient(135deg,
        #FDF6EE 0%,
        #EDD8C0 20%,
        #F5E6D3 40%,
        #E8D5B8 60%,
        #F0E2CC 80%,
        #FDF6EE 100%);
    background-size: 400% 400%;
    animation: bgBreath 8s ease infinite;
}

#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* S'assurer que tout le contenu reste au-dessus du canvas */
header, main, footer, nav, section, .section, .section-full {
    position: relative;
    z-index: 1;
}

/* === À PROPOS - phrase de résonance === */
.apropos-resonance {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--terracotta);
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.5;
}
.apropos-resonance em {
    font-style: italic;
    color: var(--terracotta);
}
