@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
    --deep:           #1D1535;
    --rose:           #D4879C;
    --rose-dark:      #B56678;
    --rose-light:     #F2D5DB;
    --rose-alpha:     rgba(212, 135, 156, .13);
    --lavender:       #B8A9D4;
    --lavender-light: #EAE6F5;
    --bg:             #FFFFFF;
    --bg-soft:        #F8F5FF;
    --bg-mid:         #F3EEF8;
    --text-dark:      #1D1535;
    --text-mid:       #6B5F7A;
    --text-light:     #A89AB8;
    --card-shadow:    0 4px 28px rgba(29, 21, 53, .09);
    --radius:         18px;
    --transition:     all .3s ease;

    /* backward-compat aliases for inline styles in blade files */
    --gold:       #D4879C;
    --gold-dark:  #B56678;
    --gold-light: #F2D5DB;
    --gold-alpha: rgba(212, 135, 156, .13);
    --blue-soft:  #EAE6F5;
    --bg-start:   #F8F5FF;
    --bg-end:     #F3EEF8;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--bg);
    min-height: 100vh;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: 3px; }
p { margin-bottom: 0; }

/* ============================================================
   NAVBAR — logo centré, liens des deux côtés
   ============================================================ */
.ag-navbar {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(29, 21, 53, .07);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 16px rgba(29, 21, 53, .06);
}

.ag-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.ag-nav-group {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.ag-nav-group:last-child { justify-content: flex-end; }

.ag-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4rem;
    color: var(--deep) !important;
    text-decoration: none;
    line-height: 1;
    padding: 0 28px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ag-brand span { display: none; }

.ag-nav-link {
    font-family: 'Nunito', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-mid) !important;
    padding: 7px 13px;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none !important;
    letter-spacing: .1px;
}

.ag-nav-link:hover,
.ag-nav-link.active,
.ag-nav-link.text-gold {
    color: var(--rose-dark) !important;
    background: var(--rose-alpha);
}

.ag-nav-cta {
    font-family: 'Nunito', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: white !important;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(212, 135, 156, .35);
}

.ag-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 135, 156, .45);
    color: white !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-pill,
.btn-rose,
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: white !important;
    border: none;
    padding: 13px 32px;
    font-family: 'Nunito', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(212, 135, 156, .35);
}

.btn-primary-pill:hover,
.btn-rose:hover,
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(212, 135, 156, .5);
    color: white !important;
}

.btn-outline-pill,
.btn-rose-outline,
.btn-gold-outline {
    display: inline-block;
    background: transparent;
    color: rgba(255, 255, 255, .85) !important;
    border: 2px solid rgba(255, 255, 255, .3);
    padding: 11px 32px;
    font-family: 'Nunito', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none !important;
    cursor: pointer;
}

.btn-outline-pill:hover,
.btn-rose-outline:hover,
.btn-gold-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .6);
    color: white !important;
    transform: translateY(-2px);
}

/* outline on light bg (sections outside hero) */
.ag-quote-section .btn-outline-pill,
.ag-articles-section .btn-outline-pill,
section:not(.ag-hero) .btn-gold-outline,
section:not(.ag-hero) .btn-rose-outline {
    color: var(--rose-dark) !important;
    border-color: var(--rose);
}

section:not(.ag-hero) .btn-gold-outline:hover,
section:not(.ag-hero) .btn-rose-outline:hover,
.ag-quote-section .btn-outline-pill:hover {
    background: var(--rose-alpha);
    color: var(--rose-dark) !important;
}

/* ============================================================
   SECTION HEADER & DIVIDER
   ============================================================ */
.ag-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 38px;
}

.ag-section-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
    text-align: left;
}

.ag-section-title.centered { text-align: center; }

.ag-see-all {
    font-family: 'Nunito', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--rose);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.ag-see-all:hover { color: var(--rose-dark); }
.ag-see-all i { margin-left: 5px; }

.ag-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 44px;
}

.ag-divider::before,
.ag-divider::after {
    content: '';
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--rose));
}

.ag-divider::after { background: linear-gradient(to left, transparent, var(--rose)); }
.ag-divider i { color: var(--rose); font-size: .8rem; margin: 0 12px; }

/* ============================================================
   HERO SLIDER — wrapper & mécanique toujours vers la gauche
   ============================================================ */
.ag-hero-slider {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 70px);
}

.ag-slides-track {
    position: relative;
    height: 100%;
    min-height: calc(100vh - 70px);
}

