@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
    --rose: #F2436B;
    --tangerine: #FF7A45;
    --citron: #F5C518;
    --jade: #3ECFA0;
    --sky: #1AAFEA;
    --lavande: #9B7FE8;
    --creme: #FDFAF5;
    --encre: #120F1E;
    --or: #C9963A;

    --f-serif: 'Cormorant Garamond', serif;
    --f-sans: 'Jost', sans-serif;
    --ease-lux: cubic-bezier(.22, 1, .36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--f-sans);
    background: var(--creme);
    color: var(--encre);
    overflow-x: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}


/* ── NAV ─────────────────────────────────────── */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    padding: 2rem 0;
    transition: padding .5s var(--ease-lux), background .5s;
}

.nav-scrolled {
    padding: 1rem 0;
    background: rgba(253, 250, 245, .95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(242, 67, 107, .15);
}

.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.logo-name {
    font-family: var(--f-serif);
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--rose), var(--tangerine));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-tagline {
    font-size: .6rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 500;
}

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

.nav-links a {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--encre);
    position: relative;
    padding: .3rem 0;
}

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

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

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

.nav-cta {
    padding: .8rem 2rem;
    border-radius: 100px;
    background: var(--rose);
    color: #fff;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: all .4s var(--ease-lux);
}

.nav-cta:hover {
    background: var(--tangerine);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(242, 67, 107, .35);
}

.nav-status {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 500;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--jade);
    box-shadow: 0 0 8px var(--jade);
}

.status-dot.closed {
    background: #ccc;
    box-shadow: none;
}

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

.nav-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--encre);
    transition: all .3s;
}

/* ── MOBILE MENU ──────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--creme);
    z-index: 199;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--f-serif);
    font-size: 2.5rem;
    font-style: italic;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
    height: 60vh;
    min-height: 440px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--encre);
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .65;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(18, 15, 30, .85) 0%, transparent 60%),
        linear-gradient(to right, rgba(18, 15, 30, .4) 0%, transparent 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8% 6rem;
    color: #fff;
    max-width: 800px;
}

.hero-eyebrow {
    display: inline-block;
    padding: .45rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 100px;
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--citron);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--f-serif);
    font-size: clamp(4.5rem, 11vw, 9.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: .9;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 3.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 1.1rem 2.8rem;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--rose), var(--tangerine));
    color: #fff;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: all .5s var(--ease-lux);
    box-shadow: 0 8px 30px rgba(242, 67, 107, .3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(242, 67, 107, .45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 1.1rem 2.8rem;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, .5);
    color: #fff;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: all .5s var(--ease-lux);
}

.btn-outline:hover {
    background: #fff;
    color: var(--rose);
    border-color: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    right: 5%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    color: rgba(255, 255, 255, .5);
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero-scroll span {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
}

/* ── MARQUEE ──────────────────────────────────── */
.marquee-strip {
    position: fixed;
    top: var(--nav-h, 80px);
    left: 0;
    right: 0;
    z-index: 199;
    overflow: hidden;
    padding: .85rem 0;
    background: linear-gradient(90deg, var(--rose), var(--tangerine), var(--citron), var(--jade), var(--sky), var(--lavande), var(--rose));
    background-size: 300%;
    animation: gradshift 8s linear infinite;
}

/* Compense la hauteur du marquee dans la page */
body::before {
    content: '';
    display: block;
    height: calc(var(--nav-h, 80px) + 40px);
}

@keyframes gradshift {
    to {
        background-position: 300% 0;
    }
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 2.5rem;
    align-items: center;
    animation: scroll 30s linear infinite;
}

