/* ============================================================
   RobEvent — Système de design v2 « Festif »
   Fond crème/blanc · accent corail + doré · bande nuit aubergine
   Display: Bricolage Grotesque · Accent: Instrument Serif (italique)
   Corps: Manrope · Technique: Space Mono
   (Les noms de tokens sont conservés depuis la v1 pour compat.)
   ============================================================ */

:root {
  /* Surfaces claires (warm) */
  --bg:        #FBF6EE;   /* crème chaud */
  --bg-1:      #FFFFFF;   /* carte */
  --bg-2:      #F6EEE2;   /* panneau crème */
  --bg-3:      #F0E5D6;   /* panneau plus marqué */
  --line:      rgba(38,26,30,.12);
  --line-2:    rgba(38,26,30,.20);

  /* Encre / texte */
  --text:      #271C22;   /* prune presque noir, chaud */
  --dim:       #6A5C62;
  --mute:      #968890;

  /* Nuit (bande sombre festive) */
  --plum:      #1A0F1E;
  --plum-2:    #2A1630;
  --plum-line: rgba(255,255,255,.14);

  /* Accents festifs */
  --cyan:      #FF5A3C;   /* CORAIL (accent principal) */
  --cyan-deep: #E63E1F;   /* corail profond */
  --violet:    #F2A93B;   /* DORÉ/ambre (secondaire) */
  --blush:     #F9D8CF;   /* rosé doux */
  --cyan-soft: rgba(255,90,60,.12);
  --cyan-line: rgba(255,90,60,.34);
  --gold-soft: rgba(242,169,59,.16);

  /* Effets (chauds, doux — pas de néon) */
  --glow-cyan: 0 14px 38px -14px rgba(255,90,60,.5);
  --shadow:    0 26px 60px -34px rgba(70,38,26,.45);
  --shadow-sm: 0 10px 26px -16px rgba(70,38,26,.35);
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 30px;

  /* Type */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --serif:   "Instrument Serif", Georgia, serif;
  --body:    "Manrope", system-ui, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 56px);
  --header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--cyan); color: #fff; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.03; letter-spacing: -.02em; }
.serif { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: 0; }
.eyebrow {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--cyan-deep);
  display: inline-flex; align-items: center; gap: .6em; font-weight: 700;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--cyan); border-radius: 2px; }
.eyebrow.center::before { display: none; }

.h-display { font-size: clamp(2.7rem, 7.4vw, 5.4rem); letter-spacing: -.035em; line-height: .98; }
.h-1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
.h-2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.h-3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--dim); line-height: 1.55; }
.muted { color: var(--mute); }
.text-cyan, .text-coral { color: var(--cyan-deep); }
strong { font-weight: 700; color: var(--text); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 10vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.sec-head { max-width: 730px; margin-bottom: clamp(34px, 5vw, 60px); }
.sec-head.center { margin-inline: auto; }
.sec-head .lead { margin-top: 1.1rem; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  padding: .9em 1.5em; border-radius: 999px; white-space: nowrap;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary {
  background: var(--cyan); color: #fff;
  box-shadow: var(--glow-cyan);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--cyan-deep); box-shadow: 0 18px 42px -14px rgba(255,90,60,.65); }
.btn--ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cyan); color: var(--cyan-deep); transform: translateY(-2px); }
.btn--lg { font-size: 1.08rem; padding: 1.04em 1.8em; }
.btn--block { width: 100%; }
.btn--sm { padding: .62em 1.05em; font-size: .92rem; }

