/* ============================================================
   FIRST OPTIC — Demo 1
   Design : Luxe Parisien (Beige, Or, Charcoal)
   ============================================================ */

/* ---- Variables ---- */
:root {
    --beige:         #D5CBBA;
    --beige-light:   #E4DDD1;
    --beige-dark:    #B8A993;
    --gold:          #C4A265;
    --gold-light:    #D4B97A;
    --gold-dark:     #A8864A;
    --walnut:        #5C4A3A;
    --walnut-light:  #7A6454;
    --cream:         #F7F4EF;
    --cream-dark:    #EDE8E0;
    --marble:        #FAFAF8;
    --charcoal:      #2C2C2C;
    --charcoal-light:#4A4A4A;
    --white:         #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--gold);
    white-space: nowrap;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.5s ease, box-shadow 0.5s ease;
    background: transparent;
}

/* Le backdrop-filter sur ::before évite de créer un containing block
   pour les enfants position:fixed (bug connu avec backdrop-filter sur parent) */
nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(247, 244, 239, 0.95);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

nav.scrolled::before {
    opacity: 1;
}

nav.scrolled {
    padding: 1rem 4rem;
    box-shadow: 0 1px 0 rgba(196, 162, 101, 0.15);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--white);
    text-decoration: none;
    transition: color 0.5s ease, text-shadow 0.5s ease;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

nav.scrolled .nav-logo {
    color: var(--charcoal);
    text-shadow: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: color 0.5s ease, text-shadow 0.5s ease;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

nav.scrolled .nav-links a {
    color: var(--charcoal-light);
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-shop {
    color: var(--gold) !important;
    opacity: 0.85;
}

.nav-shop::after {
    background: var(--gold) !important;
}

.nav-cta {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--white) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, var(--charcoal) 0%, #3A3632 40%, var(--walnut) 100%);
    overflow: hidden;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(15, 10, 5, 0.6) 0%, transparent 28%),
        radial-gradient(ellipse at 30% 50%, rgba(196, 162, 101, 0.08) 0%, transparent 60%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(196, 162, 101, 0.3);
    padding: 0.5rem 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

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

.hero-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.05em;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
}

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

/* ============================================================
   BOUTONS GLOBAUX
   ============================================================ */
.btn-primary {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 162, 101, 0.3);
}

.btn-secondary {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================================
   BANDE MARQUES
   ============================================================ */
.brands-strip {
    background: var(--white);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.brands-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--beige-dark);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    cursor: default;
}

.brand-name:hover {
    opacity: 1;
}

.brand-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    flex-shrink: 0;
}

/* ============================================================
   SECTIONS COMMUNES
   ============================================================ */
section {
    padding: 8rem 4rem;
}

.section-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--charcoal-light);
    font-weight: 300;
    max-width: 520px;
}

/* ============================================================
   SAVOIR-FAIRE
   ============================================================ */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-main {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
    border-radius: 200px 200px 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

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

.about-accent {
    position: absolute;
    bottom: 40px;
    right: -30px;
    width: 180px;
    height: 220px;
    background: var(--walnut);
    border-radius: 100px 100px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.accent-text {
    text-align: center;
    color: var(--cream);
}

.accent-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    display: block;
    color: var(--gold-light);
}

.accent-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.7;
}

.about-content {
    padding-right: 2rem;
}

.about-content .section-text + .section-text {
    margin-top: 1.2rem;
}

/* ============================================================
   GALERIE BOUTIQUE
   ============================================================ */
.gallery-section {
    padding: 0;
    background: var(--cream);
    overflow: hidden;
}

.gallery-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    padding: 4rem 4rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3px;
    height: 520px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
    background: var(--charcoal);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(196, 162, 101, 0.06) 0%, transparent 50%);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
    position: relative;
}

.services-header .section-title {
    color: var(--white);
}

.services-header .section-text {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 2.5rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 2rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
}

/* ============================================================
   OFFRE PHARE
   ============================================================ */
.offer-section {
    background: var(--white);
}

.offer-section > .section-label {
    text-align: center;
}

.offer-section > .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.offer-card {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09), 0 1px 0 rgba(196, 162, 101, 0.15);
    overflow: hidden;
}

.offer-visual {
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.offer-visual::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 200px 200px 0 0;
}

.offer-bg-mark {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22rem;
    font-weight: 300;
    color: var(--walnut);
    opacity: 0.07;
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
}

.offer-icon-group {
    text-align: center;
    position: relative;
    z-index: 2;
}

.offer-glasses {
    opacity: 0.9;
}