.marquee-track span {
    font-family: var(--f-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: #fff;
    white-space: nowrap;
}

.marquee-track .dot {
    font-style: normal;
    opacity: .6;
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

/* ── SECTION COMMONS ──────────────────────────── */
.section-eyebrow {
    display: block;
    font-size: .65rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-desc {
    max-width: 540px;
    margin: 0 auto;
    opacity: .65;
    font-size: .9rem;
    line-height: 1.8;
}

h2 {
    font-family: var(--f-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
}

h2 em {
    font-style: italic;
    color: var(--rose);
}

h3 {
    font-family: var(--f-serif);
    font-size: 1.8rem;
    font-weight: 400;
}

h4 {
    font-family: var(--f-sans);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ── INTRO ────────────────────────────────────── */
.intro-section {
    padding: 10rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 4px;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.intro-image-badge {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    background: #fff;
    padding: 2rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    border-radius: 4px;
    text-align: center;
}

.intro-image-badge span {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--or);
}

.badge-year {
    display: block;
    font-family: var(--f-serif);
    font-size: 3rem;
    color: var(--rose);
    line-height: 1;
    margin-top: .3rem;
}

.intro-lead {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.85;
    margin: 2rem 0 3.5rem;
}

.intro-pillars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.pillar i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--rose), var(--tangerine));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.pillar h4 {
    margin-bottom: .3rem;
}

.pillar p {
    font-size: .85rem;
    opacity: .65;
    line-height: 1.7;
}

/* ── COLLECTIONS ──────────────────────────────── */
.collections-section {
    padding: 10rem 0;
    background: #fff;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.collection-card {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
    transition: all .6s var(--ease-lux);
}

.collection-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-lux);
}

.collection-card:hover .card-image img {
    transform: scale(1.07);
}

.card-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: .4rem 1rem;
    border-radius: 100px;
    background: #fff;
    color: var(--rose);
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.card-body {
    padding: 2.5rem;
}

.card-body h3 {
    font-size: 1.6rem;
    margin-bottom: .6rem;
}

.card-body p {
    font-size: .85rem;
    opacity: .6;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--rose);
    position: relative;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose);
    transition: width .4s var(--ease-lux);
}

.collection-card:hover .card-link::after {
    width: 100%;
}

.collection-card--feature .card-image {
    aspect-ratio: 2/3;
}

/* ── LOYALTY ──────────────────────────────────── */
.loyalty-section {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--encre) 0%, #2D1B5E 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.loyalty-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 67, 107, .2) 0%, transparent 70%);
}

.loyalty-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.loyalty-text .section-eyebrow {
    color: var(--citron);
}

.loyalty-text h2 {
    color: #fff;
}

.loyalty-text h2 em {
    color: var(--citron);
}

.loyalty-text h2 em::after {
    display: none;
}

.loyalty-text p {
    opacity: .75;
    margin: 2rem 0 3rem;
    line-height: 1.85;
    font-size: .95rem;
}

.loyalty-cards {
    position: relative;
    height: 380px;
}

.loyalty-card-img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
    width: 280px;
}

.loyalty-card-back {
    top: 0;
    right: 10%;
    transform: rotate(6deg);
    opacity: .6;
}

.loyalty-card-front {
    bottom: 0;
    left: 10%;
    transform: rotate(-4deg);
}

.loyalty-cards:hover .loyalty-card-front {
    transform: rotate(0) scale(1.05);
}

.loyalty-cards:hover .loyalty-card-back {
    transform: rotate(10deg) translateX(20px);
    opacity: .4;
}

/* ── VIDEO ────────────────────────────────────── */
.video-fullwidth {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

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

.video-fullwidth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 15, 30, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.video-fullwidth-text h2 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.video-fullwidth-text .section-eyebrow {
    color: var(--citron);
}

/* ── RELAY ────────────────────────────────────── */
.relay-section {
    padding: 10rem 0;
    background: var(--creme);
}

.relay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 5rem;
}

.relay-card {
    background: #fff;
    padding: 4rem;
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
    position: relative;
}

.relay-card h3 {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0ebe0;
}

.opening-status {
    position: absolute;
    top: 4rem;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

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

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px dashed #f0ebe0;
    font-size: .85rem;
}

.hour-row:last-child {
    border: none;
}

.day-label {
    font-weight: 500;
}

.day-time {
    opacity: .6;
}

.relay-carriers {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #f0ebe0;
}

.relay-carriers img {
    height: 28px;
    opacity: .25;
    filter: grayscale(1);
    transition: all .6s var(--ease-lux);
}

.relay-carriers img.carrier-active {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.08);
}

