/* =====================================================
    RESET & ROOT VARIABLES
===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:         #FAFAF7;
    --cream:      #F2EAE0;
    --stone-lt:   #E8DDD2;
    --stone:      #D0C4B4;
    --ink:        #1C1A17;
    --muted:      #7A6E62;
    --gold:       #B8935A;
    --gold-lt:    #E4CFA4;
    --white:      #FFFFFF;
    --ease-out:   cubic-bezier(0.25, 0.1, 0.25, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    font-weight: 300;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* =====================================================
    TYPOGRAPHY HELPERS
===================================================== */
.serif { font-family: 'Cormorant Garamond', serif; }

.section-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
}

/* =====================================================
    REVEAL ANIMATION
===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.visible              { opacity: 1; transform: translateY(0); }
.reveal-delay-1              { transition-delay: 0.10s; }
.reveal-delay-2              { transition-delay: 0.20s; }
.reveal-delay-3              { transition-delay: 0.30s; }
.reveal-delay-4              { transition-delay: 0.40s; }
.reveal-delay-5              { transition-delay: 0.50s; }

/* =====================================================
    NAVIGATION
===================================================== */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 1.6rem 3rem;
    transition: background 0.45s ease, padding 0.35s ease, border-color 0.45s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(250, 250, 247, 0.91);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    padding: 1rem 3rem;
    border-bottom-color: rgba(200, 185, 168, 0.22);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
}

.nav-links {
    display: flex;
    gap: 2.8rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.35s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
    padding: 0.55rem 1.4rem;
    border: 1px solid var(--ink);
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}
.nav-cta:hover { background: var(--ink); color: var(--bg) !important; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}
.nav-hamburger span {
    width: 26px; height: 1px;
    background: var(--ink);
    display: block;
    transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    text-decoration: none;
    color: var(--ink);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}
.nav-overlay.open a { opacity: 1; transform: translateY(0); }
.nav-overlay.open a:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.open a:nth-child(2) { transition-delay: 0.10s; }
.nav-overlay.open a:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.open a:nth-child(4) { transition-delay: 0.20s; }
.nav-overlay.open a:nth-child(5) { transition-delay: 0.25s; }
.nav-overlay a:hover { color: var(--gold); }

/* =====================================================
    HERO
===================================================== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--bg) 0%, var(--cream) 55%, #DDD0C2 100%);
}

/* Grain texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-bg-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(70vw, 600px);
    height: min(70vw, 600px);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(230, 215, 195, 0.55) 0%, transparent 70%);
    animation: bgPulse 7s ease-in-out infinite;
    pointer-events: none;
}
@keyframes bgPulse {
    0%,100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.7; }
    50%      { transform: translate(-50%,-50%) scale(1.08); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

/* === HERO ILLUSTRATION === */
.orb-wrap {
    position: relative;
    width: 340px;
    aspect-ratio: 1408 / 768;
    cursor: none;
}

.orb-illustration {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(100,78,56,0.22));
    animation: orbFloat 5.5s ease-in-out infinite;
    transition: transform 0.4s ease;
}

@keyframes orbFloat {
    0%,100% { transform: translateY(0px) rotate(0deg); }
    33%      { transform: translateY(-10px) rotate(0.8deg); }
    66%      { transform: translateY(-5px) rotate(-0.5deg); }
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8.5vw, 7.5rem);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.015em;
    color: var(--ink);
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 2.8rem;
    background: var(--ink);
    color: var(--bg);
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.35s ease, letter-spacing 0.35s ease;
    margin-top: 0.3rem;
}
.hero-cta:hover { background: var(--gold); letter-spacing: 0.22em; }
.hero-cta .arrow { font-size: 1.1rem; transition: transform 0.3s; }
.hero-cta:hover .arrow { transform: translateX(5px); }

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    animation: scrollHint 2.2s ease-in-out infinite;
}
.hero-scroll-hint span {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero-scroll-line {
    width: 1px;
    height: 38px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollHint {
    0%,100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50%      { opacity: 0.6; transform: translateX(-50%) translateY(7px); }
}

/* =====================================================
    MANIFESTO
===================================================== */
.manifesto {
    padding: 9rem 3rem;
    text-align: center;
    position: relative;
    background: var(--bg);
}

.manifesto-quote {
    max-width: 780px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    font-weight: 300;
    line-height: 1.45;
    color: var(--ink);
    font-style: italic;
}

.manifesto-quote strong {
    font-style: normal;
    font-weight: 600;
    color: var(--gold);
}

.manifesto-separator {
    width: 56px;
    height: 1px;
    background: var(--gold);
    margin: 3.2rem auto;
}

.manifesto-body {
    max-width: 540px;
    margin: 0 auto;
    font-size: 0.93rem;
    line-height: 1.9;
    color: var(--muted);
    font-weight: 300;
}

/* =====================================================
    PRODUIT
===================================================== */
.produit {
    padding: 7rem 3rem;
    background: var(--cream);
}

.produit-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.produit-visual {
    position: relative;
}

.produit-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #E8DDD0 0%, #CDBBA7 45%, #AB9282 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Real product photo */
.produit-photo {
    position: relative;
    width: 76%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(60,45,30,0.35));
    z-index: 1;
}

.produit-badge {
    position: absolute;
    bottom: -1.8rem;
    right: -1.8rem;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold-lt);
}
.produit-badge .b-price    { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; line-height: 1; }
.produit-badge .b-currency { font-size: 0.65rem; letter-spacing: 0.1em; opacity: 0.6; }