/* Chaque slide est superposé, position absolute */
.ag-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 52% 48%;
    overflow: hidden;
    /* état par défaut : hors écran à droite */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition:
        transform .82s cubic-bezier(0.645, 0.045, 0.355, 1),
        opacity   .82s ease;
}

/* Slide visible */
.ag-slide.is-active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* Slide qui sort (toujours vers la gauche) */
.ag-slide.is-out {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

/* ── Animations de contenu par slide ── */
.ag-slide.is-active .ag-eyebrow {
    animation: slContentIn .55s .2s ease both;
}

.ag-slide.is-active .ag-hero-title {
    animation: slContentIn .65s .36s ease both;
}

.ag-slide.is-active .ag-hero-text {
    animation: slContentIn .55s .52s ease both;
}

.ag-slide.is-active .ag-hero-btns {
    animation: slContentIn .55s .68s ease both;
}

@keyframes slContentIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Ken Burns sur l'image du slide actif ── */
.ag-slide.is-active .ag-hero-right > img {
    animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
    from { transform: scale(1);    object-position: 50% 30%; }
    to   { transform: scale(1.07); object-position: 50% 40%; }
}

/* ── Barre de progression ── */
.ag-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, var(--rose), var(--lavender));
    z-index: 20;
    border-radius: 0 2px 2px 0;
}

/* ── Compteur ── */
.ag-slider-counter {
    position: absolute;
    bottom: 28px;
    right: 36px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    z-index: 10;
    font-family: 'Nunito', sans-serif;
    color: rgba(255, 255, 255, .45);
    font-size: .78rem;
    letter-spacing: .5px;
    line-height: 1;
}

.ag-counter-current {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    line-height: 1;
}

/* ── Flèches ── */
.ag-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.ag-slider-arrow:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .45);
    transform: translateY(-50%) scale(1.1);
}

.ag-slider-prev { left: 22px; }
.ag-slider-next { right: 22px; }

/* ── Dots ── */
.ag-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 26%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.ag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    flex-shrink: 0;
}

.ag-dot.active {
    background: var(--rose);
    width: 26px;
    border-radius: 4px;
}

/* ============================================================
   HERO — split-screen (standalone, hors slider)
   ============================================================ */
.ag-hero {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: calc(100vh - 70px);
    overflow: hidden;
}

.ag-hero-left {
    background: var(--deep);
    padding: 80px 100px 80px 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* diagonal qui empiète sur l'image */
.ag-hero-left::after {
    content: '';
    position: absolute;
    right: -46px;
    top: 0;
    bottom: 0;
    width: 92px;
    background: var(--deep);
    transform: skewX(-4deg);
    z-index: 2;
}

.ag-hero-right {
    position: relative;
    overflow: hidden;
    background: var(--bg-mid);
}

.ag-hero-right > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.ag-hero-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, var(--lavender-light) 0%, var(--rose-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ag-hero-placeholder i {
    font-size: 8rem;
    color: var(--rose);
    opacity: .22;
}

.ag-hero-badge {
    position: absolute;
    bottom: 36px;
    left: 36px;
    background: white;
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 8px 32px rgba(29, 21, 53, .16);
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--rose-dark);
    font-size: .9rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ag-hero-badge i { color: var(--rose); font-size: .75rem; }

.ag-hero-content {
    position: relative;
    z-index: 3;
    max-width: 460px;
}

.ag-eyebrow {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--rose);
    margin-bottom: 24px;
}

.ag-hero-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: white;
    line-height: 1.12;
    margin-bottom: 26px;
}

.ag-hero-text {
    font-size: 1rem;
    line-height: 1.82;
    color: rgba(255, 255, 255, .58);
    margin-bottom: 6px;
}

.ag-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
}

/* ============================================================
   ARTICLES SECTION
   ============================================================ */
.ag-articles-section {
    padding: 88px 0;
    background: var(--bg-soft);
}

/* ============================================================
   ARTICLE VEDETTE
   ============================================================ */
.ag-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 56px rgba(29, 21, 53, .11);
    min-height: 440px;
    margin-bottom: 20px;
}

.ag-featured-img {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.ag-featured-img > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.ag-featured:hover .ag-featured-img > img { transform: scale(1.04); }

.ag-featured-img-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lavender-light), var(--rose-light));
}

