/* ============================================
   BS NETTOYAGE SUD — Lumière de Provence
   Warm • Fresh • Provençal • Modern
   ============================================ */

/* --- Design Tokens --- */
:root {
    --lavender: #7B6FA0;
    --lavender-light: #B8AED4;
    --lavender-soft: #EDE8F5;
    --lavender-dark: #5A4F7A;
    --lavender-glow: rgba(123,111,160,0.12);

    --gold: #C8963E;
    --gold-light: #E8C97E;
    --gold-soft: #FBF0D9;

    --sage: #7D8F72;
    --sage-light: #A8B89E;

    --cream: #FBF7EF;
    --sand: #F0E8D8;
    --stone: #DDD4C6;
    --pearl: #C8BFB2;

    --ink: #2D2926;
    --text: #4A4440;
    --text-light: #7A746D;
    --text-inverse: #FBF7EF;

    --white: #FFFFFF;

    /* Fonts */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Sizing */
    --container: 1200px;
    --container-narrow: 880px;
    --header-height: 80px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(45,41,38,0.04);
    --shadow-sm: 0 2px 8px rgba(45,41,38,0.06);
    --shadow-md: 0 4px 16px rgba(45,41,38,0.08);
    --shadow-lg: 0 8px 32px rgba(45,41,38,0.10);
    --shadow-xl: 0 16px 48px rgba(45,41,38,0.12);
    --shadow-lavender: 0 4px 24px rgba(123,111,160,0.20);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast: 150ms;
    --dur-base: 300ms;
    --dur-slow: 500ms;
}


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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

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


/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
}

h1 {
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.875rem);
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-body);
}

p {
    color: var(--text-light);
    max-width: 62ch;
}

.text-balance { text-wrap: balance; }


/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container--narrow { max-width: var(--container-narrow); }

.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--white { background: var(--white); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lavender);
    margin-bottom: var(--space-lg);
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--lavender-light);
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header p {
    margin-top: var(--space-md);
    font-size: 1.125rem;
}

.section-header--center {
    text-align: center;
}

.section-header--center p {
    margin-left: auto;
    margin-right: auto;
}

.section-header--center .section-label {
    justify-content: center;
}

.section-header--center .section-label::before {
    display: none;
}

/* Decorative divider */
.section-divider {
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--lavender-light), var(--gold-light));
    margin: 0 auto var(--space-lg);
}


/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background var(--dur-base) ease,
                box-shadow var(--dur-base) ease;
}

.header--scrolled {
    background: rgba(251,247,239,0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 rgba(45,41,38,0.06);
}

/* On hero pages, start with light text */
.header--hero .header__link,
.header--hero .header__logo-text,
.header--hero .header__logo-text span {
    color: rgba(255,255,255,0.9);
}

.header--hero .header__link:hover,
.header--hero .header__link--active {
    color: #fff;
}

.header--hero .header__toggle-line {
    background: #fff;
}

.header--hero.header--scrolled .header__link,
.header--hero.header--scrolled .header__logo-text {
    color: var(--text);
}

.header--hero.header--scrolled .header__logo-text span {
    color: var(--text-light);
}

.header--hero.header--scrolled .header__link:hover,
.header--hero.header--scrolled .header__link--active {
    color: var(--lavender-dark);
}

.header--hero.header--scrolled .header__toggle-line {
    background: var(--ink);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.header__logo-mark {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    transition: transform var(--dur-base) var(--ease-spring);
}

.header__logo:hover .header__logo-mark {
    transform: scale(1.05) rotate(-2deg);
}

.header__logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--ink);
    line-height: 1.2;
    transition: color var(--dur-base) ease;
}

.header__logo-text span {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.6875rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--dur-base) ease;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.header__links {
    display: flex;
    align-items: center;
    gap: 0;
}

.header__link {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: color var(--dur-fast) ease;
}

.header__link:hover {
    color: var(--ink);
}

.header__link--active {
    color: var(--lavender-dark);
    font-weight: 600;
}

