@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:wght@300;400;600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ══════════════════════════════════════
   VARIABLES
══════════════════════════════════════ */
:root {
  --gold: #c8a96e;
  --gold-dark: #a8873e;
  --gold-light: rgba(200,169,110,0.12);
  --gold-glow: rgba(200,169,110,0.25);
  --bg: #080808;
  --bg-2: #0f0f0f;
  --bg-3: #141414;
  --bg-card: rgba(255,255,255,0.03);
  --text: #f0ece4;
  --text-dim: rgba(240,236,228,0.55);
  --text-faint: rgba(240,236,228,0.25);
  --border: rgba(200,169,110,0.18);
  --border-subtle: rgba(255,255,255,0.06);
  --radius: 2px;
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; overflow-x:hidden; }
body {
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  max-width: 100vw;
}
body.no-cursor { cursor: auto; }
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }

/* ══════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════ */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
}
#cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.3s, width 0.3s, height 0.3s;
  transform: translate(-50%, -50%);
}
body:has(a:hover) #cursor-follower,
body:has(button:hover) #cursor-follower { width:56px; height:56px; border-color:var(--gold); }

/* ══════════════════════════════════════
   GRAIN OVERLAY
══════════════════════════════════════ */
body::before {
  content:'';
  position:fixed; inset:0;
  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='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9998;
}

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.header {
  position: fixed; top:0; left:0; width:100%;
  padding: 0 5%;
  height: 130px;
  display: flex; justify-content:space-between; align-items:center;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: height 0.3s, background 0.3s;
}
.header.scrolled { height: 60px; background: rgba(8,8,8,0.98); }

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 5px;
  color: var(--text);
  transition: color 0.2s;
}

.logo span { color: var(--gold); }
.logo:hover { color: var(--gold); }

.nav { display:flex; gap:36px; align-items:center; }
.nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}
.nav a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background:var(--gold);
  transition: width 0.3s;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width:100%; }
.nav a.active { color: var(--gold); }
.nav a.active::after { width:100%; }

.nav-cta {
  padding: 10px 22px;
  background: var(--gold);
  color: #080808 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-2px) !important; }

/* Hamburger */
.hamburger {
  display:none; flex-direction:column; gap:6px;
  cursor:pointer; padding:8px; z-index:1001;
}
.hamburger span {
  display:block; width:24px; height:1.5px;
  background:var(--text); transition:0.3s;
}
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; width:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
@media(max-width:768px) {
  .hamburger { display:flex; }
  .nav {
    display:none; position:fixed;
    top:72px; left:0; width:100%;
    background:rgba(8,8,8,0.99);
    flex-direction:column; padding:30px 5%;
    gap:0; border-bottom:1px solid var(--border);
  }
  .nav.open { display:flex; }
  .nav a { padding:16px 0; width:100%; border-bottom:1px solid var(--border-subtle); font-size:13px; }
  .nav-cta { margin-top:16px; text-align:center; clip-path:none; }
}

/* ══════════════════════════════════════
   PAGE HERO (intérieur pages)
══════════════════════════════════════ */
.page-hero {
  padding: 140px 5% 80px;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero::before {
  content:'';
  position:absolute; top:0; left:0; right:0; bottom:0;
  background: linear-gradient(135deg, rgba(200,169,110,0.04) 0%, transparent 60%);
  pointer-events:none;
}
.page-hero-inner { max-width:900px; }
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:11px; color:var(--text-faint);
  letter-spacing:2px; text-transform:uppercase;
  margin-bottom:24px;
}
.breadcrumb span { color:var(--gold); }
.page-hero h1 {
  font-family:'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom:20px;
}
.page-hero h1 em { color:var(--gold); font-style:normal; }
.page-hero p {
  font-family:'Cormorant Garamond', serif;
  font-size:20px; color:var(--text-dim); max-width:600px;
  line-height:1.7;
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
section { padding: 110px 5%; }
.container { max-width:1240px; margin:0 auto; }
.container-wide { max-width:1400px; margin:0 auto; overflow-x:hidden; }

.label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:10px; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--gold);
  margin-bottom:20px;
}
.label::before {
  content:''; display:block;
  width:24px; height:1px; background:var(--gold);
}

.section-title {
  font-family:'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height:1.0;
  letter-spacing:1px;
  margin-bottom:16px;
}
.section-title em { color:var(--gold); font-style:normal; }