.produit-tag {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(250,250,247,0.82);
    backdrop-filter: blur(10px);
    padding: 0.45rem 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
}

.produit-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
    margin: 1rem 0 0.6rem;
}
.produit-name em { font-style: italic; color: var(--gold); }

.produit-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.produit-desc {
    font-size: 0.93rem;
    line-height: 1.9;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 3rem;
}

.specs-table {
    border-top: 1px solid var(--stone-lt);
    margin-bottom: 3rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(208,196,180,0.4);
    font-size: 0.84rem;
}

.spec-key   { color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }
.spec-val   { color: var(--ink); font-weight: 400; text-align: right; }

.btn-primary {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--ink);
    color: var(--bg);
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary:hover { background: var(--gold); }

/* =====================================================
    FEATURES
===================================================== */
.features {
    padding: 8rem 3rem;
    background: var(--bg);
}

.features-header {
    max-width: 1320px;
    margin: 0 auto 5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.features-header-note {
    max-width: 320px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 300;
}

.features-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.feature-card {
    background: var(--cream);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.35s, transform 0.35s;
}
.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}
.feature-card:hover { background: var(--stone-lt); }
.feature-card:hover::before { width: 100%; }

.feature-icon {
    width: 44px; height: 44px;
    color: var(--gold);
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.9rem;
}

.feature-desc {
    font-size: 0.87rem;
    line-height: 1.82;
    color: var(--muted);
    font-weight: 300;
}

/* =====================================================
    GALLERY
===================================================== */
.galerie {
    padding: 8rem 0 8rem 3rem;
    background: var(--cream);
    overflow: hidden;
}

.galerie-header {
    max-width: 1320px;
    margin: 0 auto 3.5rem;
    padding-right: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.galerie-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.galerie-counter {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    min-width: 40px;
    text-align: center;
}

.galerie-arrows {
    display: flex;
    gap: 0.5rem;
}

.gal-btn {
    width: 44px; height: 44px;
    border: 1px solid var(--stone);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
    transition: all 0.3s;
}
.gal-btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.galerie-viewport { overflow: hidden; }

.galerie-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.65s var(--ease-out);
    will-change: transform;
}

.galerie-slide {
    flex: 0 0 calc(33.333% - 1rem);
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
}

/* CSS art gallery images — stone / alabaster / lifestyle */
.galerie-slide .slide-inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transition: transform 0.7s ease;
}
.galerie-slide:hover .slide-inner { transform: scale(1.04); }

.slide-bg {
    position: absolute;
    inset: 0;
}

.slide-label {
    position: absolute;
    bottom: 1.8rem;
    left: 1.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
}

/* Real gallery photos */
.slide-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark backdrop for transparent cutout photos (e.g. diffusion shot) */
.slide-dark .slide-inner { background: linear-gradient(165deg, #2C2824 0%, #3E3530 30%, #524840 60%, #706055 100%); }
.slide-photo-contain { object-fit: contain; padding: 8%; box-sizing: border-box; }

/* Gradient overlay for label legibility over photos */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,16,12,0.55) 0%, rgba(20,16,12,0) 45%);
    pointer-events: none;
}

/* =====================================================
    TESTIMONIALS
===================================================== */
.temoignages {
    padding: 8rem 3rem;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.temoignages::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 30rem;
    color: rgba(255,255,255,0.02);
    line-height: 1;
    pointer-events: none;
    select: none;
}

.temo-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.temo-header .section-title { color: var(--cream); }

.temo-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.temo-card {
    border: 1px solid rgba(255,255,255,0.07);
    padding: 2.8rem;
    background: rgba(255,255,255,0.025);
    transition: background 0.35s, border-color 0.35s;
    position: relative;
}
.temo-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(184,147,90,0.35); }

.temo-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.6rem;
}

.temo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.72;
    color: rgba(242,234,224,0.82);
    margin-bottom: 2.2rem;
}

.temo-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.author-init {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--stone), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ink);
    flex-shrink: 0;
}

.author-name  { font-size: 0.84rem; font-weight: 500; color: var(--cream); }
.author-role  { font-size: 0.74rem; color: rgba(242,234,224,0.38); font-weight: 300; margin-top: 0.1rem; }

/* =====================================================
    FAQ
===================================================== */
.faq {
    padding: 8rem 3rem;
    background: var(--bg);
}

.faq-inner {
    max-width: 820px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.faq-item {
    border-top: 1px solid var(--stone-lt);
}
.faq-item:last-child { border-bottom: 1px solid var(--stone-lt); }

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.9rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    font-weight: 400;
    color: var(--ink);
    text-align: left;
    gap: 1rem;
    transition: color 0.3s;
}
.faq-btn:hover { color: var(--gold); }

