/* ============================================================
   FIRST OPTIC — Demo 3
   Design : Magazine & Editorial (même palette, structure inversée)
   ============================================================ */

/* ---- 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;
    --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(--walnut);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

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

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.45em;
    color: var(--cream);
    display: block;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.7s ease 0.2s forwards;
}

.preloader-bar {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: barFill 1s ease 0.5s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes barFill {
    to { transform: scaleX(1); }
}

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

/* ============================================================
   NAVIGATION — Minimaliste avec icône panier (hint e-commerce)
   ============================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.6s ease, box-shadow 0.6s ease;
}

nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(247, 244, 239, 0.97);
    backdrop-filter: blur(24px);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

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

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

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

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

.nav-center {
    display: flex;
    gap: 2.8rem;
    list-style: none;
}

.nav-center a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    position: relative;
    transition: color 0.4s ease, text-shadow 0.5s ease;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-btn-rdv {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(196, 162, 101, 0.5);
    padding: 0.55rem 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn-rdv:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.nav-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    position: relative;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-cart:hover {
    opacity: 0.7;
}

.nav-cart svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.8);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.4s ease;
}

nav.scrolled .nav-cart svg {
    stroke: var(--charcoal-light);
}

.nav-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.nav-link--gold {
    color: var(--gold) !important;
}

/* ---- Burger ---- */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 0.5rem;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: rgba(255, 255, 255, 0.85);
    transition: background 0.4s ease;
}

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

/* ---- Mobile overlay ---- */
.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.nav-mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.overlay-close {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    padding: 4px;
}

.overlay-close:hover {
    color: var(--gold);
}

.overlay-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.overlay-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    margin-bottom: 3rem;
}

.overlay-links {
    list-style: none;
    text-align: center;
    margin-bottom: 3rem;
}

.overlay-links li + li {
    margin-top: 0.2rem;
}

.overlay-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
    display: block;
    padding: 0.2rem 0;
}

.overlay-links a:hover {
    color: var(--gold);
}

.overlay-link--gold {
    color: var(--gold) !important;
}

.overlay-cta {
    margin-top: 0.5rem;
}

/* ============================================================
   HERO — Plein écran, texte en bas à gauche
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(15, 10, 5, 0.65) 0%, transparent 30%),
        linear-gradient(to top, rgba(28, 22, 16, 0.9) 0%, rgba(28, 22, 16, 0.5) 40%, rgba(28, 22, 16, 0.1) 70%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 5rem 6rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
}

.hero-content-left {
    flex: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-eyebrow-line {
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 1s forwards;
}

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

.hero-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    max-width: 400px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.2s forwards;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-content-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.4s forwards;
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.hero-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

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

/* Indicateur de scroll -->*/
.hero-scroll-indicator {
    position: absolute;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll-indicator span {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    writing-mode: vertical-rl;
}

.hero-scroll-dot {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-scroll-dot::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollDot 2s ease-in-out 2s infinite;
}

@keyframes scrollDot {
    0%   { top: -100%; }
    100% { top: 100%; }
}

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

/* ============================================================
   PILIERS / VALEURS — 3 colonnes
   ============================================================ */
.pillars-section {
    background: var(--white);
    padding: 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.pillar-item {
    padding: 4rem;
    border-right: 1px solid var(--cream-dark);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.pillar-item:last-child {
    border-right: none;
}

.pillar-item:hover {
    background: var(--cream);
}

.pillar-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--beige);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.pillar-item:hover .pillar-number {
    color: var(--gold);
    opacity: 0.3;
}

.pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.pillar-text {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--charcoal-light);
    line-height: 1.8;
}

.pillar-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pillar-item:hover .pillar-line {
    transform: scaleX(1);
}

/* ============================================================
   SAVOIR-FAIRE — Texte gauche, image cadre droite
   ============================================================ */
.about-section {
    padding: 9rem 5rem;
    background: var(--cream);
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-content {
}

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

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

.about-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--charcoal-light);
    line-height: 1.95;
    margin-bottom: 1.5rem;
    max-width: 460px;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration: none;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.about-cta:hover {
    gap: 1.2rem;
}

.about-cta svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 1.5;
}

.about-visual {
    position: relative;
}

.about-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-dark) 100%);
    overflow: hidden;
}

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

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

.about-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    z-index: -1;
}

.about-frame-icon {
    opacity: 0.15;
    width: 100px;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--charcoal);
    padding: 2rem 2.5rem;
}

.about-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.about-badge-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   MARQUES — Grille carrés
   ============================================================ */
