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

:root {
  --noir: #0a0a0a;
  --noir-deep: #050505;
  --noir-soft: #101010;
  --or: #c8b47a;
  --or-light: #daca90;
  --or-pale: #e8dbb8;
  --or-dark: #a09060;
  --creme: #f0ece4;
  --gris: #8a7d68;
  --text-soft: rgba(240,236,228,0.55);
  --text-softer: rgba(240,236,228,0.3);
  --line: rgba(200,180,120,0.08);
  --line-soft: rgba(200,180,120,0.05);
  --card-bg: rgba(200,180,120,0.02);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', 'Montserrat', sans-serif;
  background: var(--noir);
  color: var(--creme);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes pulse-glow { 0%, 100% { opacity: 0.03; } 50% { opacity: 0.08; } }
@keyframes grain-drift { 0% { transform: translateY(0) rotate(0deg); opacity: 0; } 10% { opacity: 0.06; } 90% { opacity: 0.06; } 100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; } }
@keyframes line-grow { from { width: 0; } to { width: 80px; } }
@keyframes scroll-hint { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; } 50% { transform: translateX(-50%) translateY(8px); opacity: 0.6; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 60px; display: flex; align-items: center; justify-content: space-between;
  background: transparent; transition: all 0.5s ease;
}
nav.scrolled { padding: 16px 60px; background: rgba(5,5,5,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line-soft); }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 22px; letter-spacing: 6px; color: var(--or); text-decoration: none; text-transform: uppercase; }
.nav-logo span { font-weight: 300; font-size: 10px; letter-spacing: 4px; color: var(--gris); display: block; margin-top: 3px; }
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a { font-weight: 300; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-soft); text-decoration: none; transition: color 0.3s; position: relative; }
.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 { font-weight: 400; font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--noir); background: var(--or); padding: 12px 28px; text-decoration: none; transition: all 0.4s; position: relative; overflow: hidden; }
.nav-cta::before { content: ''; position: absolute; top: 0; left: -100%; right: 0; bottom: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.5s; }
.nav-cta:hover::before { left: 100%; }
.nav-cta:hover { background: var(--or-light); box-shadow: 0 4px 20px rgba(200,180,120,0.2); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--or); transition: all 0.3s; }

/* ===== BUTTONS ===== */
.btn-primary, .btn-ghost {
  display: inline-block; font-weight: 400; font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
  padding: 18px 56px; text-decoration: none; transition: all 0.5s; position: relative; cursor: pointer; border: none;
}
.btn-primary { color: var(--noir); background: var(--or); }
.btn-primary:hover { background: var(--or-light); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(200,180,120,0.2); letter-spacing: 8px; }
.btn-ghost { color: var(--or); background: transparent; border: 1px solid rgba(200,180,120,0.3); }
.btn-ghost:hover { border-color: var(--or); background: rgba(200,180,120,0.05); letter-spacing: 8px; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 40px 80px; position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; filter: grayscale(15%); }
.hero-media::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.88) 70%, var(--noir) 100%); }
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(200,180,120,0.06) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: pulse-glow 6s ease-in-out infinite; pointer-events: none; }
.hero-grains { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-grain { position: absolute; width: 4px; height: 4px; background: var(--or); border-radius: 50%; animation: grain-drift 18s linear infinite; }
.hero > *:not(.hero-media):not(.hero-glow):not(.hero-grains) { position: relative; z-index: 1; }
.hero-pre { font-weight: 200; font-size: 11px; letter-spacing: 10px; text-transform: uppercase; color: var(--or); opacity: 0; animation: fadeUp 1s ease 0.3s forwards; margin-bottom: 40px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(44px, 7.5vw, 96px); color: var(--creme); letter-spacing: 3px; line-height: 1.05; margin-bottom: 30px; opacity: 0; animation: fadeUp 1s ease 0.6s forwards; }
.hero-title em { font-family: 'Playfair Display', serif; font-style: italic; background: linear-gradient(90deg, var(--or), var(--or-pale), var(--or)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 4s linear infinite; }
.hero-line { width: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--or), transparent); margin: 0 auto 30px; animation: line-grow 1.2s ease 1s forwards; }
.hero-sub { font-weight: 200; font-size: 17px; letter-spacing: 1px; color: var(--text-soft); max-width: 600px; line-height: 1.9; margin-bottom: 45px; opacity: 0; animation: fadeUp 1s ease 1.2s forwards; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; opacity: 0; animation: fadeUp 1s ease 1.5s forwards; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: scroll-hint 2.5s ease-in-out infinite; z-index: 1; }
/* Masque l'indicateur de scroll quand le hero n'est pas assez haut (laptops) : évite le chevauchement avec les CTA. */
@media (max-height: 860px) { .hero-scroll { display: none; } }
.hero-scroll span { font-weight: 200; font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--or); opacity: 0.4; }
.hero-scroll svg { width: 16px; height: 16px; stroke: var(--or); opacity: 0.3; }