.ag-featured-body {
    background: white;
    padding: 52px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ag-tag {
    display: inline-block;
    background: var(--rose-alpha);
    color: var(--rose-dark);
    font-family: 'Nunito', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    text-decoration: none;
    margin-bottom: 18px;
    align-self: flex-start;
}

.ag-featured-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
    transition: color .3s;
}

.ag-featured-title:hover { color: var(--rose-dark); }

.ag-featured-excerpt {
    font-size: .93rem;
    color: var(--text-mid);
    line-height: 1.78;
    margin-bottom: 22px;
    flex: 1;
}

.ag-featured-meta {
    display: flex;
    gap: 20px;
    font-size: .78rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 26px;
}

.ag-featured-meta i { margin-right: 4px; color: var(--rose); }

/* ============================================================
   CARDS
   ============================================================ */
.ag-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
}

.ag-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 54px rgba(29, 21, 53, .14);
}

.ag-card-img-wrap {
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, var(--lavender-light), var(--rose-light));
}

.ag-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.ag-card:hover .ag-card-img { transform: scale(1.06); }

.ag-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ag-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .76rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 10px;
}

.ag-card-cat {
    background: var(--rose-alpha);
    color: var(--rose-dark);
    padding: 2px 12px;
    border-radius: 20px;
    font-size: .68rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.ag-card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.45;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
    transition: color .3s;
}

.ag-card-title:hover { color: var(--rose-dark); }

.ag-card-excerpt {
    font-size: .88rem;
    color: var(--text-mid);
    flex: 1;
    line-height: 1.7;
    margin-bottom: 18px;
}

.ag-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(29, 21, 53, .06);
    padding-top: 14px;
}

.ag-card-stats { font-size: .76rem; color: var(--text-light); }

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.ag-quote-section {
    padding: 96px 0;
    background: white;
    text-align: center;
}

.ag-quote-wrap {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    padding: 0 16px;
}

.ag-quote-big {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.95rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.62;
    position: relative;
    border: none;
    background: none;
    margin: 0;
    padding: 0 20px;
}

.ag-quote-big::before {
    content: '\201C';
    font-size: 9rem;
    color: var(--rose-light);
    position: absolute;
    top: -50px;
    left: -16px;
    line-height: 1;
    font-family: 'Lora', serif;
    font-style: normal;
}

.ag-quote-author {
    display: block;
    color: var(--rose);
    font-style: italic;
    font-size: 1rem;
    margin-top: 22px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

/* ============================================================
   NEWSLETTER — bande sombre
   ============================================================ */
.ag-newsletter-section {
    padding: 0 0 88px;
    background: var(--bg-soft);
}

.ag-newsletter {
    background: var(--deep);
    border-radius: 24px;
    padding: 58px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 52px;
    box-shadow: 0 20px 64px rgba(29, 21, 53, .24);
}

.ag-newsletter-text { flex: 1; }

.ag-newsletter-text h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.85rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.ag-newsletter-text p {
    color: rgba(255, 255, 255, .48);
    font-size: .93rem;
    line-height: 1.65;
    margin: 0;
}

.ag-newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.ag-newsletter-form input {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50px;
    padding: 13px 22px;
    font-family: 'Nunito', sans-serif;
    font-size: .9rem;
    color: white;
    outline: none;
    width: 185px;
    transition: var(--transition);
}

.ag-newsletter-form input::placeholder { color: rgba(255, 255, 255, .32); }

.ag-newsletter-form input:focus {
    border-color: var(--rose);
    background: rgba(255, 255, 255, .14);
}

/* ============================================================
   ARTICLE / POST
   ============================================================ */
.ag-post-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.ag-post-featured {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 30px 0;
}

.ag-post-content {
    font-family: 'Nunito', sans-serif;
    font-size: 1.07rem;
    line-height: 1.95;
    color: var(--text-dark);
}

.ag-post-content h1,
.ag-post-content h2,
.ag-post-content h3 {
    font-family: 'Lora', Georgia, serif;
    margin-top: 35px;
    color: var(--text-dark);
}

.ag-post-content blockquote {
    border-left: 3px solid var(--rose);
    padding: 12px 22px;
    margin: 28px 0;
    background: var(--rose-alpha);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-mid);
}

.ag-post-content img { border-radius: 12px; max-width: 100%; }
.ag-post-content a { color: var(--rose-dark); }

/* ============================================================
   SHARE BUTTONS
   ============================================================ */
.ag-share { display: flex; gap: 10px; flex-wrap: wrap; margin: 30px 0; }