.faq-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    position: relative;
    transition: transform 0.4s ease;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
}
.faq-icon::before { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after  { width: 1px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); transition: opacity 0.3s, transform 0.4s; }

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0,1,0,1);
}
.faq-item.open .faq-body {
    max-height: 350px;
    transition: max-height 0.55s ease;
}

.faq-body-inner {
    padding: 0 0 2rem;
    font-size: 0.9rem;
    line-height: 1.88;
    color: var(--muted);
    font-weight: 300;
}

/* =====================================================
    CONTACT
===================================================== */
.contact {
    padding: 8rem 3rem;
    background: var(--cream);
}

.contact-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 7rem;
    align-items: start;
}

.contact-info { padding-top: 0.5rem; }
.contact-info .section-title { margin: 1rem 0 1.8rem; }
.contact-info .section-title em { font-style: italic; color: var(--gold); }

.contact-blurb {
    font-size: 0.93rem;
    line-height: 1.9;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 3rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
    font-size: 0.84rem;
    color: var(--muted);
}

.c-icon {
    width: 34px; height: 34px;
    border: 1px solid var(--stone);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.6rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 400;
}

.form-ctrl {
    width: 100%;
    padding: 0.85rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--stone);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    border-radius: 0;
}
.form-ctrl:focus  { border-bottom-color: var(--gold); }
.form-ctrl::placeholder { color: rgba(122,110,98,0.4); }

textarea.form-ctrl {
    resize: none;
    min-height: 110px;
}

.form-notice {
    font-size: 0.75rem;
    color: rgba(122,110,98,0.55);
    font-weight: 300;
}

.form-success-msg {
    display: none;
    padding: 1.3rem 1.8rem;
    border: 1px solid rgba(184,147,90,0.35);
    background: rgba(184,147,90,0.05);
    font-size: 0.84rem;
    color: var(--gold);
}

/* =====================================================
    FOOTER
===================================================== */
.footer {
    background: var(--ink);
    padding: 5rem 3rem 2.5rem;
}

.footer-top {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand {}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    display: block;
}
.footer-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242,234,224,0.32);
    margin-top: 0.4rem;
}

.footer-cols {
    display: flex;
    gap: 5rem;
}

.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1.4rem;
}

.footer-col a {
    display: block;
    font-size: 0.84rem;
    color: rgba(242,234,224,0.45);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-weight: 300;
    transition: color 0.3s;
}
.footer-col a:hover { color: rgba(242,234,224,0.85); }

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.73rem;
    color: rgba(242,234,224,0.25);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}
.footer-bottom a:hover { color: rgba(242,234,224,0.5); }

.footer-legals { display: flex; gap: 2rem; }

/* =====================================================
    TOAST NOTIFICATION
===================================================== */
.toast {
    position: fixed;
    bottom: 2rem; right: 2rem;
    background: var(--ink);
    color: var(--cream);
    padding: 1rem 1.8rem;
    font-size: 0.84rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    letter-spacing: 0.04em;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* =====================================================
    CUSTOM CURSOR (desktop)
===================================================== */
@media (hover: hover) {
    body { cursor: none; }
    a, button, .feature-card, .galerie-slide { cursor: none; }

    .cursor {
        position: fixed;
        width: 8px; height: 8px;
        background: var(--ink);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: transform 0.05s, width 0.3s, height 0.3s, background 0.3s;
        mix-blend-mode: multiply;
    }

    .cursor-ring {
        position: fixed;
        width: 36px; height: 36px;
        border: 1px solid rgba(28,26,23,0.35);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9997;
        transform: translate(-50%, -50%);
        transition: transform 0.12s ease, width 0.4s, height 0.4s, border-color 0.3s;
    }

    .cursor.hover   { width: 14px; height: 14px; background: var(--gold); }
    .cursor-ring.hover { width: 52px; height: 52px; border-color: rgba(184,147,90,0.5); }
}

/* =====================================================
    RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
    .produit-inner, .contact-inner { grid-template-columns: 1fr; gap: 3.5rem; }
    .produit-badge { bottom: -1rem; right: -1rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .temo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav        { padding: 1.1rem 1.5rem; }
    .nav.scrolled { padding: 0.75rem 1.5rem; }
    .nav-links  { display: none; }
    .nav-hamburger { display: flex; }

    section, .manifesto, .features, .galerie, .temoignages, .faq, .contact {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    .galerie { padding-left: 1.5rem !important; }

    .features-header { flex-direction: column; align-items: flex-start; }
    .features-grid   { grid-template-columns: 1fr; gap: 1.5rem; }
    .temo-grid       { grid-template-columns: 1fr; }
    .footer-cols     { flex-direction: column; gap: 2rem; }
    .footer-top      { flex-direction: column; }
    .form-row        { grid-template-columns: 1fr; }

    .galerie-slide { flex: 0 0 calc(75% - 0.75rem); }
    .orb-wrap      { width: 230px; }
    .hero-title    { font-size: clamp(3rem, 11vw, 5rem); }
}

@media (max-width: 480px) {
    .galerie-slide { flex: 0 0 calc(90% - 0.75rem); }
    .hero-sub      { font-size: 0.72rem; }
}