/* ============================================================
   ALEXANDRA ROIG — AVOCATE
   Stylesheet principal
   ============================================================ */

/* ===== GOOGLE FONTS (loaded in HTML) =====
   Cormorant Garamond : Titres (serif élégant)
   Mulish : Corps de texte (sans-serif moderne)
   ========================================== */

/* ----- CSS Custom Properties ----- */
:root {
    /* Palette — tons pastels doux, inspirés du logo doré/cuivré */
    --color-gold:        #C6A664;
    --color-gold-light:  #D4BC8B;
    --color-gold-dark:   #A8893D;
    --color-cream:       #FAF8F5;
    --color-cream-dark:  #F0ECE4;
    --color-white:       #FFFFFF;
    --color-text:        #3A3632;
    --color-text-light:  #7A756E;
    --color-text-muted:  #B0AAA1;
    --color-rose:        #ffddea;
    --color-rose-light:  #fff0f5;
    --color-rose-dark:   #e8b4c8;
    --color-sky:         #d6eaf8;
    --color-sky-light:   #eaf4fc;
    --color-sky-dark:    #a9cce3;
    --color-sage:        #C5CEBB;
    --color-border:      #E5E0D8;

    /* Typographie */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body:    'Mulish', 'Segoe UI', sans-serif;

    /* Spacing */
    --header-height: 85px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1060;
    background-color: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background-color 0.4s var(--ease-out),
                box-shadow 0.4s var(--ease-out),
                height 0.4s var(--ease-out);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 20px rgba(58, 54, 50, 0.06);
}

/* Header transparent quand menu mobile ouvert */
.header.menu-open {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 100%;
}

/* ----- Logo ----- */
.logo {
    display: flex;
    align-items: center;
    z-index: 10;
    transition: opacity 0.3s var(--ease-out);
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 49px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s var(--ease-out);
}

.header.scrolled .logo img {
    height: 42px;
}

/* ----- Navigation Desktop ----- */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.8rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s var(--ease-out);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: width 0.4s var(--ease-out), left 0.4s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* ----- Burger Button (Mobile) ----- */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    z-index: 1100;
    position: relative;
}

.burger-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: transform 0.4s var(--ease-in-out),
                opacity 0.3s var(--ease-out),
                background-color 0.3s var(--ease-out);
}

.burger-line:nth-child(1) {
    margin-bottom: 6px;
}

.burger-line:nth-child(3) {
    margin-top: 6px;
}

/* Burger active (croix) — passe au-dessus du menu mobile */
.burger.active .burger-line {
    background-color: var(--color-text);
}

.burger.active .burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.active .burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}


/* ============================================================
   MOBILE MENU — Fullscreen overlay
   ============================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 1050;
    background-color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out),
                visibility 0.5s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item {
    overflow: hidden;
}

.mobile-nav-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-text);
    padding: 0.6rem 1rem;
    position: relative;
    transition: color 0.3s var(--ease-out),
                transform 0.5s var(--ease-out);
    transform: translateY(100%);
    opacity: 0;
}

.mobile-menu.active .mobile-nav-link {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger animation */
.mobile-menu.active .mobile-nav-item:nth-child(1) .mobile-nav-link { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-item:nth-child(2) .mobile-nav-link { transition-delay: 0.18s; }
.mobile-menu.active .mobile-nav-item:nth-child(3) .mobile-nav-link { transition-delay: 0.26s; }
.mobile-menu.active .mobile-nav-item:nth-child(4) .mobile-nav-link { transition-delay: 0.34s; }

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-gold);
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.4rem;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s var(--ease-out);
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
    transform: scaleX(1);
}

/* Footer du menu mobile */
.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out) 0.4s,
                transform 0.5s var(--ease-out) 0.4s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-address {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.mobile-menu-line {
    width: 30px;
    height: 1px;
    background-color: var(--color-gold-light);
}

.mobile-menu-cabinet {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-text-light);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 4rem) 3rem 5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 15% 50%, rgba(198, 166, 100, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 45% at 85% 40%, rgba(198, 166, 100, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 40% 35% at 50% 90%, rgba(198, 166, 100, 0.04) 0%, transparent 70%),
        linear-gradient(
            160deg,
            #f5f0e8 0%,
            #f8f4ed 20%,
            var(--color-cream) 45%,
            #faf8f4 70%,
            #f5f0e8 100%
        );
}

/* Texture grain subtile */
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* Ligne dorée verticale décorative */
.hero-gold-line {
    position: absolute;
    left: 8%;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--color-gold-light) 20%,
        var(--color-gold) 50%,
        var(--color-gold-light) 80%,
        transparent 100%
    );
    opacity: 0;
    animation: heroLineReveal 1.5s var(--ease-out) 0.2s forwards;
}

/* ----- Ornements floraux ----- */
.hero-ornament {
    position: absolute;
    pointer-events: none;
    color: var(--color-gold-light);
    z-index: 0;
}

/* Grand ornement floral — droite */
.hero-ornament--1 {
    top: 8%;
    right: -2%;
    width: 380px;
    opacity: 0;
    animation: heroOrnamentFloat 1.2s var(--ease-out) 0.4s forwards,
               heroFloat1 8s ease-in-out 2s infinite;
}

/* Cercles concentriques — haut gauche */
.hero-ornament--2 {
    top: 5%;
    left: 3%;
    width: 280px;
    opacity: 0;
    animation: heroOrnamentFloat 1.2s var(--ease-out) 0.6s forwards,
               heroFloat2 10s ease-in-out 2s infinite;
}

/* Petit ornement — bas gauche */
.hero-ornament--3 {
    bottom: 12%;
    left: 12%;
    width: 100px;
    opacity: 0;
    animation: heroOrnamentFloat 1.2s var(--ease-out) 0.8s forwards,
               heroFloat3 7s ease-in-out 2s infinite;
}

.hero-container {
    position: relative;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* ----- Hero Visual (image Narbonne) ----- */
.hero-visual {
    position: relative;
    justify-self: end;
    opacity: 0;
    transform: translateX(30px);
    animation: heroVisualReveal 1.2s var(--ease-out) 0.6s forwards;
}

@keyframes heroVisualReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-visual-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 3;
    border-radius: 20px 20px 20px 80px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(42, 36, 28, 0.15),
        0 12px 30px rgba(198, 166, 100, 0.1);
}

.hero-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(198, 166, 100, 0.08) 0%, transparent 50%),
        linear-gradient(to bottom, transparent 60%, rgba(42, 36, 28, 0.15) 100%);
    pointer-events: none;
}

/* Bordure décorative décalée */
.hero-visual-border {
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 1.5px solid var(--color-gold-light);
    border-radius: 20px 20px 20px 80px;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

/* Badge sur l'image */
.hero-visual-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    z-index: 3;
}

.hero-visual-badge-text {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.04em;
}

.hero-visual-badge-sep {
    display: block;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-visual-badge-year {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
}

/* Eyebrow avec lignes */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero-collab {
    margin-top: -0.45rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-text-light);
    max-width: 460px;
    width: 100%;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out) 0.38s forwards;
}

.hero-eyebrow-line {
    display: block;
    width: 35px;
    height: 1px;
    background-color: var(--color-gold-light);
    flex-shrink: 0;
}

/* Titre principal — PLUS GROS */
.hero-title {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.0;
    color: var(--color-text);
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: heroTitleReveal 1s var(--ease-out) forwards;
}