.ag-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: .88rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.ag-share-btn:hover { transform: translateY(-2px); }
.ag-share-fb   { background: #1877F2; color: white; }
.ag-share-wa   { background: #25D366; color: white; }
.ag-share-li   { background: #0A66C2; color: white; }
.ag-share-copy { background: var(--rose); color: white; }

/* ============================================================
   FOOTER — sombre & caractère
   ============================================================ */
.ag-footer {
    background: var(--deep);
    padding: 0;
}

.ag-footer-wave {
    display: block;
    line-height: 0;
}
.ag-footer-wave svg { display: block; width: 100%; height: 55px; }

.ag-footer > .container { padding-top: 52px; }

.ag-footer-quote-band {
    text-align: center;
    padding-bottom: 52px;
    margin-bottom: 8px;
}
.ag-footer-quote-band i {
    display: block;
    font-size: 1.6rem;
    color: var(--rose);
    opacity: .5;
    margin-bottom: 14px;
}
.ag-footer-quote-band blockquote {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    margin: 0 auto 18px;
    max-width: 640px;
}
.ag-footer-quote-band cite {
    font-size: .82rem;
    color: var(--lavender);
    font-style: normal;
    letter-spacing: .04em;
}
.ag-footer-quote-band::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--rose), var(--lavender));
    margin: 22px auto 0;
    border-radius: 2px;
}

.ag-footer-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.7rem;
    color: var(--rose) !important;
    text-decoration: none;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition);
}
.ag-footer-logo:hover { color: var(--lavender) !important; }

.ag-footer-tagline {
    font-style: italic;
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
    margin: 0 0 26px;
    line-height: 1.65;
}

.ag-footer h5 {
    font-family: 'Nunito', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    color: var(--rose);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .12em;
    position: relative;
    padding-bottom: 12px;
}
.ag-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--lavender);
    border-radius: 2px;
}

.ag-footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .48);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: .88rem;
    transition: var(--transition);
}
.ag-footer-links a::before {
    content: '';
    width: 6px;
    height: 1.5px;
    background: var(--rose);
    border-radius: 2px;
    flex-shrink: 0;
    opacity: .6;
    transition: width .25s ease, opacity .25s ease;
}
.ag-footer-links a:hover { color: white; padding-left: 4px; }
.ag-footer-links a:hover::before { width: 14px; opacity: 1; }

.ag-social { display: flex; gap: 10px; margin-top: 4px; }

.ag-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 135, 156, .28);
    color: var(--rose);
    font-size: .88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}
.ag-social a:hover {
    background: var(--rose);
    color: white;
    border-color: var(--rose);
    box-shadow: 0 0 18px rgba(212, 135, 156, .4);
    transform: translateY(-2px);
}

/* ── Mini author card ── */
.ag-footer-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0 16px;
}

.ag-footer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--lavender));
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 135, 156, .35);
    box-shadow: 0 0 0 4px rgba(212, 135, 156, .1);
}
.ag-footer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ag-footer-avatar span {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    letter-spacing: .01em;
    line-height: 1;
}

.ag-footer-author-info strong {
    display: block;
    color: white;
    font-size: .9rem;
    font-weight: 600;
}
.ag-footer-author-info span {
    font-size: .76rem;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .02em;
}

.ag-footer-bio {
    font-size: .87rem;
    color: rgba(255, 255, 255, .48);
    line-height: 1.72;
    margin-bottom: 14px;
}

.ag-footer-about-link {
    display: inline-flex;
    align-items: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--rose);
    text-decoration: none;
    margin-bottom: 22px;
    transition: var(--transition);
    letter-spacing: .01em;
}
.ag-footer-about-link:hover { color: var(--lavender); gap: 6px; }

/* ── Social pills ── */
.ag-footer-social-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ag-footer-social-pills a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 50px;
    border: 1.5px solid rgba(212, 135, 156, .22);
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: .8rem;
    transition: var(--transition);
    line-height: 1;
}
.ag-footer-social-pills a i { color: var(--rose); font-size: .82rem; flex-shrink: 0; }
.ag-footer-social-pills a:hover {
    background: rgba(212, 135, 156, .12);
    border-color: rgba(212, 135, 156, .6);
    color: white;
    transform: translateY(-1px);
}

/* ── Newsletter CTA box ── */
.ag-footer-cta-box {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 32px 28px 28px;
}