.brands-section {
    padding: 6rem 5rem;
    background: var(--white);
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

.brands-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.brands-header {
    text-align: center;
    margin-bottom: 4rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--cream-dark);
    border: 1px solid var(--cream-dark);
}

.brand-cell {
    background: var(--white);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: background 0.3s ease;
    cursor: default;
}

.brand-cell:hover {
    background: var(--cream);
}

.brand-cell span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--beige-dark);
    transition: color 0.3s ease;
    text-align: center;
}

.brand-cell:hover span {
    color: var(--gold);
}

/* ============================================================
   GALLERY — Slider
   ============================================================ */
.gallery-section {
    position: relative;
    width: 100%;
    padding: 5rem 0;
    background: var(--cream);
}

.gallery-wrapper {
    width: 75%;
    margin: 0 auto;
    position: relative;
    border: 3px solid #C4A265;
}

.gallery-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 2537 / 1226;
    overflow: hidden;
}

.gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.gallery-slide.active {
    opacity: 1;
}

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

.gallery-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 22, 16, 0.6) 0%, transparent 40%);
    pointer-events: none;
}

.gallery-caption {
    position: absolute;
    bottom: 2.8rem;
    left: 5%;
    z-index: 2;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.gallery-caption::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 0.7rem;
}

.gallery-caption span {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.8vw, 2.6rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    display: block;
}

.gallery-slide.active .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Label top-left */
.gallery-label {
    position: absolute;
    top: 2.8rem;
    left: 5%;
    z-index: 10;
}

.gallery-label .section-label {
    color: rgba(196, 162, 101, 0.9);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* Navigation arrows */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(20, 15, 10, 0.42);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.92);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(196, 162, 101, 0.25);
    border-color: #C4A265;
    color: #C4A265;
}

.gallery-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gallery-btn--prev { left: 2.5rem; }
.gallery-btn--next { right: 2.5rem; }

/* Dots */
.gallery-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.gallery-dot {
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.4s ease, width 0.4s ease;
}

.gallery-dot.active {
    background: var(--gold);
    width: 44px;
}

/* Counter */
.gallery-counter {
    position: absolute;
    bottom: 1.6rem;
    right: 3%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
}

.gallery-current {
    color: var(--gold);
    font-weight: 500;
}

/* ============================================================
   SERVICES — Accordion
   ============================================================ */
.services-section {
    padding: 6rem 5rem;
    background: #fff;
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 7rem;
    align-items: start;
    background: var(--cream);
    padding: 5rem 4.5rem;
    box-shadow: 0 6px 50px rgba(0, 0, 0, 0.07), 0 1px 8px rgba(0, 0, 0, 0.04);
}

.services-aside {
}

.services-aside .about-text {
    max-width: none;
}

.services-aside-cta {
    margin-top: 2.5rem;
}

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

.accordion-item {
    border-bottom: 1px solid var(--cream-dark);
}

.accordion-item:first-child {
    border-top: 1px solid var(--cream-dark);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.accordion-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.accordion-trigger:hover .accordion-title,
.accordion-item.active .accordion-title {
    color: var(--gold-dark);
}

.accordion-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.accordion-item.active .accordion-icon {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(45deg);
}

.accordion-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--beige-dark);
    fill: none;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.accordion-item.active .accordion-icon svg {
    stroke: var(--white);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

.accordion-body p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--charcoal-light);
    line-height: 1.85;
    padding-bottom: 1.8rem;
}

/* ============================================================
   OFFRE — Card asymétrique
   ============================================================ */
.offer-section {
    padding: 8rem 5rem;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 162, 101, 0.06) 0%, transparent 70%);
}

.offer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 7rem;
    align-items: center;
    position: relative;
}

.offer-content {
}

.offer-content .section-label {
    color: var(--gold);
}

.offer-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.offer-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    margin-bottom: 3rem;
    max-width: 380px;
}

.offer-checklist {
    list-style: none;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

.offer-checklist li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: block;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%23C4A265' stroke-width='1.5'/%3E%3C/svg%3E") center/10px no-repeat;
}

.offer-visual-side {
    position: relative;
}

