/* === RESET & VARIABLES === */
:root {
    --clr-primary: #A67B5B; 
    --clr-primary-hover: #8c6548;
    --clr-accent: #8A9A86;
    --clr-youtube: #ff3b30;
    --clr-bg: #FCFAF8; 
    --clr-bg-alt: #F3EFEA; 
    --clr-text: #2C2C2C; 
    --clr-text-light: #5A5A5A;
    --clr-white: #ffffff;
    
    --font-title: 'Cormorant Garamond', serif;
    --font-text: 'Montserrat', sans-serif;
    --font-ui: 'Outfit', sans-serif;
    
    --radius-box: 24px;
    --radius-btn: 50px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-subtle: 0 12px 35px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 18px 45px rgba(44, 44, 44, 0.06);
    --shadow-hover: 0 24px 55px rgba(166, 123, 91, 0.12);
    --shadow-hero: 0 28px 80px rgba(15, 15, 15, 0.22);
    --border-soft: rgba(44, 44, 44, 0.06);
    --border-accent: rgba(166, 123, 91, 0.16);
}

::selection {
    background: var(--clr-primary);
    color: var(--clr-white);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--clr-text-light);
    line-height: 1.8;
    background-color: var(--clr-bg);
    background-image:
        radial-gradient(circle at top left, rgba(138, 154, 134, 0.08), transparent 26%),
        radial-gradient(circle at 85% 12%, rgba(166, 123, 91, 0.08), transparent 22%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--clr-text);
    font-weight: 500;
}

p {
    text-wrap: pretty;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === NAVIGATION === */
header.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(252, 250, 248, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.03);
    z-index: 1000;
    transition: var(--transition);
}

header.navbar.scrolled {
    padding: 12px 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.logo {
    font-family: var(--font-title);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--clr-primary);
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--clr-text);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--clr-primary);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--clr-primary); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--clr-text);
    user-select: none;
}

/* === HERO SECTION === */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('../img/Gemini_Generated_Image_ao44fyao44fyao44.webp') center/cover no-repeat;
    background-image: image-set(
        url('../img/Gemini_Generated_Image_ao44fyao44fyao44.webp') type("image/webp"),
        url('../img/Gemini_Generated_Image_ao44fyao44fyao44.png') type("image/png")
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(252, 250, 248, 0) 0%, rgba(252, 250, 248, 0.88) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(180deg, rgba(44, 44, 44, 0.22) 0%, rgba(44, 44, 44, 0.72) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--clr-white);
    max-width: 950px;
    padding: clamp(28px, 4vw, 52px);
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.22) 0%, rgba(20, 20, 20, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: var(--shadow-hero);
    animation: fadeIn 1.5s ease-out;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    margin-bottom: 1.8rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.hero-brand picture,
.about-img-wrapper picture {
    display: block;
}

.hero-brand-logo {
    width: clamp(110px, 16vw, 165px);
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.hero-content h1 {
    color: var(--clr-white);
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 45px;
    font-weight: 300;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.75;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: var(--radius-btn);
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: 1px solid transparent;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: 0 8px 25px rgba(166, 123, 91, 0.25);
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(166, 123, 91, 0.35);
}

.btn-secondary {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--clr-white);
    color: var(--clr-white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--clr-white);
    color: var(--clr-text);
    transform: translateY(-4px);
}

/* === SECTIONS GENERALES === */
section {
    padding: 140px 5%;
    position: relative;
}

section[id] {
    scroll-margin-top: 110px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-ui);
    color: var(--clr-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--clr-text);
    text-wrap: balance;
}

.bg-alt {
    background: linear-gradient(180deg, var(--clr-bg-alt) 0%, #f8f4ef 100%);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === À PROPOS === */
.about-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(60px, 7vw, 96px);
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    padding-left: 38px;
    padding-bottom: 42px;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 88%;
    height: 88%;
    background: linear-gradient(180deg, #efe6dd 0%, #f8f4ef 100%);
    border-radius: calc(var(--radius-box) + 4px);
    z-index: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 88%;
    height: 88%;
    border: 1.5px solid rgba(166, 123, 91, 0.2);
    border-radius: calc(var(--radius-box) + 6px);
    z-index: 0;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-box);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 3/4;
    object-position: center 20%;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.03);
}

.about-text h2 {
    font-size: clamp(2.7rem, 4vw, 4.1rem);
    line-height: 1.02;
    margin-bottom: 1.35rem;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--clr-text-light);
    max-width: 62ch;
}