.ag-footer-cta-eyebrow {
    font-family: 'Nunito', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--rose);
    margin-bottom: 6px;
}

.ag-footer-cta-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.15;
}

.ag-footer-text {
    font-size: .87rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.72;
    margin-bottom: 18px;
}

.ag-footer-form {
    display: flex;
    border: 1.5px solid rgba(212, 135, 156, .22);
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
    transition: border-color .3s;
}
.ag-footer-form:focus-within { border-color: rgba(212, 135, 156, .65); }

.ag-footer-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 11px 18px;
    font-family: 'Nunito', sans-serif;
    font-size: .88rem;
    color: white;
    background: transparent;
    min-width: 0;
}
.ag-footer-form input::placeholder { color: rgba(255, 255, 255, .3); }

.ag-footer-form .btn-primary-pill {
    padding: 8px 20px;
    font-size: .85rem;
    margin: 3px;
    flex-shrink: 0;
    white-space: nowrap;
}

.ag-footer-trust {
    font-size: .76rem;
    color: rgba(255, 255, 255, .3);
    margin: 12px 0 0;
}
.ag-footer-trust i { color: var(--lavender); margin-right: 3px; }

.ag-footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .35);
}
.ag-footer-contact i { color: var(--rose); }

/* ── Bottom bar ── */
.ag-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 22px 0;
    margin-top: 52px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .28);
}

.ag-footer-credit { display: flex; align-items: center; gap: 5px; }
.ag-footer-credit i { color: var(--rose); font-size: .7rem; }

/* ============================================================
   GOOGLE TRANSLATE
   ============================================================ */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; }

.goog-te-gadget .goog-te-combo {
    font-family: 'Nunito', sans-serif;
    font-size: .82rem;
    border: 1.5px solid rgba(212, 135, 156, .35);
    border-radius: 50px;
    padding: 4px 12px;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
}

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

.fade-in-up { animation: fadeInUp .6s ease forwards; }
.delay-1    { animation-delay: .12s; }
.delay-2    { animation-delay: .24s; }
.delay-3    { animation-delay: .36s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold      { color: var(--rose) !important; }
.text-rose      { color: var(--rose) !important; }
.bg-gold-soft   { background: var(--rose-alpha); }
.border-gold    { border-color: var(--rose) !important; }
.font-playfair  { font-family: 'Lora', Georgia, serif; }

.pagination .page-link {
    color: var(--rose-dark);
    border-color: rgba(212, 135, 156, .2);
    font-family: 'Nunito', sans-serif;
    border-radius: 50px !important;
    margin: 0 2px;
}

.pagination .page-item.active .page-link {
    background: var(--rose);
    border-color: var(--rose);
    color: white;
}

/* ============================================================
   ADMIN — SIDEBAR
   ============================================================ */
.admin-sidebar {
    width: 240px;
    min-height: 100vh;
    background: var(--deep);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    overflow-y: auto;
}

.admin-main {
    margin-left: 240px;
    min-height: 100vh;
    background: #F5EFF8;
}

.sidebar-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 1.6rem;
    color: var(--rose);
    text-decoration: none;
    padding: 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sidebar-nav .nav-link {
    color: rgba(255, 255, 255, .6);
    padding: 10px 20px;
    font-size: .88rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    color: white;
    background: rgba(212, 135, 156, .1);
    border-left-color: var(--rose);
}

.sidebar-nav .nav-link i { width: 18px; text-align: center; color: var(--rose); opacity: .7; }
.sidebar-nav .nav-link.active i, .sidebar-nav .nav-link:hover i { opacity: 1; }

.admin-topbar {
    background: white;
    padding: 14px 28px;
    border-bottom: 1px solid #EAE6F5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(29, 21, 53, .05);
}

.admin-card {
    background: white;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 2px 14px rgba(180, 150, 200, .1);
    border: 1px solid #EAE6F5;
}

.stat-card {
    border-radius: 12px;
    padding: 22px;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
}

/* ============================================================
   ADMIN — SEO DOTS
   ============================================================ */
.seo-dot  { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.seo-pass { background: #28a745; }
.seo-fail { background: #dc3545; }

/* ============================================================
   PAGE À PROPOS
   ============================================================ */

/* ── Hero compact ── */
.ag-about-hero {
    background: var(--deep);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ag-about-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 135, 156, .12) 0%, transparent 70%);
    pointer-events: none;
}
.ag-about-hero-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--rose);
    margin-bottom: 14px;
}
.ag-about-hero-name {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 14px;
}
.ag-about-hero-tagline {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}
.ag-about-hero-wave {
    display: block;
    line-height: 0;
    margin-bottom: -2px;
}
.ag-about-hero-wave svg { display: block; width: 100%; height: 50px; }