.offer-card-big {
    background: linear-gradient(135deg, var(--walnut) 0%, var(--walnut-light) 100%);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-card-big::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-card-equation {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.offer-card-equation em {
    color: var(--gold-light);
    font-style: italic;
    display: block;
}

/* ============================================================
   BOUTIQUES — Cartes avec overlay hover
   ============================================================ */
.boutiques-section {
    padding: 8rem 5rem;
    background: var(--white);
}

.boutiques-header {
    max-width: 1100px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.boutiques-link {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.boutiques-link:hover {
    gap: 0.8rem;
}

.boutiques-link svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold-dark);
    fill: none;
    stroke-width: 1.5;
}

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

.boutique-card {
    background: var(--cream);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.boutique-card:hover {
    transform: translateY(-6px);
}

.boutique-card-visual {
    height: 180px;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-dark) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.boutique-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--walnut);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boutique-card:hover .boutique-card-overlay {
    opacity: 0.85;
}

.boutique-card-cta {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    transition: border-color 0.3s ease;
}

.boutique-card-cta:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.boutique-arrond {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--beige);
    line-height: 1;
    opacity: 0.5;
}

.boutique-card-info {
    padding: 1.8rem;
}

.boutique-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

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

.boutique-hours {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================================
   ÉQUIPE — Style Magazine
   ============================================================ */
.team-section {
    padding: 8rem 5rem;
    background: var(--cream);
}

.team-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.team-section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 4rem;
}

.team-section-intro {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--charcoal-light);
    line-height: 1.9;
}

.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

/* ---- Carte membre ---- */
.team-card {
    position: relative;
    cursor: pointer;
}

.team-card-visual {
    aspect-ratio: 2 / 3;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--beige) 0%, var(--beige-dark) 100%);
}

/* Photo */
.team-card-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s ease;
}

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

/* Gradient sombre progressif */
.team-card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 14, 8, 0.88) 0%,
        rgba(20, 14, 8, 0.3) 45%,
        transparent 75%
    );
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

/* Index filigrane */
.team-card-index {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    z-index: 2;
    pointer-events: none;
    transition: color 0.5s ease;
}

.team-card:hover .team-card-index {
    color: rgba(196, 162, 101, 0.12);
}

/* Overlay infos en bas */
.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.4rem 1.2rem 1.6rem;
    z-index: 3;
}

.team-card-role {
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.team-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Bio cachée, slide au hover */
.team-card-bio {
    font-size: 0.74rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transform: translateY(6px);
    transition: max-height 0.5s ease, opacity 0.45s ease 0.05s, transform 0.45s ease 0.05s, margin-top 0.4s ease;
}

.team-card:hover .team-card-bio {
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.7rem;
}

/* Ligne dorée en bas au hover */
.team-card-visual::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s ease;
    z-index: 4;
}

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

/* Placeholder (photo à venir) */
.team-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.team-card-placeholder svg {
    width: 44px;
    height: 44px;
    stroke: var(--beige-dark);
    fill: none;
    stroke-width: 1;
    opacity: 0.35;
}

.team-card-placeholder span {
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--beige-dark);
    opacity: 0.45;
}

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

.testimonials-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 4rem;
}

/* ---- Carousel ---- */
.testimonials-carousel {
    position: relative;
}

