/* ── TOKENS ────────────────────────────────────────────────── */
:root {
--noir:        #0B0B0B;
--encre:       #1A1018;
--or:          #D4A843;
--or-clair:    #F0C861;
--corail:      #E8523E;
--terre:       #C4541A;
--caramel:     #8B4513;
--creme:       #FBF6EE;
--blanc:       #FFFFFF;
--gris-doux:   #F2EDE6;
--gris-texte:  #6B5F57;
--violet:      #2D1B4E;
--violet-vif:  #7B2D8B;
--vert-afr:    #1E6A3E;
--font-display:'Cormorant Garamond', serif;
--font-body:   'Outfit', sans-serif;
}
/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--creme);
color: var(--noir);
font-family: var(--font-body);
overflow-x: hidden;
cursor: none;
}
/* ── CURSEUR CUSTOM ────────────────────────────────────────── */
#cursor {
position: fixed; top: 0; left: 0; z-index: 9999;
width: 22px; height: 22px; border-radius: 50%;
background: var(--or); mix-blend-mode: multiply;
pointer-events: none; transition: transform 0.15s ease, opacity 0.2s;
transform: translate(-50%, -50%);
}
#cursor-ring {
position: fixed; top: 0; left: 0; z-index: 9998;
width: 44px; height: 44px; border-radius: 50%;
border: 1.5px solid var(--corail);
pointer-events: none; transition: transform 0.35s ease;
transform: translate(-50%, -50%);
}
body:hover #cursor { opacity: 1; }
/* ── SCROLL PROGRESS ───────────────────────────────────────── */
#progress-bar {
position: fixed; top: 0; left: 0; height: 3px; z-index: 1000;
background: linear-gradient(90deg, var(--corail), var(--or));
width: 0%; transition: width 0.1s linear;
}
/* ── NAV ───────────────────────────────────────────────────── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 900;
display: flex; align-items: center; justify-content: space-between;
padding: 20px 48px;
transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
background: rgba(11, 11, 11, 0.94);
backdrop-filter: blur(16px);
padding: 12px 48px;
box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo {
font-family: var(--font-display);
font-size: 1.65rem; font-weight: 700;
color: var(--blanc); letter-spacing: 0.04em;
text-decoration: none; line-height: 1;
}
.nav-logo span { color: var(--or); }
.nav-links {
display: flex; gap: 36px; list-style: none;
}
.nav-links a {
color: rgba(255,255,255,0.8); text-decoration: none;
font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
text-transform: uppercase; position: relative;
transition: color 0.2s;
}
.nav-links a::after {
content: ''; position: absolute; bottom: -4px; left: 0;
width: 0; height: 1px; background: var(--or);
transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--or); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
background: var(--or); color: var(--noir) !important;
padding: 10px 24px; border-radius: 2px;
font-weight: 700 !important; letter-spacing: 0.06em !important;
transition: background 0.2s, transform 0.15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--or-clair) !important; transform: translateY(-1px); }
.hamburger {
display: none; flex-direction: column; gap: 5px;
cursor: pointer; padding: 4px;
}
.hamburger span {
display: block; width: 26px; height: 2px;
background: var(--blanc); border-radius: 2px;
transition: all 0.3s ease;
}
.mobile-menu {
display: none; position: fixed; inset: 0; z-index: 800;
background: var(--encre); flex-direction: column;
align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
color: var(--blanc); text-decoration: none;
font-family: var(--font-display); font-size: 2.8rem;
font-weight: 600; letter-spacing: 0.04em;
transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--or); }
/* ── HERO ──────────────────────────────────────────────────── */
#hero {
position: relative; min-height: 100vh;
display: flex; align-items: center;
background: var(--encre);
overflow: hidden;
}
.hero-bg-pattern {
position: absolute; inset: 0; z-index: 0;
opacity: 0.07;
background-image:
repeating-linear-gradient(45deg, var(--or) 0px, var(--or) 1px, transparent 1px, transparent 20px),
repeating-linear-gradient(-45deg, var(--corail) 0px, var(--corail) 1px, transparent 1px, transparent 20px);
}
.hero-gradient {
position: absolute; inset: 0; z-index: 1;
background: radial-gradient(ellipse 70% 90% at 60% 50%, rgba(212,168,67,0.12) 0%, transparent 70%),
radial-gradient(ellipse 50% 60% at 20% 80%, rgba(232,82,62,0.1) 0%, transparent 60%);
}
.hero-img-col {
position: absolute; right: 0; top: 0; bottom: 0;
width: 52%; z-index: 2;
overflow: hidden;
}
.hero-img-col img {
width: 100%; height: 100%; object-fit: cover;
object-position: top center;
filter: brightness(0.75) contrast(1.05);
}
.hero-img-overlay {
position: absolute; inset: 0;
background: linear-gradient(90deg, var(--encre) 0%, transparent 40%),
linear-gradient(to top, var(--encre) 0%, transparent 30%);
}
.hero-content {
position: relative; z-index: 3;
padding: 0 48px; max-width: 680px;
}
.hero-tag {
display: inline-flex; align-items: center; gap: 10px;
background: rgba(212,168,67,0.15); border: 1px solid rgba(212,168,67,0.4);
color: var(--or); font-size: 0.72rem; font-weight: 700;
letter-spacing: 0.2em; text-transform: uppercase;
padding: 8px 18px; border-radius: 2px;
margin-bottom: 28px;
animation: fadeUp 0.8s ease both;
}
.hero-tag::before {
content: ''; width: 24px; height: 1px; background: var(--or);
}
.hero-h1 {
font-family: var(--font-display);
font-size: clamp(3.5rem, 7vw, 6.5rem);
font-weight: 700; line-height: 0.95;
color: var(--blanc); letter-spacing: -0.02em;
animation: fadeUp 0.8s 0.15s ease both;
}
.hero-h1 em {
font-style: italic; color: var(--or); display: block;
}
.hero-sub {
font-size: 1.05rem; color: rgba(255,255,255,0.6);
font-weight: 300; line-height: 1.7; margin-top: 24px;
max-width: 440px;
animation: fadeUp 0.8s 0.3s ease both;
}
.hero-ctas {
display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap;
animation: fadeUp 0.8s 0.45s ease both;
}
.btn-primary {
background: var(--or); color: var(--noir);
padding: 16px 36px; border: none; border-radius: 2px;
font-family: var(--font-body); font-size: 0.88rem;
font-weight: 800; letter-spacing: 0.12em;
text-transform: uppercase; text-decoration: none;
cursor: pointer; transition: background 0.2s, transform 0.15s;
display: inline-block;
}
.btn-primary:hover { background: var(--or-clair); transform: translateY(-2px); }
.btn-outline {
background: transparent; color: var(--blanc);
padding: 15px 36px; border: 1px solid rgba(255,255,255,0.35);
border-radius: 2px; font-family: var(--font-body);
font-size: 0.88rem; font-weight: 600; letter-spacing: 0.08em;
text-transform: uppercase; text-decoration: none;
cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.15s;
display: inline-block;
}
.btn-outline:hover {
border-color: var(--or); color: var(--or);
transform: translateY(-2px);
}
.hero-stats {
display: flex; gap: 40px; margin-top: 64px;
animation: fadeUp 0.8s 0.6s ease both;
}
.hero-stat-val {
font-family: var(--font-display);
font-size: 2.2rem; font-weight: 700;
color: var(--or); line-height: 1;
}
.hero-stat-lbl {
font-size: 0.72rem; color: rgba(255,255,255,0.45);
text-transform: uppercase; letter-spacing: 0.12em;
margin-top: 4px;
}
.hero-scroll-hint {
position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
z-index: 3; display: flex; flex-direction: column;
align-items: center; gap: 8px;
color: rgba(255,255,255,0.35); font-size: 0.7rem;
letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
width: 1px; height: 48px;
background: linear-gradient(to bottom, var(--or), transparent);
animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
50%  { opacity: 1; transform: scaleY(1); }
100% { opacity: 0; transform: scaleY(1); }
}
/* ── TICKER BAND ───────────────────────────────────────────── */
.ticker-wrap {
background: var(--or); overflow: hidden;
padding: 14px 0; position: relative;
}
.ticker-track {
display: flex; white-space: nowrap;
animation: ticker 22s linear infinite;
}
.ticker-item {
padding: 0 60px;
font-size: 0.78rem; font-weight: 800;
letter-spacing: 0.2em; text-transform: uppercase;
color: var(--noir);
display: flex; align-items: center; gap: 24px;
}
.ticker-item::after {
content: '✦'; font-size: 0.6rem;
}
@keyframes ticker {
0%   { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
/* ── SECTION BASE ──────────────────────────────────────────── */
section { padding: 120px 48px; }
.section-tag {
display: inline-flex; align-items: center; gap: 12px;
color: var(--corail); font-size: 0.72rem; font-weight: 700;
letter-spacing: 0.22em; text-transform: uppercase;
margin-bottom: 20px;
}
.section-tag::before {
content: ''; width: 32px; height: 1px; background: var(--corail);
}
.section-h2 {
font-family: var(--font-display);
font-size: clamp(2.4rem, 4vw, 3.6rem);
font-weight: 700; line-height: 1.08;
letter-spacing: -0.01em; color: var(--noir);
}
.section-h2 em { font-style: italic; color: var(--corail); }
/* ── À PROPOS ──────────────────────────────────────────────── */
#apropos {
background: var(--blanc);
display: grid; grid-template-columns: 1fr 1fr;
gap: 80px; align-items: center;
padding: 120px 80px;
}
.apropos-img-grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
gap: 12px;
position: relative;
}
.apropos-img {
border-radius: 4px; overflow: hidden;
aspect-ratio: 3/4; background: var(--gris-doux);
position: relative;
}
.apropos-img:first-child {
grid-row: span 2;
aspect-ratio: unset;
}
.apropos-img img {
width: 100%; height: 100%; object-fit: cover;
transition: transform 0.6s ease;
}
.apropos-img:hover img { transform: scale(1.04); }
.apropos-badge {
position: absolute; bottom: 20px; left: 20px;
background: var(--or); color: var(--noir);
padding: 12px 18px; border-radius: 2px;
font-weight: 800; font-size: 0.75rem;
letter-spacing: 0.1em; text-transform: uppercase;
}
.apropos-text p {
font-size: 1.05rem; color: var(--gris-texte);
line-height: 1.8; margin-top: 20px;
}
.apropos-vals {
display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px;
}
.apropos-val {
background: var(--gris-doux); padding: 10px 18px;
border-radius: 2px; font-size: 0.8rem; font-weight: 700;
letter-spacing: 0.08em; text-transform: uppercase;
color: var(--gris-texte);
border-left: 3px solid var(--or);
}
/* ── SERVICES / COLLECTIONS ────────────────────────────────── */
#services {
background: var(--encre);
padding: 120px 48px;
}
#services .section-h2 { color: var(--blanc); }
#services .section-tag { color: var(--or); }
#services .section-tag::before { background: var(--or); }
.services-intro {
color: rgba(255,255,255,0.5); font-size: 1rem;
max-width: 520px; line-height: 1.7; margin-top: 18px;
}
.services-header {
display: flex; justify-content: space-between;
align-items: flex-end; margin-bottom: 64px; flex-wrap: wrap; gap: 24px;
}
.collections-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
}
.collection-card {
position: relative; overflow: hidden;
aspect-ratio: 4/5; cursor: pointer;
background: #1e1e1e;
}
.collection-card:first-child {
grid-row: span 2; aspect-ratio: unset;
}
.collection-card img {
width: 100%; height: 100%; object-fit: cover;
transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
filter: brightness(0.7);
}
.collection-card:hover img {
transform: scale(1.07); filter: brightness(0.55);
}
.collection-card-overlay {
position: absolute; inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
transition: background 0.4s;
}
.collection-card:hover .collection-card-overlay {
background: linear-gradient(to top, rgba(212,168,67,0.4) 0%, rgba(0,0,0,0.3) 100%);
}
.collection-card-label {
position: absolute; bottom: 0; left: 0; right: 0;
padding: 28px 24px;
}
.col-cat {
font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
text-transform: uppercase; color: var(--or);
margin-bottom: 6px;
}
.col-title {
font-family: var(--font-display);
font-size: 1.7rem; font-weight: 700; color: var(--blanc);
line-height: 1;
}
.col-arrow {
position: absolute; top: 24px; right: 24px;
width: 40px; height: 40px; border-radius: 50%;
background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
display: flex; align-items: center; justify-content: center;
color: var(--blanc); font-size: 1rem;
transform: rotate(45deg) scale(0.8);
opacity: 0; transition: all 0.3s ease;
}
.collection-card:hover .col-arrow {
opacity: 1; transform: rotate(45deg) scale(1);
}
/* ── GALERIE ───────────────────────────────────────────────── */
#galerie {
background: var(--creme);
padding: 120px 0;
overflow: hidden;
}
.galerie-header {
padding: 0 48px; margin-bottom: 56px;
display: flex; align-items: flex-end;
justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.galerie-strip {
display: flex; gap: 16px;
padding: 0 48px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
cursor: grab;
}
.galerie-strip::-webkit-scrollbar { display: none; }
.galerie-strip:active { cursor: grabbing; }
.galerie-item {
flex: 0 0 300px; scroll-snap-align: start;
border-radius: 4px; overflow: hidden;
background: var(--gris-doux);
position: relative;
}
.galerie-item:nth-child(2n) { flex: 0 0 240px; }
.galerie-item:nth-child(3n) { flex: 0 0 360px; }
.galerie-img {
width: 100%; aspect-ratio: 3/4;
object-fit: cover; display: block;
transition: transform 0.6s ease;
}
.galerie-item:hover .galerie-img { transform: scale(1.05); }
.galerie-item-label {
position: absolute; bottom: 0; left: 0; right: 0;
padding: 20px 16px 16px;
background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
color: var(--blanc);
font-size: 0.78rem; font-weight: 600;
letter-spacing: 0.06em; text-transform: uppercase;
opacity: 0; transform: translateY(8px);
transition: all 0.3s ease;
}
.galerie-item:hover .galerie-item-label {
opacity: 1; transform: translateY(0);
}
.galerie-placeholder {
width: 100%; height: 100%;
min-height: 360px;
display: flex; flex-direction: column;
align-items: center; justify-content: center;
gap: 12px; color: #bbb;
}
.galerie-placeholder .icon { font-size: 2.5rem; opacity: 0.4; }
.galerie-placeholder .txt {
font-size: 0.72rem; letter-spacing: 0.12em;
text-transform: uppercase; opacity: 0.5;
}
/* ── WHY / ATOUTS ──────────────────────────────────────────── */
#atouts {
background: var(--blanc);
padding: 100px 48px;
}
.atouts-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2px; margin-top: 64px;
}
.atout-card {
background: var(--gris-doux);
padding: 48px 32px;
transition: background 0.3s;
position: relative; overflow: hidden;
}
.atout-card:hover { background: var(--encre); }
.atout-card:hover .atout-num,
.atout-card:hover .atout-title,
.atout-card:hover .atout-desc { color: var(--blanc); }
.atout-num {
font-family: var(--font-display);
font-size: 4rem; font-weight: 700;
color: rgba(212,168,67,0.2); line-height: 1;
margin-bottom: 24px; transition: color 0.3s;
}
.atout-card:hover .atout-num { color: rgba(212,168,67,0.4); }
.atout-icon { font-size: 2rem; margin-bottom: 16px; }
.atout-title {
font-family: var(--font-display);
font-size: 1.4rem; font-weight: 700;
line-height: 1.2; margin-bottom: 12px;
transition: color 0.3s;
}
.atout-desc {
font-size: 0.88rem; color: var(--gris-texte);
line-height: 1.7; transition: color 0.3s;
}
.atout-card:hover .atout-desc { color: rgba(255,255,255,0.6); }
/* ── CONTACT ───────────────────────────────────────────────── */
#contact {
background: var(--encre);
padding: 120px 48px;
position: relative; overflow: hidden;
}
.contact-pattern {
position: absolute; top: -40%; right: -20%;
width: 700px; height: 700px; border-radius: 50%;
background: radial-gradient(circle, rgba(212,168,67,0.07) 0%, transparent 70%);
pointer-events: none;
}
.contact-pattern2 {
position: absolute; bottom: -30%; left: -10%;
width: 500px; height: 500px; border-radius: 50%;
background: radial-gradient(circle, rgba(232,82,62,0.06) 0%, transparent 70%);
pointer-events: none;
}
#contact .section-h2 { color: var(--blanc); }
#contact .section-tag { color: var(--or); }
#contact .section-tag::before { background: var(--or); }
.contact-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 80px; margin-top: 64px;
}
.contact-info p {
color: rgba(255,255,255,0.55); font-size: 1rem;
line-height: 1.8; margin-bottom: 44px;
}
.contact-items { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
display: flex; align-items: flex-start; gap: 20px;
}
.ci-icon {
width: 50px; height: 50px; border-radius: 2px;
background: rgba(212,168,67,0.12);
border: 1px solid rgba(212,168,67,0.25);
display: flex; align-items: center; justify-content: center;
font-size: 1.4rem; flex-shrink: 0;
}
.ci-label {
font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
text-transform: uppercase; color: var(--or); margin-bottom: 4px;
}
.ci-val {
color: var(--blanc); font-size: 0.97rem; font-weight: 500;
}
.ci-val.placeholder {
color: rgba(255,255,255,0.4);
font-style: italic; font-size: 0.82rem;
}
/* ── FORM ──────────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.form-group input,
.form-group textarea,
.form-group select {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.12);
border-radius: 2px; padding: 14px 18px;
color: var(--blanc); font-family: var(--font-body);
font-size: 0.92rem; outline: none;
transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: rgba(255,255,255,0.25);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
border-color: var(--or);
background: rgba(212,168,67,0.05);
}
.form-group select option { background: var(--encre); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
background: var(--or); color: var(--noir);
padding: 18px; border: none; border-radius: 2px;
font-family: var(--font-body); font-size: 0.88rem;
font-weight: 800; letter-spacing: 0.14em;
text-transform: uppercase; cursor: pointer;
transition: background 0.2s, transform 0.15s;
margin-top: 8px;
}
.form-submit:hover { background: var(--or-clair); transform: translateY(-2px); }
/* ── FLOATING WA BTN ───────────────────────────────────────── */
#wa-float {
position: fixed; bottom: 32px; right: 32px; z-index: 800;
width: 58px; height: 58px; border-radius: 50%;
background: #25D366; color: white;
display: flex; align-items: center; justify-content: center;
font-size: 1.6rem; text-decoration: none;
box-shadow: 0 8px 30px rgba(37,211,102,0.4);
transition: transform 0.2s, box-shadow 0.2s;
animation: waPulse 3s ease infinite;
}
#wa-float:hover {
transform: scale(1.1);
box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
@keyframes waPulse {
0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
50%      { box-shadow: 0 8px 50px rgba(37,211,102,0.65); }
}
.wa-tooltip {
position: absolute; right: 70px; top: 50%;
transform: translateY(-50%);
background: var(--noir); color: var(--blanc);
font-size: 0.75rem; font-weight: 600; white-space: nowrap;
padding: 7px 14px; border-radius: 20px;
opacity: 0; pointer-events: none;
transition: opacity 0.2s;
}
#wa-float:hover .wa-tooltip { opacity: 1; }
/* ── FOOTER ────────────────────────────────────────────────── */
footer {
background: #050505; padding: 64px 48px 40px;
display: grid; grid-template-columns: 2fr 1fr 1fr;
gap: 60px;
}
.footer-brand { max-width: 320px; }
.footer-logo {
font-family: var(--font-display);
font-size: 1.8rem; font-weight: 700;
color: var(--blanc); margin-bottom: 16px;
}
.footer-logo span { color: var(--or); }
.footer-tagline {
font-size: 0.88rem; color: rgba(255,255,255,0.4);
font-style: italic; font-family: var(--font-display);
line-height: 1.6;
}
.footer-divider {
width: 40px; height: 1px; background: var(--or);
margin: 20px 0;
}
.footer-copy {
font-size: 0.75rem; color: rgba(255,255,255,0.25);
line-height: 1.6;
}
.footer-h {
font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
text-transform: uppercase; color: var(--or);
margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
color: rgba(255,255,255,0.45); text-decoration: none;
font-size: 0.88rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--or); }
.footer-bottom {
background: #050505; border-top: 1px solid rgba(255,255,255,0.05);
padding: 20px 48px; display: flex;
align-items: center; justify-content: space-between;
}
.footer-bottom p {
color: rgba(255,255,255,0.2); font-size: 0.72rem;
letter-spacing: 0.04em;
}
.footer-badge {
display: flex; align-items: center; gap: 8px;
color: rgba(255,255,255,0.25); font-size: 0.7rem;
}
.footer-badge span { color: var(--or); }
/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to   { opacity: 1; transform: translateY(0); }
}
.reveal {
opacity: 0; transform: translateY(32px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
opacity: 1; transform: translateY(0);
}
.reveal-left {
opacity: 0; transform: translateX(-40px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
opacity: 0; transform: translateX(40px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
#apropos {
grid-template-columns: 1fr;
padding: 80px 40px;
}
.collections-grid {
grid-template-columns: repeat(2, 1fr);
}
.collection-card:first-child { grid-row: auto; }
.atouts-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: 1fr; gap: 48px; }
footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
nav { padding: 16px 24px; }
nav.scrolled { padding: 12px 24px; }
.nav-links { display: none; }
.hamburger { display: flex; }
section { padding: 80px 24px; }
.hero-content { padding: 0 24px; }
.hero-img-col { display: none; }
#apropos { padding: 80px 24px; }
.collections-grid { grid-template-columns: 1fr; }
.atouts-grid { grid-template-columns: 1fr; }
.galerie-header { padding: 0 24px; }
.galerie-strip { padding: 0 24px; }
.form-row { grid-template-columns: 1fr; }
footer { grid-template-columns: 1fr; padding: 48px 24px 32px; gap: 40px; }
.footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; }
#contact { padding: 80px 24px; }
body { cursor: auto; }
#cursor, #cursor-ring { display: none; }
}