/* ── Bio section ── */
.ag-about-identity {
    padding: 80px 0 70px;
}

.ag-about-photo-wrap {
    position: relative;
}
.ag-about-photo-frame {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}
.ag-about-photo-frame::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: -18px;
    bottom: -18px;
    border: 2px solid var(--rose);
    border-radius: var(--radius);
    opacity: .28;
    z-index: 0;
}
.ag-about-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 3/4;
    display: block;
    box-shadow: 0 24px 60px rgba(29, 21, 53, .16);
}
.ag-about-photo-placeholder {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--lavender-light), var(--rose-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 60px rgba(29, 21, 53, .12);
}
.ag-about-photo-placeholder i { font-size: 6rem; color: var(--rose); opacity: .35; }

.ag-about-badge-photo {
    position: absolute;
    bottom: -16px;
    right: -16px;
    z-index: 2;
    background: var(--deep);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(29, 21, 53, .25);
}
.ag-about-badge-photo i { color: var(--rose); font-size: 1.1rem; }
.ag-about-badge-photo span { font-family: 'Lora', serif; font-size: .85rem; color: white; font-style: italic; }

.ag-about-text-col { padding-left: 20px; }

.ag-about-bio {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.02rem;
    line-height: 1.95;
    color: var(--text-mid);
    margin-bottom: 28px;
}
.ag-about-bio p + p { margin-top: 1em; }

.ag-about-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.ag-about-social-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 50px;
    border: 1.5px solid rgba(212, 135, 156, .3);
    color: var(--text-mid);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 600;
    transition: var(--transition);
}
.ag-about-social-row a i { color: var(--rose); }
.ag-about-social-row a:hover { background: var(--rose); color: white; border-color: var(--rose); }
.ag-about-social-row a:hover i { color: white; }

/* ── Mission banner ── */
.ag-about-mission {
    background: var(--bg-soft);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.ag-about-mission::before {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 169, 212, .18) 0%, transparent 70%);
    pointer-events: none;
}
.ag-about-mission-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.ag-about-mission-icon {
    display: block;
    font-size: 2rem;
    color: var(--lavender);
    margin-bottom: 20px;
    opacity: .7;
}
.ag-about-mission-inner h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 18px;
    line-height: 1.25;
}
.ag-about-mission-inner p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-mid);
}

/* ── Valeurs ── */
.ag-about-values {
    padding: 80px 0;
}
.ag-value-card {
    background: var(--bg);
    border: 1.5px solid rgba(184, 169, 212, .22);
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.ag-value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--rose), var(--lavender));
    transform: scaleX(0);
    transition: transform .35s ease;
    transform-origin: left;
}
.ag-value-card:hover { border-color: rgba(212, 135, 156, .4); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(29, 21, 53, .1); }
.ag-value-card:hover::before { transform: scaleX(1); }

.ag-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-light), var(--lavender-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.ag-value-icon i { font-size: 1.3rem; color: var(--rose-dark); }

.ag-value-card h4 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 12px;
}
.ag-value-card p {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 0;
}

/* ── Portfolio ── */
.ag-about-portfolio {
    background: var(--bg-soft);
    padding: 80px 0;
}
.ag-portfolio-group { margin-bottom: 56px; }
.ag-portfolio-group:last-child { margin-bottom: 0; }

.ag-portfolio-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(184, 169, 212, .25);
}
.ag-portfolio-group-header i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-light), var(--lavender-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    color: var(--rose-dark);
    flex-shrink: 0;
}
.ag-portfolio-group-header h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep);
    margin: 0;
}

.ag-portfolio-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(29, 21, 53, .07);
    height: 100%;
    transition: var(--transition);
}
.ag-portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(29, 21, 53, .13); }

