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

/* ─────────────────────────────────────────
   DESIGN SYSTEM — MATTEO LENCOU
   ───────────────────────────────────────── */
:root {
  --g900: #1e1208;
  --g800: #2e1c0c;
  --g750: #3d2610;
  --g700: #4a3018;
  --g600: #5c4a2a;
  --g500: #7a6240;
  --g400: #9a7e58;
  --g300: #b89d7a;
  --g200: #d4bc9a;
  --g100: #e8d8c0;
  --g50:  #f5ece0;

  --ivory:   #faf5ee;
  --ivory-2: #f2e8d8;
  --ivory-3: #e0d0b8;

  --text:  #1e1208;
  --text2: #4a3018;
  --text3: #9a7e58;

  --font-d: 'Poppins', system-ui, sans-serif;
  --font-b: 'DM Sans', system-ui, sans-serif;

  --nav-h: 72px;
  --cmax:  1160px;
  --cpad:  clamp(20px, 5vw, 60px);
  --sp:    clamp(72px, 9vw, 120px);
  --t:     0.35s cubic-bezier(.4,0,.2,1);
  --t-slow: 0.6s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; object-fit: cover; }
a   { text-decoration: none; color: inherit; }

/* ─── Container ─── */
.wrap {
  max-width: var(--cmax);
  margin: 0 auto;
  padding: 0 var(--cpad);
}

/* ─── Typography ─── */
.display {
  font-family: var(--font-d);
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
h1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.01em;
}
h3 {
  font-family: var(--font-d);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
}
p {
  font-size: clamp(14px, 1.4vw, 15.5px);
  line-height: 1.8;
  color: var(--text2);
  font-weight: 300;
}
.eyebrow {
  display: block;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 14px;
}
.rule { width: 36px; height: 1px; background: var(--g400); margin: 18px 0; }
.rule.c { margin: 18px auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 8px;
  transition: var(--t);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--g200);
  color: var(--g900);
}
.btn-primary:hover {
  background: var(--g300);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(92,74,42,.25);
}
.btn-dark {
  background: var(--g800);
  color: var(--g200);
}
.btn-dark:hover {
  background: var(--g750);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30,18,8,.4);
}
.btn-outline {
  background: transparent;
  color: var(--g750);
  border: 1.5px solid var(--g600);
  padding: 13px 29px;
}
.btn-outline:hover {
  background: var(--g750);
  color: var(--g200);
  border-color: var(--g750);
}
.btn-ghost {
  background: transparent;
  color: var(--g100);
  padding: 0;
  letter-spacing: .2em;
  position: relative;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--font-b);
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: var(--g300);
  transform: scaleX(.3);
  transform-origin: left;
  transition: transform var(--t);
}
.btn-ghost:hover::after { transform: scaleX(1); }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t);
}
.nav.dark.stuck {
  background: rgba(30,18,8,.92);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(212,188,154,.08);
}
.nav.light {
  background: var(--ivory);
  border-bottom: 1px solid var(--ivory-3);
}
.nav.light.stuck {
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--cmax);
  margin: 0 auto;
  padding: 0 var(--cpad);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo .name {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-logo .sub {
  font-family: var(--font-b);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
  opacity: .5;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  transition: opacity var(--t);
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav.dark .name,
.nav.dark .nav-links a:not(.btn) { color: var(--g100); }
.nav.dark .sub { color: var(--g400); }
.nav.dark .nav-links a:not(.btn)::after { background: var(--g300); }

.nav.light .name,
.nav.light .nav-links a:not(.btn) { color: var(--g750); }
.nav.light .sub { color: var(--g500); }
.nav.light .nav-links a:not(.btn)::after { background: var(--g600); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { display: block; width: 22px; height: 1.5px; transition: var(--t); }
.nav.dark  .burger span { background: var(--g200); }
.nav.light .burger span { background: var(--g750); }

/* ─── 3D ORB ─── */
.hero-orb {
  position: absolute;
  right: max(6%, calc(50% - 580px + 40px));
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 32vw, 480px);
  height: clamp(280px, 32vw, 480px);
  pointer-events: none;
  transition: transform .08s linear;
}
.orb-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(212,188,154,.3) 0%, transparent 45%),
    radial-gradient(circle at 68% 72%, rgba(30,18,8,.98) 30%, transparent 65%),
    radial-gradient(circle at 50% 50%, var(--g750) 0%, var(--g900) 100%);
  box-shadow:
    inset -60px -60px 100px rgba(0,0,0,.7),
    inset 30px 30px 60px rgba(212,188,154,.07),
    0 0 100px rgba(92,74,42,.35),
    0 0 200px rgba(92,74,42,.12),
    0 50px 100px rgba(0,0,0,.5);
  animation: orb-float 8s ease-in-out infinite;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,188,154,.12);
  animation: ring-pulse 5s ease-in-out infinite;
}
.orb-ring.r1 { inset: -28px; animation-delay: 0s; }
.orb-ring.r2 { inset: -60px; border-color: rgba(212,188,154,.06); animation-delay: -1.5s; }
.orb-ring.r3 { inset: -100px; border-color: rgba(212,188,154,.03); animation-delay: -3s; }
@keyframes orb-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-24px); }
}
@keyframes ring-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.04); opacity: .5; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30,18,8,.92) 0%,
    rgba(10,26,16,.85) 40%,
    rgba(26,58,46,.6) 70%,
    rgba(92,74,42,.3) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  max-width: 600px;
}
.hero-title { color: var(--g50); }
.hero-title em {
  font-style: italic;
  color: var(--g200);
  display: block;
}
.hero-desc {
  color: rgba(212,188,154,.75);
  font-size: clamp(14px,1.5vw,16px);
  line-height: 1.75;
  font-weight: 300;
  max-width: 440px;
  margin-top: 22px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: var(--cpad);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--g400);
  font-family: var(--font-b);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--g600);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g300);
  transform: translateX(-100%);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%,100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}