.btn--pulse { position: relative; }
.btn--pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255,90,60,.45); animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,90,60,.4); } 70%,100% { box-shadow: 0 0 0 15px rgba(255,90,60,0); } }
@media (prefers-reduced-motion: reduce) { .btn--pulse::after { animation: none; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(251,246,238,.85); backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px -22px rgba(70,38,26,.5);
}
.site-header .wrap { display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: .55em; font-family: var(--display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.025em; }
.brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px var(--cyan-soft); flex: none; }
.brand b { color: var(--cyan-deep); font-weight: 800; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > a {
  font-size: .94rem; color: var(--dim); padding: .5em .8em; border-radius: 9px; white-space: nowrap; font-weight: 500;
  transition: color .15s, background .15s;
}
.nav > a:hover, .nav > a[aria-current="page"] { color: var(--text); background: rgba(38,26,30,.05); }
.header-cta { margin-left: 10px; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 11px; box-shadow: inset 0 0 0 1.5px var(--line-2); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 19px; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: transform .25s, opacity .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(251,246,238,.98); backdrop-filter: blur(16px); padding: 14px var(--gut) 22px;
    border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .22s ease;
    box-shadow: var(--shadow);
  }
  body.nav-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .nav > a { padding: .85em .4em; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav > a:hover { background: none; }
  .header-cta { margin: 12px 0 0; }
  .header-cta .btn { width: 100%; }
}

/* ---------- Halos / décor festif (chaud, doux) ---------- */
.glow { position: absolute; border-radius: 50%; filter: blur(72px); opacity: .55; pointer-events: none; z-index: 0; }
.glow--cyan { background: radial-gradient(circle, rgba(255,90,60,.55), transparent 70%); }
.glow--violet { background: radial-gradient(circle, rgba(242,169,59,.55), transparent 70%); }
.glow--breathe { animation: breathe 8s ease-in-out infinite; }
@keyframes breathe { 0%,100% { opacity: .45; transform: scale(1); } 50% { opacity: .65; transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .glow--breathe { animation: none; } }

/* confettis pointillés (remplace l'ancienne grille) */
.gridlines::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, var(--cyan) 1.6px, transparent 2px),
    radial-gradient(circle, var(--violet) 1.6px, transparent 2px);
  background-size: 46px 46px, 46px 46px;
  background-position: 0 0, 23px 23px;
  opacity: .10;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, #000 25%, transparent 78%);
}

/* ---------- Placeholders (image à fournir) ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(38,26,30,.05) 0 11px, rgba(38,26,30,0) 11px 22px),
    linear-gradient(160deg, var(--bg-2), var(--bg-3));
  box-shadow: inset 0 0 0 1px var(--line);
  display: grid; place-items: center; min-height: 200px; color: var(--mute);
}
.ph::after {
  content: attr(data-label); font-family: var(--mono); font-size: .76rem; letter-spacing: .02em;
  color: var(--dim); padding: .4em .8em; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(255,255,255,.55); max-width: 82%; text-align: center;
}
.ph--cyan { box-shadow: inset 0 0 0 1.5px var(--cyan-line); background:
    repeating-linear-gradient(135deg, rgba(255,90,60,.06) 0 11px, rgba(255,90,60,0) 11px 22px),
    linear-gradient(160deg, var(--blush), var(--bg-2)); }
/* Photo de remplissage : couvre le placeholder, repli auto si échec (onerror retire l'img) */
.ph > .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; border: 0; }
.ph:has(.ph-img)::after { display: none; }
.ph:has(.ph-img) { box-shadow: inset 0 0 0 1px var(--line); }
img.av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }

/* ---------- Cards ---------- */
.card {
  position: relative; background: var(--bg-1);
  border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 2.6vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card--hover:hover { transform: translateY(-5px); border-color: var(--cyan-line); box-shadow: var(--shadow); }

.evt-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; min-height: 320px; }
.evt-card .evt-media { aspect-ratio: 16/11; }
.evt-card .evt-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.evt-card .evt-body h3 { display: flex; align-items: center; gap: .5em; }
.evt-card .evt-link { margin-top: auto; font-family: var(--mono); font-size: .82rem; color: var(--cyan-deep); display: inline-flex; align-items: center; gap: .5em; font-weight: 700; }
.evt-card .evt-link svg { transition: transform .2s; }
.evt-card:hover .evt-link svg { transform: translateX(4px); }