.signature {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-top: 40px;
    font-style: italic;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.signature::after {
    content: '';
    width: 22px;
    height: 1px;
    background: rgba(166, 123, 91, 0.45);
}

/* === SERVICES & ACCOMPAGNEMENTS === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(28px, 3vw, 42px);
    align-items: stretch;
}

.service-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 243, 0.96) 100%);
    padding: 54px 44px 46px;
    border-radius: var(--radius-box);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-accent);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-primary));
}

.service-card::after {
    content: '';
    position: absolute;
    top: -70px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 123, 91, 0.12) 0%, rgba(166, 123, 91, 0) 70%);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    font-size: 2.05rem;
    margin-bottom: 20px;
    color: var(--clr-primary);
    line-height: 1.08;
}

.service-card p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--clr-text-light);
    flex-grow: 1;
}

.service-card ul {
    list-style: none;
    display: grid;
    gap: 0.95rem;
    margin-top: 1.7rem;
}

.service-card ul li {
    margin-bottom: 15px;
    padding-left: 34px;
    position: relative;
    font-size: 1rem;
    color: var(--clr-text);
    line-height: 1.65;
}

.service-card ul li::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-primary));
    position: absolute;
    left: 0;
    top: 0.42rem;
    box-shadow: 0 0 0 6px rgba(166, 123, 91, 0.09);
}

/* === CERCLES & PRO === */
.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 36px);
    align-items: stretch;
}

.focus-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 243, 0.92) 100%);
    border-radius: var(--radius-box);
    padding: 56px 44px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-accent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.focus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--clr-primary), var(--clr-accent));
    opacity: 0.75;
}

.focus-section::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 154, 134, 0.12) 0%, rgba(138, 154, 134, 0) 72%);
}

.focus-section:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.focus-section h3 {
    font-size: 2rem;
    margin-bottom: 1.35rem;
    color: var(--clr-primary);
    line-height: 1.08;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 2rem 0 1.4rem;
}

.tag {
    font-family: var(--font-ui);
    background: rgba(166, 123, 91, 0.08);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--clr-primary-hover);
    font-weight: 600;
    border: 1px solid rgba(166, 123, 91, 0.15);
    transition: var(--transition);
}

.tag:hover {
    transform: translateY(-2px);
    background: rgba(166, 123, 91, 0.13);
}

/* === TÉMOIGNAGES === */
.testimonials {
    background-color: var(--clr-bg);
}

.testimonials .section-header { margin-bottom: 0; }
.testimonials .section-title { font-size: 3.8rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.testimonials .section-subtitle {
    font-family: var(--font-text);
    font-size: 1.1rem;
    color: var(--clr-accent);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    background: var(--clr-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(44, 44, 44, 0.06);
    border: 1px solid rgba(0,0,0,0.03);
}

.rating-number {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    color: var(--clr-text);
}

.stars-container i { color: #FBBC04; font-size: 1.5rem; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--clr-white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(44, 44, 44, 0.06);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.watermark-quote {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    color: var(--clr-bg-alt);
    z-index: -1;
    opacity: 0.6;
}

.google-stars { margin-bottom: 1.5rem; }
.google-stars i { color: #FBBC04; font-size: 1.2rem; margin-right: 0.2rem; }

.testimonial-text {
    font-size: 1.1rem;
    color: var(--clr-text);
    margin-bottom: 2.5rem;
    flex-grow: 1;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-text);
    font-size: 1.4rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-author h5 {
    font-family: var(--font-text);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    color: var(--clr-text);
}

.testimonial-author span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

.testimonials-cta {
    margin-top: 4rem;
    text-align: center;
}

.testimonials .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-text);
    font-weight: 500;
    font-size: 1.05rem;
    background-color: transparent;
    color: var(--clr-text);
    border: 1.5px solid rgba(28, 39, 51, 0.15);
    box-shadow: none;
    gap: 0.55rem;
}

.testimonials .btn-secondary i { font-size: 1.2rem; }

.testimonials .btn-secondary:hover {
    background-color: var(--clr-text);
    color: var(--clr-white);
    transform: translateY(-4px);
    border-color: var(--clr-text);
    box-shadow: var(--shadow-md);
}

/* === RESSOURCES & MEDIAS (PRO DESIGN) === */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 30px;
}