.ag-portfolio-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.ag-portfolio-card-body { padding: 20px; }
.ag-portfolio-card-body h5 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 8px;
}
.ag-portfolio-date {
    display: inline-flex;
    align-items: center;
    font-size: .76rem;
    color: var(--rose);
    background: var(--rose-light);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.ag-portfolio-card-body p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   HERO GÉNÉRIQUE (blog, contact, inspiration…)
   ============================================================ */
.ag-page-hero {
    background: var(--deep);
    padding: 78px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ag-page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 135, 156, .1) 0%, transparent 70%);
    pointer-events: none;
}
.ag-page-hero-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--rose);
    margin-bottom: 14px;
}
.ag-page-hero-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}
.ag-page-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, .45);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}
.ag-page-hero-wave {
    display: block;
    line-height: 0;
    margin-bottom: -2px;
}
.ag-page-hero-wave svg { display: block; width: 100%; height: 50px; }

/* ============================================================
   PAGE BLOG
   ============================================================ */
.ag-blog-body { padding: 64px 0; }

/* Barre de recherche */
.ag-blog-search {
    display: flex;
    border: 1.5px solid rgba(184, 169, 212, .3);
    border-radius: 50px;
    overflow: hidden;
    background: white;
    margin-bottom: 36px;
    transition: border-color .3s;
}
.ag-blog-search:focus-within { border-color: var(--rose); }
.ag-blog-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 22px;
    font-family: 'Nunito', sans-serif;
    font-size: .92rem;
    color: var(--text-dark);
    background: transparent;
    min-width: 0;
}
.ag-blog-search input::placeholder { color: var(--text-light); }
.ag-blog-search button {
    border: none;
    background: var(--rose);
    color: white;
    padding: 0 22px;
    cursor: pointer;
    font-size: .9rem;
    transition: background .25s;
    flex-shrink: 0;
}
.ag-blog-search button:hover { background: var(--rose-dark); }

/* Filtre catégorie active */
.ag-blog-cat-active { background: var(--rose-light) !important; color: var(--rose-dark) !important; }

/* Sidebar */
.ag-sidebar-card {
    background: white;
    border: 1.5px solid rgba(184, 169, 212, .2);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 24px;
}
.ag-sidebar-title {
    font-family: 'Nunito', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--rose);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}
.ag-sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--lavender);
    border-radius: 2px;
}
.ag-sidebar-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-mid);
    font-size: .88rem;
    margin-bottom: 4px;
    transition: var(--transition);
}
.ag-sidebar-cat:hover,
.ag-sidebar-cat.active { background: var(--rose-light); color: var(--rose-dark); }
.ag-sidebar-cat i { font-size: .7rem; color: var(--rose); opacity: .6; margin-right: 6px; }
.ag-sidebar-cat .badge-cat {
    background: rgba(212, 135, 156, .12);
    color: var(--rose-dark);
    font-size: .72rem;
    padding: 2px 9px;
    border-radius: 50px;
    font-weight: 600;
}

/* Newsletter widget sidebar */
.ag-sidebar-newsletter {
    background: var(--deep);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}
.ag-sidebar-newsletter i { font-size: 1.8rem; color: var(--rose); margin-bottom: 12px; display: block; }
.ag-sidebar-newsletter h5 {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: white;
    margin-bottom: 8px;
}
.ag-sidebar-newsletter p { font-size: .83rem; color: rgba(255,255,255,.42); margin-bottom: 18px; }
.ag-sidebar-nl-form { display: flex; flex-direction: column; gap: 8px; }
.ag-sidebar-nl-form input {
    border: 1.5px solid rgba(212,135,156,.22);
    border-radius: 50px;
    padding: 9px 16px;
    background: rgba(255,255,255,.06);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: .85rem;
    outline: none;
    transition: border-color .3s;
}
.ag-sidebar-nl-form input::placeholder { color: rgba(255,255,255,.3); }
.ag-sidebar-nl-form input:focus { border-color: rgba(212,135,156,.6); }
.ag-sidebar-nl-form .btn-primary-pill { width: 100%; justify-content: center; font-size: .85rem; }

/* Vide résultats */
.ag-empty-state {
    text-align: center;
    padding: 60px 0;
    color: var(--text-light);
}
.ag-empty-state i { font-size: 3rem; color: var(--rose); opacity: .3; margin-bottom: 16px; display: block; }
.ag-empty-state h4 { font-family: 'Lora', serif; color: var(--text-mid); margin-bottom: 16px; }

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.ag-contact-body { padding: 72px 0; }

.ag-contact-form-card {
    background: white;
    border: 1.5px solid rgba(184, 169, 212, .2);
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 8px 40px rgba(29, 21, 53, .07);
}

.ag-form-label {
    display: block;
    font-size: .83rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 7px;
    letter-spacing: .01em;
}