/* ===== PROOF BAR ===== */
.proofbar { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 36px 40px; }
.proofbar-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around; gap: 30px; }
.proof-stat { text-align: center; }
.proof-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 34px; color: var(--or); line-height: 1; }
.proof-stat span { font-weight: 200; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-soft); margin-top: 8px; display: block; }
.proof-logos { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: center; }
.proof-logos .logo-ph { font-family: 'Cormorant Garamond', serif; font-size: 18px; letter-spacing: 2px; color: var(--text-softer); opacity: 0.7; }

/* ===== SECTION SHARED ===== */
section { padding: 140px 40px; max-width: 1200px; margin: 0 auto; position: relative; }
.section-label { font-weight: 300; font-size: 10px; letter-spacing: 7px; text-transform: uppercase; color: var(--or); opacity: 0.45; margin-bottom: 24px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(34px, 4vw, 52px); color: var(--creme); letter-spacing: 2px; margin-bottom: 24px; line-height: 1.15; }
.section-text { font-weight: 300; font-size: 15px; line-height: 2; color: var(--text-soft); max-width: 620px; }
.section-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,180,120,0.1), transparent); }
.center { text-align: center; }
.center .section-text { margin-left: auto; margin-right: auto; }

/* ===== IMMERSION ===== */
.immersion { padding: 180px 40px; text-align: center; position: relative; overflow: hidden; }
.immersion::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(200,180,120,0.04) 0%, transparent 60%); pointer-events: none; }
.immersion-text { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(20px, 2.8vw, 32px); color: var(--creme); max-width: 850px; margin: 0 auto; line-height: 1.7; letter-spacing: 0.5px; position: relative; z-index: 1; opacity: 0.9; }
.immersion-accent { color: var(--or); font-weight: 500; }

/* ===== EXPERIENCE ===== */
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 70px; }
.exp-card { padding: 50px 44px; border: 1px solid var(--line); background: linear-gradient(145deg, var(--card-bg) 0%, transparent 60%); transition: all 0.5s ease; position: relative; overflow: hidden; }
.exp-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--or), transparent); opacity: 0; transition: opacity 0.5s; }
.exp-card:hover { border-color: rgba(200,180,120,0.15); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.exp-card:hover::before { opacity: 0.4; }
.exp-num { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 56px; color: var(--or); opacity: 0.9; line-height: 1; margin-bottom: 24px; }
.exp-name { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 26px; color: var(--creme); letter-spacing: 2px; margin-bottom: 16px; }
.exp-desc { font-weight: 300; font-size: 14px; line-height: 1.9; color: var(--text-soft); }

/* ===== PROCESS / COMMENT CA SE PASSE ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 70px; counter-reset: step; }
.step { position: relative; padding-top: 30px; }
.step::before { content: ''; position: absolute; top: 6px; left: 0; right: 0; height: 1px; background: var(--line); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 14px; letter-spacing: 2px; color: var(--or); margin-bottom: 18px; }
.step-name { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 21px; color: var(--creme); margin-bottom: 12px; letter-spacing: 1px; }
.step-desc { font-weight: 300; font-size: 13.5px; line-height: 1.8; color: var(--text-soft); }

/* ===== FORMATS ===== */
.format-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 60px; border: 1px solid var(--line); }
.format-item { padding: 50px 44px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: all 0.5s; position: relative; }
.format-item:nth-child(2n) { border-right: none; }
.format-item:nth-child(n+3) { border-bottom: none; }
.format-list.three { grid-template-columns: repeat(3, 1fr); }
.format-list.three .format-item { border-bottom: none; border-right: 1px solid var(--line); }
.format-list.three .format-item:nth-child(3n) { border-right: none; }
.format-item::after { content: ''; position: absolute; bottom: 0; left: 44px; width: 0; height: 1px; background: var(--or); transition: width 0.5s; }
.format-item:hover { background: var(--card-bg); }
.format-item:hover::after { width: calc(100% - 88px); }
.format-icon { font-size: 28px; margin-bottom: 20px; opacity: 0.7; }
.format-name { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 26px; color: var(--or); margin-bottom: 12px; letter-spacing: 1px; }
.format-detail { font-weight: 300; font-size: 14px; line-height: 1.9; color: var(--text-soft); }

