/* ============================================================
   FIRST OPTIC — Demo 2
   Design : Split Éditorial (même palette, structure asymétrique)
   ============================================================ */

/* ---- 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(--white);
    overflow-x: hidden;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    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-inner {
    text-align: center;
}

.preloader-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
    animation: lineGrow 1.2s ease forwards;
}

@keyframes lineGrow {
    to { width: 120px; }
}

.preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--charcoal);
    opacity: 0;
    animation: fadeIn 0.6s ease 0.4s forwards;
}

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

/* ============================================================
   NAVIGATION — Logo centré, liens répartis
   ============================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 2rem 4rem;
    transition: padding 0.5s ease, box-shadow 0.5s ease;
}

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

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

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

.nav-left,
.nav-right {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    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.55);
}

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

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

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

.nav-logo-center {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    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-center {
    color: var(--charcoal);
    text-shadow: none;
}

.nav-cta {
    font-size: 0.65rem !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease !important;
}

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

.nav-cta::after {
    display: none !important;
}

/* ============================================================
   HERO — Split 50/50
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-left {
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 60%, rgba(196, 162, 101, 0.07) 0%, transparent 60%);
}

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

.hero-year {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 4.5vw, 5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

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

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

.hero-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    max-width: 60px;
}

.hero-divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-subtitle {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    max-width: 380px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.1s forwards;
}

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

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll span {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.hero-right-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(20, 15, 10, 0.5) 0%, transparent 28%),
        linear-gradient(to right, rgba(44, 44, 44, 0.3) 0%, transparent 40%);
}

.hero-right-badge {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: var(--gold);
    padding: 1.5rem;
    text-align: center;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.4s forwards;
}

.hero-right-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    display: block;
    line-height: 1;
}

.hero-right-badge span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    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: 0.9rem 2.2rem;
    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-ghost {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

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

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

.btn-dark:hover {
    background: var(--walnut);
    transform: translateY(-2px);
}

/* ============================================================
   MARQUEE MARQUES
   ============================================================ */
.marquee-section {
    background: var(--cream);
    padding: 2rem 0;
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige-dark);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.marquee-item:hover {
    color: var(--gold);
}

.marquee-sep {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
    line-height: 1.6;
}

/* ============================================================
   SECTIONS COMMUNES
   ============================================================ */
.section-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

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

/* ============================================================
   SAVOIR-FAIRE — Grande citation + stats
   ============================================================ */
.savoir-section {
    background: var(--white);
}

.savoir-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.savoir-photo {
    position: relative;
    overflow: hidden;
}

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

.savoir-quote-wrap {
    padding: 6rem 5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    align-content: center;
}

.savoir-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    font-weight: 300;
    line-height: 0.7;
    color: var(--gold);
    opacity: 0.2;
    flex-shrink: 0;
    user-select: none;
}

.savoir-quote-content {
}

.savoir-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.savoir-quote-text em {
    color: var(--gold);
    font-style: normal;
}

.savoir-quote-author {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal-light);
}

.savoir-quote-author::before {
    content: '— ';
    color: var(--gold);
}

.savoir-stats {
    background: var(--charcoal);
    padding: 5rem 4rem;
}

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

.stat-item {
    padding: 2rem 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

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

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 0.8rem;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

/* ============================================================
   SERVICES — Liste numérotée éditoriale
   ============================================================ */
/* ============================================================
   SERVICES — Mirror layout (photo centrale, services en miroir)
   ============================================================ */
.services-section {
    background: var(--charcoal);
    padding: 3rem 0 0;
}

.services-divider {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 6rem 0;
}

.services-divider-line {
    flex: 1;
    height: 1px;
}

.services-divider-line:first-child {
    background: linear-gradient(to right, rgba(196, 162, 101, 0.05), rgba(196, 162, 101, 0.5));
}

.services-divider-line:last-child {
    background: linear-gradient(to left, rgba(196, 162, 101, 0.05), rgba(196, 162, 101, 0.5));
}

.services-divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    opacity: 0.7;
    flex-shrink: 0;
}

.services-header-block {
    text-align: center;
    padding: 3.5rem 4rem 5rem;
    max-width: 680px;
    margin: 0 auto;
}