.ag-contact-form-card .form-control {
    border: 1.5px solid rgba(184, 169, 212, .35);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: .92rem;
    color: var(--text-dark);
    background: var(--bg);
    transition: border-color .3s, box-shadow .3s;
}
.ag-contact-form-card .form-control:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(212, 135, 156, .15);
    outline: none;
}
.ag-contact-form-card textarea.form-control { resize: vertical; min-height: 160px; }

.ag-contact-submit { margin-top: 8px; }

.ag-contact-info-card {
    background: var(--bg-soft);
    border-radius: 20px;
    padding: 36px 32px;
    height: 100%;
}
.ag-contact-info-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 28px;
}
.ag-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}
.ag-contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-light), var(--lavender-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ag-contact-info-icon i { font-size: .9rem; color: var(--rose-dark); }
.ag-contact-info-item p { margin: 0; font-size: .78rem; color: var(--text-light); }
.ag-contact-info-item a,
.ag-contact-info-item span { display: block; font-size: .9rem; color: var(--text-dark); text-decoration: none; font-weight: 500; }
.ag-contact-info-item a:hover { color: var(--rose); }

.ag-contact-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.ag-contact-social-row a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid rgba(184, 169, 212, .3);
    color: var(--text-mid);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    transition: var(--transition);
}
.ag-contact-social-row a i { color: var(--rose); }
.ag-contact-social-row a:hover { background: var(--rose); color: white; border-color: var(--rose); }
.ag-contact-social-row a:hover i { color: white; }

.ag-contact-success {
    background: linear-gradient(135deg, var(--rose-light), var(--lavender-light));
    border: none;
    border-radius: 14px;
    padding: 18px 22px;
    color: var(--deep);
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ag-contact-success i { color: var(--rose-dark); font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-main    { margin-left: 0; }

    .ag-hero,
    .ag-slide {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ag-hero-slider {
        min-height: calc(100vh - 64px);
    }

    .ag-slides-track {
        min-height: calc(100vh - 64px);
    }

    .ag-hero-left {
        padding: 64px 28px;
        min-height: 65vh;
    }

    .ag-hero-left::after { display: none; }

    .ag-hero-right {
        height: 300px;
        display: block;
    }

    .ag-hero-content { max-width: 100%; }
    .ag-hero-title   { font-size: 2.6rem; }

    .ag-slider-dots  { left: 50%; bottom: 16px; }
    .ag-slider-arrow { display: none; }

    .ag-slider-counter { right: 16px; bottom: 16px; }
    .ag-counter-current { font-size: 1.5rem; }

    .ag-featured {
        grid-template-columns: 1fr;
    }

    .ag-featured-img { min-height: 260px; }
    .ag-featured-body { padding: 36px 30px; }

    .ag-newsletter {
        flex-direction: column;
        padding: 44px 32px;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .ag-hero-title    { font-size: 2.2rem; }
    .ag-section-title { font-size: 1.7rem; }
    .ag-quote-big     { font-size: 1.45rem; }
    .ag-newsletter    { padding: 36px 24px; }
    .ag-post-title    { font-size: 2rem; }
    .ag-post-featured { height: 240px; }
    .ag-featured-title { font-size: 1.4rem; }

    .ag-newsletter-form { width: 100%; flex-direction: column; }
    .ag-newsletter-form input { width: 100%; }

    .ag-footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
    .ag-footer-cta-box { padding: 24px 18px 20px; }
    .ag-footer-cta-title { font-size: 1.4rem; }
    .ag-footer-social-pills { gap: 6px; }
    .ag-footer-social-pills a span { display: none; }
    .ag-footer-social-pills a { padding: 8px 12px; }

    .ag-about-hero { padding: 56px 0 48px; }
    .ag-about-hero-name { font-size: 3rem; }
    .ag-about-text-col { padding-left: 0; }
    .ag-about-photo-frame { max-width: 320px; margin: 0 auto 40px; }
    .ag-about-badge-photo { right: 0; }
    .ag-about-mission-inner h3 { font-size: 1.5rem; }
}

.lang-btn {
    background: none;
    border: 1.5px solid transparent;
    border-radius: 50px;
    padding: 2px 6px;
    cursor: pointer;
    transition: var(--transition);
    opacity: .55;
}

.lang-btn:hover { opacity: 1; border-color: rgba(212, 135, 156, .35); }
.lang-btn.lang-active { opacity: 1; border-color: var(--rose); background: var(--rose-alpha); }