.hero-title-line:nth-child(1) {
    font-size: clamp(3.2rem, 6.5vw, 5.5rem);
    animation-delay: 0.5s;
}

.hero-title-line:nth-child(2) {
    font-size: clamp(4.2rem, 9vw, 7.5rem);
    animation-delay: 0.75s;
    margin-top: -0.05em;
}

.hero-title-accent {
    color: var(--color-gold);
    font-weight: 400;
    font-style: italic;
    position: relative;
}

/* Séparateur décoratif */
.hero-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out) 1s forwards;
}

.hero-separator-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

.hero-separator-diamond {
    display: block;
    width: 7px;
    height: 7px;
    background-color: var(--color-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(198, 166, 100, 0.3);
}

/* Sous-titre */
.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--color-text-light);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out) 1.1s forwards;
}

/* Description */
.hero-description {
    font-size: 1.02rem;
    line-height: 1.95;
    color: var(--color-text-light);
    max-width: 530px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out) 1.25s forwards;
}

/* Boutons CTA */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding-top: 0.8rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out) 1.4s forwards;
}

.hero-actions .btn {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    padding: 0.88rem 1.9rem;
}

.hero-actions .btn-arrow {
    width: 14px;
    height: 14px;
}

/* ============================================================
   HERO PAGE (pages intérieures)
   ============================================================ */
.hero-page {
    position: relative;
    padding: calc(var(--header-height) + 4rem) 3rem 4rem;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image de fond */
.hero-page-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-page-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

.hero-page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(42, 36, 28, 0.78) 0%,
            rgba(42, 36, 28, 0.7) 50%,
            rgba(42, 36, 28, 0.82) 100%
        );
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
}

/* Ornement */
.hero-page-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    pointer-events: none;
    color: var(--color-gold-light);
    z-index: 1;
    opacity: 0.35;
}

.hero-page-ornament svg {
    width: 100%;
    height: auto;
}

/* Container */
.hero-page-container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 700px;
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

/* Breadcrumb */
.hero-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.hero-page-breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

.hero-page-breadcrumb a:hover {
    color: var(--color-gold-light);
}

.hero-page-breadcrumb span {
    color: rgba(255, 255, 255, 0.65);
}

.hero-page-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.25) !important;
    font-size: 0.7rem;
}

/* Titre */
.hero-page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}

.hero-page-title em {
    font-style: italic;
    color: var(--color-gold-light);
    font-weight: 400;
}

/* Sous-titre */
.hero-page-subtitle {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
}

/* Ornement ligne + diamant */
.hero-page-ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 0.8rem;
}

.hero-page-orn-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 166, 100, 0.4));
}

.hero-page-orn-line:last-child {
    background: linear-gradient(90deg, rgba(198, 166, 100, 0.4), transparent);
}

.hero-page-orn-diamond {
    display: block;
    width: 5px;
    height: 5px;
    background-color: var(--color-gold-light);
    transform: rotate(45deg);
    opacity: 0.6;
}


/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.1rem 2.6rem;
    border-radius: 0;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.btn:hover::before {
    opacity: 1;
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.4s var(--ease-out);
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border: 1.5px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(198, 166, 100, 0.3);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 166, 100, 0.1);
}

/* ----- Scroll Indicator ----- */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 2s forwards;
    z-index: 2;
}

.scroll-indicator-text {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-indicator-line {
    display: block;
    width: 1px;
    height: 45px;
    background: linear-gradient(to bottom, var(--color-gold-light), transparent);
    animation: scrollPulse 2s var(--ease-in-out) infinite 2.8s;
}



/* ============================================================
   SECTION PRÉSENTATION (ABOUT)
   ============================================================ */
.about {
    position: relative;
    padding: 8rem 3rem 9rem;
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(198, 166, 100, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 50% 30% at 80% 70%, rgba(198, 166, 100, 0.03) 0%, transparent 70%),
        linear-gradient(
        180deg,
        var(--color-cream) 0%,
            var(--color-white) 12%,
            #fdfcfa 50%,
            var(--color-white) 88%,
        var(--color-cream) 100%
    );
    overflow: hidden;
}

/* Texture grain */
.about-grain {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* ----- Ornements floraux ----- */
.about-deco {
    position: absolute;
    pointer-events: none;
    color: var(--color-gold-light);
    z-index: 0;
}

.about-deco--left {
    top: 3%;
    left: -30px;
    width: 280px;
    opacity: 0.55;
    transform: rotate(-10deg);
}

.about-deco--right {
    bottom: 5%;
    right: -30px;
    width: 260px;
    opacity: 0.45;
    transform: rotate(12deg) scaleX(-1);
}

.about-deco svg {
    width: 100%;
    height: auto;
}

/* Lignes dorées verticales */
.about-gold-line {
    position: absolute;
    width: 1px;
    top: 10%;
    bottom: 10%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--color-gold-light) 25%,
        var(--color-gold) 50%,
        var(--color-gold-light) 75%,
        transparent 100%
    );
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.about-gold-line--left {
    left: 6%;
}

.about-gold-line--right {
    right: 6%;
}

/* ----- Container ----- */
.about-container {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

/* ----- En-tête de section ----- */
.about-header {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.about-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-eyebrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.about-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.about-eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold-light);
    flex-shrink: 0;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text);
}

.about-heading em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
}

.about-heading-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

.about-heading-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.about-heading-orn-line {
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light));
}

.about-heading-orn-line:last-child {
    background: linear-gradient(90deg, var(--color-gold-light), transparent);
}

.about-heading-orn-diamond {
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(198, 166, 100, 0.25);
}

/* ----- Intro (texte + photo) ----- */
.about-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out) 0.15s, transform 0.8s var(--ease-out) 0.15s;
}

.about-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-intro-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-intro-text p {
    font-size: 0.98rem;
    line-height: 2;
    color: var(--color-text-light);
}

.about-intro-text p:first-child::first-letter {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 400;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--color-gold);
}

.about-intro-text strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Signature sous le texte */
.about-intro-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
}

.about-intro-signature-line {
    width: 40px;
    height: 1px;
    background-color: var(--color-gold-light);
}

.about-intro-signature-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
}

/* Photo frame */
.about-photo-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 200px 200px 24px 24px;
    overflow: visible;
}

.about-photo-frame img {
    width: 100%;
    height: auto;
    border-radius: 200px 200px 24px 24px;
    position: relative;
    z-index: 1;
}

.about-photo-credit {
    text-align: center;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    letter-spacing: 0.04em;
}

.about-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border-radius: 200px 200px 24px 24px;
    background: linear-gradient(
        160deg,
        var(--color-cream) 0%,
        var(--color-cream-dark) 50%,
        rgba(198, 166, 100, 0.08) 100%
    );
    border: 1.5px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.about-photo-initials {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-gold);
    opacity: 0.4;
}

.about-photo-caption {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* Cadre décoratif décalé */
.about-photo-border-deco {
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border-radius: 200px 200px 24px 24px;
    border: 1px solid var(--color-gold-light);
    opacity: 0.5;
    z-index: 0;
}

/* ----- Valeurs ----- */
.about-values {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out) 0.2s, transform 0.8s var(--ease-out) 0.2s;
}

.about-values.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-values-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.about-values-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.about-values-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.3;
}

.about-values-title em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.about-value-card {
    padding: 2.5rem 1.8rem 2.2rem;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 50px rgba(198, 166, 100, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.04);
    border-color: var(--color-gold-light);
}