/* ===== OFFER / PRICING ===== */
.offer { text-align: center; padding: 140px 40px; position: relative; overflow: hidden; }
.offer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, rgba(200,180,120,0.05) 0%, transparent 60%); pointer-events: none; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 70px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.offer-card { border: 1px solid var(--line); background: linear-gradient(160deg, var(--card-bg), transparent); padding: 56px 44px; text-align: left; position: relative; transition: all 0.5s; display: flex; flex-direction: column; }
.offer-card.featured { border-color: rgba(200,180,120,0.3); background: linear-gradient(160deg, rgba(200,180,120,0.06), transparent); }
.offer-card.exception { border-color: rgba(200,180,120,0.5); background: linear-gradient(160deg, rgba(200,180,120,0.1), rgba(10,10,10,0.15)); box-shadow: 0 0 50px rgba(200,180,120,0.07); }
.offer-card.exception .offer-badge { background: linear-gradient(135deg, #ead9a6, var(--or)); }
.offer-card.exception .offer-name { color: var(--or); }
.offer-card.exception:hover { border-color: rgba(200,180,120,0.7); }
.offer-card.bordered { border-color: rgba(200,180,120,0.3); }
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.35); border-color: rgba(200,180,120,0.25); }
.offer-card > .btn-primary, .offer-card > .btn-ghost { margin-top: auto; text-align: center; }
.offer-badge { position: absolute; top: 0; right: 32px; transform: translateY(-50%); background: var(--or); color: var(--noir); font-size: 9px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; padding: 7px 16px; }
.offer-name { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 28px; color: var(--creme); letter-spacing: 1px; margin-bottom: 10px; }
.offer-tag { font-weight: 200; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); opacity: 0.6; margin-bottom: 28px; }
.offer-price { font-family: 'Cormorant Garamond', serif; font-weight: 400; color: var(--creme); margin-bottom: 28px; }
.offer-price .from { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-soft); display: block; margin-bottom: 4px; }
.offer-price .amount { font-size: 48px; color: var(--or); }
.offer-price .unit { font-size: 14px; color: var(--text-soft); }
.offer-price.devis .amount { font-size: 34px; }
.offer-features { list-style: none; margin-bottom: 36px; }
.offer-features li { font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--text-soft); padding: 11px 0 11px 26px; border-bottom: 1px solid var(--line-soft); position: relative; }
.offer-features li::before { content: '◆'; position: absolute; left: 0; color: var(--or); font-size: 9px; top: 14px; }
.offer-features li:last-child { border-bottom: none; }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 70px; }
.testi-card { border: 1px solid var(--line); background: var(--card-bg); padding: 44px 36px; transition: all 0.5s; }
.testi-card:hover { transform: translateY(-6px); border-color: rgba(200,180,120,0.18); }
.testi-stars { color: var(--or); letter-spacing: 3px; font-size: 13px; margin-bottom: 22px; }
.testi-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 17px; line-height: 1.7; color: var(--creme); opacity: 0.92; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--or-dark), var(--or)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--noir); flex-shrink: 0; }
.testi-meta strong { display: block; font-weight: 400; font-size: 14px; letter-spacing: 1px; color: var(--creme); }
.testi-meta span { font-weight: 200; font-size: 11px; letter-spacing: 2px; color: var(--text-soft); }