.media-card {
    background: var(--clr-white);
    padding: 45px 40px;
    border-radius: 32px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(166, 123, 91, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none; 
    z-index: 1;
}

/* Halos d'arrière-plan doux */
.media-card-halo {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: -1;
    filter: blur(60px);
    opacity: 0.3;
    transition: all 0.6s ease;
}

.terracotta-halo { background: var(--clr-primary); }
.sage-halo { background: var(--clr-accent); }
.youtube-halo { background: var(--clr-youtube); }

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(166, 123, 91, 0.25);
}

.media-card:hover .media-card-halo {
    opacity: 0.6;
    transform: scale(1.2);
}

.media-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--clr-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--clr-primary);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.8), 0 4px 12px rgba(166, 123, 91, 0.1);
    transition: var(--transition);
}

.media-card:hover .icon-wrapper {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: scale(1.05);
}

.media-header h3 {
    font-size: 1.5rem;
    color: var(--clr-text);
    margin: 0;
    line-height: 1.2;
}

.media-card p {
    color: var(--clr-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    flex-grow: 1;
}

.media-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding-top: 25px;
    margin-top: auto;
}

.social-pills {
    display: flex;
    gap: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f8f8f8;
    color: var(--clr-text-light);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

/* Animation propre aux boutons réseaux sociaux */
.pill.insta:hover {
    color: #E1306C;
    background: #fdf5f2;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 15px rgba(225, 48, 108, 0.15);
}

.pill.fb:hover {
    color: #1877F2;
    background: #f0f4f9;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.15);
}

.text-link {
    font-family: var(--font-ui);
    font-weight: 600;
    color: var(--clr-primary);
    font-size: 0.95rem;
}

/* Bouton Flèche d'action */
.action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-bg);
    border: 1px solid rgba(166, 123, 91, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.3, 0.8, 0.2, 1);
}

.media-card:hover .action-btn {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-white);
}

/* Spécificités carte YouTube */
.youtube-card { border-color: rgba(255, 59, 48, 0.22); }
.youtube-card .icon-wrapper { color: var(--clr-youtube); }
.youtube-card:hover .icon-wrapper { background: var(--clr-youtube); }
.youtube-card .text-link, .youtube-card .action-btn { color: var(--clr-youtube); }
.youtube-card .action-btn { border-color: rgba(255, 59, 48, 0.24); }
.youtube-card:hover .action-btn {
    background: var(--clr-youtube);
    color: var(--clr-white);
    transform: translateX(5px);
}

/* Spécificités de la carte Podcast (Highlight) */
.highlight-card { border-color: rgba(138, 154, 134, 0.3); }
.highlight-card .icon-wrapper { color: var(--clr-accent); }
.highlight-card:hover .icon-wrapper { background: var(--clr-accent); }
.highlight-card .text-link, .highlight-card .action-btn { color: var(--clr-accent); }
.highlight-card .action-btn { border-color: rgba(138, 154, 134, 0.3); }
.highlight-card:hover .action-btn {
    background: var(--clr-accent);
    color: var(--clr-white);
    transform: translateX(5px);
}

/* Spécificités Carte Asso (Bientôt) */
.pending-card { background: linear-gradient(180deg, #ffffff 0%, #fcfbfb 100%); }

.badge-soon {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--clr-bg-alt);
    color: var(--clr-text-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-family: var(--font-ui);
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 2;
}

/* === CONTACT === */
.contact-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 243, 0.96) 100%);
    padding: 80px;
    border-radius: var(--radius-box);
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-accent);
}

.contact-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-primary));
}

.contact-box::before {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 123, 91, 0.12) 0%, rgba(166, 123, 91, 0) 72%);
    pointer-events: none;
}

.contact-highlight {
    background: linear-gradient(135deg, rgba(138, 154, 134, 0.07) 0%, rgba(255, 255, 255, 0.92) 100%);
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
    border: 1px solid rgba(138, 154, 134, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-highlight h4 {
    font-family: var(--font-ui);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--clr-primary);
}

.contact-intro {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--clr-primary);
    margin-bottom: 0.9rem;
    line-height: 1.15;
}

.contact-lead { margin-bottom: 25px; font-size: 1.1rem; }

.contact-note {
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--clr-text-light);
    border-top: 1px solid rgba(44, 44, 44, 0.08);
    padding-top: 20px;
}

#contact .btn-primary { min-width: min(100%, 340px); padding-inline: 30px; }

/* === NOUVEAU FOOTER CHIC === */
footer {
    background: var(--clr-white);
    color: var(--clr-text-light);
    padding: 70px 5% 40px;
    border-top: 1px solid rgba(166, 123, 91, 0.15);
    position: relative;
}

.footer-social-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
}