.relay-card--tracking p {
    opacity: .6;
    font-size: .9rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track-select,
.track-input {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border: 1.5px solid #f0ebe0;
    border-radius: 4px;
    font-family: var(--f-sans);
    font-size: .9rem;
    background: #fafafa;
    outline: none;
    transition: border-color .3s;
    appearance: none;
}

.track-select:focus,
.track-input:focus {
    border-color: var(--rose);
}

.track-btn {
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--rose), var(--tangerine));
    color: #fff;
    font-family: var(--f-sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: all .4s var(--ease-lux);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.track-btn:hover {
    box-shadow: 0 12px 30px rgba(242, 67, 107, .35);
    transform: translateY(-2px);
}

/* ── WHY ──────────────────────────────────────── */
.why-section {
    padding: 8rem 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 3rem 2rem;
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 2rem;
    transition: all .4s var(--ease-lux);
}

.why-card:nth-child(1) .why-icon {
    background: linear-gradient(135deg, #FFE4E8, #FFBDCA);
    color: var(--rose);
}

.why-card:nth-child(2) .why-icon {
    background: linear-gradient(135deg, #E8FFF6, #B2F5E0);
    color: var(--jade);
}

.why-card:nth-child(3) .why-icon {
    background: linear-gradient(135deg, #E8F7FF, #B2E5FF);
    color: var(--sky);
}

.why-card:nth-child(4) .why-icon {
    background: linear-gradient(135deg, #F5F0FF, #DDD0FF);
    color: var(--lavande);
}

.why-card:hover .why-icon {
    transform: translateY(-6px) scale(1.1);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.why-card p {
    font-size: .85rem;
    opacity: .6;
    line-height: 1.7;
}

/* ── ALTERATIONS ──────────────────────────────── */
.alterations-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1B0A2E 0%, #2D1250 50%, #1A0A1E 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.alterations-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 67, 107, .15), transparent 70%);
    pointer-events: none;
}

.alterations-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 127, 232, .12), transparent 70%);
    pointer-events: none;
}

.alterations-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.alterations-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.alterations-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 1s var(--ease-lux);
}

.alterations-image:hover img {
    transform: scale(1.04);
}

.alterations-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 10, 46, .6) 0%, transparent 50%);
}

.alterations-img-tag {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    background: linear-gradient(135deg, var(--rose), var(--tangerine));
    color: #fff;
    padding: .6rem 1.4rem;
    border-radius: 100px;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.alterations-content {
    padding: 0;
}

.alterations-content .section-eyebrow {
    color: var(--citron);
}

.alterations-content h2 {
    color: #fff;
    margin-bottom: 2.5rem;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.alteration-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.alteration-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    transition: all .4s var(--ease-lux);
}

.alteration-item:hover {
    background: rgba(242, 67, 107, .1);
    border-color: rgba(242, 67, 107, .3);
    transform: translateX(6px);
}

.alteration-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--rose), var(--tangerine));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
}

.alteration-item h4 {
    color: #fff;
    margin-bottom: .2rem;
    font-size: .8rem;
}

.alteration-item p {
    opacity: .55;
    font-size: .82rem;
    line-height: 1.6;
}


/* ── FAQ ──────────────────────────────────────── */
.faq-section {
    padding: 10rem 0;
    background: var(--creme);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .04);
    padding-left: 5.5rem;
    position: relative;
    transition: all .4s var(--ease-lux);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.faq-icon {
    position: absolute;
    top: 3rem;
    left: 2rem;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--rose), var(--tangerine));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: .85rem;
    opacity: .6;
    line-height: 1.75;
}

/* ── REVIEWS ──────────────────────────────────── */
.reviews-section {
    padding: 10rem 0;
    background: #fff;
}

.google-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    margin-top: 1.5rem;
    font-size: .9rem;
}

.score-stars {
    color: var(--citron);
    letter-spacing: .1em;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.review-card {
    background: var(--creme);
    padding: 2.5rem;
    border-radius: 6px;
    border-top: 3px solid transparent;
    background-image: linear-gradient(var(--creme), var(--creme)), linear-gradient(90deg, var(--rose), var(--tangerine));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all .4s var(--ease-lux);
}

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

.review-stars {
    color: var(--citron);
    font-size: .8rem;
    margin-bottom: 1.5rem;
}

.review-card p {
    font-style: italic;
    font-family: var(--f-serif);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--encre);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--lavande));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-serif);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer div strong {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .2rem;
}

