/* ───────────────────────────────────────────────────────────
   MN DÉPANNAGE — Design System
   Architecture: Tokens → Reset → Type → Layout → Components → Utilities
   ─────────────────────────────────────────────────────────── */

:root {
  /* Brand */
  --bg: #0a0a0b;
  --bg-raise: #111114;
  --bg-card: #141418;
  --bg-card-hi: #1a1a20;
  --text: #fafaf9;
  --text-muted: #a8a8af;
  --text-dim: #6e6e76;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.14);
  --accent: #FFCB05;
  --accent-deep: #E5B400;
  --accent-soft: rgba(255,203,5,0.10);
  --accent-glow: rgba(255,203,5,0.18);
  --whatsapp: #25D366;
  --whatsapp-soft: rgba(37,211,102,0.12);
  --green: #34D27B;
  --red: #FF6868;

  /* Type scale */
  --fs-xs: 11.5px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 17px;
  --fs-lg: 22px;
  --fs-xl: clamp(28px, 3.5vw, 40px);
  --fs-2xl: clamp(34px, 5vw, 56px);
  --fs-3xl: clamp(40px, 7vw, 76px);

  /* Radius */
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;

  /* Spacing */
  --max: 1280px;
  --gutter: 24px;
  --gutter-lg: 40px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.25s;
  --t-mid: 0.4s;
  --t-slow: 0.7s;
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Geist', system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
  min-height: 100dvh;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* Accessibility */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 100;
  padding: 10px 16px; background: var(--accent); color: #0a0a0b;
  font-weight: 600; border-radius: 8px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ─── Typography utilities ─── */
.mono { font-family: 'Geist Mono', ui-monospace, monospace; font-feature-settings: "tnum"; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); font-weight: 500;
}
.tag::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
.tag.muted { color: var(--text-muted); }
.tag.muted::before { background: var(--text-muted); }

/* ─── Atmosphere ─── */
.atmosphere {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
  background: var(--bg);
}
.atmosphere::before {
  content: ''; position: absolute;
  top: -25%; left: -10%; width: 70%; height: 70%;
  background: radial-gradient(circle at 30% 30%, var(--accent-glow), transparent 65%);
  filter: blur(90px);
}
.atmosphere::after {
  content: ''; position: absolute;
  bottom: -30%; right: -15%; width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(255,203,5,0.06), transparent 65%);
  filter: blur(110px);
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  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 baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Container ─── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
@media (min-width: 768px) { .container { padding: 0 var(--gutter-lg); } }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
@media (min-width: 768px) { .container-narrow { padding: 0 var(--gutter-lg); } }

/* ─── Urgency bar ─── */
.urgency {
  position: relative; z-index: 60;
  background: linear-gradient(90deg, var(--accent), #ffd83b);
  color: #0a0a0b;
  font-size: 13px; font-weight: 500;
  text-align: center; padding: 9px 24px;
  letter-spacing: -0.01em;
  display: flex; justify-content: center; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.urgency .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #0a0a0b;
  box-shadow: 0 0 0 0 rgba(10,10,11,0.7);
  animation: dotPulse 1.8s var(--ease) infinite;
}
@keyframes dotPulse { 0%{box-shadow:0 0 0 0 rgba(10,10,11,0.7);} 70%{box-shadow:0 0 0 8px rgba(10,10,11,0);} 100%{box-shadow:0 0 0 0 rgba(10,10,11,0);} }
.urgency b { font-weight: 700; }
.urgency a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,11,0.72);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px var(--gutter); max-width: var(--max); margin: 0 auto;
}
@media (min-width: 768px) { .header-inner { padding: 16px var(--gutter-lg); } }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 17px; letter-spacing: -0.02em; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--accent); color: #0a0a0b;
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px; letter-spacing: -0.04em;
  font-family: 'Geist Mono', monospace;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,203,5,0.3), 0 8px 16px -6px rgba(255,203,5,0.4);
}
.brand-mark::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent 50%);
  pointer-events: none;
}
.brand strong { font-weight: 600; }
.brand em { font-style: normal; color: var(--text-muted); font-weight: 400; margin-left: 2px; }