.header__phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.625rem 1.375rem;
    background: var(--lavender);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    transition: all var(--dur-base) var(--ease-out);
    white-space: nowrap;
}

.header__phone:hover {
    background: var(--lavender-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lavender);
}

.header__phone svg {
    width: 16px;
    height: 16px;
}

.header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    z-index: 1001;
}

.header__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: all var(--dur-base) var(--ease-out);
}

.header__toggle-line + .header__toggle-line {
    margin-top: 6px;
}

.header__toggle--active .header__toggle-line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}
.header__toggle--active .header__toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.header__toggle--active .header__toggle-line:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}


/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.8125rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--dur-base) var(--ease-out);
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
    background: var(--lavender);
    color: white;
}
.btn--primary:hover {
    background: var(--lavender-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lavender);
}

.btn--gold {
    background: var(--gold);
    color: white;
}
.btn--gold:hover {
    background: #B5872F;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(200,150,62,0.3);
}

.btn--white {
    background: white;
    color: var(--ink);
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--stone);
}
.btn--outline:hover {
    border-color: var(--lavender);
    color: var(--lavender-dark);
    background: var(--lavender-glow);
}

.btn--outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.35);
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
}

.btn--ghost {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
}

.btn--large {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}


/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(45,41,38,0.65) 0%,
        rgba(90,79,122,0.45) 50%,
        rgba(45,41,38,0.50) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-lg) var(--space-xs) var(--space-sm);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    margin-bottom: var(--space-2xl);
}

.hero__badge-icon,
.hero__badge-dot {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
}

.hero__badge-icon svg,
.hero__badge-dot svg {
    width: 12px;
    height: 12px;
    color: white;
}

.hero__title {
    color: white;
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.hero__title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero__subtitle {
    font-size: 1.1875rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-2xl);
    max-width: 520px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.hero__trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.6);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    animation: hero-bounce 2.5s ease-in-out infinite;
    z-index: 1;
}

.hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes hero-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}


/* --- Photo Break (full-width image band) --- */
.photo-break {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.photo-break__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123,111,160,0.3) 0%, rgba(200,150,62,0.15) 100%);
}


/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--dur-base) var(--ease-out);
    border: 1px solid var(--stone);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--lavender-light);
}

.service-card__img {
    height: 220px;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease-out);
}

.service-card:hover .service-card__img img {
    transform: scale(1.05);
}

.service-card__body {
    padding: var(--space-xl);
}

.service-card__title {
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--lavender);
    transition: gap var(--dur-base) ease;
}

.service-card__link:hover { gap: var(--space-md); }

.service-card__link svg { width: 16px; height: 16px; }


/* --- Stats --- */
.stats-bar {
    background: var(--lavender-dark);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.04)"/></svg>');
    background-size: 20px 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.stat,
.stats__item {
    text-align: center;
}

.stat__number,
.stats__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat__label,
.stats__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.03em;
}


/* --- Values / Advantages --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.value-card {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--stone);
    transition: all var(--dur-base) var(--ease-out);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--lavender-light);
}

.value-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-soft);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.value-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--lavender);
}

.value-card__title { margin-bottom: var(--space-sm); }

.value-card__desc {
    font-size: 0.9375rem;
}


/* --- Zone d'intervention --- */
.zone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
}

.zone-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--stone);
    transition: all var(--dur-base) var(--ease-out);
}

.zone-card:hover {
    border-color: var(--lavender-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.zone-card__pin {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-soft);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.zone-card__pin svg {
    width: 16px;
    height: 16px;
    color: var(--lavender);
}

.zone-card__name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--ink);
}

.zone-card--primary {
    background: var(--lavender);
    border-color: var(--lavender);
}

.zone-card--primary .zone-card__pin {
    background: rgba(255,255,255,0.2);
}

.zone-card--primary .zone-card__pin svg,
.zone-card--primary .zone-card__name {
    color: white;
}


/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
}

.cta-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(90,79,122,0.85) 0%,
        rgba(45,41,38,0.80) 100%
    );
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner__inner h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-banner__inner p {
    color: rgba(255,255,255,0.8);
    margin: 0 auto var(--space-2xl);
    font-size: 1.125rem;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}