.offer-glasses svg {
    width: 150px;
    height: 62px;
    stroke: var(--walnut);
    stroke-width: 1.2px;
    display: block;
    margin: 0 auto;
}

.offer-visual-rule {
    width: 45px;
    height: 1px;
    background: var(--gold);
    margin: 1.8rem auto;
    opacity: 0.55;
}

.offer-equation {
    font-family: 'Cormorant Garamond', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.offer-eq-row {
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--charcoal);
}

.offer-eq-op {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1.1;
}

.offer-eq-row--highlight {
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--walnut);
}

.offer-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-content .btn-primary {
    align-self: flex-start;
    margin-top: 1rem;
}

.offer-content .section-title {
    font-size: 2rem;
}

.offer-details {
    margin: 1.5rem 0;
}

.offer-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.offer-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-check svg {
    width: 10px;
    height: 10px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2.5;
}

.offer-detail span {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    font-weight: 400;
}

/* ============================================================
   BOUTIQUES
   ============================================================ */
.boutiques-section {
    background: var(--white);
}

.boutiques-visual {
    max-width: 1100px;
    margin: 0 auto 4rem;
    position: relative;
    height: 360px;
    overflow: hidden;
}

.boutiques-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transition: transform 0.8s ease;
}

.boutiques-visual:hover img {
    transform: scale(1.02);
}

.boutiques-visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(transparent, rgba(44, 44, 44, 0.55));
}

.boutiques-visual-caption span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.12em;
    font-style: italic;
    opacity: 0.9;
}

.boutiques-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.boutiques-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.boutique-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.boutique-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.boutique-card:hover::after {
    transform: scaleX(1);
}

.boutique-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.boutique-arrond {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.boutique-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.boutique-address {
    font-size: 0.75rem;
    color: var(--charcoal-light);
    font-weight: 300;
    line-height: 1.6;
}

.boutique-hours {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

/* ============================================================
   MUTUELLE BANNER
   ============================================================ */
.mutuelle-banner {
    background: linear-gradient(135deg, var(--walnut) 0%, var(--walnut-light) 100%);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mutuelle-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(196, 162, 101, 0.1) 0%, transparent 60%);
}

.mutuelle-content {
    position: relative;
    z-index: 2;
}

.mutuelle-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.mutuelle-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* ============================================================
   ÉQUIPE
   ============================================================ */
.team-section {
    background: var(--cream);
}

.team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    align-items: start;
}

.team-card {
    text-align: left;
}

.team-card:nth-child(even) {
    margin-top: 3.5rem;
}

.team-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--gold);
    opacity: 0.65;
    margin-bottom: 0.8rem;
}

.team-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--beige-light);
    position: relative;
    overflow: hidden;
}

.team-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s ease;
    z-index: 1;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}

.team-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    z-index: 0;
}

.team-photo-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--beige-dark);
    fill: none;
    stroke-width: 1;
    opacity: 0.5;
}

.team-photo-placeholder span {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige-dark);
    opacity: 0.6;
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(25, 17, 8, 0.93) 0%, rgba(25, 17, 8, 0.52) 45%, transparent 72%);
    display: flex;
    align-items: flex-end;
    padding: 1.8rem 1.5rem;
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 2;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-overlay p {
    font-size: 0.77rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.72;
    transform: translateY(10px);
    transition: transform 0.45s ease;
}

.team-card:hover .team-overlay p {
    transform: translateY(0);
}

.team-meta {
    padding: 1.1rem 0 0;
    border-top: 1px solid rgba(196, 162, 101, 0.25);
}

.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.team-role {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testimonials-section {
    background: var(--cream);
}

.testimonials-inner {
    padding: 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    left: 2rem;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
}

.testimonial-star {
    color: var(--gold);
    font-size: 0.8rem;
}

.testimonial-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--charcoal);
    padding: 5rem 4rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .nav-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
    line-height: 1.8;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-weight: 300;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    border-color: var(--gold);
    background: rgba(196, 162, 101, 0.1);
}

.footer-socials svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.4);
}

.footer-socials a:hover svg {
    fill: var(--gold);
}

/* ============================================================
   BURGER MENU
   ============================================================ */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    position: relative;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.5s ease;
}