.services-header-block .section-label {
    color: var(--gold);
}

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

.services-sub {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(247, 244, 239, 0.5);
    line-height: 1.9;
    margin-top: 1.5rem;
}

.services-mirror {
    display: grid;
    grid-template-columns: 1fr 0.7fr 1fr;
    min-height: 600px;
}

.services-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 3.5rem;
}

.services-col--left {
    text-align: right;
    border-right: 1px solid rgba(196, 162, 101, 0.15);
    padding-right: 4rem;
}

.services-col--right {
    text-align: left;
    border-left: 1px solid rgba(196, 162, 101, 0.15);
    padding-left: 4rem;
}

.services-photo {
    position: relative;
    overflow: hidden;
    border-radius: 50% 50% 0 0 / 22% 22% 0 0;
}

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

.services-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(44, 44, 44, 0.35) 0%, transparent 30%),
        linear-gradient(to left, rgba(44, 44, 44, 0.35) 0%, transparent 30%);
}

.srv-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(196, 162, 101, 0.08);
    transition: background 0.3s ease;
}

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

.srv-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.25em;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.8rem;
}

.srv-line {
    width: 22px;
    height: 1px;
    background: var(--gold);
    opacity: 0.35;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.services-col--left .srv-line {
    margin-left: auto;
}

.srv-item:hover .srv-line {
    opacity: 0.8;
    width: 36px;
}

.srv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.srv-item:hover .srv-title {
    color: var(--gold-light);
}

.srv-desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(247, 244, 239, 0.45);
    line-height: 1.8;
}

/* ============================================================
   OFFRE PHARE — Typographie massive
   ============================================================ */
.offer-section {
    padding: 8rem 4rem;
    background: var(--walnut);
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

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

.offer-eyebrow {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
}

.offer-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 300;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

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

.offer-separator {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    margin: 2.5rem 0;
}

.offer-sep-line {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.offer-sep-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.offer-sub {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.offer-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.offer-tag {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
}

/* ============================================================
   BOUTIQUES — Scroll horizontal
   ============================================================ */
.boutiques-section {
    padding: 8rem 0;
    background: var(--white);
    overflow: hidden;
}

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

.boutiques-scroll-hint {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--charcoal-light);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.boutiques-scroll-hint svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.boutiques-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 4rem 3rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.boutiques-track::-webkit-scrollbar {
    display: none;
}

.boutiques-track:active {
    cursor: grabbing;
}

.boutique-card {
    flex-shrink: 0;
    width: 280px;
    scroll-snap-align: start;
    background: var(--cream);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.boutique-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.boutique-card:hover::before {
    transform: scaleY(1);
}

.boutique-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

.boutique-card:hover .boutique-district {
    color: var(--gold);
    opacity: 0.3;
}

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

.boutique-address {
    font-size: 0.78rem;
    color: var(--charcoal-light);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

/* ============================================================
   ÉQUIPE — Strips alternantes éditoriales
   ============================================================ */
.team-section {
    background: var(--cream);
    padding: 0 4rem 8rem;
}

.team-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8rem 4rem 4rem;
}

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

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

/* Boîte flottante qui contient les strips — centrée, pas pleine largeur */
.team-box {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 16px 70px rgba(0, 0, 0, 0.1), 0 2px 14px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    /* La section a padding latéral, la boîte s'arrête avant les bords */
}

.team-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.team-strip:last-child {
    border-bottom: none;
}

.team-strip-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--beige-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-strip-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.9s ease;
}

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

/* Numéro en filigrane sur la photo */
.team-strip-num {
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.14);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.team-strip-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

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

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

/* Contenu du strip */
.team-strip-content {
    background: var(--white);
    padding: 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Strip inversé : photo à droite, contenu à gauche */
.team-strip--reverse .team-strip-photo {
    order: 2;
}

.team-strip--reverse .team-strip-content {
    order: 1;
    background: var(--cream);
}

.team-strip-role {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.team-strip-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 1.4rem;
    line-height: 1.1;
}

.team-strip-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.4rem;
}

.team-strip-bio {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    font-weight: 300;
    line-height: 1.85;
    max-width: 340px;
}

/* ============================================================
   TÉMOIGNAGES — Grille de cartes
   ============================================================ */
.testimonials-section {
    padding: 8rem 4rem;
    background: var(--white);
}

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

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

.testimonials-header-right {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--charcoal-light);
    line-height: 1.9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--cream);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Ligne dorée qui se révèle en haut au hover */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

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

.testimonial-card-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.25;
    line-height: 0.8;
    margin-bottom: 1.5rem;
    user-select: none;
}

.testimonial-card-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--charcoal-light);
    line-height: 1.85;
    font-style: italic;
    flex: 1;
    margin-bottom: 2rem;
}