/* Numéro décoratif */
.about-value-number {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--color-gold-light);
    opacity: 0.25;
    line-height: 1;
}

.about-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 166, 100, 0.1), rgba(198, 166, 100, 0.05));
    border: 1px solid rgba(198, 166, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.about-value-card:hover .about-value-icon {
    background: linear-gradient(135deg, rgba(198, 166, 100, 0.18), rgba(198, 166, 100, 0.08));
    transform: scale(1.08);
}

.about-value-icon svg {
    width: 24px;
    height: 24px;
}

.about-value-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
}

.about-value-sep {
    width: 25px;
    height: 1px;
    background-color: var(--color-gold-light);
}

.about-value-desc {
    font-size: 0.84rem;
    line-height: 1.75;
    color: var(--color-text-light);
}

/* ----- Citation mise en avant ----- */
.about-quote-block {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(
        135deg,
        rgba(198, 166, 100, 0.04) 0%,
        rgba(198, 166, 100, 0.08) 50%,
        rgba(198, 166, 100, 0.04) 100%
    );
    border-radius: 24px;
    border: 1px solid rgba(198, 166, 100, 0.15);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out) 0.2s, transform 0.8s var(--ease-out) 0.2s;
}

.about-quote-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-quote-deco {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-gold-light);
    opacity: 0.3;
}

.about-quote-deco svg {
    width: 36px;
    height: auto;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.85;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
}

.about-quote-author {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: 1.5rem;
}

/* ----- Bottom (cabinet) ----- */
.about-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out) 0.25s, transform 0.8s var(--ease-out) 0.25s;
}

.about-bottom.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-cabinet {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2.5rem 4rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.about-cabinet-ornament {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--color-gold-light);
}

.about-cabinet-orn-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light));
}

.about-cabinet-orn-line:last-child {
    background: linear-gradient(90deg, var(--color-gold-light), transparent);
}

.about-cabinet-orn-svg {
    width: 28px;
    height: 28px;
}

.about-cabinet-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}

.about-cabinet-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
}

.about-cabinet-address {
    font-size: 0.84rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-top: 0.2rem;
}


/* ============================================================
   SECTION DOMAINES D'INTERVENTION
   ============================================================ */
.domains {
    position: relative;
    padding: 9rem 3rem 10rem;
    background:
        radial-gradient(ellipse 60% 35% at 30% 20%, rgba(198, 166, 100, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 70% 80%, rgba(198, 166, 100, 0.04) 0%, transparent 70%),
        linear-gradient(
            180deg,
            var(--color-cream) 0%,
            #f7f4ef 8%,
            #faf8f4 50%,
            #f7f4ef 92%,
            var(--color-cream) 100%
        );
    overflow: hidden;
}

.domains-grain {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* Ornement central */
.domains-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    pointer-events: none;
    color: var(--color-gold-light);
    z-index: 0;
    opacity: 0.5;
}

.domains-ornament svg {
    width: 100%;
    height: auto;
}

/* Container */
.domains-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

/* ----- En-tête ----- */
.domains-header {
    text-align: center;
}

.domains-eyebrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.domains-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.domains-eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold-light);
    flex-shrink: 0;
}

.domains-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text);
}

.domains-heading em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
}

.domains-heading-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

.domains-heading-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.domains-heading-orn-line {
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light));
}

.domains-heading-orn-line:last-child {
    background: linear-gradient(90deg, var(--color-gold-light), transparent);
}

.domains-heading-orn-diamond {
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(198, 166, 100, 0.25);
}

/* ----- Grille des 2 domaines ----- */
.domains-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

/* ----- Carte domaine ----- */
.domain-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), var(--color-gold), var(--color-gold-light), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.domain-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 25px 60px rgba(198, 166, 100, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.04);
    border-color: var(--color-gold-light);
}

.domain-card:hover::before {
    opacity: 1;
}

/* Header de la carte */
.domain-card-header {
    position: relative;
    margin-bottom: 2rem;
}

.domain-card-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    color: var(--color-gold-light);
    opacity: 0.15;
    position: absolute;
    top: -1.5rem;
    right: 0;
    line-height: 1;
    pointer-events: none;
}

.domain-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 166, 100, 0.12), rgba(198, 166, 100, 0.05));
    border: 1px solid rgba(198, 166, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.domain-card-icon svg {
    width: 22px;
    height: 22px;
}

.domain-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.domain-card-title em {
    font-style: italic;
    color: var(--color-gold);
}

.domain-card-intro {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* Séparateur */
.domain-card-sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
    margin: 2rem 0;
}

/* Liste des items */
.domain-card-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.domain-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(229, 224, 216, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
    transition: color 0.3s var(--ease-out), padding-left 0.3s var(--ease-out);
}

.domain-card-item:last-child {
    border-bottom: none;
}

.domain-card-item:hover {
    color: var(--color-text);
    padding-left: 0.3rem;
}

.domain-card-item-dot {
    display: block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    background-color: var(--color-gold);
    transform: rotate(45deg);
    margin-top: 0.55rem;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.domain-card-item:hover .domain-card-item-dot {
    transform: rotate(45deg) scale(1.3);
    box-shadow: 0 0 8px rgba(198, 166, 100, 0.4);
}

/* ----- CTA bas de section ----- */
.domains-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3.5rem 3rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    position: relative;
}

.domains-cta::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(198, 166, 100, 0.2), transparent, rgba(198, 166, 100, 0.15), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.domains-cta-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--color-text-light);
    max-width: 650px;
}


/* ============================================================
   SECTION VOTRE ACCOMPAGNEMENT (PROCESS)
   ============================================================ */
.process {
    position: relative;
    padding: 9rem 3rem 10rem;
    background:
        radial-gradient(ellipse 55% 30% at 65% 25%, rgba(198, 166, 100, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 45% 35% at 35% 75%, rgba(198, 166, 100, 0.03) 0%, transparent 70%),
        linear-gradient(
            180deg,
            var(--color-cream) 0%,
            var(--color-gold-extra-light) 12%,
            var(--color-gold-extra-light) 88%,
            var(--color-cream) 100%
        );
    overflow: hidden;
}

.process-grain {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* Décos florales */
.process-deco {
    position: absolute;
    width: 220px;
    pointer-events: none;
    color: var(--color-gold-light);
    opacity: 0.6;
    z-index: 0;
}

.process-deco--left {
    top: 8%;
    left: -40px;
    transform: rotate(-15deg);
}

.process-deco--right {
    bottom: 10%;
    right: -40px;
    transform: rotate(15deg) scaleX(-1);
}

.process-deco svg {
    width: 100%;
    height: auto;
}

/* Container */
.process-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

/* ----- En-tête ----- */
.process-header {
    text-align: center;
}

.process-eyebrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.process-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.process-eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold-light);
    flex-shrink: 0;
}

.process-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text);
}

.process-heading em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
}

.process-heading-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.process-heading-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.process-heading-orn-line {
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light));
}

.process-heading-orn-line:last-child {
    background: linear-gradient(90deg, var(--color-gold-light), transparent);
}

.process-heading-orn-diamond {
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(198, 166, 100, 0.25);
}

/* ----- Timeline ----- */
.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
}

/* Ligne verticale centrale */
.process-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--color-gold-light) 8%,
        var(--color-gold) 50%,
        var(--color-gold-light) 92%,
        transparent 100%
    );
    transform-origin: top center;
}