/* ────────────────────────────────────────
   PAGE HERO — Digital Serenity
   ──────────────────────────────────────── */
.page-hero {
  background: #060f0a;
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative;
  overflow: hidden;
}

/* Background photo */
.ph-bg {
  position: absolute;
  inset: -12%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

/* Dark overlay on top of photo */
.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,18,8,.88) 0%,
    rgba(30,18,8,.78) 50%,
    rgba(15,35,24,.82) 100%
  );
  z-index: 1;
}

/* SVG grid lines */
.ph-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.ph-grid line {
  stroke: rgba(116,198,157,0.09);
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: ph-grid-draw 2.5s ease forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes ph-grid-draw {
  to { stroke-dashoffset: 0; }
}

/* Corner brackets */
.ph-corner {
  position: absolute;
  width: 36px; height: 36px;
  pointer-events: none;
  z-index: 2;
}
.ph-corner--tl { top: 22px; left: 22px; border-top: 1px solid rgba(116,198,157,.3); border-left:  1px solid rgba(116,198,157,.3); }
.ph-corner--tr { top: 22px; right: 22px; border-top: 1px solid rgba(116,198,157,.3); border-right: 1px solid rgba(116,198,157,.3); }
.ph-corner--bl { bottom: 22px; left: 22px; border-bottom: 1px solid rgba(116,198,157,.3); border-left:  1px solid rgba(116,198,157,.3); }
.ph-corner--br { bottom: 22px; right: 22px; border-bottom: 1px solid rgba(116,198,157,.3); border-right: 1px solid rgba(116,198,157,.3); }

/* Floating particles */
.ph-dot {
  position: absolute;
  bottom: 0;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--g300);
  opacity: 0;
  animation: ph-float var(--dur, 5s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  z-index: 2;
}
@keyframes ph-float {
  0%   { opacity: 0;   transform: translateY(0); }
  15%  { opacity: 0.7; }
  85%  { opacity: 0.2; }
  100% { opacity: 0;   transform: translateY(-130px); }
}

/* Mouse glow (injected by JS) */
.ph-mouse-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,126,88,.15) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 2;
}
.page-hero:hover .ph-mouse-glow { opacity: 1; }

/* Word-by-word appear animation */
.word-anim {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  animation: word-appear .9s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--d, .2s);
}
@keyframes word-appear {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.page-hero .eyebrow {
  color: var(--g300);
  opacity: 0;
  animation: word-appear .7s ease forwards .1s;
}
.page-hero h1 { color: var(--g50); }

/* ─── Strip ─── */
.strip {
  background: #fff;
  border-top: 1px solid var(--ivory-3);
  border-bottom: 1px solid var(--ivory-3);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.strip-item {
  padding: 40px 32px;
  border-right: 1px solid var(--ivory-3);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.strip-item:last-child { border-right: none; }
.strip-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--g50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip-icon svg { width: 20px; height: 20px; stroke: var(--g600); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.strip-text h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.strip-text p  { font-size: 13px; line-height: 1.65; font-weight: 400; }

/* ─── Tilt cards (3D) ─── */
.tilt {
  transform-style: preserve-3d;
  transition: transform .15s ease, box-shadow .15s ease;
  will-change: transform;
}
.tilt:hover { box-shadow: 0 24px 60px rgba(0,0,0,.2); }

/* ─── Soin cards with photo ─── */
.soin-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 340px;
  cursor: default;
}
.soin-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.soin-photo-card:hover img { transform: scale(1.06); }
.soin-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30,18,8,.95) 0%,
    rgba(30,18,8,.6) 50%,
    rgba(30,18,8,.1) 100%
  );
  transition: background var(--t);
}
.soin-photo-card:hover .soin-photo-overlay {
  background: linear-gradient(to top, rgba(30,18,8,.98) 0%, rgba(30,18,8,.7) 55%, rgba(30,18,8,.2) 100%);
}
.soin-photo-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  z-index: 1;
}
.soin-num {
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--g400);
  font-family: var(--font-b);
  margin-bottom: 10px;
  font-weight: 500;
}
.soin-photo-card h3 { color: var(--g100); font-size: clamp(17px,2vw,22px); margin-bottom: 8px; }
.soin-photo-card p  { color: var(--g300); font-size: 13px; line-height: 1.6; font-weight: 300; }
.soin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.soin-photo-card:hover .soin-tags { opacity: 1; transform: none; }
.soin-tag {
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--g200);
  background: rgba(212,188,154,.12);
  border: 1px solid rgba(212,188,154,.2);
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-b);
}