.main-nav { display: none; gap: 28px; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a {
  font-size: 14px; color: var(--text-muted); font-weight: 500;
  transition: color var(--t-fast) var(--ease);
  position: relative; padding: 6px 0;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--text); }
.main-nav a::after {
  content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 1px;
  background: var(--accent); transition: width var(--t-mid) var(--ease), left var(--t-mid) var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { left: 0; width: 100%; }

.header-cta { display: inline-flex; align-items: center; gap: 10px; }
.phone-pill {
  display: none; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 13.5px; font-weight: 500;
  font-family: 'Geist Mono', monospace; letter-spacing: -0.02em;
  transition: all var(--t-fast) var(--ease);
}
@media (min-width: 640px) { .phone-pill { display: inline-flex; } }
.phone-pill:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid var(--border-strong);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.mobile-nav {
  display: none;
  position: fixed; top: 73px; left: 0; right: 0; z-index: 49;
  background: rgba(10,10,11,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column; gap: 8px;
  max-height: calc(100dvh - 73px); overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 4px; font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  transition: all var(--t-mid) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-primary { background: var(--accent); color: #0a0a0b; box-shadow: 0 8px 20px -8px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-primary:hover { background: #ffd631; transform: translateY(-2px); box-shadow: 0 14px 30px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-ghost { color: var(--text); border-color: var(--border-strong); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.btn-wa { background: var(--whatsapp); color: #082017; box-shadow: inset 0 1px 0 rgba(255,255,255,0.25); }
.btn-wa:hover { background: #2ee676; transform: translateY(-2px); }
.btn-dark { background: #0a0a0b; color: var(--accent); }
.btn-dark:hover { background: #1c1c20; transform: translateY(-2px); }
.btn-lg { padding: 15px 24px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ─── Breadcrumbs ─── */
.breadcrumbs {
  padding: 28px 0 0;
  font-size: 13px;
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.breadcrumbs li { color: var(--text-dim); }
.breadcrumbs a { color: var(--text-muted); transition: color var(--t-fast) var(--ease); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs li + li::before {
  content: ''; display: inline-block; width: 4px; height: 4px;
  background: var(--text-dim); border-radius: 50%;
  margin: 0 8px 2px 2px; vertical-align: middle;
}
.breadcrumbs [aria-current="page"] { color: var(--text); }

/* ─── Hero (homepage) ─── */
.hero { position: relative; padding: 64px 0 96px; overflow: hidden; }
@media (min-width: 1024px) { .hero { padding: 96px 0 120px; } }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.25fr 1fr; gap: 64px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 13px;
  border: 1px solid var(--border-strong); border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
}
.eyebrow .live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(52,210,123,0.18);
  animation: liveDot 2s ease-in-out infinite;
}
@keyframes liveDot { 0%,100%{box-shadow:0 0 0 4px rgba(52,210,123,0.18);} 50%{box-shadow:0 0 0 8px rgba(52,210,123,0.06);} }

h1.hero-title {
  margin-top: 24px;
  font-size: var(--fs-3xl);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
}
h1.hero-title em {
  font-style: normal; display: inline-block; position: relative;
  color: var(--accent); padding: 0 4px;
}
h1.hero-title em::before {
  content: ''; position: absolute;
  left: -2px; right: -2px; bottom: 6px; height: 14px;
  background: var(--accent-soft);
  z-index: -1; border-radius: 4px;
  transform: skew(-8deg);
}

.hero-sub { margin-top: 22px; font-size: clamp(16px, 1.5vw, 18px); color: var(--text-muted); max-width: 56ch; }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-meta {
  margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  padding-top: 28px; border-top: 1px solid var(--border); max-width: 540px;
}
@media (min-width: 640px) { .hero-meta { grid-template-columns: repeat(4, 1fr); } }
.hero-meta-item strong {
  font-family: 'Geist Mono', monospace;
  font-size: 22px; font-weight: 600; letter-spacing: -0.04em;
  color: var(--text); display: block;
}
.hero-meta-item span { color: var(--text-dim); font-size: 12.5px; }

/* Dispatch card */
.dispatch-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card-hi), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.dispatch-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, var(--accent-glow), transparent 50%);
  pointer-events: none; opacity: 0.6;
}
.dispatch-head {
  display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1;
  padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 22px;
}
.dispatch-head .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-dim); }
.dispatch-head .status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--green);
  font-family: 'Geist Mono', monospace;
}
.dispatch-head .status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(52,210,123,0.18);
  animation: liveDot 2s ease-in-out infinite;
}
.dispatch-eta { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.dispatch-eta .num { font-family: 'Geist Mono', monospace; font-size: 72px; font-weight: 600; letter-spacing: -0.05em; line-height: 1; color: var(--text); }
.dispatch-eta .num small { font-size: 22px; color: var(--text-muted); margin-left: 6px; font-weight: 400; }
.dispatch-eta .desc { text-align: right; font-size: 13px; color: var(--text-muted); max-width: 130px; line-height: 1.4; }
.dispatch-eta .desc b { color: var(--text); display: block; font-weight: 600; }
.dispatch-rows { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; margin-bottom: 24px; }
.dispatch-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.dispatch-row .k { color: var(--text-dim); }
.dispatch-row .v { color: var(--text); font-family: 'Geist Mono', monospace; font-size: 12.5px; }
.dispatch-call {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px;
  padding: 14px;
  background: var(--bg-raise);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--t-mid) var(--ease);
}
.dispatch-call:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 16px 30px -16px var(--accent-glow); }
.dispatch-call .icon { width: 42px; height: 42px; border-radius: 12px; background: var(--accent); color: #0a0a0b; display: grid; place-items: center; flex-shrink: 0; }
.dispatch-call .body { flex: 1; }
.dispatch-call .body small { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.12em; display: block; }
.dispatch-call .body strong { font-family: 'Geist Mono', monospace; font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }

/* ─── Sub-page hero (smaller, more focused) ─── */
.page-hero { padding: 32px 0 64px; }
@media (min-width: 1024px) { .page-hero { padding: 40px 0 96px; } }
.page-hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: end; }
@media (min-width: 1024px) { .page-hero-grid { grid-template-columns: 1.6fr 1fr; gap: 64px; } }
.page-hero h1 {
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1; letter-spacing: -0.04em; font-weight: 600;
  margin-top: 16px; max-width: 16ch;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { margin-top: 22px; font-size: 17px; color: var(--text-muted); max-width: 56ch; }
.page-hero-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero-aside {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.aside-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.aside-row:last-child { border-bottom: none; padding-bottom: 0; }
.aside-row .k { color: var(--text-dim); }
.aside-row .v { color: var(--text); font-family: 'Geist Mono', monospace; font-weight: 500; }

/* ─── Trust marquee ─── */
.trust-band {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 0; background: var(--bg-raise);
  overflow: hidden; position: relative;
}
.trust-band::before, .trust-band::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.trust-band::before { left: 0; background: linear-gradient(90deg, var(--bg-raise), transparent); }
.trust-band::after { right: 0; background: linear-gradient(-90deg, var(--bg-raise), transparent); }
.marquee { display: flex; gap: 64px; align-items: center; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; font-weight: 500; font-size: 18px; letter-spacing: -0.02em; color: var(--text-muted); white-space: nowrap; }
.marquee-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-dim); }
@keyframes marquee { from {transform: translateX(0);} to {transform: translateX(-50%);} }