.testimonials-carousel::before {
    content: '\201C';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem;
    color: rgba(196, 162, 101, 0.1);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testimonials-track {
    position: relative;
    min-height: 260px;
    margin-bottom: 3rem;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.25em;
    margin-bottom: 1.8rem;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 400;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

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

.testimonial-author span {
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: none;
}

/* Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.testi-btn {
    background: none;
    border: 1px solid rgba(196, 162, 101, 0.35);
    color: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.testi-btn:hover {
    border-color: var(--gold);
    background: rgba(196, 162, 101, 0.08);
}

.testi-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testi-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testi-dot {
    width: 22px;
    height: 1px;
    background: rgba(196, 162, 101, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.4s ease, width 0.4s ease;
}

.testi-dot.active {
    background: var(--gold);
    width: 36px;
}

/* ============================================================
   CTA MUTUELLE
   ============================================================ */
.mutuelle-section {
    padding: 6rem 5rem;
    background: var(--walnut);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mutuelle-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.mutuelle-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

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

.mutuelle-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

.btn-white:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    line-height: 1.9;
    max-width: 260px;
    margin-bottom: 2.5rem;
}

.footer-social-row {
    display: flex;
    gap: 0.8rem;
}

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

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

.footer-social-row svg {
    width: 13px;
    height: 13px;
    fill: rgba(255, 255, 255, 0.35);
    transition: fill 0.3s ease;
}

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

.footer-col-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.8rem;
}

.footer-col a {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.32);
    text-decoration: none;
    font-weight: 300;
    padding: 0.35rem 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.68rem;
    color: rgba(255, 255, 255, 0.18);
    font-weight: 300;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

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

/* ============================================================
   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 8px 25px rgba(196, 162, 101, 0.3);
}

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

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-outline--hero {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.35);
}

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

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

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.42s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE — ≤ 1024px (Tablette)
   ============================================================ */
@media (max-width: 1024px) {
    nav { padding: 1.5rem 2rem; }
    nav.scrolled { padding: 1rem 2rem; }
    .nav-center { display: none; }
    .nav-btn-rdv { display: none; }
    .nav-burger { display: flex; }

    .hero-content { padding: 4rem 2rem 5rem; }
    .hero-scroll-indicator { display: none; }

    .pillars-section { padding: 5rem 2rem; }
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar-item { border-right: none; border-bottom: 1px solid var(--cream-dark); }

    .about-section { padding: 6rem 2rem; }
    .about-inner { grid-template-columns: 1fr; gap: 4rem; }

    .brands-section { padding: 4rem 2rem; }
    .brands-grid { grid-template-columns: repeat(4, 1fr); }

    .gallery-section { padding: 3rem 0; }
    .gallery-wrapper { width: 90%; }

    .services-section { padding: 5rem 2rem; }
    .services-inner { grid-template-columns: 1fr; gap: 3rem; padding: 3.5rem 3rem; }

    .team-section { padding: 6rem 2rem; }
    .team-section-header { grid-template-columns: 1fr; gap: 2rem; }
    .team-cards-grid { grid-template-columns: repeat(2, 1fr); }

    .offer-section { padding: 6rem 2rem; }
    .offer-inner { grid-template-columns: 1fr; gap: 4rem; }

    .boutiques-section { padding: 6rem 2rem; }
    .boutiques-grid { grid-template-columns: 1fr 1fr; }

    .testimonials-section { padding: 5rem 2rem; }
    .testimonials-inner { max-width: 100%; }

    .mutuelle-section { padding: 5rem 2rem; }

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

/* ============================================================
   RESPONSIVE — ≤ 768px (Mobile paysage)
   ============================================================ */
@media (max-width: 768px) {
    nav { padding: 1.2rem 1.5rem; }

    .hero-content { flex-direction: column; align-items: flex-start; padding: 3rem 1.5rem 4rem; }
    .hero-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }

    .brands-grid { grid-template-columns: repeat(3, 1fr); }

    .gallery-wrapper { width: 95%; border-width: 2px; }
    .gallery-caption span { font-size: clamp(1rem, 4vw, 1.5rem); }
    .gallery-label { top: 1.5rem; }
    .gallery-btn { width: 40px; height: 40px; }
    .gallery-btn--prev { left: 0.8rem; }
    .gallery-btn--next { right: 0.8rem; }

    .services-inner { padding: 2.5rem 2rem; gap: 2.5rem; }

    .team-cards-grid { gap: 0.8rem; }
    /* Bio visible au tap sur mobile (classe ajoutée par JS) */
    .team-card.tapped .team-card-bio {
        max-height: 100px;
        opacity: 1;
        transform: translateY(0);
        margin-top: 0.6rem;
    }

    .boutiques-grid { grid-template-columns: 1fr; }
    .boutiques-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

    .testimonials-track { min-height: 300px; }

    .mutuelle-section { padding: 4rem 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================================
   RESPONSIVE — ≤ 480px (Mobile portrait)
   ============================================================ */
@media (max-width: 480px) {
    .hero-title { letter-spacing: 0.04em; }
    .hero-eyebrow { font-size: 0.55rem; }

    .about-visual { padding-bottom: 2.5rem; }
    .about-frame { aspect-ratio: 4 / 3; }
    .about-badge { bottom: 0; left: 0; padding: 1.2rem 1.5rem; }
    .about-badge-number { font-size: 2.4rem; }

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

    .gallery-section { padding: 2rem 0; }
    .gallery-wrapper { width: 100%; border-left: none; border-right: none; }
    .gallery-label { display: none; }
    .gallery-counter { display: none; }
    .gallery-caption { bottom: 2rem; }
    .gallery-btn--prev { left: 0.5rem; }
    .gallery-btn--next { right: 0.5rem; }

    .services-inner { padding: 2rem 1.5rem; }

    .team-section-header { margin-bottom: 2rem; }
    .team-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .team-card-visual { aspect-ratio: 3 / 4; }
    .team-card-overlay { padding: 1rem; }
    .team-card-name { font-size: 1.05rem; }
    .team-card-bio { font-size: 0.68rem; }

    .testimonials-section { padding: 4rem 1.5rem; }
    .testimonials-track { min-height: 320px; }
    .testimonials-carousel::before { font-size: 8rem; }

    .mutuelle-section { padding: 4rem 1.5rem; }

    .footer-legal { flex-direction: column; gap: 0.5rem; }
}