/* --- Page Header (inner pages) --- */
.page-header {
    position: relative;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
    overflow: hidden;
}

.page-header__bg {
    position: absolute;
    inset: 0;
}

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

.page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(45,41,38,0.72) 0%,
        rgba(90,79,122,0.55) 100%
    );
}

.page-header__content {
    position: relative;
    z-index: 1;
}

.page-header__breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    font-size: 0.875rem;
}

.page-header__breadcrumb a {
    color: rgba(255,255,255,0.7);
}
.page-header__breadcrumb a:hover { color: white; }
.page-header__breadcrumb span { color: rgba(255,255,255,0.5); }
.page-header__breadcrumb svg { width: 14px; height: 14px; color: rgba(255,255,255,0.4); }

.page-header h1 {
    color: white;
    margin-bottom: var(--space-md);
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    max-width: 520px;
}


/* --- Service Detail (services page) --- */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
}

.service-detail + .service-detail {
    border-top: 1px solid var(--stone);
}

.service-detail:nth-child(even) {
    direction: rtl;
}
.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail__visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-detail__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail__content h3 { margin-bottom: var(--space-md); }
.service-detail__content > p { margin-bottom: var(--space-lg); font-size: 1.0625rem; }

.service-detail__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.service-detail__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-light);
}

.service-detail__list li svg {
    width: 18px;
    height: 18px;
    color: var(--lavender);
    flex-shrink: 0;
    margin-top: 3px;
}


/* --- About --- */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-story__visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-story__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story__accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: var(--gold-soft);
    border-radius: 50%;
    z-index: -1;
}

.about-story__content .section-label { margin-bottom: var(--space-md); }
.about-story__content h2 { margin-bottom: var(--space-xl); }
.about-story__content p { margin-bottom: var(--space-lg); font-size: 1.0625rem; }

.about-story__meta {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--stone);
}

.about-story__meta-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--ink);
}

.about-story__meta-role {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 2px;
}


/* --- Advantages numbered --- */
.advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl) var(--space-3xl);
    counter-reset: advantage;
}

.advantage {
    display: flex;
    gap: var(--space-lg);
    counter-increment: advantage;
}

.advantage__number {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
    color: var(--lavender-light);
}

.advantage__number::before {
    content: "0" counter(advantage);
}

.advantage h4 { margin-bottom: var(--space-xs); }
.advantage p { font-size: 0.9375rem; }


/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.contact-info__item {
    display: flex;
    gap: var(--space-lg);
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-soft);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-info__icon svg {
    width: 22px;
    height: 22px;
    color: var(--lavender);
}

.contact-info__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-info__value {
    font-weight: 600;
    color: var(--ink);
    font-size: 1.0625rem;
}

.contact-info__value a:hover { color: var(--lavender); }

.contact-schedule {
    padding: var(--space-xl);
    background: var(--sand);
    border-radius: var(--radius-lg);
}

.contact-schedule h4 { margin-bottom: var(--space-md); }

.contact-schedule__row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--stone);
}

.contact-schedule__row:last-child { border-bottom: none; }
.contact-schedule__day { color: var(--text-light); }
.contact-schedule__time { font-weight: 600; color: var(--ink); }

/* Form */
.contact-form {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--stone);
}

.contact-form h3 { margin-bottom: var(--space-xs); }
.contact-form > p { margin-bottom: var(--space-xl); }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group--full { grid-column: 1 / -1; }

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
}

.form-label .required { color: var(--gold); }

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--stone);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--ink);
    background: var(--cream);
    outline: none;
    transition: border-color var(--dur-fast) ease,
                box-shadow var(--dur-fast) ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--lavender);
    box-shadow: 0 0 0 3px var(--lavender-glow);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--pearl); }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A746D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-submit {
    grid-column: 1 / -1;
    margin-top: var(--space-sm);
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--space-3xl);
}

.form-success.visible { display: block; }

.form-success__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-soft);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
}