nav.scrolled .nav-burger span {
    background: var(--charcoal);
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Force white spans when menu is open (dark overlay behind) */
nav .nav-burger.open span { background: var(--white); }

/* ============================================================
   ANIMATIONS SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* --- Tablette large (≤ 1024px) --- */
@media (max-width: 1024px) {
    section { padding: 5rem 2rem; }
    nav, nav.scrolled { padding: 1.2rem 2rem; }

    /* About */
    .about { grid-template-columns: 1fr; gap: 3rem; }
    .about-accent { width: 140px; height: 170px; right: -10px; bottom: 30px; }

    /* Grilles */
    .services-grid { grid-template-columns: 1fr 1fr; }
    .boutiques-grid { grid-template-columns: 1fr 1fr; }
    .offer-card { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .team-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 0 2rem; }
    .team-card:nth-child(even) { margin-top: 2rem; }

    /* Galerie & visuel boutiques */
    .gallery-grid { height: 380px; }
    .boutiques-visual { height: 260px; }

    /* Marques */
    .brands-inner { gap: 2rem; padding: 0 2rem; max-width: 100%; }
}

/* --- Tablette portrait / Mobile (≤ 768px) --- */
@media (max-width: 768px) {
    section { padding: 4rem 1.5rem; }

    /* Preloader */
    .preloader-logo { font-size: 1.6rem; letter-spacing: 0.25em; text-align: center; }

    /* Navigation burger */
    .nav-burger { display: flex; }
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(28, 20, 12, 0.97);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 999;
        padding: 0;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links li { list-style: none; }
    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.25em;
        color: rgba(255, 255, 255, 0.8);
        text-shadow: none;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a::after { display: none; }
    .nav-shop { color: var(--gold) !important; opacity: 1; }
    .nav-cta {
        color: var(--gold) !important;
        border-color: var(--gold);
        padding: 0.7rem 2rem;
        font-size: 0.72rem !important;
    }

    /* Sections */
    .services-grid { grid-template-columns: 1fr; }
    .boutiques-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Hero */
    .hero-buttons { flex-direction: column; align-items: center; }

    /* Marques */
    .brands-inner { flex-wrap: wrap; gap: 1rem; justify-content: center; padding: 0 1.5rem; }
    .brand-sep { display: none; }
    .brand-name { font-size: 1.1rem; }

    /* About */
    .about-accent { width: 110px; height: 140px; right: 0; bottom: 20px; }

    /* Équipe — overlay toujours visible sur touch */
    .team-grid { grid-template-columns: 1fr 1fr; padding: 0 1.5rem; }
    .team-card:nth-child(even) { margin-top: 0; }
    .team-overlay { opacity: 1; }
    .team-overlay p { transform: translateY(0); }

    /* Galerie */
    .gallery-grid { grid-template-columns: 1fr; height: auto; }
    .gallery-item { height: 260px; }

    /* Boutiques */
    .boutiques-visual { height: 200px; margin-bottom: 2.5rem; }

    /* Savoir-Faire — centrage sur mobile */
    .about-content { padding-right: 0; text-align: center; }
    .about-content .section-text { margin: 0 auto; }

    /* Témoignages */
    .testimonials-inner { padding: 0 1.5rem; }
    .testimonial-card { padding: 1.8rem 1.5rem; }
    .testimonial-card::before { font-size: 3.5rem; top: 0.6rem; left: 1.2rem; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-socials { justify-content: center; }
    .mutuelle-banner { padding: 3rem 1.5rem; }
}

/* --- Mobile petit (≤ 480px) --- */
@media (max-width: 480px) {
    section { padding: 3.5rem 1.2rem; }

    /* Hero */
    .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
    .hero-badge { font-size: 0.6rem; letter-spacing: 0.2em; padding: 0.4rem 1.2rem; }

    /* Équipe */
    .team-grid { grid-template-columns: 1fr; padding: 0 1.2rem; }

    /* Boutiques */
    .boutiques-grid { grid-template-columns: 1fr; gap: 1rem; }
    .boutique-card { padding: 2rem 1.5rem; }

    /* Services */
    .service-card { padding: 2rem 1.5rem; }

    /* Offre */
    .offer-visual { padding: 2.5rem 1.5rem; }
    .offer-content { padding: 2.5rem 1.5rem; }
    .offer-equation { font-size: 1.6rem; }

    /* Galerie */
    .gallery-item { height: 220px; }

    /* Marques */
    .brands-inner { gap: 0.8rem; }
    .brand-name { font-size: 1rem; }

    /* About */
    .about-accent { display: none; }

    /* Témoignages */
    .testimonial-card { padding: 1.5rem 1.2rem; }
    .testimonial-text { font-size: 0.82rem; }

    /* Footer */
    .footer-top { gap: 2rem; }
    .nav-links { gap: 2rem; }
    .nav-links a { font-size: 0.9rem; }
}