/* ----- Étape ----- */
.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
    padding: 2rem 0;
}

/* Connecteur central (dot) */
.process-step-connector {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1.5rem;
    grid-column: 2;
    position: relative;
    z-index: 2;
}

.process-step-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 6px var(--color-gold-extra-light),
        0 0 0 8px var(--color-gold-light),
        0 8px 25px rgba(198, 166, 100, 0.25);
    flex-shrink: 0;
}

.process-step-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

/* Carte de l'étape */
.process-step-card {
    padding: 2.5rem 2.2rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    position: relative;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s var(--ease-out);
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 1.8rem;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold-light), transparent);
}

.process-step-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 50px rgba(198, 166, 100, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.04);
    border-color: var(--color-gold-light);
}

/* Positionnement gauche/droite */
.process-step--left .process-step-card {
    grid-column: 1;
    grid-row: 1;
    margin-right: 2rem;
}

.process-step--left .process-step-card::before {
    right: -30px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light));
}

.process-step--right .process-step-card {
    grid-column: 3;
    grid-row: 1;
    margin-left: 2rem;
}

.process-step--right .process-step-card::before {
    left: -30px;
    background: linear-gradient(90deg, var(--color-gold-light), transparent);
}

/* Icône de l'étape */
.process-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 166, 100, 0.1), rgba(198, 166, 100, 0.04));
    border: 1px solid rgba(198, 166, 100, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 1.3rem;
}

.process-step-icon svg {
    width: 20px;
    height: 20px;
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.process-step-desc {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--color-text-light);
}

/* ----- Bandeau Honoraires ----- */
.process-fees {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3.5rem 3rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.process-fees::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(160deg, transparent, rgba(198, 166, 100, 0.2), transparent, rgba(198, 166, 100, 0.12), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.process-fees-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 166, 100, 0.12), rgba(198, 166, 100, 0.04));
    border: 1px solid rgba(198, 166, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.process-fees-icon svg {
    width: 24px;
    height: 24px;
}

.process-fees-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--color-text);
}

.process-fees-text {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--color-text-light);
    max-width: 650px;
}

.process-fees-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-gold-dark);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--color-gold-light);
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.process-fees-link:hover {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.process-fees-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

.process-fees-link:hover svg {
    transform: translateX(3px);
}


/* ============================================================
   SECTION FAQ
   ============================================================ */
.faq {
    position: relative;
    padding: 9rem 3rem 10rem;
    background:
        radial-gradient(ellipse 50% 30% at 50% 15%, rgba(198, 166, 100, 0.04) 0%, transparent 70%),
        linear-gradient(
            180deg,
            var(--color-cream) 0%,
            #f7f4ef 10%,
            #faf8f4 50%,
            #f7f4ef 90%,
            var(--color-cream) 100%
        );
    overflow: hidden;
}

/* Décos florales */
.faq-deco {
    position: absolute;
    width: 180px;
    pointer-events: none;
    color: var(--color-gold-light);
    opacity: 0.55;
    z-index: 0;
}

.faq-deco--left {
    top: 10%;
    left: -30px;
    transform: rotate(-18deg);
}

.faq-deco--right {
    bottom: 12%;
    right: -30px;
    transform: rotate(18deg) scaleX(-1);
}

.faq-deco svg {
    width: 100%;
    height: auto;
}

/* Container */
.faq-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
    position: relative;
    z-index: 1;
}

/* ----- En-tête ----- */
.faq-header {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.faq-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-eyebrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.faq-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.faq-eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold-light);
    flex-shrink: 0;
}

.faq-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text);
}

.faq-heading em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
}

.faq-heading-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    line-height: 1.7;
}

.faq-heading-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.faq-heading-orn-line {
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light));
}

.faq-heading-orn-line:last-child {
    background: linear-gradient(90deg, var(--color-gold-light), transparent);
}

.faq-heading-orn-diamond {
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(198, 166, 100, 0.25);
}

/* ----- Accordion ----- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out) 0.15s, transform 0.8s var(--ease-out) 0.15s;
}

.faq-list.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

/* Question (summary) */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.6rem 0.5rem;
    cursor: pointer;
    list-style: none;
    transition: padding-left 0.35s var(--ease-out);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    content: '';
}

.faq-question:hover {
    padding-left: 0.5rem;
}

.faq-question-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
    transition: color 0.3s var(--ease-out);
}

.faq-question:hover .faq-question-text {
    color: var(--color-gold-dark);
}

/* Icône + / × */
.faq-question-icon {
    position: relative;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-gold-light);
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.faq-question-icon::before,
.faq-question-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--color-gold);
    border-radius: 1px;
    transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}

/* Barre horizontale */
.faq-question-icon::before {
    width: 12px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

/* Barre verticale */
.faq-question-icon::after {
    width: 1.5px;
    height: 12px;
    transform: translate(-50%, -50%);
}

/* État ouvert */
.faq-item[open] .faq-question-icon {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: rotate(45deg);
}

.faq-item[open] .faq-question-icon::before,
.faq-item[open] .faq-question-icon::after {
    background-color: #fff;
}

.faq-item[open] .faq-question-text {
    color: var(--color-gold-dark);
}

/* Réponse */
.faq-answer {
    padding: 0 0.5rem 1.8rem 0.5rem;
    animation: faqReveal 0.4s var(--ease-out) forwards;
}

@keyframes faqReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--color-text-light);
    max-width: 700px;
}

.faq-answer strong {
    color: var(--color-text);
    font-weight: 600;
}


/* ============================================================
   SECTION CTA RÉSERVATION
   ============================================================ */
.cta-section {
    position: relative;
    padding: 8rem 3rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

/* Image de fond */
.cta-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.cta-section-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(42, 36, 28, 0.82) 0%,
            rgba(42, 36, 28, 0.75) 50%,
            rgba(42, 36, 28, 0.85) 100%
        );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Ornement */
.cta-section-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    pointer-events: none;
    color: var(--color-gold-light);
    z-index: 1;
    opacity: 0.3;
}

.cta-section-ornament svg {
    width: 100%;
    height: auto;
}

/* Container */
.cta-section-container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 640px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.cta-section-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold-light);
}

.cta-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}

.cta-section-heading em {
    font-style: italic;
    color: var(--color-gold-light);
    font-weight: 400;
}

.cta-section-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
}

/* Actions */
.cta-section-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Bouton principal clair (sur fond sombre) */
.btn-primary--light {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
}

.btn-primary--light:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: #fff;
}

/* Lien téléphone */
.cta-section-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.cta-section-phone:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.cta-section-phone svg {
    width: 16px;
    height: 16px;
}

/* Info bas */
.cta-section-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    justify-content: center;
}

.cta-section-info-sep {
    color: var(--color-gold-light);
    opacity: 0.5;
}


/* ============================================================
   SPÉCIALITÉS (page dédiée)
   ============================================================ */
.spec {
    position: relative;
    padding: 6rem 3rem 7rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 45% at 80% 20%, rgba(198, 166, 100, 0.04) 0%, transparent 70%),
        linear-gradient(
            175deg,
            var(--color-cream) 0%,
            var(--color-gold-extra-light) 40%,
            var(--color-cream) 100%
        );
}

/* Ornement floral */
.spec-deco--right {
    position: absolute;
    top: 5%;
    right: -3%;
    width: 280px;
    pointer-events: none;
    color: var(--color-gold-light);
    opacity: 0.2;
}