/* ─── Section ─── */
.section { padding: 96px 0; }
@media (min-width: 1024px) { .section { padding: 128px 0; } }
.section.tight { padding: 64px 0; }
@media (min-width: 1024px) { .section.tight { padding: 80px 0; } }
.section.flush-top { padding-top: 0; }

.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; align-items: center; text-align: center; }
h2.section-title { font-size: var(--fs-2xl); line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; }
h2.section-title em { font-style: normal; color: var(--accent); }
.section-lead { font-size: 17px; color: var(--text-muted); max-width: 56ch; }

/* ─── Bento services ─── */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bento-card {
  position: relative; grid-column: span 6; padding: 28px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all 0.5s var(--ease); overflow: hidden; isolation: isolate;
}
.bento-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(600px circle at var(--mx, -100%) var(--my, -100%), var(--accent-glow), transparent 40%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.bento-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.bento-card:hover::before { opacity: 1; }
.icon-tile {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--bg-card-hi); border: 1px solid var(--border);
  color: var(--accent); margin-bottom: 16px;
}
.bento-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.bento-card p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 24px; }
.bento-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text);
  width: fit-content;
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.bento-card:hover .more { gap: 14px; color: var(--accent); }
@media (min-width: 768px) { .bento-card { grid-column: span 3; } }
@media (min-width: 1024px) {
  .bento-card { grid-column: span 2; }
  .bento-card.feature { grid-column: span 4; grid-row: span 2; background: linear-gradient(140deg, var(--bg-card-hi), var(--bg-card)); min-height: 460px; }
  .bento-card.wide { grid-column: span 3; }
}
.bento-card.feature .icon-tile { width: 56px; height: 56px; border-radius: 14px; background: var(--accent); color: #0a0a0b; border-color: transparent; }
.bento-card.feature h3 { font-size: 30px; line-height: 1.05; }
.bento-card.feature p { font-size: 15.5px; max-width: 44ch; }
.bento-card.feature .feature-visual { position: absolute; right: -40px; bottom: -40px; width: 320px; height: 320px; pointer-events: none; z-index: -1; opacity: 0.55; }
.feature-tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  width: fit-content; margin-bottom: 14px; border: 1px solid rgba(255,203,5,0.2);
}