.reviewer div span {
    font-size: .75rem;
    opacity: .5;
}

/* ── FOOTER ───────────────────────────────────── */
.footer {
    background: var(--encre);
    color: #fff;
}

.footer-top {
    padding: 8rem 0 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-logo {
    font-family: var(--f-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-tagline {
    opacity: .5;
    font-size: .85rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: #fff;
    transition: all .3s;
}

.footer-social a:hover {
    background: var(--rose);
    border-color: var(--rose);
}

.footer-nav h4 {
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1.8rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.footer-nav a {
    font-size: .85rem;
    opacity: .5;
    transition: opacity .3s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-contact-info h4 {
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1.8rem;
}

.footer-contact-info p {
    font-size: .85rem;
    opacity: .5;
    line-height: 1.7;
    margin-bottom: .5rem;
}

.footer-contact-info i {
    margin-right: .5rem;
    color: var(--rose);
}

.footer-hours p {
    font-size: .85rem;
    opacity: .5;
    margin-bottom: .3rem;
}

.footer-hours strong {
    color: #fff;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 2.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: .75rem;
    opacity: .35;
}


/* ── BLOBS DÉCORATIFS ─────────────────────────── */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .25;
    pointer-events: none;
    z-index: 0;
    animation: blobFloat 12s ease-in-out infinite;
    max-width: 100%;
    overflow: hidden;
}

.blob-1 {
    width: min(600px, 100vw);
    height: min(600px, 100vw);
    background: var(--rose);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: min(500px, 80vw);
    height: min(500px, 80vw);
    background: var(--citron);
    bottom: -150px;
    right: -150px;
    animation-delay: -4s;
}

.blob-3 {
    width: min(400px, 70vw);
    height: min(400px, 70vw);
    background: var(--jade);
    top: 50%;
    right: -100px;
    animation-delay: -8s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 30px) scale(.95);
    }
}

/* ── HERO AMÉLIORÉ ────────────────────────────── */
.hero-title {
    animation: heroReveal 1.2s var(--ease-lux) .2s both;
}

.hero-eyebrow {
    animation: heroReveal 1s var(--ease-lux) 0s both;
}

.hero-subtitle {
    animation: heroReveal 1s var(--ease-lux) .4s both;
}

.hero-actions {
    animation: heroReveal 1s var(--ease-lux) .6s both;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grain texture overlay sur le hero */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .4;
}

/* Scroll indicator animé */
.hero-scroll span {
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: .5;
    }

    50% {
        transform: scaleY(1.3);
        opacity: 1;
    }
}

/* ── COMPTEUR STATS ───────────────────────────── */
.stats-bar {
    background: #fff;
    border-top: 1px solid rgba(242, 67, 107, .08);
    border-bottom: 1px solid rgba(242, 67, 107, .08);
    padding: 3rem 0;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid #f0ebe0;
}

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

.stat-number {
    font-family: var(--f-serif);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: .5rem;
    background: linear-gradient(135deg, var(--rose), var(--tangerine));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    opacity: .5;
    font-weight: 500;
}

/* ── COLLECTION CARDS UPGRADE ─────────────────── */
.collection-card {
    position: relative;
}

.card-color-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity .6s var(--ease-lux);
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.collection-card:nth-child(1) .card-color-overlay {
    background: linear-gradient(to top, rgba(242, 67, 107, .85) 0%, transparent 55%);
}

.collection-card:nth-child(2) .card-color-overlay {
    background: linear-gradient(to top, rgba(26, 175, 234, .85) 0%, transparent 55%);
}

.collection-card:nth-child(3) .card-color-overlay {
    background: linear-gradient(to top, rgba(62, 207, 160, .85) 0%, transparent 55%);
}

.collection-card:hover .card-color-overlay {
    opacity: 1;
}

.overlay-cta {
    color: #fff;
    padding: 2.5rem;
    width: 100%;
    transform: translateY(20px);
    transition: transform .5s var(--ease-lux);
    font-family: var(--f-serif);
    font-size: 1.5rem;
    font-style: italic;
}

.collection-card:hover .overlay-cta {
    transform: translateY(0);
}

.overlay-cta span {
    display: block;
    font-family: var(--f-sans);
    font-size: .68rem;
    font-style: normal;
    letter-spacing: .25em;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: .5rem;
}

/* ── INTRO DÉCO ACCENT ────────────────────────── */
.intro-section {
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 24, .15), transparent 70%);
    pointer-events: none;
}