.spec-deco--right svg {
    width: 100%;
    height: auto;
}

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

/* Introduction */
.spec-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.spec-intro-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.spec-intro-text strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Bloc spécialité */
.spec-block {
    margin-bottom: 2rem;
}

.spec-block-header {
    text-align: center;
    margin-bottom: 3rem;
}

.spec-block-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.spec-block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-extra-light), rgba(255, 255, 255, 0.8));
    border: 1px solid var(--color-gold-light);
}

.spec-block-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-gold-dark);
}

.spec-block-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.spec-block-title span {
    color: var(--color-gold);
    font-style: italic;
}

.spec-block-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* Liste des prestations */
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.spec-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.3rem 1.8rem;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.3s var(--ease-out);
}

.spec-list-item:first-child {
    border-top: 1px solid var(--color-border);
}

.spec-list-item:hover {
    background-color: rgba(198, 166, 100, 0.04);
}

.spec-list-bullet {
    display: block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    margin-top: 0.55rem;
    background-color: var(--color-gold);
    border-radius: 50%;
    opacity: 0.5;
}

.spec-list-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 0.2rem;
}

.spec-list-detail {
    display: block;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Séparateur entre blocs */
.spec-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 3.5rem 0;
}

.spec-divider-line {
    display: block;
    width: 50px;
    height: 1px;
    background: var(--color-gold-light);
    opacity: 0.4;
}

.spec-divider-diamond {
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    transform: rotate(45deg);
    opacity: 0.4;
}

/* Encart de conclusion */
.spec-closing {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, var(--color-gold-extra-light), rgba(255, 255, 255, 0.6));
    border: 1px solid var(--color-gold-light);
    border-radius: 20px;
}

.spec-closing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-border);
}

.spec-closing-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.spec-closing-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 540px;
    margin: 0 auto 2rem;
}

.spec-closing-text strong {
    color: var(--color-text);
    font-weight: 600;
}

.spec-closing-btn {
    margin: 0 auto;
}


/* ============================================================
   BOOKING (page réservation)
   ============================================================ */
.booking {
    padding: 6rem 3rem 7rem;
    background:
        radial-gradient(ellipse 55% 40% at 70% 15%, rgba(198, 166, 100, 0.04) 0%, transparent 70%),
        linear-gradient(
            175deg,
            var(--color-cream) 0%,
            var(--color-gold-extra-light) 40%,
            var(--color-cream) 100%
        );
}

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

/* Intro */
.booking-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.booking-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 1.2rem;
}

.booking-heading em {
    font-style: italic;
    color: var(--color-gold);
}

.booking-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 580px;
    margin: 0 auto;
}

/* 3 infos pratiques */
.booking-infos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.booking-info {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.booking-info:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 8px 30px rgba(198, 166, 100, 0.08);
}

.booking-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-extra-light), rgba(255, 255, 255, 0.8));
    border: 1px solid var(--color-gold-light);
}

.booking-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-gold-dark);
}

.booking-info-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.6rem;
}

.booking-info-text {
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

/* Calendriers Cal.com */
.booking-calendars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.booking-calendar-selector {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    width: fit-content;
}

.booking-mode-btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.62rem 1rem;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
    background: transparent;
    transition: all 0.3s var(--ease-out);
}

.booking-mode-btn:hover {
    color: var(--color-gold-dark);
}

.booking-mode-btn.is-active {
    color: var(--color-white);
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 6px 16px rgba(198, 166, 100, 0.25);
}

.booking-calendar {
    padding: 1.4rem;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
}

.booking-calendar.is-hidden {
    display: none;
}

.booking-calendar-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.booking-calendar-embed {
    height: 820px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

/* Encart honoraires */
.booking-fees {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--color-gold-extra-light), rgba(255, 255, 255, 0.5));
    border: 1px solid var(--color-gold-light);
    border-radius: 16px;
    margin-bottom: 3rem;
}

.booking-fees-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-border);
}

.booking-fees-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.booking-fees-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.booking-fees-text {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--color-text-light);
}

.booking-fees-text strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Contact alternatif */
.booking-alt {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.booking-alt-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.booking-alt-btn {
    font-size: 0.85rem;
}


/* ============================================================
   CONTACT (page contact)
   ============================================================ */
.contact-section {
    padding: 6rem 3rem 0;
    background:
        radial-gradient(ellipse 50% 40% at 20% 15%, rgba(198, 166, 100, 0.04) 0%, transparent 70%),
        linear-gradient(
            175deg,
            var(--color-cream) 0%,
            var(--color-gold-extra-light) 40%,
            var(--color-cream) 100%
        );
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
}

/* ----- Colonne gauche : Coordonnées ----- */
.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-card {
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-card:first-child {
    padding-top: 0;
}

.contact-card:last-child {
    border-bottom: none;
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 0.8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-extra-light), rgba(255, 255, 255, 0.8));
    border: 1px solid var(--color-gold-light);
}

.contact-card-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold-dark);
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.contact-card-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--color-text-light);
    font-style: normal;
}

.contact-card-sub {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 0.3rem;
}

.contact-card-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-gold-dark);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

.contact-card-link:hover {
    color: var(--color-gold);
}

/* ----- Colonne droite : Formulaire ----- */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.8rem 3rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.contact-form-header {
    margin-bottom: 2.5rem;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.contact-form-title em {
    font-style: italic;
    color: var(--color-gold);
}

.contact-form-subtitle {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* Form rows */
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-form-row .contact-field {
    margin-bottom: 0;
}

.contact-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text);
}

.contact-label span {
    color: var(--color-gold);
}

.contact-input {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.contact-input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.contact-input:focus {
    border-color: var(--color-gold-light);
    box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.1);
}

.contact-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7060' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Footer formulaire */
.contact-form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-form-notice {
    font-size: 0.72rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 400px;
}

.contact-submit {
    align-self: flex-start;
}

/* ----- Carte / Map ----- */
.contact-map {
    max-width: 1100px;
    margin: 4rem auto 2rem;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 30px rgba(42, 36, 28, 0.06);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}


/* ============================================================
   LEGAL (mentions légales)
   ============================================================ */
.legal {
    padding: 5rem 3rem 6rem;
    background:
        linear-gradient(
            175deg,
            var(--color-cream) 0%,
            var(--color-gold-extra-light) 40%,
            var(--color-cream) 100%
        );
}

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

.legal-block {
    margin-bottom: 3rem;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.legal-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.legal-content strong {
    color: var(--color-text);
    font-weight: 600;
}

.legal-content a {
    color: var(--color-gold-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--color-gold-light);
    transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.legal-content a:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.legal-address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-text-light);
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

.legal-update {
    margin-top: 1rem;
    font-size: 0.8rem !important;
    font-style: italic;
    color: var(--color-text-muted) !important;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: #2a241c;
    color: rgba(255, 255, 255, 0.6);
    padding: 5rem 3rem 0;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* Colonne brand */
.footer-col--brand {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    padding-right: 2rem;
}

.footer-logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s var(--ease-out);
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
}

/* Titres de colonnes */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1.5px;
    background: var(--color-gold);
    border-radius: 2px;
}

/* Liens */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s var(--ease-out), padding-left 0.3s var(--ease-out);
    line-height: 1.5;
}

.footer-link:hover {
    color: var(--color-gold-light);
    padding-left: 0.3rem;
}