/* ─── Numbered list (Pourquoi) ─── */
.why { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--border); }
@media (min-width: 768px) { .why { grid-template-columns: repeat(2, 1fr); column-gap: 56px; } }
.why-item {
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.why-num { font-family: 'Geist Mono', monospace; font-size: 13px; font-weight: 500; color: var(--accent); letter-spacing: 0.05em; padding-top: 6px; }
.why-content h4 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 8px; font-weight: 600; }
.why-content p { color: var(--text-muted); font-size: 15px; max-width: 48ch; }

/* ─── Process timeline ─── */
.process {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 768px) { .process { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  position: relative;
  padding: 28px 24px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
}
.process-step .step-num {
  font-family: 'Geist Mono', monospace; font-size: 13px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.06em;
}
.process-step h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.process-step p { font-size: 14px; color: var(--text-muted); }
.process-step .step-time {
  margin-top: auto; font-family: 'Geist Mono', monospace; font-size: 12px;
  color: var(--text-dim); padding-top: 10px; border-top: 1px solid var(--border);
}

/* ─── Pricing band ─── */
.pricing-band {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  padding: 36px;
  background: linear-gradient(140deg, var(--bg-card-hi), var(--bg-card));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  align-items: center;
}
@media (min-width: 1024px) { .pricing-band { grid-template-columns: 1.4fr 1fr; gap: 48px; padding: 48px; } }
.pricing-band h3 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.03em; line-height: 1.05; font-weight: 600; }
.pricing-band p { color: var(--text-muted); margin-top: 14px; font-size: 15px; max-width: 48ch; }
.pricing-band ul { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.pricing-band li { display: flex; align-items: start; gap: 10px; font-size: 14.5px; color: var(--text-muted); }
.pricing-band li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* ─── Zones ─── */
.zones-block { margin-bottom: 36px; }
.zones-block:last-child { margin-bottom: 0; }
.zones-label {
  font-family: 'Geist Mono', monospace; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-dim); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.zones-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.chip-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: all var(--t-fast) var(--ease);
}
.chip:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ─── Reviews ─── */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: 1fr 1.4fr; gap: 28px; align-items: stretch; } }
.rating-hero {
  background: linear-gradient(160deg, var(--bg-card-hi), var(--bg-card));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.rating-hero::before {
  content: ''; position: absolute; top: -40%; right: -20%; width: 80%; height: 80%;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(40px); opacity: 0.6; pointer-events: none;
}
.rating-hero > * { position: relative; z-index: 1; }
.rating-score {
  font-family: 'Geist Mono', monospace; font-size: 96px; font-weight: 600; letter-spacing: -0.06em;
  line-height: 1; margin-bottom: 16px;
  background: linear-gradient(180deg, var(--text), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.rating-stars { color: var(--accent); font-size: 22px; letter-spacing: 4px; margin-bottom: 18px; }
.rating-hero h4 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.rating-hero p { color: var(--text-muted); font-size: 14px; max-width: 32ch; margin-bottom: 24px; }
.rating-hero .gmb-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text); font-weight: 500;
  padding: 11px 16px; border-radius: 999px;
  border: 1px solid var(--border-strong); width: fit-content;
  transition: all var(--t-fast) var(--ease);
}
.rating-hero .gmb-link:hover { border-color: var(--accent); color: var(--accent); }

.review-stack { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 26px;
  transition: all var(--t-mid) var(--ease);
}
.review-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.review-card .stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-card blockquote { font-size: 15px; line-height: 1.6; color: var(--text); margin-bottom: 18px; letter-spacing: -0.005em; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Geist Mono', monospace; font-size: 13px; font-weight: 600; color: #0a0a0b;
}
.reviewer-avatar.a1 { background: linear-gradient(135deg, #FFD83B, #FFB000); }
.reviewer-avatar.a2 { background: linear-gradient(135deg, #C0C0FF, #FFC1F1); }
.reviewer-avatar.a3 { background: linear-gradient(135deg, #B7F4D0, #79D6A6); }
.reviewer-avatar.a4 { background: linear-gradient(135deg, #FFCFA0, #FF9F6B); }
.reviewer-avatar.a5 { background: linear-gradient(135deg, #B5E0FF, #6FB7FF); }
.reviewer-avatar.a6 { background: linear-gradient(135deg, #E0C3FC, #B393E5); }
.reviewer-info strong { display: block; font-size: 14px; font-weight: 600; }
.reviewer-info span { font-size: 12px; color: var(--text-dim); }

/* ─── FAQ ─── */
.faq { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); transition: background var(--t-fast) var(--ease); }
.faq-item:hover { background: rgba(255,255,255,0.012); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 4px;
  text-align: left; font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--text); transition: color var(--t-fast) var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all var(--t-mid) var(--ease);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: currentColor; border-radius: 1px;
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; transition: transform var(--t-mid) var(--ease); }
.faq-item.open .faq-icon { background: var(--accent); color: #0a0a0b; border-color: var(--accent); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-slow) var(--ease); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 4px 28px; color: var(--text-muted); font-size: 15px; line-height: 1.65; max-width: 70ch; }
.faq-a-inner strong { color: var(--text); font-weight: 600; }

/* ─── CTA Band ─── */
.cta-band {
  position: relative; margin: 0 24px 96px;
  padding: 64px 40px;
  background: linear-gradient(135deg, #FFD83B, var(--accent));
  border-radius: var(--radius-lg);
  color: #0a0a0b; overflow: hidden;
}
@media (min-width: 768px) { .cta-band { margin: 0 40px 128px; padding: 88px 64px; } }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 100%, rgba(0,0,0,0.06), transparent 50%); pointer-events: none; }
.cta-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 32px; max-width: var(--max); margin: 0 auto; align-items: center; }
@media (min-width: 1024px) { .cta-band-inner { grid-template-columns: 1.6fr 1fr; } }
.cta-band h2 { font-size: clamp(32px, 5vw, 60px); line-height: 0.98; letter-spacing: -0.04em; font-weight: 700; color: #0a0a0b; }
.cta-band p { font-size: 17px; margin-top: 18px; max-width: 48ch; color: rgba(10,10,11,0.78); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ─── Footer ─── */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-raise); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 56px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-brand-block p { margin: 18px 0 24px; color: var(--text-muted); font-size: 14.5px; max-width: 36ch; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all var(--t-fast) var(--ease);
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer-col h5 {
  font-family: 'Geist Mono', monospace; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-dim); margin-bottom: 18px; font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color var(--t-fast) var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--text-dim);
}
.footer-bottom .legal { display: flex; gap: 18px; }
.footer-bottom a:hover { color: var(--accent); }

/* ─── Floating CTAs ─── */
.float-cta { position: fixed; bottom: 24px; right: 24px; z-index: 70; display: flex; flex-direction: column; gap: 10px; }
.float-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 14px 28px -10px rgba(0,0,0,0.6);
  transition: all var(--t-fast) var(--ease);
  border: 1px solid transparent;
}
.float-btn:hover { transform: translateY(-3px); }
.float-phone { background: var(--accent); color: #0a0a0b; position: relative; }
.float-phone::before {
  content: ''; position: absolute; inset: -4px; border-radius: inherit;
  border: 2px solid var(--accent);
  animation: ringPulse 2.4s ease-out infinite;
  pointer-events: none; opacity: 0;
}
@keyframes ringPulse { 0%{transform: scale(0.96); opacity: 0.8;} 100%{transform: scale(1.18); opacity: 0;} }
.float-wa { background: var(--whatsapp); color: #082017; }

/* ─── Reveal on scroll ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ─── Cards generic (services hub, blog list, etc.) ─── */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.card-link {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  transition: all var(--t-mid) var(--ease);
  overflow: hidden;
}
.card-link::after {
  content: ''; position: absolute; left: 28px; right: 28px; bottom: 28px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-slow) var(--ease);
}
.card-link:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card-link:hover::after { transform: scaleX(1); }
.card-link h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.card-link p { color: var(--text-muted); font-size: 14.5px; }
.card-link .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text);
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.card-link:hover .arrow { gap: 14px; color: var(--accent); }

/* ─── Sticky in-page nav ─── */
.subnav {
  position: sticky; top: 73px; z-index: 40;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-top: -64px; margin-bottom: 64px;
}
.subnav-inner {
  display: flex; gap: 6px; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  flex-shrink: 0; padding: 8px 14px;
  font-size: 13px; color: var(--text-muted); font-weight: 500;
  border-radius: 999px; border: 1px solid transparent;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.subnav a:hover { color: var(--text); }
.subnav a.is-active { background: var(--bg-card); color: var(--text); border-color: var(--border); }

/* ─── Article body (blog) ─── */
.article-body { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.7; color: var(--text-muted); }
.article-body h2 { color: var(--text); font-size: 28px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 600; margin: 48px 0 16px; scroll-margin-top: 120px; }
.article-body h3 { color: var(--text); font-size: 22px; letter-spacing: -0.02em; font-weight: 600; margin: 32px 0 12px; }
.article-body p { margin-bottom: 18px; }
.article-body p strong { color: var(--text); font-weight: 600; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 22px; }
.article-body ul li { list-style: disc; margin-bottom: 8px; }
.article-body ol li { list-style: decimal; margin-bottom: 8px; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote {
  margin: 32px 0; padding: 24px 28px;
  background: var(--bg-card); border-left: 3px solid var(--accent);
  border-radius: 8px; font-size: 18px; color: var(--text);
  letter-spacing: -0.005em; line-height: 1.55;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  font-size: 13px; color: var(--text-dim);
  padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 40px;
}
.article-meta .author { display: inline-flex; align-items: center; gap: 10px; color: var(--text-muted); }
.article-meta .author-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: #0a0a0b; display: grid; place-items: center; font-family: 'Geist Mono', monospace; font-size: 12px; font-weight: 600; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-dim); }

.toc {
  position: sticky; top: 130px;
  padding: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 13.5px;
}
.toc h5 { font-family: 'Geist Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim); margin-bottom: 14px; font-weight: 500; }
.toc ol { display: flex; flex-direction: column; gap: 10px; counter-reset: toc; }
.toc ol li { counter-increment: toc; }
.toc ol a {
  color: var(--text-muted); padding-left: 22px; position: relative; display: block;
  transition: color var(--t-fast) var(--ease);
}
.toc ol a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--accent);
}
.toc ol a:hover { color: var(--text); }

/* ─── Form (contact page) ─── */
.form-row { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-row label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 500; }
.form-row input, .form-row select, .form-row textarea {
  padding: 13px 16px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  color: var(--text); font: inherit; font-size: 15px;
  transition: all var(--t-fast) var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--accent); background: var(--bg-card-hi);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form-row textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form-row .helper { font-size: 12px; color: var(--text-dim); }

/* ─── Map visual (zones) ─── */
.zone-map {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.zone-map::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 50%);
  opacity: 0.4;
}
.zone-map svg { position: relative; z-index: 1; width: 100%; height: 100%; max-height: 420px; }

/* ─── About cards ─── */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(3, 1fr); } }
.about-stat-card {
  padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.about-stat-card .num {
  font-family: 'Geist Mono', monospace;
  font-size: 56px; line-height: 1; letter-spacing: -0.05em; font-weight: 600;
  color: var(--accent); margin-bottom: 16px;
}
.about-stat-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.02em; }
.about-stat-card p { color: var(--text-muted); font-size: 14.5px; }

/* ─── Maquette tag (dev) ─── */
.maquette-tag {
  position: fixed; top: 14px; left: 14px; z-index: 80;
  font-family: 'Geist Mono', monospace; font-size: 10px;
  padding: 5px 9px; border-radius: 6px;
  background: rgba(0,0,0,0.5); color: var(--text-muted);
  border: 1px solid var(--border); backdrop-filter: blur(8px);
  letter-spacing: 0.1em; text-transform: uppercase;
  pointer-events: none;
}

/* ─── Photo slots (placeholders à remplacer par <img>) ─── */
.photo-slot {
  position: relative; width: 100%;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card);
}
.photo-slot.aspect-16-9 { aspect-ratio: 16/9; }
.photo-slot.aspect-4-3  { aspect-ratio: 4/3; }
.photo-slot.aspect-3-2  { aspect-ratio: 3/2; }
.photo-slot.aspect-1-1  { aspect-ratio: 1/1; }
.photo-slot.aspect-3-4  { aspect-ratio: 3/4; }
.photo-slot.aspect-2-3  { aspect-ratio: 2/3; }
.photo-slot img, .photo-slot video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.photo-slot:hover img { transform: scale(1.03); }
.photo-slot .placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 24px; text-align: center;
  border: 1.5px dashed var(--border-strong); border-radius: inherit;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,203,5,0.025) 14px 15px),
    linear-gradient(135deg, var(--bg-card-hi), var(--bg-card));
  isolation: isolate;
}
.photo-slot .placeholder::before {
  content: ''; position: absolute; top: 12px; right: 12px;
  font-family: 'Geist Mono', monospace; font-size: 9.5px;
  letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase;
}
.photo-slot[data-tag] .placeholder::before { content: attr(data-tag); }
.photo-slot .placeholder svg { opacity: 0.6; color: var(--accent); }
.photo-slot .placeholder .ph-dim {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
}
.photo-slot .placeholder .ph-title {
  font-size: 14px; color: var(--text); font-weight: 600;
  letter-spacing: -0.01em; max-width: 32ch;
}
.photo-slot .placeholder .ph-hint {
  font-size: 12.5px; color: var(--text-muted);
  max-width: 36ch; line-height: 1.45;
}
.photo-slot.compact .placeholder { gap: 8px; padding: 16px; }
.photo-slot.compact .placeholder .ph-title { font-size: 12.5px; }
.photo-slot.compact .placeholder .ph-hint { display: none; }
.photo-slot.compact .placeholder svg { width: 22px; height: 22px; }

.gallery-bento {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 768px) {
  .gallery-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-bento .photo-slot { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .gallery-bento .photo-slot.gb-wide { grid-column: span 4; grid-row: span 2; }
  .gallery-bento .photo-slot.gb-tall { grid-column: span 2; grid-row: span 3; }
  .gallery-bento .photo-slot.gb-small { grid-column: span 2; grid-row: span 1; }
}

/* ─── Helpers ─── */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