/* ---------- Reassurance bar ---------- */
.reassure { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.reassure .item { background: var(--bg); padding: 22px clamp(14px,2vw,26px); display: flex; align-items: center; gap: 13px; }
.reassure .ic { width: 40px; height: 40px; flex: none; display: grid; place-items: center; color: var(--cyan-deep); background: var(--cyan-soft); border-radius: 11px; }
.reassure .ic svg { width: 22px; height: 22px; }
.reassure b { display: block; font-family: var(--display); font-size: .98rem; font-weight: 700; }
.reassure span { font-size: .82rem; color: var(--mute); line-height: 1.3; }
@media (max-width: 760px) { .reassure { grid-template-columns: 1fr 1fr; } }

/* ---------- Stats / counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(14px,2.4vw,30px); }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem,5vw,3.4rem); letter-spacing: -.04em; line-height: 1; }
.stat .num .u { color: var(--cyan); }
.stat .lbl { font-family: var(--mono); font-size: .78rem; letter-spacing: .03em; color: var(--mute); margin-top: .7em; text-transform: uppercase; }
@media (max-width: 680px) { .stats { grid-template-columns: 1fr 1fr; gap: 28px 18px; } }

/* ---------- Pills / chips ---------- */
.pill { display: inline-flex; align-items: center; gap: .5em; font-family: var(--mono); font-size: .76rem; letter-spacing: .04em; padding: .42em .85em; border-radius: 999px; border: 1px solid var(--line-2); color: var(--dim); background: var(--bg-1); }
.pill .d { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-soft); }
.pill--rare { color: #9a6a12; border-color: rgba(242,169,59,.5); background: var(--gold-soft); }
.pill--rare .d { background: var(--violet); box-shadow: 0 0 0 3px var(--gold-soft); }

/* ---------- Pricing cards ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,22px); }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.price-card { display: flex; flex-direction: column; }
.price-card.feat { border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan), var(--shadow); background: linear-gradient(180deg, #fff, var(--blush)); }
.price-card .tag { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); font-weight: 700; }
.price-card.feat .tag { color: var(--cyan-deep); }
.price-card h3 { font-size: 1.5rem; margin-top: .25em; }
.price-card .amt { font-family: var(--display); font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; margin-top: .35em; }
.price-card .amt small { font-family: var(--mono); font-size: .9rem; color: var(--mute); font-weight: 400; letter-spacing: 0; }
.price-card .dur { font-family: var(--mono); font-size: .82rem; color: var(--cyan-deep); margin-top: .15em; }
.price-card ul { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-card li { display: flex; gap: .7em; font-size: .96rem; color: var(--dim); align-items: flex-start; }
.price-card li svg { width: 17px; height: 17px; color: var(--cyan); flex: none; margin-top: 3px; }
.price-card .btn { margin-top: auto; }
.feat-flag { position: absolute; top: -1px; right: 22px; transform: translateY(-50%); font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; background: var(--cyan); color: #fff; padding: .4em .85em; border-radius: 999px; font-weight: 700; box-shadow: var(--glow-cyan); }

/* ---------- Testimonials ---------- */
.tmt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,22px); }
@media (max-width: 900px) { .tmt-grid { grid-template-columns: 1fr; } }
.tmt { display: flex; flex-direction: column; gap: 18px; }
.tmt .stars { color: var(--violet); letter-spacing: 2px; font-size: .95rem; }
.tmt blockquote { font-size: 1.08rem; line-height: 1.5; font-family: var(--serif); font-style: italic; }
.tmt .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tmt .av { width: 42px; height: 42px; border-radius: 50%; flex: none; }
.tmt .who b { font-family: var(--display); font-size: .95rem; font-weight: 700; }
.tmt .who span { font-size: .8rem; color: var(--mute); }

.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(22px,5vw,56px); opacity: .55; }
.logos .lg { font-family: var(--display); font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; color: var(--dim); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 4px; position: relative; font-family: var(--display); font-size: 1.14rem; font-weight: 600; transition: color .15s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 16px; font-family: var(--mono); font-size: 1.6rem; color: var(--cyan); transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--cyan-deep); }
.faq .ans { padding: 0 44px 24px 4px; color: var(--dim); }