/* ─── About photo ─── */
.about-photo {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.about-photo:hover img { transform: scale(1.03); }
.about-photo::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(212,188,154,.2);
  border-radius: 16px;
  pointer-events: none;
}

/* ─── Glass card ─── */
.glass-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212,188,154,.14);
  border-radius: 12px;
}

/* ─── Tarif card ─── */
.tarif-card {
  border: 1px solid var(--ivory-3);
  border-radius: 14px;
  padding: 38px 32px;
  background: #fff;
  transition: box-shadow var(--t), transform var(--t);
}
.tarif-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.tarif-card.featured {
  background: var(--g800);
  border-color: var(--g600);
  position: relative;
  overflow: hidden;
}
.tarif-card.featured::before {
  content: 'Le plus courant';
  position: absolute;
  top: 18px; right: -32px;
  background: var(--g400);
  color: var(--g900);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-family: var(--font-b);
}
.tarif-card h3 {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 500;
  color: var(--g750);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ivory-3);
}
.tarif-card.featured h3 { color: var(--g100); border-color: rgba(212,188,154,.12); }
.tarif-price {
  font-family: var(--font-d);
  font-size: 56px;
  font-weight: 300;
  color: var(--g600);
  line-height: 1;
  margin-bottom: 4px;
}
.tarif-price sup { font-size: 26px; vertical-align: super; }
.tarif-card.featured .tarif-price { color: var(--g200); }
.tarif-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text3);
  font-family: var(--font-b);
  margin-bottom: 28px;
}
.tarif-card.featured .tarif-label { color: var(--g400); }
.tarif-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tarif-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
  font-weight: 400;
}
.tarif-card.featured .tarif-features li { color: var(--g200); }
.tarif-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--g50) url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%239a7e58' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/cover;
}
.tarif-card.featured .tarif-features li::before {
  background-color: rgba(212,188,154,.1);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%23d4bc9a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--ivory-3); padding: 22px 0; }
.faq-item:first-child { border-top: 1px solid var(--ivory-3); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  user-select: none;
  gap: 16px;
}
.faq-q span:last-child {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--g500);
  transition: transform var(--t);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-q span:last-child { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .45s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }
.faq-a p { font-size: 14px; line-height: 1.8; }

/* ─── Contact ─── */
.contact-form label {
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 6px;
  font-family: var(--font-b);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--ivory-3);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  margin-bottom: 22px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--g400);
  box-shadow: 0 0 0 3px rgba(154,126,88,.1);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.map-slot {
  background: linear-gradient(145deg, var(--g800), var(--g700));
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-slot::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(212,188,154,.08);
  border-radius: 12px;
}
.map-slot p { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--g500); z-index: 1; }
.horaire-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ivory-3);
  color: var(--text2);
}
.horaire-row .day { font-weight: 500; color: var(--text); }
.horaire-row .closed { color: var(--text3); font-style: italic; }

/* ─── CTA band ─── */
.cta-band {
  background: var(--g600);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,188,154,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .btn { position: relative; z-index: 1; }
.cta-band h2 { color: var(--g50); margin-bottom: 12px; position: relative; }
.cta-band p  { color: var(--g200); font-size: 15px; margin-bottom: 38px; position: relative; font-weight: 300; }

/* ─── Footer ─── */
footer {
  background: var(--g900);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(212,188,154,.07);
  margin-bottom: 28px;
}
.footer-brand .fn {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 600;
  color: var(--g100);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.footer-brand .fs {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--g400);
  font-family: var(--font-b);
  display: block;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 13px; color: var(--g500); max-width: 240px; line-height: 1.65; font-weight: 300; }
.footer-col h5 {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--g500);
  font-family: var(--font-b);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a,
.footer-col li span {
  font-size: 13px;
  color: var(--g400);
  font-family: var(--font-b);
  transition: color var(--t);
  font-weight: 300;
}
.footer-col li a:hover { color: var(--g100); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 11px; color: var(--g700); font-family: var(--font-b); }

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.on { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ─── Mobile nav ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--g900);
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 500;
  color: var(--g100);
  letter-spacing: -0.01em;
  transition: color var(--t);
}
.mobile-nav a:hover { color: var(--g300); }

/* ─── Responsive ─── */
@media (max-width: 1000px) {
  .hero-orb { display: none; }
}
@media (max-width: 900px) {
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--ivory-3); }
  .strip-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger    { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ─── Sections ─── */
.section { padding: var(--sp) 0; }
.section-header { margin-bottom: 52px; }
.section-header.c { text-align: center; }

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