.section-sub {
  font-family:'Cormorant Garamond', serif;
  font-size:18px; color:var(--text-dim);
  max-width:560px; line-height:1.8;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 32px;
  font-size:11px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  transition:all 0.3s; cursor:pointer; border:none;
  font-family:'DM Sans', sans-serif;
}
.btn-gold {
  background:var(--gold); color:#080808;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-gold:hover { background:var(--gold-dark); transform:translateY(-3px); }
.btn-outline {
  background:transparent; color:var(--text);
  border:1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.btn-ghost {
  background:transparent; color:var(--gold);
  padding:0; letter-spacing:2px;
}
.btn-ghost:hover { gap:16px; }
.btn-ghost .arrow { transition:transform 0.3s; }
.btn-ghost:hover .arrow { transform:translateX(6px); }

/* ══════════════════════════════════════
   DIVIDER
══════════════════════════════════════ */
.divider {
  width:100%; height:1px;
  background:linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.card {
  background:var(--bg-card);
  border:1px solid var(--border-subtle);
  padding:40px 36px;
  position:relative; overflow:hidden;
  transition:border-color 0.3s, transform 0.3s, background 0.3s;
}
.card::before {
  content:''; position:absolute;
  bottom:0; left:0; width:0; height:2px;
  background:var(--gold); transition:width 0.4s;
}
.card:hover { border-color:var(--border); background:rgba(200,169,110,0.04); transform:translateY(-6px); }
.card:hover::before { width:100%; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(50px); transition:opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-60px); transition:opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(60px); transition:opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.d1 { transition-delay:0.1s; } .d2 { transition-delay:0.2s; }
.d3 { transition-delay:0.3s; } .d4 { transition-delay:0.4s; }
.d5 { transition-delay:0.5s; } .d6 { transition-delay:0.6s; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background:var(--bg);
  border-top:1px solid var(--border-subtle);
  padding:80px 5% 32px;
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px;
  max-width:1240px; margin:0 auto;
  padding-bottom:60px;
  border-bottom:1px solid var(--border-subtle);
}
.footer-brand .logo { font-size:26px; margin-bottom:16px; display:block; }
.footer-brand p { font-size:13px; color:var(--text-dim); line-height:1.8; margin-bottom:20px; }
.footer-brand .contact-line {
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:var(--gold); font-weight:600;
  margin-bottom:8px;
}
.footer-col h5 {
  font-size:10px; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--gold);
  margin-bottom:20px;
}
.footer-col a {
  display:block; color:var(--text-dim); font-size:13px;
  margin-bottom:12px; transition:color 0.2s, padding-left 0.2s;
}
.footer-col a:hover { color:var(--text); padding-left:6px; }
.footer-bottom {
  max-width:1240px; margin:28px auto 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
  font-size:12px; color:var(--text-faint); letter-spacing:1px;
}
.footer-bottom a { color:var(--text-faint); transition:color 0.2s; }
.footer-bottom a:hover { color:var(--gold); }

@media(max-width:900px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
}
@media(max-width:500px) {
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
}

/* ══════════════════════════════════════
   COOKIE BANNER (matches theme)
══════════════════════════════════════ */
#cookie-banner {
  position:fixed; bottom:1.5rem; left:50%;
  transform:translateX(-50%) translateY(130%);
  width:min(720px, calc(100% - 2rem));
  background:var(--bg-3);
  border:1px solid var(--border);
  padding:1.4rem 1.8rem;
  display:flex; align-items:center; gap:1.4rem;
  z-index:9999;
  transition:transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
#cookie-banner.visible { transform:translateX(-50%) translateY(0); }
.cb-icon { font-size:1.6rem; flex-shrink:0; }
.cb-body { flex:1; min-width:0; }
.cb-body strong { display:block; font-size:.85rem; font-weight:700; letter-spacing:1px; color:var(--text); margin-bottom:.3rem; text-transform:uppercase; }
.cb-body p { font-size:.78rem; color:var(--text-dim); line-height:1.5; }
.cb-body a { color:var(--gold); text-decoration:underline; text-underline-offset:2px; }
.cb-btns { display:flex; flex-direction:column; gap:.5rem; flex-shrink:0; }
.cb-accept {
  padding:.6rem 1.4rem; background:var(--gold); color:#080808;
  border:none; font-family:'DM Sans',sans-serif; font-size:.75rem;
  font-weight:700; letter-spacing:2px; text-transform:uppercase;
  cursor:pointer; white-space:nowrap; transition:background .2s;
  clip-path:polygon(0 0,calc(100% - 6px) 0,100% 6px,100% 100%,6px 100%,0 calc(100% - 6px));
}
.cb-accept:hover { background:var(--gold-dark); }
.cb-decline {
  padding:.55rem 1.4rem; background:transparent; color:var(--text-dim);
  border:1px solid var(--border-subtle); font-family:'DM Sans',sans-serif;
  font-size:.75rem; font-weight:600; letter-spacing:2px; text-transform:uppercase;
  cursor:pointer; white-space:nowrap; transition:border-color .2s, color .2s;
}
.cb-decline:hover { border-color:var(--border); color:var(--text); }
@media(max-width:540px) {
  #cookie-banner { flex-direction:column; align-items:flex-start; }
  .cb-btns { flex-direction:row; width:100%; }
  .cb-accept,.cb-decline { flex:1; text-align:center; }
}