/* ===== FOUNDER TEASER ===== */
.founder { display: grid; grid-template-columns: 0.85fr 1fr; gap: 60px; align-items: center; }
.founder-photo { aspect-ratio: 4/5; border: 1px solid var(--line); background: linear-gradient(160deg, rgba(200,180,120,0.08), rgba(10,10,10,0.4)); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.founder-photo .photo-hint { font-weight: 200; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-softer); text-align: center; padding: 20px; }
.founder-body .immersion-accent { font-style: italic; font-family: 'Playfair Display', serif; }

/* ===== INSTAGRAM ===== */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 60px; }
.insta-cell { aspect-ratio: 1; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(200,180,120,0.05), rgba(10,10,10,0.3)); position: relative; overflow: hidden; transition: all 0.5s; }
.insta-cell img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 0.6s; }
.insta-cell:hover img { transform: scale(1.06); }
.insta-cell .insta-hint { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--text-softer); }
.insta-handle { display: inline-block; margin-top: 36px; font-weight: 300; font-size: 13px; letter-spacing: 3px; color: var(--or); text-decoration: none; opacity: 0.7; transition: opacity 0.3s; }
.insta-handle:hover { opacity: 1; }

/* ---- Galerie événements ---- */
.gallery { padding: 20px 40px 40px; }
.gallery-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-cell { aspect-ratio: 4/3; border: 1px solid rgba(200,180,120,0.18); background: linear-gradient(135deg, rgba(200,180,120,0.07), rgba(10,10,10,0.35)); position: relative; overflow: hidden; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 0.6s; }
.gallery-cell:hover img { transform: scale(1.05); }
.gallery-cell .photo-hint { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-weight: 200; font-size: 11px; letter-spacing: 3px; line-height: 1.7; text-transform: uppercase; color: var(--text-soft); text-align: center; padding: 16px; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 28px 40px 28px 0; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--creme); letter-spacing: 0.5px; position: relative; transition: color 0.3s; }
.faq-q:hover { color: var(--or); }
.faq-q::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 200; color: var(--or); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 40px 28px 0; font-weight: 300; font-size: 14.5px; line-height: 1.9; color: var(--text-soft); }

/* ===== QUOTE ===== */
.quote-section { text-align: center; padding: 160px 40px; position: relative; overflow: hidden; }
.quote-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(200,180,120,0.04); pointer-events: none; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 120px; color: var(--or); opacity: 0.08; line-height: 0.6; margin-bottom: 30px; }
.quote-text { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(22px, 3vw, 34px); color: var(--creme); max-width: 800px; margin: 0 auto 40px; line-height: 1.65; letter-spacing: 0.5px; position: relative; z-index: 1; }
.quote-author { font-weight: 300; font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--or); opacity: 0.5; }

/* ===== CONTACT / FORM ===== */
.contact { padding: 160px 40px; position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 20%, rgba(200,180,120,0.05) 0%, transparent 55%); pointer-events: none; }
.contact-inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 1; }
.contact-pre { font-weight: 200; font-size: 10px; letter-spacing: 7px; text-transform: uppercase; color: var(--or); opacity: 0.45; margin-bottom: 24px; text-align: center; }
.contact-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(38px, 5vw, 60px); color: var(--creme); letter-spacing: 3px; margin-bottom: 20px; text-align: center; }
.contact-sub { font-weight: 200; font-size: 16px; color: var(--text-soft); max-width: 560px; margin: 0 auto 60px; line-height: 1.9; text-align: center; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; }
.field label { font-weight: 300; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-soft); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.02); border: 1px solid var(--line); color: var(--creme);
  padding: 15px 16px; font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 300; transition: all 0.3s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--or); background: rgba(200,180,120,0.04); }