.form-success__icon svg {
    width: 32px;
    height: 32px;
    color: var(--lavender);
}

.form-success h3 { margin-bottom: var(--space-sm); }


/* --- Footer --- */
.footer {
    background: var(--ink);
    color: var(--pearl);
    padding-top: var(--space-4xl);
}

.footer a { transition: color var(--dur-fast) ease; }

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.footer__brand p {
    margin-top: var(--space-md);
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer__logo-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.footer__heading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.45);
    padding: 2px 0;
}

.footer__links a:hover { color: var(--lavender-light); }

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.45);
}

.footer__contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--lavender-light);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer__contact-item a:hover { color: var(--lavender-light); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer__bottom-links a:hover { color: var(--lavender-light); }

.footer__desc {
    margin-top: var(--space-md);
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 300px;
}

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__link {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.45);
    padding: 2px 0;
    transition: color var(--dur-fast) ease;
}

.footer__link:hover { color: var(--lavender-light); }

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer__bottom-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__legal-link {
    color: rgba(255,255,255,0.3);
    transition: color var(--dur-fast) ease;
}

.footer__legal-link:hover { color: var(--lavender-light); }

.footer__credits {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

.footer__siret {
    margin-top: var(--space-md);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}


/* --- Mobile Phone Bar --- */
.mobile-phone-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: var(--space-sm) var(--space-md);
    background: var(--lavender);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mobile-phone-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: white;
    font-weight: 700;
    font-size: 1.0625rem;
    padding: var(--space-sm);
}

.mobile-phone-bar svg {
    width: 20px;
    height: 20px;
    animation: phone-ring 3s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 25%, 100% { transform: rotate(0); }
    5% { transform: rotate(12deg); }
    10% { transform: rotate(-10deg); }
    15% { transform: rotate(8deg); }
    20% { transform: rotate(0); }
}


/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out),
                transform 0.7s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }
.reveal--delay-4 { transition-delay: 320ms; }
.reveal--delay-5 { transition-delay: 400ms; }


/* --- Photo credits --- */
.photo-credits {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    text-align: center;
    padding: var(--space-sm) 0;
}

.photo-credits a { text-decoration: underline; }
.photo-credits a:hover { color: rgba(255,255,255,0.5); }


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

/* Tablet */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
    .service-detail { grid-template-columns: 1fr; gap: var(--space-xl); }
    .service-detail:nth-child(even) { direction: ltr; }
    .about-story { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .about-story__visual { max-height: 420px; aspect-ratio: 16/9; }
    .contact-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .advantages { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --space-4xl: 4rem;
        --space-5xl: 5rem;
    }

    .container { padding: 0 var(--space-lg); }

    /* Nav */
    .header__nav {
        position: fixed;
        inset: 0;
        background: rgba(251,247,239,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-2xl);
        opacity: 0;
        visibility: hidden;
        transition: all var(--dur-base) var(--ease-out);
    }

    .header__nav--open {
        opacity: 1;
        visibility: visible;
    }

    /* Force dark text in mobile menu regardless of header--hero */
    .header__nav--open .header__link {
        color: var(--text) !important;
        font-size: 1.5rem;
        font-family: var(--font-display);
        font-weight: 600;
    }

    .header__nav--open .header__link:hover,
    .header__nav--open .header__link--active {
        color: var(--lavender-dark) !important;
    }

    .header__links {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .header__toggle { display: flex; }

    .mobile-phone-bar { display: block; }
    body { padding-bottom: 56px; }

    /* Hero */
    .hero__content { padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-4xl); }
    .hero__trust { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
    .hero__scroll { display: none; }

    /* Grids */
    .services-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
    .zone-grid { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
    .footer__bottom-links { flex-wrap: wrap; justify-content: center; }

    /* Photo break */
    .photo-break { height: 240px; }
}

@media (max-width: 480px) {
    .zone-grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { justify-content: center; }
    .cta-banner__actions { flex-direction: column; align-items: stretch; }
    .cta-banner__actions .btn { justify-content: center; }
    .stats { grid-template-columns: 1fr 1fr; }
}