/* Adresse */
.footer-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-address p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.footer-address p:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Séparateur */
.footer-sep {
    max-width: 1180px;
    margin: 3.5rem auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 166, 100, 0.2), transparent);
}

/* Bas du footer */
.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.5rem 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.02em;
}

.footer-legal-link {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
    letter-spacing: 0.02em;
}

.footer-legal-link:hover {
    color: var(--color-gold-light);
}


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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroLineReveal {
    from {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }
    to {
        opacity: 0.4;
        transform: scaleY(1);
        transform-origin: top;
    }
}

@keyframes heroOrnamentFloat {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 0.6;
        transform: scale(1) translateY(0);
    }
}

/* Mouvements flottants subtils (infinis) */
@keyframes heroFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-12px) rotate(1.5deg); }
}

@keyframes heroFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(8px) rotate(-1deg); }
}

@keyframes heroFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-6px) rotate(2deg); }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.3);
        transform-origin: top;
    }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ----- Tablet (max 1024px) ----- */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }

    .nav-list {
        gap: 2rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .hero {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-ornament--1 {
        right: -8%;
        width: 300px;
    }

    .hero-ornament--2 {
        width: 220px;
        left: 1%;
    }

    .hero-ornament--3 {
        width: 80px;
    }

    .hero-gold-line {
        left: 4%;
    }

    .hero-container {
        gap: 2.5rem;
    }

    .hero-visual {
        display:none;
    }
    
    .hero-visual-frame {
        max-width: 400px;
    }

    .hero-visual-border {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }

    /* Hero page tablet */
    .hero-page {
        padding: calc(var(--header-height) + 3rem) 2rem 3rem;
        min-height: 280px;
    }

    .hero-page-ornament {
        width: 260px;
    }

    /* About tablet */
    .about {
        padding: 6rem 2rem 7rem;
    }

    .about-container {
        gap: 5rem;
    }

    .about-gold-line {
        display: none;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro {
        gap: 3.5rem;
    }

    .about-deco--left {
        width: 220px;
        left: -40px;
    }

    .about-deco--right {
        width: 200px;
        right: -40px;
    }

    .about-quote-block {
        padding: 3rem 2rem;
    }

    .about-cabinet {
        padding: 2rem 2.5rem;
    }

    /* Domains tablet */
    .domains {
        padding: 7rem 2rem 8rem;
    }

    .domains-container {
        gap: 4rem;
    }

    .domains-ornament {
        width: 450px;
    }

    .domain-card {
        padding: 2.5rem 2rem;
    }

    .domains-cta {
        padding: 2.5rem 2rem;
    }

    /* Process tablet */
    .process {
        padding: 7rem 2rem 8rem;
    }

    .process-container {
        gap: 4rem;
    }

    .process-step-card {
        padding: 2rem 1.8rem;
    }

    .process-fees {
        padding: 2.5rem 2rem;
    }

    .process-deco--left {
        width: 180px;
        left: -35px;
    }

    .process-deco--right {
        width: 170px;
        right: -35px;
    }

    /* FAQ tablet */
    .faq {
        padding: 7rem 2rem 8rem;
    }

    .faq-container {
        gap: 3.5rem;
    }

    /* CTA tablet */
    .cta-section {
        padding: 6rem 2rem;
        min-height: 450px;
    }

    .cta-section-ornament {
        width: 320px;
    }

    /* Spec tablet */
    .spec {
        padding: 5rem 2rem 6rem;
    }

    .spec-deco--right {
        width: 220px;
        right: -5%;
    }

    .spec-list-item {
        padding: 1.1rem 1.4rem;
    }

    /* Booking tablet */
    .booking {
        padding: 5rem 2rem 6rem;
    }

    .booking-infos {
        gap: 1.5rem;
    }

    .booking-info {
        padding: 1.5rem 1.2rem;
    }

    .booking-fees {
        padding: 1.8rem 2rem;
    }

    /* Contact tablet */
    .contact-section {
        padding: 5rem 2rem 0;
    }

    .contact-container {
        grid-template-columns: 280px 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2.2rem 2.2rem;
    }

    .contact-map {
        margin-top: 3rem;
        height: 340px;
    }

    /* Legal tablet */
    .legal {
        padding: 4rem 2rem 5rem;
    }

    /* Footer tablet */
    .footer {
        padding: 4rem 2rem 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

/* ----- Mobile (max 768px) ----- */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .logo img {
        height: 39px;
    }

    .header.scrolled .logo img {
        height: 35px;
    }

    /* Cacher nav desktop, montrer burger */
    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* Hero mobile */
    .hero {
        padding: calc(var(--header-height) + 2.5rem) 1.5rem 4rem;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-content {
        gap: 1.4rem;
        align-items: center;
    }

    .hero-visual {
        justify-self: center;
        order: -1;
    }

    .hero-visual-frame {
        max-width: 340px;
        border-radius: 16px 16px 16px 50px;
    }

    .hero-visual-border {
        border-radius: 16px 16px 16px 50px;
        top: 8px;
        left: 8px;
        right: -8px;
        bottom: -8px;
    }

    .hero-visual-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
    }

    .hero-ornament--1 {
        top: 5%;
        right: -15%;
        width: 250px;
    }

    .hero-ornament--2 {
        width: 180px;
        top: 2%;
        left: -5%;
    }

    .hero-ornament--3 {
        display: none;
    }

    .hero-gold-line {
        display: none;
    }

    .hero-description br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .hero-actions .btn {
        padding: 0.8rem 1.45rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Hero page mobile */
    .hero-page {
        padding: calc(var(--header-height) + 2.5rem) 1.5rem 3rem;
        min-height: 260px;
    }

    .hero-page-title {
        font-size: clamp(1.7rem, 6vw, 2.3rem);
    }

    .hero-page-subtitle {
        font-size: 0.85rem;
    }

    .hero-page-ornament {
        width: 220px;
        opacity: 0.25;
    }

    /* Menu mobile ajustements */
    .mobile-nav-link {
        font-size: 1.8rem;
    }

    /* About mobile */
    .about {
        padding: 5rem 1.5rem 6rem;
    }

    .about-container {
        gap: 4rem;
    }

    .about-heading {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-intro-visual {
        order: -1;
    }

    .about-intro-text p:first-child::first-letter {
        font-size: 2.6rem;
    }

    .about-photo-frame {
        max-width: 260px;
    }

    .about-photo-frame img {
        border-radius: 140px 140px 20px 20px;
    }

    .about-photo-placeholder {
        border-radius: 140px 140px 20px 20px;
    }

    .about-photo-border-deco {
        border-radius: 140px 140px 20px 20px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-value-card {
        padding: 2rem 1.2rem;
        border-radius: 16px;
    }

    .about-value-number {
        font-size: 1.8rem;
    }

    .about-quote-block {
        padding: 2.5rem 1.5rem;
    }

    .about-quote {
        font-size: clamp(1.05rem, 3.5vw, 1.3rem);
    }

    .about-cabinet {
        padding: 2rem 1.5rem;
    }

    .about-cabinet-name {
        font-size: 1.2rem;
    }

    .about-deco--left {
        width: 180px;
        top: 1%;
        left: -50px;
    }

    .about-deco--right {
        width: 160px;
        bottom: 2%;
        right: -50px;
    }

    .about-eyebrow-line {
        width: 25px;
    }

    /* Domains mobile */
    .domains {
        padding: 5rem 1.5rem 6rem;
    }

    .domains-container {
        gap: 3.5rem;
    }

    .domains-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .domains-ornament {
        width: 350px;
        opacity: 0.35;
    }

    .domains-heading {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .domain-card {
        padding: 2.2rem 1.5rem;
        border-radius: 20px;
    }

    .domain-card-number {
        font-size: 3.5rem;
    }

    .domain-card-title {
        font-size: clamp(1.2rem, 4.5vw, 1.5rem);
    }

    .domains-cta {
        padding: 2.5rem 1.5rem;
    }

    .domains-eyebrow-line {
        width: 25px;
    }

    /* Process mobile */
    .process {
        padding: 5rem 1.5rem 6rem;
    }

    .process-container {
        gap: 3.5rem;
    }

    .process-heading {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .process-eyebrow-line {
        width: 25px;
    }

    /* Timeline → layout vertical aligné à gauche */
    .process-line {
        left: 22px;
        transform: none;
    }

    .process-step {
        display: flex;
        gap: 0;
        padding: 1.5rem 0;
    }

    .process-step-connector {
        padding-top: 2rem;
        flex-shrink: 0;
        width: 44px;
    }

    .process-step--left .process-step-card,
    .process-step--right .process-step-card {
        grid-column: unset;
        grid-row: unset;
        margin-left: 1.5rem;
        margin-right: 0;
    }

    .process-step-card::before {
        display: none;
    }

    .process-step-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .process-step-dot {
        width: 38px;
        height: 38px;
    }

    .process-step-number {
        font-size: 0.95rem;
    }

    .process-fees {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .process-deco--left {
        width: 150px;
        left: -45px;
    }

    .process-deco--right {
        width: 140px;
        right: -45px;
    }

    /* FAQ mobile */
    .faq {
        padding: 5rem 1.5rem 6rem;
    }

    .faq-container {
        gap: 3rem;
    }

    .faq-heading {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .faq-eyebrow-line {
        width: 25px;
    }

    .faq-question {
        padding: 1.4rem 0.3rem;
    }

    .faq-question-text {
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 0.3rem 1.5rem 0.3rem;
    }

    .faq-deco--left {
        width: 130px;
        left: -35px;
    }

    .faq-deco--right {
        width: 120px;
        right: -35px;
    }

    /* CTA mobile */
    .cta-section {
        padding: 5rem 1.5rem;
        min-height: 420px;
    }

    .cta-section-heading {
        font-size: clamp(1.7rem, 6vw, 2.3rem);
    }

    .cta-section-text {
        font-size: 0.88rem;
    }

    .cta-section-ornament {
        width: 280px;
        opacity: 0.2;
    }

    .cta-section-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-section-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-section-phone {
        width: 100%;
        justify-content: center;
    }

    .cta-section-info {
        flex-direction: column;
        gap: 0.2rem;
    }

    .cta-section-info-sep {
        display: none;
    }

    /* Spec mobile */
    .spec {
        padding: 4rem 1.5rem 5rem;
    }

    .spec-deco--right {
        display: none;
    }

    .spec-intro {
        margin-bottom: 3.5rem;
    }

    .spec-intro-text {
        font-size: 0.95rem;
    }

    .spec-block-header {
        margin-bottom: 2.5rem;
    }

    .spec-block-title {
        font-size: 1.4rem;
    }

    .spec-list-item {
        padding: 1rem 1rem;
        gap: 1rem;
    }

    .spec-list-item strong {
        font-size: 0.95rem;
    }

    .spec-list-detail {
        font-size: 0.78rem;
    }

    .spec-divider {
        padding: 2.5rem 0;
    }

    .spec-closing {
        margin-top: 3rem;
        padding: 2.5rem 1.5rem;
    }

    /* Booking mobile */
    .booking {
        padding: 4rem 1.5rem 5rem;
    }

    .booking-intro {
        margin-bottom: 3rem;
    }

    .booking-heading {
        font-size: 1.5rem;
    }

    .booking-text {
        font-size: 0.88rem;
    }

    .booking-infos {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 3rem;
    }

    .booking-info {
        padding: 1.5rem;
    }

    .booking-calendars-grid {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .booking-calendar-selector {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
    }

    .booking-mode-btn {
        flex: 1 1 auto;
        padding: 0.58rem 0.8rem;
        font-size: 0.72rem;
    }

    .booking-calendar {
        padding: 1rem;
        border-radius: 16px;
    }

    .booking-calendar-title {
        font-size: 1.2rem;
    }

    .booking-calendar-embed {
        height: 740px;
        border-radius: 12px;
    }

    .booking-fees {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .booking-fees-text {
        font-size: 0.85rem;
    }

    /* Contact mobile */
    .contact-section {
        padding: 4rem 1.5rem 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-aside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 2rem;
    }

    .contact-card {
        padding: 1.4rem 0;
    }

    .contact-form-wrapper {
        padding: 2rem 1.8rem;
        border-radius: 16px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-row .contact-field {
        margin-bottom: 1.5rem;
    }

    .contact-form-title {
        font-size: 1.4rem;
    }

    .contact-map {
        margin-top: 3rem;
        height: 300px;
        border-radius: 16px;
    }

    /* Legal mobile */
    .legal {
        padding: 3.5rem 1.5rem 4.5rem;
    }

    .legal-block {
        margin-bottom: 2.5rem;
    }

    .legal-heading {
        font-size: 1.15rem;
    }

    .legal-content p {
        font-size: 0.85rem;
    }

    .legal-address {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Footer mobile */
    .footer {
        padding: 3.5rem 1.5rem 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
        padding: 1.3rem 0 1.8rem;
    }
}

/* ----- Small Mobile (max 480px) ----- */
@media (max-width: 480px) {
    .header-container {
        padding: 0 1.2rem;
    }

    .logo img {
        height: 33px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 2rem);
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-visual-frame {
        max-width: 280px;
        border-radius: 14px 14px 14px 40px;
    }

    .hero-visual-border {
        display: none;
    }

    .hero-visual-badge {
        padding: 0.4rem 0.8rem;
        bottom: 0.8rem;
        left: 0.8rem;
    }

    .hero-visual-badge-text {
        font-size: 0.72rem;
    }

    .hero-visual-badge-year {
        font-size: 0.65rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
    }

    .hero-collab {
        margin-top: -0.25rem;
        font-size: 0.66rem;
        letter-spacing: 0.06em;
        line-height: 1.45;
        max-width: 320px;
    }

    .hero-eyebrow-line {
        width: 20px;
    }

    .hero-separator-line {
        width: 30px;
    }

    .hero-ornament--1 {
        width: 200px;
        right: -20%;
    }

    .hero-ornament--2 {
        display: none;
    }

    .mobile-nav-link {
        font-size: 1.5rem;
        padding: 0.5rem 0.8rem;
    }

    .mobile-menu-address {
        font-size: 0.7rem;
    }

    /* Hero page small mobile */
    .hero-page {
        padding: calc(var(--header-height) + 2rem) 1.2rem 2.5rem;
        min-height: 220px;
    }

    .hero-page-title {
        font-size: 1.6rem;
    }

    .hero-page-subtitle {
        font-size: 0.8rem;
    }

    .hero-page-ornament {
        width: 180px;
    }

    .hero-page-breadcrumb {
        font-size: 0.68rem;
    }

    .hero-page-orn-line {
        width: 28px;
    }

    /* About small mobile */
    .about {
        padding: 4rem 1.2rem 5rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-value-card {
        flex-direction: row;
        text-align: left;
        gap: 1.2rem;
        padding: 1.5rem;
    }

    .about-value-number {
        display: none;
    }

    .about-value-icon {
        flex-shrink: 0;
    }

    .about-value-sep {
        display: none;
    }

    .about-value-name {
        font-size: 1.05rem;
    }

    .about-value-desc {
        font-size: 0.78rem;
    }

    .about-heading br {
        display: none;
    }

    .about-values-title br {
        display: none;
    }

    .about-cabinet-name {
        font-size: 1.05rem;
    }

    .about-cabinet {
        padding: 1.8rem 1.2rem;
    }

    .about-cabinet-ornament {
        display: none;
    }

    .about-quote-block {
        padding: 2rem 1.2rem;
        border-radius: 16px;
    }

    .about-deco {
        display: none;
    }

    .about-photo-border-deco {
        display: none;
    }

    /* Domains small mobile */
    .domains {
        padding: 4rem 1.2rem 5rem;
    }

    .domains-heading br {
        display: none;
    }

    .domains-ornament {
        display: none;
    }

    .domain-card {
        padding: 2rem 1.2rem;
        border-radius: 16px;
    }

    .domain-card-number {
        font-size: 2.8rem;
        top: -0.8rem;
    }

    .domain-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 1rem;
    }

    .domain-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .domain-card-item {
        font-size: 0.84rem;
        padding: 0.7rem 0;
        gap: 0.8rem;
    }

    .domain-card-item-dot {
        width: 5px;
        height: 5px;
        min-width: 5px;
    }

    .domains-cta {
        padding: 2rem 1.2rem;
        border-radius: 16px;
    }

    .domains-cta-text {
        font-size: 0.88rem;
    }

    /* Process small mobile */
    .process {
        padding: 4rem 1.2rem 5rem;
    }

    .process-heading br {
        display: none;
    }

    .process-deco {
        display: none;
    }

    .process-line {
        left: 18px;
    }

    .process-step-connector {
        width: 36px;
    }

    .process-step-dot {
        width: 34px;
        height: 34px;
        box-shadow:
            0 0 0 4px var(--color-gold-extra-light),
            0 0 0 6px var(--color-gold-light),
            0 5px 15px rgba(198, 166, 100, 0.2);
    }

    .process-step-number {
        font-size: 0.85rem;
    }

    .process-step--left .process-step-card,
    .process-step--right .process-step-card {
        margin-left: 1.2rem;
    }

    .process-step-card {
        padding: 1.8rem 1.2rem;
        border-radius: 14px;
    }

    .process-step-title {
        font-size: 1.15rem;
    }

    .process-step-desc {
        font-size: 0.84rem;
    }

    .process-step-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .process-step-icon svg {
        width: 18px;
        height: 18px;
    }

    .process-fees {
        padding: 2rem 1.2rem;
        border-radius: 16px;
    }

    .process-fees-icon {
        width: 46px;
        height: 46px;
    }

    .process-fees-icon svg {
        width: 20px;
        height: 20px;
    }

    .process-fees-text {
        font-size: 0.84rem;
    }

    .process-fees-link {
        font-size: 0.8rem;
    }

    /* FAQ small mobile */
    .faq {
        padding: 4rem 1.2rem 5rem;
    }

    .faq-deco {
        display: none;
    }

    .faq-question {
        padding: 1.2rem 0;
        gap: 1rem;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-question-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }

    .faq-question-icon::before {
        width: 10px;
    }

    .faq-question-icon::after {
        height: 10px;
    }

    .faq-answer {
        padding: 0 0 1.3rem 0;
    }

    .faq-answer p {
        font-size: 0.84rem;
    }

    /* CTA small mobile */
    .cta-section {
        padding: 4rem 1.2rem;
        min-height: 380px;
    }

    .cta-section-ornament {
        display: none;
    }

    .cta-section-eyebrow {
        font-size: 0.65rem;
    }

    .cta-section-text {
        font-size: 0.84rem;
    }

    .cta-section-phone {
        font-size: 0.8rem;
        padding: 0.75rem 1.2rem;
    }

    /* Spec small mobile */
    .spec {
        padding: 3.5rem 1.2rem 4rem;
    }

    .spec-intro {
        margin-bottom: 3rem;
    }

    .spec-intro-text {
        font-size: 0.88rem;
    }

    .spec-block-icon {
        width: 48px;
        height: 48px;
    }

    .spec-block-icon svg {
        width: 22px;
        height: 22px;
    }

    .spec-block-title {
        font-size: 1.25rem;
    }

    .spec-block-desc {
        font-size: 0.85rem;
    }

    .spec-list-item {
        padding: 0.9rem 0.6rem;
        gap: 0.8rem;
    }

    .spec-list-item strong {
        font-size: 0.9rem;
    }

    .spec-closing {
        padding: 2rem 1.2rem;
        border-radius: 16px;
    }

    .spec-closing-text {
        font-size: 0.88rem;
    }

    /* Booking small mobile */
    .booking {
        padding: 3.5rem 1.2rem 4rem;
    }

    .booking-intro {
        margin-bottom: 2.5rem;
    }

    .booking-heading {
        font-size: 1.35rem;
    }

    .booking-info-title {
        font-size: 1rem;
    }

    .booking-info-text {
        font-size: 0.78rem;
    }

    .booking-calendar-title {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .booking-calendar-selector {
        gap: 0.3rem;
        padding: 0.28rem;
    }

    .booking-mode-btn {
        font-size: 0.68rem;
        letter-spacing: 0.04em;
    }

    .booking-calendar-embed {
        height: 680px;
    }

    .booking-fees {
        padding: 1.5rem 1.2rem;
        border-radius: 14px;
    }

    .booking-fees-title {
        font-size: 1rem;
    }

    /* Contact small mobile */
    .contact-section {
        padding: 3rem 1.2rem 0;
    }

    .contact-aside {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-card-icon {
        width: 36px;
        height: 36px;
    }

    .contact-card-icon svg {
        width: 16px;
        height: 16px;
    }

    .contact-card-title {
        font-size: 0.95rem;
    }

    .contact-card-text,
    .contact-card-link {
        font-size: 0.82rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1.2rem;
        border-radius: 14px;
    }

    .contact-form-title {
        font-size: 1.25rem;
    }

    .contact-input {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    .contact-label {
        font-size: 0.72rem;
    }

    .contact-map {
        margin-top: 2.5rem;
        height: 250px;
        border-radius: 14px;
    }

    /* Legal small mobile */
    .legal {
        padding: 3rem 1.2rem 4rem;
    }

    .legal-block {
        margin-bottom: 2rem;
    }

    .legal-heading {
        font-size: 1.05rem;
    }

    .legal-content p {
        font-size: 0.82rem;
    }

    .legal-address {
        padding: 0.7rem 1rem;
        font-size: 0.82rem;
        border-radius: 10px;
    }

    /* Footer small mobile */
    .footer {
        padding: 3rem 1.2rem 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col--brand {
        grid-column: unset;
    }

    .footer-logo img {
        height: 32px;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    .footer-col-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-link {
        font-size: 0.82rem;
    }

    .footer-address p {
        font-size: 0.82rem;
    }

    .footer-sep {
        margin-top: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1.2rem 0 1.5rem;
    }

    .footer-copyright {
        font-size: 0.72rem;
    }

    .footer-legal-link {
        font-size: 0.72rem;
    }
}