.social-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--clr-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 1.6rem;
    border: 1px solid rgba(166, 123, 91, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.social-circle:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(166, 123, 91, 0.25);
    border-color: var(--clr-primary);
}

.footer-content {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
}

.footer-content p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--clr-text);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-bottom-links a { color: var(--clr-text-light); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--clr-primary); }
.separator { color: rgba(0,0,0,0.1); }
.credit-link { font-family: var(--font-ui); font-weight: 500; letter-spacing: 0.5px; }

/* === PAGES LEGALES === */
.legal-page {
    padding: 170px 5% 110px;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(166, 123, 91, 0.08), transparent 28%),
        linear-gradient(180deg, var(--clr-bg) 0%, #f7f2ed 100%);
}

.breadcrumb {
    max-width: 980px;
    margin: 0 auto 26px;
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--clr-primary);
}

.breadcrumb a:hover {
    color: var(--clr-primary-hover);
    transform: translateX(-2px);
}

.legal-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(34px, 4vw, 52px);
    border-radius: calc(var(--radius-box) + 4px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 246, 242, 0.96) 100%);
    border: 1px solid var(--border-accent);
    box-shadow: var(--shadow-md);
}

.legal-header {
    text-align: center;
    margin-bottom: 38px;
}

.legal-header h1 {
    font-size: clamp(2.8rem, 5vw, 4.25rem);
    line-height: 1.02;
    color: var(--clr-text);
    letter-spacing: -0.03em;
}

.legal-header p {
    margin: 18px auto 0;
    max-width: 68ch;
    font-size: 1.05rem;
    color: var(--clr-text-light);
}

.legal-section {
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid rgba(44, 44, 44, 0.08);
}

.legal-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-section h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.1rem);
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--clr-primary);
}

.legal-shell p,
.legal-shell li {
    color: var(--clr-text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.legal-shell p + p {
    margin-top: 14px;
}

.legal-shell ul {
    margin: 14px 0 0;
    padding-left: 1.25rem;
}

.legal-shell li + li {
    margin-top: 10px;
}

.legal-shell strong {
    color: var(--clr-text);
}

.legal-facts {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 12px;
}

.legal-facts li {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(243, 239, 234, 0.75);
    border: 1px solid rgba(166, 123, 91, 0.1);
}

.legal-note {
    margin-top: 16px;
    padding: 20px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(138, 154, 134, 0.08) 0%, rgba(255, 255, 255, 0.96) 100%);
    border: 1px solid rgba(138, 154, 134, 0.16);
}

.legal-note p {
    margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-grid, .focus-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-wrapper { max-width: 600px; margin: 0 auto; }
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content { padding: 34px 28px; }
}

@media (max-width: 1120px) {
    .hamburger {
        width: 46px; height: 46px; display: grid; place-items: center;
        border-radius: 50%; background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(44, 44, 44, 0.08); box-shadow: 0 8px 24px rgba(44, 44, 44, 0.08);
        position: relative; z-index: 1002;
    }
    .nav-links {
        position: fixed; top: 78px; right: -100%; width: min(360px, 100%);
        height: calc(100vh - 78px); padding: 28px 28px 32px;
        background: rgba(252, 250, 248, 0.96); backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px); border-left: 1px solid rgba(44, 44, 44, 0.06);
        box-shadow: -18px 0 40px rgba(44, 44, 44, 0.08); flex-direction: column;
        align-items: stretch; justify-content: flex-start; gap: 0;
        transition: right 0.35s ease; z-index: 1001;
    }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; width: 100%; padding: 18px 0; border-bottom: 1px solid rgba(44, 44, 44, 0.06); }
    .nav-links a::after { display: none; }
    .nav-links.active { right: 0; }
}

@media (max-width: 768px) {
    section { padding: 90px 5%; }
    .section-title { font-size: 2.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .hero-brand { margin-bottom: 1.3rem; padding: 0.7rem 0.95rem; }
    .hero-content { padding: 24px 18px; border-radius: 28px; }
    
    .focus-section, .contact-box { padding: 40px 25px; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 30px; }
    .about-img-wrapper { padding-left: 18px; padding-bottom: 22px; }
    .contact-intro { font-size: 1.7rem; }
    
    .media-card { padding: 35px 25px; }
    .media-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .badge-soon { top: 15px; right: 15px; }
    .legal-page { padding: 130px 5% 80px; }
    .legal-shell { padding: 28px 20px; }
    .legal-facts li { padding: 14px 16px; }
    .footer-bottom-links { flex-wrap: wrap; }
}