/* ---------- CTA band (festive, chaud) ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--cyan-line); background: linear-gradient(135deg, var(--blush), #fff 70%); padding: clamp(40px,6vw,72px); text-align: center; box-shadow: var(--shadow); }
.cta-band .btn { margin-top: 26px; }

/* ---------- Bande NUIT (cut sombre festif) ---------- */
.band-night { position: relative; overflow: hidden; background: var(--plum); color: #F4ECE4; }
.band-night::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,90,60,.5) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(242,169,59,.45) 1.5px, transparent 2px);
  background-size: 54px 54px, 54px 54px; background-position: 0 0, 27px 27px; opacity: .25;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 25%, transparent 80%);
}
.band-night h1, .band-night h2, .band-night h3, .band-night h4 { color: #FFF6EF; }
.band-night .lead { color: rgba(244,236,228,.75); }
.band-night .muted { color: rgba(244,236,228,.55); }
.band-night .eyebrow { color: var(--violet); }
.band-night .eyebrow::before { background: var(--violet); }
.band-night .btn--ghost { color: #FFF6EF; box-shadow: inset 0 0 0 1.5px var(--plum-line); }
.band-night .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--violet); color: var(--violet); }
.band-night .card { background: rgba(255,255,255,.045); border-color: var(--plum-line); box-shadow: none; backdrop-filter: blur(4px); }
.band-night .ph { background: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 11px, transparent 11px 22px), linear-gradient(160deg, #25132c, #180d1d); box-shadow: inset 0 0 0 1px var(--plum-line); }
.band-night .ph::after { color: rgba(244,236,228,.6); border-color: var(--plum-line); background: rgba(0,0,0,.3); }
.band-night .rel { position: relative; z-index: 1; }

/* ---------- Footer (sombre, ancrage nuit) ---------- */
.site-footer { padding-block: 60px 38px; background: var(--plum); color: rgba(244,236,228,.8); position: relative; z-index: 1; overflow: hidden; }
.site-footer .brand { color: #FFF6EF; }
.site-footer .brand b { color: var(--cyan); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; position: relative; z-index: 1; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; } }
.site-footer h4 { font-family: var(--mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(244,236,228,.5); font-weight: 400; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: rgba(244,236,228,.72); font-size: .94rem; transition: color .15s; }
.site-footer a:hover { color: var(--cyan); }
.site-footer .muted { color: rgba(244,236,228,.5); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--plum-line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .82rem; color: rgba(244,236,228,.5); position: relative; z-index: 1; }
.footer-bottom a { color: rgba(244,236,228,.6); }

/* ---------- Floating mobile CTA ---------- */
.float-cta { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 55; display: none; }
.float-cta .btn { width: 100%; box-shadow: 0 12px 36px -8px rgba(255,90,60,.6), 0 6px 20px -6px rgba(70,38,26,.4); }
@media (max-width: 900px) { .float-cta { display: block; } body { padding-bottom: 80px; } }

/* ---------- Reveal ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Page hero ---------- */
.page-hero { padding-top: calc(var(--header-h) + clamp(40px,7vw,80px)); padding-bottom: clamp(30px,5vw,56px); position: relative; overflow: hidden; }
.crumb { font-family: var(--mono); font-size: .78rem; color: var(--mute); letter-spacing: .03em; margin-bottom: 18px; }
.crumb a:hover { color: var(--cyan-deep); }

/* ---------- Utilities ---------- */
.flex { display: flex; }
.between { justify-content: space-between; }
.items-center { align-items: center; }
.wrapw { flex-wrap: wrap; }
.gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; }
.rel { position: relative; z-index: 1; }
.hide-mob { } @media (max-width: 900px) { .hide-mob { display: none !important; } }
.show-mob { display: none; } @media (max-width: 900px) { .show-mob { display: initial; } }