.intro-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 67, 107, .1), transparent 70%);
    pointer-events: none;
}

.intro-image img {
    transition: transform 1s var(--ease-lux);
}

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

/* ── WHY CARDS UPGRADE ────────────────────────── */
.why-section {
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 207, 160, .06), transparent 70%);
    pointer-events: none;
}

.why-card {
    border-radius: 20px;
    transition: all .5s var(--ease-lux);
    border: 1.5px solid transparent;
}

.why-card:hover {
    background: #fff;
    border-color: rgba(242, 67, 107, .1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .07);
    transform: translateY(-8px);
}

/* ── RELAY SECTION UPGRADE ────────────────────── */
.relay-section {
    position: relative;
    overflow: hidden;
}

.relay-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 175, 234, .08), transparent 70%);
    pointer-events: none;
}

.relay-card {
    transition: all .5s var(--ease-lux);
}

.relay-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, .1);
    transform: translateY(-5px);
}

/* Accent coloré sur le côté gauche des relay cards */
.relay-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(to bottom, var(--rose), var(--tangerine));
    opacity: 0;
    transition: opacity .4s;
}

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

/* ── FAQ COULEURS ALTERNÉES ───────────────────── */
.faq-item:nth-child(1) .faq-icon {
    background: linear-gradient(135deg, var(--rose), var(--tangerine));
}

.faq-item:nth-child(2) .faq-icon {
    background: linear-gradient(135deg, var(--sky), var(--jade));
}

.faq-item:nth-child(3) .faq-icon {
    background: linear-gradient(135deg, var(--lavande), var(--sky));
}

.faq-item:nth-child(4) .faq-icon {
    background: linear-gradient(135deg, var(--citron), var(--jade));
}

/* ── VIDEO SECTION PARALLAX TEXT ──────────────── */
.video-fullwidth-text {
    max-width: 900px;
    padding: 0 2rem;
}

.video-fullwidth-text h2 {
    text-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

/* ── BACK TO TOP ──────────────────────────────── */
#back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 500;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--tangerine));
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(242, 67, 107, .4);
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s var(--ease-lux);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(242, 67, 107, .55);
}

/* ── FOOTER UPGRADE ───────────────────────────── */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 127, 232, .08), transparent 70%);
    pointer-events: none;
}

.footer-logo {
    background: linear-gradient(135deg, var(--rose), var(--tangerine));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── SCROLL REVEAL CUSTOM ─────────────────────── */
[data-aos] {
    will-change: transform, opacity;
}

/* ── SÉLECTION TEXTE ──────────────────────────── */
::selection {
    background: var(--rose);
    color: #fff;
}

/* ── SCROLLBAR ────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--creme);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--rose), var(--tangerine));
    border-radius: 10px;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media(max-width:1024px) {

    .intro-grid,
    .relay-grid,
    .loyalty-inner,
    .alterations-inner {
        grid-template-columns: 1fr;
    }

    .collections-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .nav-links,
    .nav-cta,
    .nav-status {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .hero-content {
        padding: 0 6% 6rem;
    }

    .alterations-image img {
        min-height: 400px;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-item:nth-child(1) {
        border-right: 1px solid #f0ebe0;
        border-bottom: 1px solid #f0ebe0;
    }

    .stat-item:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid #f0ebe0;
    }

    .stat-item:nth-child(3) {
        border-right: 1px solid #f0ebe0;
        border-top: none;
    }

    .stat-item:nth-child(4) {
        border-right: none;
        border-top: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media(max-width:640px) {

    .collections-grid,
    .faq-grid,
    .reviews-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: clamp(3rem, 14vw, 6rem);
    }

    .intro-image-badge {
        right: 0;
        bottom: 0;
    }

    .loyalty-cards {
        height: 260px;
    }

    .loyalty-card-img {
        width: 200px;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 1.8rem .8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: .6rem;
    }

    .container {
        padding: 0 1.2rem;
    }

    #back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}