.field select { appearance: none; cursor: pointer; }
.field ::placeholder { color: var(--text-softer); }
.form-submit { text-align: center; margin-top: 14px; }
.form-note { font-weight: 200; font-size: 11px; letter-spacing: 1px; color: var(--text-softer); text-align: center; margin-top: 18px; line-height: 1.7; }
.form-consent { margin-top: 4px; }
.form-consent label { display: flex; align-items: flex-start; gap: 12px; font-weight: 300; font-size: 12px; letter-spacing: 0.4px; line-height: 1.7; text-transform: none; color: var(--text-soft); margin-bottom: 0; cursor: pointer; }
.form-consent input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--or); cursor: pointer; }
.form-consent a { color: var(--or); text-decoration: underline; text-underline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.form-success { display: none; text-align: center; padding: 40px; border: 1px solid rgba(200,180,120,0.3); background: rgba(200,180,120,0.04); }
.form-success.show { display: block; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 26px; color: var(--or); margin-bottom: 12px; }

.contact-direct { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 50px; }
.contact-chip { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--line); padding: 14px 26px; text-decoration: none; color: var(--creme); font-weight: 300; font-size: 13px; letter-spacing: 2px; transition: all 0.4s; }
.contact-chip:hover { border-color: var(--or); background: rgba(200,180,120,0.04); transform: translateY(-2px); }
.contact-chip svg { width: 17px; height: 17px; stroke: var(--or); fill: none; }
.contact-chip.wa svg { fill: var(--or); stroke: none; }

/* ===== PAGE HEADER (sous-pages) ===== */
.page-header { padding: 200px 40px 80px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(200,180,120,0.06) 0%, transparent 60%); pointer-events: none; }
.page-header .hero-pre { animation: none; opacity: 0.8; }
.page-header h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(40px, 6vw, 72px); color: var(--creme); letter-spacing: 3px; line-height: 1.1; }
.page-header h1 em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--or); }
.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-weight: 300; font-size: 16px; line-height: 2; color: var(--text-soft); margin-bottom: 26px; }
.prose p strong { color: var(--creme); font-weight: 400; }
.prose h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 32px; color: var(--creme); letter-spacing: 1px; margin: 56px 0 24px; }

/* ===== FOOTER ===== */
footer { text-align: center; padding: 60px 40px; border-top: 1px solid var(--line-soft); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 16px; letter-spacing: 6px; color: var(--or); opacity: 0.75; text-transform: uppercase; margin-bottom: 10px; }
.footer-text { font-weight: 200; font-size: 10px; letter-spacing: 3px; color: var(--text-softer); }
.footer-links { display: flex; gap: 24px; justify-content: center; margin: 20px 0; flex-wrap: wrap; }
.footer-links a { font-weight: 200; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-soft); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--or); }
.footer-evin { font-weight: 300; font-size: 11px; letter-spacing: 1px; color: var(--text-soft); margin-top: 18px; }
.footer-legal { font-weight: 200; font-size: 9px; letter-spacing: 2px; color: rgba(200,180,120,0.18); margin-top: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  nav { padding: 16px 28px; }
  nav.scrolled { padding: 14px 28px; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; align-items: flex-start; gap: 28px; background: rgba(5,5,5,0.98); backdrop-filter: blur(20px); padding: 110px 36px; transform: translateX(100%); transition: transform 0.4s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; z-index: 101; }
  .exp-grid, .offer-grid { grid-template-columns: 1fr; gap: 24px; }
  .format-list, .format-list.three { grid-template-columns: 1fr; }
  .format-item { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .format-item:last-child { border-bottom: none !important; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 30px; }
  .testi-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .founder { grid-template-columns: 1fr; gap: 36px; }
  .form { grid-template-columns: 1fr; }
  section, .immersion, .quote-section, .contact, .offer { padding: 100px 24px; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: 1px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .proofbar-inner { gap: 24px; }
}