.testimonial-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--beige);
    padding-top: 1.2rem;
}

.testimonial-card-author {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--charcoal);
}

.testimonial-card-stars {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

/* ============================================================
   CTA CONTACT
   ============================================================ */
.cta-section {
    padding: 7rem 4rem;
    background: var(--cream);
    text-align: center;
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 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;
}

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

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

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

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.footer-socials 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-socials a:hover {
    border-color: var(--gold);
    background: rgba(196, 162, 101, 0.08);
}

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

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

/* ============================================================
   BURGER MENU & OVERLAY MOBILE
   ============================================================ */
.nav-link--gold {
    color: var(--gold) !important;
    opacity: 0.9;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.4s 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); }

nav .nav-burger.open span { background: var(--white); }

/* Overlay plein écran */
.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 20, 12, 0.97);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.overlay-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.overlay-close svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.55);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

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

.overlay-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3rem;
}

.overlay-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.overlay-links a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.overlay-cta {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.25s; }
.reveal-delay-3 { transition-delay: 0.35s; }

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

/* --- Tablette (≤ 1024px) --- */
/* ============================================================
   RESPONSIVE — Tablette (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    /* Nav */
    nav { grid-template-columns: 1fr auto; padding: 1.5rem 2rem; }
    nav.scrolled { padding: 1rem 2rem; }
    .nav-left { display: none; }
    .nav-right { display: none; }
    .nav-burger { display: flex; }

    /* Hero */
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 7rem 2rem 4rem; }

    /* Savoir-faire */
    .savoir-split { grid-template-columns: 1fr; }
    .savoir-photo { min-height: 320px; }
    .savoir-quote-wrap { padding: 4rem 2rem; }
    .savoir-stats { padding: 4rem 2rem; }
    .savoir-stats-inner { grid-template-columns: 1fr 1fr; }

    /* Services */
    .services-mirror { grid-template-columns: 1fr; }
    .services-photo { min-height: 340px; order: -1; border-radius: 0; }
    .services-col { padding: 2rem 2.5rem; border: none !important; text-align: left !important; }
    .services-col--left .srv-line { margin-left: 0; }
    .services-header-block { padding: 2rem 2rem 3rem; }
    .services-divider { padding: 0 2rem; }

    /* Offre */
    .offer-section { padding: 6rem 3rem; }

    /* Équipe */
    .team-inner { padding: 5rem 2rem 3rem; }
    .team-header { grid-template-columns: 1fr; }
    .team-section { padding: 0 2rem 5rem; }
    .team-strip { grid-template-columns: 1fr 1fr; }
    .team-strip-photo { aspect-ratio: 3 / 4; }
    .team-strip-content { padding: 2.5rem 3rem; }

    /* Témoignages */
    .testimonials-header { grid-template-columns: 1fr; }
    .testimonials-section { padding: 6rem 2rem; }

    /* Boutiques */
    .boutiques-section { padding: 6rem 0; }
    .boutiques-header { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 0 2rem; }
    .boutiques-track { padding: 1rem 2rem 3rem; }

    /* CTA */
    .cta-section { padding: 6rem 2rem; }

    /* Footer */
    footer { padding: 4rem 2rem 2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Nav */
    nav { padding: 1rem 1.5rem; }
    .nav-logo-center { font-size: 1.1rem; }

    /* Hero */
    .hero-left { padding: 6rem 1.5rem 3rem; }

    /* Marquee */
    .marquee-track { gap: 2rem; }
    .marquee-item { font-size: 1rem; }

    /* Savoir-faire */
    .savoir-photo { min-height: 260px; }
    .savoir-quote-wrap { padding: 3.5rem 1.5rem; grid-template-columns: 1fr; }
    .savoir-quote-mark { display: none; }
    .savoir-stats { padding: 0; }
    .savoir-stats-inner { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 0; scrollbar-width: none; -ms-overflow-style: none; }
    .savoir-stats-inner::-webkit-scrollbar { display: none; }
    .stat-item { flex: 0 0 auto; min-width: 140px; padding: 2.5rem 1.5rem; border-right: 1px solid rgba(255, 255, 255, 0.06); border-bottom: none; text-align: center; }
    .stat-item:last-child { border-right: none; }

    /* Services */
    .services-divider { padding: 0 1.5rem; }
    .services-header-block { padding: 2rem 1.5rem 2.5rem; }
    .services-photo { min-height: 260px; }
    .services-col { padding: 1.5rem 1.5rem; }
    .srv-title { font-size: 1.2rem; }
    .testimonial-card-quote { font-size: 3rem; }

    /* Offre */
    .offer-section { padding: 5rem 1.5rem; }

    /* Équipe — une colonne, photo pleine largeur */
    .team-inner { padding: 3.5rem 1.5rem 2rem; }
    .team-section { padding: 0 1rem 4rem; }
    .team-strip { grid-template-columns: 1fr; }
    .team-strip-photo { aspect-ratio: 4 / 3; order: 1 !important; }
    .team-strip-content { order: 2 !important; padding: 2rem 1.8rem; }
    .team-strip-bio { max-width: none; }
    .team-strip-name { font-size: 1.6rem; }

    /* Témoignages */
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-section { padding: 5rem 1.5rem; }
    .testimonial-card { padding: 2rem; }

    /* Boutiques */
    .boutiques-section { padding: 5rem 0; }
    .boutiques-header { padding: 0 1.5rem; }
    .boutiques-track { padding: 1rem 1.5rem 3rem; }

    /* CTA */
    .cta-section { padding: 5rem 1.5rem; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    footer { padding: 4rem 1.5rem 2rem; }
}

/* ============================================================
   RESPONSIVE — Petit mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    /* Nav */
    nav { padding: 0.75rem 1rem; }
    .nav-logo-center { font-size: 0.9rem; letter-spacing: 0.2em; }

    /* Hero */
    .hero-title { font-size: 2.6rem; }
    .hero-left { padding: 5rem 1.2rem 3rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .hero-buttons .btn { width: 100%; text-align: center; }

    /* Marquee */
    .marquee-track { gap: 1.5rem; }
    .marquee-item { font-size: 0.9rem; }

    /* Savoir-faire */
    .savoir-quote-text { font-size: 1.5rem; }
    .stat-item { min-width: 120px; padding: 2rem 1.2rem; }
    .stat-number { font-size: 2.6rem; }

    /* Services */
    .services-divider { padding: 0 1rem; }
    .services-header-block { padding: 1.5rem 1rem 2rem; }
    .services-col { padding: 1rem; }
    .srv-title { font-size: 1.05rem; }
    .srv-desc { font-size: 0.75rem; }

    /* Offre */
    .offer-section { padding: 4rem 1.2rem; }
    .offer-headline { font-size: 2.6rem; }
    .offer-sep-line { width: 40px; }

    /* Équipe */
    .team-section { padding: 0 0.5rem 3rem; }
    .team-strip-content { padding: 1.5rem; }
    .team-strip-bio { font-size: 0.78rem; }

    /* Témoignages */
    .testimonials-section { padding: 4rem 1rem; }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-card-quote { font-size: 2.5rem; }

    /* Boutiques */
    .boutiques-section { padding: 4rem 0; }
    .boutiques-header { padding: 0 1rem; }
    .boutiques-track { padding: 1rem 1rem 2rem; gap: 1rem; }
    .boutique-card { width: 240px; padding: 2rem 1.5rem; }

    /* CTA */
    .cta-section { padding: 4rem 1.2rem; }

    /* Footer */
    footer { padding: 3rem 1rem 1.5rem; }
    .footer-tagline { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
}
