/* ============================================================
   Canada Explorers — Bons plans PVT
   Theme: cream/red (DA alignée site Webflow)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Brand Canada Explorers */
  --ce-red:        #b53b1b;
  --ce-red-dark:   #872d15;
  --ce-red-light:  #d04826;
  --ce-cream:      #fcf5ed;
  --ce-cream-2:    #f3e8d6;
  --ce-charcoal:   #373433;
  --ce-charcoal-2: #4a4644;
  --ce-green:      #49782b;
  --ce-green-2:    #6a9c45;
  --ce-blue:       #30618a;
  --ce-blue-2:     #4a7eaa;

  /* App tokens */
  --bg:        var(--ce-cream);
  --bg-warm:   var(--ce-cream-2);
  --surface:   #ffffff;
  --surface-2: #fffaf2;
  --text:      var(--ce-charcoal);
  --text-soft: #5a5552;
  --muted:     #968d83;
  --line:      rgba(55, 52, 51, 0.10);
  --line-strong: rgba(55, 52, 51, 0.20);

  --brand:   var(--ce-red);
  --brand-2: var(--ce-red-light);
  --accent:  var(--ce-red);
  --success: var(--ce-green);

  --shadow-sm: 0 2px 8px rgba(55, 52, 51, 0.07);
  --shadow-md: 0 14px 36px -10px rgba(55, 52, 51, 0.18);
  --shadow-lg: 0 32px 60px -16px rgba(55, 52, 51, 0.25);
  --shadow-pop: 0 14px 30px -8px rgba(181, 59, 27, 0.35);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1140px;
  --header-h: 70px;
}

html { scroll-behavior: smooth; }
html { background: var(--bg); }
html, body {
  margin: 0; padding: 0;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body { background: transparent; }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.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;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Background — paper texture + warm gradient
   ============================================================ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(1400px 800px at 90% -10%, rgba(181, 59, 27, 0.08), transparent 60%),
    radial-gradient(1100px 600px at -10% 110%, rgba(48, 97, 138, 0.06), transparent 60%),
    radial-gradient(800px 500px at 50% 50%, rgba(73, 120, 43, 0.04), transparent 70%),
    linear-gradient(180deg, #fcf5ed 0%, #f5e9d5 100%);
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.2 0 0 0 0 0.2 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ============================================================
   Canada-themed background animations
   - Snow flakes (white particles falling)
   - Maple leaves drifting (red SVG silhouettes)
   - Subtle rotating compass rings
   ============================================================ */

/* Maple leaves — subtle red silhouettes drifting */
.leaves {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; overflow: hidden;
}
.leaf {
  position: absolute;
  top: -10vh; left: var(--x);
  width: var(--size, 28px);
  height: var(--size, 28px);
  opacity: 0;
  animation: leafFall var(--duration, 28s) linear infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b53b1b'><path d='M12 2l1.4 4.4L18 5l-1.4 4.4L21 11l-3.6 2.6L19 18l-4.4-1L13 22l-1-4-1 4-1.6-5L5 18l1.6-4.6L3 11l4.4-1.6L6 5l4.6 1.4L12 2z'/></svg>") no-repeat center / contain;
  filter: drop-shadow(0 4px 8px rgba(181, 59, 27, 0.20));
}
@keyframes leafFall {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.30; }
  50%  { transform: translate3d(60px, 55vh, 0) rotate(180deg); opacity: 0.40; }
  90%  { opacity: 0.20; }
  100% { transform: translate3d(-40px, 110vh, 0) rotate(360deg); opacity: 0; }
}

/* Snow flakes (Canada en hiver) */
.snow {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; overflow: hidden;
}
.flake {
  position: absolute;
  top: -10vh; left: var(--x);
  width: var(--size, 6px); height: var(--size, 6px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 1px 4px rgba(55, 52, 51, 0.15);
  opacity: 0;
  animation: snowFall var(--duration, 30s) linear infinite;
  animation-delay: var(--delay, 0s);
  filter: blur(0.5px);
  will-change: transform, opacity;
}
@keyframes snowFall {
  0%   { transform: translate(0, 0)         rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.7; }
  50%  { transform: translate(40px, 55vh)   rotate(180deg); opacity: 0.85; }
  90%  { opacity: 0.4; }
  100% { transform: translate(-30px, 110vh) rotate(360deg); opacity: 0; }
}

/* Compass rings — subtle dashed circles rotating */
.rings {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; overflow: hidden;
}
.ring {
  position: absolute;
  border-style: dashed;
  border-color: rgba(181, 59, 27, 0.10);
  border-radius: 50%;
  animation: ringSpin var(--duration, 60s) linear infinite;
  will-change: transform;
}
.ring--1 { width: 620px; height: 620px; top: -200px; right: -220px; border-width: 1.5px; }
.ring--2 { width: 820px; height: 820px; bottom: -340px; left: -300px; border-width: 1px; animation-direction: reverse; --duration: 80s; }
.ring--3 { width: 420px; height: 420px; top: 40%; left: 45%; border-width: 1px; border-color: rgba(48, 97, 138, 0.08); }
@keyframes ringSpin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .leaf, .flake, .ring { animation: none; }
}

/* Confetti for cafe burst */
.confetti {
  position: fixed; pointer-events: none; z-index: 9999; user-select: none;
  animation: confettiFly 1.4s cubic-bezier(.18,.7,.4,1) forwards;
  will-change: transform, opacity;
}
@keyframes confettiFly {
  0%   { transform: translate(-50%, -50%) rotate(0deg) scale(0.6); opacity: 0; }
  10%  { opacity: 1; transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot)) scale(0.9); opacity: 0; }
}

/* ============================================================
   Top progress bar
   ============================================================ */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60; pointer-events: none;
}
.progress__track { height: 3px; }
.progress__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--ce-blue), var(--ce-green), var(--ce-red));
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(181, 59, 27, 0.4);
}

/* ============================================================
   HEADER (style Webflow Canada Explorers)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border: 0 !important;              /* aucune bordure, jamais */
  box-shadow: none !important;       /* aucune ombre, jamais */
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.site-header__logo {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
  cursor: pointer;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0;
}
.site-header__logo img {
  height: 64px; width: auto;
  mix-blend-mode: multiply;
  pointer-events: none;
  background: transparent !important;
  border: 0 !important;
}
.site-header__nav {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
}
.site-header__nav a {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  border-radius: 8px;
  transition: color 0.18s;
}
.site-header__nav a:hover { color: var(--ce-red); }
.site-header__nav a.is-active { color: var(--ce-red); }
.site-header__cta-group {
  display: inline-flex; align-items: center; gap: 12px;
}
.site-header__cta {
  display: inline-flex; align-items: center;
  padding: 12px 24px;
  background: var(--ce-red);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  border: 0;                /* pas de bordure noire */
  border-radius: 10px;
  cursor: pointer;
  font-style: normal;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 16px -4px rgba(181, 59, 27, 0.4);
}
.site-header__cta:focus-visible {
  outline: 2px solid var(--ce-red);
  outline-offset: 3px;
}
.site-header__cta:hover {
  background: var(--ce-red-dark);
  transform: translateY(-1px);
}
.site-header__login {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ce-red);
}
.site-header__login:hover { color: var(--ce-red-dark); }

/* Burger button (mobile only) */
.site-header__burger {
  display: none;
  width: 48px; height: 48px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}
.site-header__burger span {
  display: block;
  width: 28px; height: 3px;
  background: var(--ce-red);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header__burger.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.site-header__burger.is-active span:nth-child(2) { opacity: 0; }
.site-header__burger.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* DESKTOP : pas de burger, pas de menu mobile (gardé tel quel) */

/* MOBILE ≤ 980 — header simplifié + burger visible */
@media (max-width: 980px) {
  .site-header {
    position: fixed;             /* FIXÉ : reste toujours en haut, en tout temps */
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 100;
    background: var(--bg);
    border: 0 !important;
    box-shadow: none;
  }
  /* Décale le contenu vers le bas pour qu'il ne passe pas sous le header fixé */
  body { padding-top: 84px; }
  .site-header__inner { padding: 14px 18px; gap: 12px; }
  .site-header__nav,
  .site-header__nav-desktop { display: none; }
  .site-header__cta-group { display: none; }
  .site-header__burger { display: flex; }
  .site-header__logo img { height: 56px; }          /* logo plus gros sur mobile */
  .progress { display: none; }                       /* on cache le petit trait au-dessus */
}

@media (max-width: 600px) {
  .site-header__logo img { height: 50px; }
}

/* ========== Mobile menu (slide-in) ========== */
.mobile-menu {
  position: fixed; top: 0; right: 0;
  width: 88%; max-width: 380px; height: 100vh;
  background: var(--ce-cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.2,.7,.4,1);
  overflow-y: auto;
  display: none;
  box-shadow: -16px 0 40px -10px rgba(55,52,51,0.25);
  visibility: hidden;             /* renforce le non-interactable quand fermé */
}
.mobile-menu.is-open { visibility: visible; }
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(55, 52, 51, 0.4);
  z-index: 99;
  border: 0; cursor: pointer;
  opacity: 0;
  pointer-events: none;          /* ⚠️ CRITIQUE : ne bloque pas les clics quand fermé */
  transition: opacity 0.3s ease;
}
.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: auto;          /* ne reçoit les clics que quand le menu est ouvert */
}

.mobile-menu__inner {
  padding: 36px 28px 40px;
  display: flex; flex-direction: column; gap: 24px;
}
.mobile-menu__logo img {
  height: 64px; width: auto;
  mix-blend-mode: multiply;
}
.mobile-menu__nav {
  list-style: none; margin: 0; padding: 12px 0 0;
  display: flex; flex-direction: column; gap: 18px;
}
.mobile-menu__nav a {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  padding: 4px 0;
}
.mobile-menu__nav a.is-active { color: var(--ce-red); }
.mobile-menu__ctas {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 16px;
}
.mobile-menu__cta {
  display: block;
  padding: 14px 22px;
  background: var(--ce-red);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  box-shadow: 0 6px 14px -4px rgba(181,59,27,0.35);
}
.mobile-menu__login {
  display: block;
  padding: 12px 22px;
  border: 1.5px dashed var(--ce-red);
  border-radius: 10px;
  color: var(--ce-red);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
}

@media (max-width: 980px) {
  /* Desktop nav + CTA group cachés, burger affiché */
  .site-header__nav-desktop,
  .site-header__cta-group { display: none !important; }
  .site-header__burger { display: inline-flex !important; }
  .mobile-menu, .mobile-menu__overlay { display: block; }
}

/* MOBILE — header optimisé */
@media (max-width: 700px) {
  .site-header {
    border: 0 !important;
    box-shadow: none !important;
    background: var(--bg);
  }
  .site-header__inner {
    padding: 12px 20px;
  }
  .site-header__logo img {
    height: 56px;   /* plus gros (était 32 sur mobile) */
  }
  /* Hide decorative rings on mobile (creent parfois traits visibles) */
  .rings { display: none !important; }
}

/* Empêcher le scroll quand menu ouvert */
body.menu-open { overflow: hidden; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--sm { padding: 10px 16px; font-size: 13.5px; }
.btn--lg { padding: 17px 28px; font-size: 16px; }

.btn--primary {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--ce-red) 0%, var(--ce-red-light) 100%);
  box-shadow: var(--shadow-pop), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.btn--primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -12px rgba(181, 59, 27, 0.55);
}
.btn--primary:hover::before { left: 150%; }

.btn--ghost {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Badges & tags
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ce-green-2);
  box-shadow: 0 0 0 3px rgba(106, 156, 69, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(106, 156, 69, 0.22); }
  50%      { box-shadow: 0 0 0 8px rgba(106, 156, 69, 0.0); }
}

.tag {
  display: inline-flex; align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.tag--required {
  background: rgba(181, 59, 27, 0.10);
  color: var(--ce-red);
  border: 1px solid rgba(181, 59, 27, 0.30);
}
.tag--saving {
  background: rgba(73, 120, 43, 0.10);
  color: var(--ce-green);
  border: 1px solid rgba(73, 120, 43, 0.30);
}
.tag--bonus {
  background: rgba(48, 97, 138, 0.10);
  color: var(--ce-blue);
  border: 1px solid rgba(48, 97, 138, 0.30);
}

.wave { display: inline-block; transform-origin: 70% 80%; animation: waveHand 2.4s ease-in-out infinite; }
@keyframes waveHand {
  0%, 60%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(60px, 8vh, 100px) 0 clamp(50px, 7vh, 80px);
  overflow: hidden;
}
.hero__inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 22px;
  position: relative; z-index: 2;
}
.hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 8px 0 0;
  color: var(--text);
  text-wrap: balance;
}
.grad {
  display: inline-block;             /* nécessaire pour que padding marche correctement */
  padding-right: 0.12em;             /* breathing room → italique ne déborde plus à droite */
  background: linear-gradient(90deg, var(--ce-red) 0%, var(--ce-red-light) 50%, #d97a4f 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
  font-style: italic;
  font-weight: 500;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.leaf-emoji {
  display: inline-block; transform-origin: 50% 80%;
  animation: leafSway 4s ease-in-out infinite;
}
@keyframes leafSway {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(8deg); }
}

.hero__lead {
  max-width: 640px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-soft);
  margin: 0;
}
.hero__lead strong { color: var(--text); font-weight: 700; }

.hero__aside {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ce-red);
  margin: -6px 0 0;
  font-weight: 500;
}

.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-top: 8px;
}

.hero__stats {
  list-style: none; display: flex; gap: 0;
  margin: 24px 0 0; padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero__stats li {
  display: flex; flex-direction: column;
  padding: 18px 28px; text-align: center;
}
.hero__stats li + li { border-left: 1px solid var(--line); }
.hero__stats strong {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--ce-red), var(--ce-red-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__stats span { color: var(--muted); font-size: 13px; margin-top: 2px; }

.hero__scroll {
  /* Flux normal après les stats — plus aucun risque d'overlap */
  position: relative;
  margin: 10px auto 0;
  width: 26px; height: 42px;
  border: 2px solid rgba(55, 52, 51, 0.35);
  border-radius: 16px;
  display: grid; place-items: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll span {
  width: 4px; height: 8px;
  background: var(--ce-red); border-radius: 2px;
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(-6px); opacity: 0.4; }
  50%      { transform: translateY(6px);  opacity: 1; }
}

/* Mountain silhouette decorating hero bottom */
.hero__mountains {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 80px;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
}

@media (max-width: 600px) {
  .hero__stats { flex-direction: column; }
  .hero__stats li { padding: 12px 18px; }
  .hero__stats li + li { border-left: 0; border-top: 1px solid var(--line); }
}

/* ============================================================
   Email capture
   ============================================================ */
.capture { margin: 0 auto 60px; }
.capture__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.capture__text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  margin: 0 0 6px; letter-spacing: -0.025em;
  color: var(--text);
}
.capture__text p { color: var(--text-soft); margin: 0; font-size: 14.5px; }

.capture__form {
  display: flex; gap: 8px; align-items: stretch;
  background: var(--bg-warm);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.capture__form input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 15px; font-family: inherit;
  outline: none; min-width: 0;
}
.capture__form input::placeholder { color: var(--muted); }

.capture__success {
  grid-column: 1 / -1; margin: 0;
  padding: 12px 16px;
  background: rgba(73, 120, 43, 0.10);
  border: 1px solid rgba(73, 120, 43, 0.32);
  border-radius: 12px;
  color: var(--ce-green);
  font-weight: 700;
}
@media (max-width: 760px) {
  .capture__card { grid-template-columns: 1fr; text-align: center; }
  .capture__form { width: 100%; }
}

/* ============================================================
   Section heads
   ============================================================ */
.intro-section { text-align: center; margin: 30px auto 50px; max-width: 760px; }
.kicker {
  display: inline-block;
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ce-red);
  margin: 0 0 14px;
}
.kicker::before, .kicker::after {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--ce-red);
  vertical-align: middle;
  margin: 0 10px;
  opacity: 0.7;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800; letter-spacing: -0.025em;
  margin: 0 0 12px; line-height: 1.05;
  color: var(--text);
}
.section-lead { color: var(--text-soft); font-size: 16.5px; margin: 0; }

/* ============================================================
   Journey / Steps
   ============================================================ */
.journey {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex; flex-direction: column; gap: 28px;
  position: relative;
}
.journey::before {
  content: '';
  position: absolute;
  left: 28px; top: 30px; bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%, rgba(181, 59, 27, 0.20) 5%,
    rgba(181, 59, 27, 0.20) 95%, transparent 100%);
  z-index: 0;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.16,.84,.3,1);
}
.step.is-visible { opacity: 1; transform: translateY(0); }

.step__num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent, var(--ce-red));
  display: grid; place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 800; font-size: 20px;
  color: var(--accent, var(--ce-red));
  position: relative; z-index: 1;
  box-shadow: 0 6px 20px -4px rgba(55, 52, 51, 0.18);
}
.step__num::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(181, 59, 27, 0.20);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.step__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform 0.32s cubic-bezier(.2,.7,.4,1), box-shadow 0.3s ease, border-color 0.25s ease;
}
.step__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent, var(--ce-red)), transparent 70%);
}
.step__card::after {
  content: '';
  position: absolute;
  top: -2px; left: -100%;
  width: 50%; height: 5px;
  background: linear-gradient(90deg, transparent, rgba(181, 59, 27, 0.25), transparent);
  filter: blur(2px);
  transition: left 0.8s ease;
}
.step__card:hover {
  transform: translateY(-4px) rotate(-0.2deg);
  box-shadow: var(--shadow-md);
  border-color: rgba(181, 59, 27, 0.30);
}
.step__card:hover::after { left: 150%; }
.step__card:hover .step__icon { animation: iconPop 0.6s ease-in-out; }
@keyframes iconPop {
  0%, 100% { transform: scale(1) rotate(0deg); }
  30%      { transform: scale(1.18) rotate(-10deg); }
  60%      { transform: scale(1.05) rotate(8deg); }
}
.step:hover .step__num {
  box-shadow: 0 0 0 4px rgba(181, 59, 27, 0.08), 0 12px 30px -4px rgba(181, 59, 27, 0.40);
  transition: box-shadow 0.4s ease;
}

/* HEAD: icon + title inline + tags right */
.step__head {
  display: flex; align-items: center;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.step__head-main {
  display: flex; align-items: center;
  gap: 12px; flex: 1; min-width: 0;
}
.step__icon {
  display: inline-grid; place-items: center;
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  font-size: 24px;
}
.step__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0; line-height: 1.18;
  color: var(--text);
}
.step__tags { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* h3 backwards-compat: si pas .step__title, garde l'ancien style */
.step__card > h3:not(.step__title) {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px; line-height: 1.2;
  color: var(--text);
}

.step__card p {
  color: var(--text-soft);
  margin: 0 0 12px;
  font-size: 15.5px;
  line-height: 1.55;
}
.step__card strong { color: var(--text); font-weight: 700; }

.muted { color: var(--muted); font-size: 13.5px; }
.muted--spaced { margin-top: 16px; }
.muted code {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(181, 59, 27, 0.08);
  padding: 2px 8px; border-radius: 6px;
  font-size: 13px; color: var(--ce-red);
  font-weight: 700;
}
.code {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  background: linear-gradient(135deg, var(--ce-red), var(--ce-red-light));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.bullets {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 15px; line-height: 1.5;
}
.bullets li::before {
  content: '';
  position: absolute; left: 2px; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent, var(--ce-red)); opacity: 0.18;
}
.bullets li::after {
  content: '✓';
  position: absolute; left: 5px; top: 3px;
  font-size: 11px; font-weight: 800;
  color: var(--accent, var(--ce-red));
}

.step__cta { margin-top: 4px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.step__cta--row { align-items: center; }

/* ============== Brand logo (petit encadré + fond transparent du PNG) ============== */
.step__brand {
  display: inline-flex; align-items: center;
  height: 44px; padding: 0 16px;
  background: var(--bg-warm);
  border-radius: 12px;
  margin: 0 0 14px;
  align-self: flex-start;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step__card:hover .step__brand {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.step__brand img {
  height: 28px; width: auto;
  max-width: 150px; object-fit: contain; display: block;
  mix-blend-mode: multiply;            /* sécurité si un PNG a encore du fond blanc */
}
/* Variant Canada Explorers (logo carré dense) — dezoom léger */
.step__brand--ce { overflow: hidden; }
.step__brand--ce img {
  height: 38px; width: auto; max-width: none;
  transform: scale(1.32); transform-origin: center;
}
/* Ghost variant (logo cream sur fond charcoal pour Liste employeurs) */
.step__brand--ghost {
  background: var(--ce-charcoal);
  border-color: rgba(252, 245, 237, 0.20);
}
.step__brand--ghost img {
  /* Logo noir transformé en blanc/cream pour bien ressortir sur fond charcoal */
  filter: brightness(0) invert(1) sepia(0.10) hue-rotate(-10deg) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  mix-blend-mode: normal;
}
/* Variants zoomées (PNG avec beaucoup de blanc autour) */
.step__brand--wise { overflow: hidden; }
.step__brand--wise img { height: 38px; max-width: none; transform: scale(1.55); transform-origin: center; }
.step__brand--air  { overflow: hidden; }
.step__brand--air img  { height: 38px; max-width: none; transform: scale(1.08); transform-origin: center; }
/* Variant Astell — logo a beaucoup d'air autour, on zoome */
.step__brand--astell { overflow: hidden; }
.step__brand--astell img { height: 38px; max-width: none; transform: scale(1.30); transform-origin: center; }
/* Variant Fizz — logo trop petit visuellement, on zoome */
.step__brand--fizz { overflow: hidden; }
.step__brand--fizz img { height: 38px; max-width: none; transform: scale(1.45); transform-origin: center; }
/* Variant Régulus */
.step__brand--regulus { overflow: hidden; }
.step__brand--regulus img { height: 38px; max-width: none; transform: scale(1.20); transform-origin: center; }

/* ============== Chapka — 3 profils ============== */
.chapka-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 6px;
}
.chapka-card {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px 18px 18px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--text);
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  overflow: hidden;
}
.chapka-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ce-red), transparent);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.chapka-card:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 59, 27, 0.45);
  background: #fff;
  box-shadow: 0 18px 40px -14px rgba(181, 59, 27, 0.30);
}
.chapka-card:hover::before { opacity: 1; }
.chapka-card__icon {
  font-size: 36px; line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  transition: transform 0.22s ease;
}
.chapka-card:hover .chapka-card__icon { transform: scale(1.12) rotate(-6deg); }
.chapka-card__title {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.chapka-card__sub {
  font-size: 13px; color: var(--text-soft);
  line-height: 1.4; min-height: 36px;
}
.chapka-card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ce-red), var(--ce-red-light));
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 20px -6px rgba(181, 59, 27, 0.45), inset 0 1px 0 rgba(255,255,255,0.20);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.chapka-card:hover .chapka-card__cta {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -6px rgba(181, 59, 27, 0.6);
}
@media (max-width: 720px) {
  .chapka-trio { grid-template-columns: 1fr; }
  .chapka-card__sub { min-height: auto; }
}

/* ============== Duo (banques) ============== */
.duo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 6px;
}
.duo__card {
  position: relative;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.duo__card:hover {
  transform: translateY(-2px);
  border-color: rgba(181, 59, 27, 0.30);
  box-shadow: var(--shadow-md);
}
.duo__card h4 { margin: 0; font-size: 17px; font-weight: 700; }
.duo__card .duo__brand { margin-top: 64px; }
.duo__perk {
  margin: 0 0 4px !important;
  color: var(--ce-green) !important;
  font-size: 13.5px !important;
  font-weight: 700;
}
.duo__hint {
  margin: 0 0 10px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
}
.duo__card .btn { align-self: flex-start; margin-top: auto; }

.duo__brand {
  display: inline-flex; align-items: center;
  height: 36px; padding: 0 14px;
  background: var(--surface);
  border-radius: 10px;
  align-self: flex-start;
  margin: 0 0 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.duo__brand img {
  height: 22px; width: auto; max-width: 130px;
  object-fit: contain; display: block;
  mix-blend-mode: multiply;
}
.duo__brand--bnc { overflow: hidden; }
.duo__brand--bnc img { height: 26px; max-width: none; transform: scale(1.18); transform-origin: center; }

/* Modern badges (Macarons) */
.stamp {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 14px;
  border-radius: 14px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  box-shadow:
    0 10px 24px -8px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);
  animation: stampPulse 4.5s ease-in-out infinite;
}
.stamp__star { font-size: 17px; line-height: 1; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4)); }
.stamp__text { display: flex; flex-direction: column; gap: 1px; line-height: 1.05; }
.stamp__top { font-size: 9.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.stamp__main { font-size: 13.5px; font-weight: 800; letter-spacing: -0.005em; }
.stamp--qc { background: linear-gradient(135deg, var(--ce-blue-2) 0%, var(--ce-blue) 100%); }
.stamp--ca { background: linear-gradient(135deg, #f37985 0%, var(--ce-red) 100%); animation-delay: -2.2s; }
@keyframes stampPulse {
  0%, 100% { transform: scale(1)    translateY(0); }
  50%      { transform: scale(1.03) translateY(-1px); }
}

@media (max-width: 420px) {
  .stamp { padding: 7px 12px; top: 10px; right: 10px; gap: 8px; }
  .stamp__star { font-size: 15px; }
  .stamp__top  { font-size: 8.5px; }
  .stamp__main { font-size: 12px; }
}
@media (max-width: 560px) { .duo { grid-template-columns: 1fr; } }

/* ============== Air Transat tarifs ============== */
.fares {
  list-style: none; margin: 0 0 14px; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.fare {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent, var(--ce-green));
  border-radius: 12px;
}
.fare__name {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
}
.fare__plus { font-size: 14.5px; color: var(--text); }
.fare__plus strong { color: var(--ce-green); }
@media (max-width: 520px) { .fares { grid-template-columns: 1fr; } }

/* ============== Trio (CV) ============== */
.trio {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.trio__card {
  display: flex; flex-direction: column; gap: 4px;
  align-items: flex-start; padding: 16px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.trio__card:hover {
  transform: translateY(-3px);
  border-color: var(--ce-blue);
  background: #fff;
}
.trio__icon { font-size: 22px; margin-bottom: 4px; }
.trio__card strong { font-size: 14.5px; font-weight: 700; }
.trio__sub { color: var(--muted); font-size: 12.5px; }
@media (max-width: 600px) { .trio { grid-template-columns: 1fr; } }

/* ============== Copy code (Fizz) ============== */
.copy {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 14px 10px 16px;
  background: var(--bg-warm);
  border: 1px dashed rgba(181, 59, 27, 0.55);
  border-radius: 999px;
  color: var(--text);
  font-family: inherit; cursor: pointer;
  font-weight: 600; font-size: 14px;
  transition: transform 0.15s ease, border-style 0.15s ease, background 0.2s, border-color 0.2s;
}
.copy:hover {
  transform: translateY(-1px);
  border-style: solid;
  background: rgba(181, 59, 27, 0.06);
}
.copy__label {
  color: var(--muted); font-weight: 600; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.copy__code {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800; letter-spacing: 0.06em;
  color: var(--ce-red);
  font-size: 16px;
}
.copy__icon { font-size: 14px; opacity: 0.7; }
.copy.copied { border-color: var(--ce-green); background: rgba(73, 120, 43, 0.10); }
.copy.copied .copy__code { color: var(--ce-green); }

/* ============== Café virtuel ☕ ============== */
.cup-emoji {
  display: inline-block;
  font-size: 18px;
  margin-left: 2px;
  animation: cupBob 3.6s ease-in-out infinite;
}
@keyframes cupBob {
  0%, 100% { transform: translateY(0)    rotate(-3deg); }
  50%      { transform: translateY(-4px) rotate(3deg); }
}

/* ============== Step responsiveness MOBILE ============== */
@media (max-width: 720px) {
  /* Plus de barre verticale, structure verticale propre */
  .journey { gap: 36px; }
  .journey::before { display: none; }

  /* Numéro centré AU-DESSUS de la carte */
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .step__num {
    width: 50px; height: 50px;
    font-size: 18px;
    margin-bottom: -25px;   /* chevauche le haut de la carte */
    z-index: 2;
    background: var(--surface);
  }
  .step__num::after { inset: -5px; }

  .step__card {
    width: 100%;
    padding: 36px 20px 22px;   /* + de padding-top pour la pastille numéro */
  }

  /* HEAD en colonne pour éviter overlap titre/tags */
  .step__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
  }
  .step__head-main {
    width: 100%;
    align-items: flex-start;
  }
  .step__title {
    font-size: 18px !important;
    line-height: 1.25;
  }
  .step__icon { width: 40px; height: 40px; font-size: 20px; flex-shrink: 0; }
  .step__tags { width: 100%; }

  /* CENTRER tous les CTA / boutons sur mobile pour un rendu plus harmonieux */
  .step__cta {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .step__cta .btn,
  .step__cta .copy {
    margin: 0 auto;
  }
  /* Pastilles "logo brand" RESTENT À GAUCHE (pas de centrage) */
  .step__brand { align-self: flex-start; }
  /* Boutons des duo cards restent alignés à gauche aussi pour cohérence avec brand */
  .duo__card { align-items: flex-start; text-align: left; }
  .duo__card .btn { align-self: center; }   /* mais le bouton CTA reste centré */
  .duo__brand { align-self: flex-start; }
  /* Centre h3 + p sur mobile pour cohérence */
  .step__card { text-align: center; }
  /* Mais laisse les listes / grilles alignées à gauche (lisibilité) */
  .step__card .bullets,
  .step__card .fares,
  .step__card .trio,
  .step__card .chapka-trio,
  .step__card .duo { text-align: left; }
  /* Le texte muted (Air Transat) centré aussi */
  .step__card .muted { text-align: center; }
}

/* ============================================================
   CONTACTS PRIVILÉGIÉS — cartes avec photos rondes
   ============================================================ */
.contacts {
  margin: 80px auto 40px;
}
.contacts__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}
.contacts__head .section-lead {
  margin-top: 14px;
}

/* Photo équipe — Tournée 2025 (compact, focus sur les visages) */
.team-photo {
  margin: 0 auto 36px;
  max-width: 720px;            /* plus petit qu'avant (920) */
  position: relative;
}
.team-photo img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--bg-warm);
  /* Crop : on ne garde que la partie centrale (visages + haut du décor),
     on coupe pas mal de hauteur en bas */
  aspect-ratio: 16 / 7;
  height: auto;
  object-fit: cover;
  object-position: center 32%;  /* léger ajustement entre 30% et 38% */
}
.team-photo figcaption {
  margin: 12px auto 0;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--text-soft);
  max-width: 640px;
  line-height: 1.45;
}
@media (max-width: 600px) {
  .team-photo { margin-bottom: 28px; }
  .team-photo img { aspect-ratio: 16 / 9; }
  .team-photo figcaption { font-size: 12.5px; padding: 0 12px; }
}
.contacts__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 14px;
  background: transparent;        /* pas d'apparence "clickable" */
  border: 0;
  border-radius: var(--radius-lg);
  text-align: center;
}
/* Animation "float" continue — chaque carte décalée pour effet vague */
.contact-card { animation: contactFloat 6s ease-in-out infinite; }
.contact-card:nth-child(1) { animation-delay: 0s; }
.contact-card:nth-child(2) { animation-delay: -1.2s; }
.contact-card:nth-child(3) { animation-delay: -2.4s; }
.contact-card:nth-child(4) { animation-delay: -3.6s; }
.contact-card:nth-child(5) { animation-delay: -4.8s; }
@keyframes contactFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.contact-card__photo {
  position: relative;
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-warm);
  border: 3px solid var(--surface);
  box-shadow:
    0 0 0 2px rgba(181, 59, 27, 0.30),
    0 12px 26px -6px rgba(55, 52, 51, 0.18);
  transition: box-shadow 0.3s ease;
}
.contact-card:hover .contact-card__photo {
  /* Hover plus subtil : juste un peu plus de glow rouge, pas de scale */
  box-shadow:
    0 0 0 3px var(--ce-red),
    0 16px 32px -6px rgba(181, 59, 27, 0.35);
}
.contact-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (prefers-reduced-motion: reduce) {
  .contact-card { animation: none; }
}
.contact-card__name {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 4px 0 0;
  color: var(--text);
  line-height: 1;
}
.contact-card__role {
  font-size: 13px;
  font-weight: 700;
  color: var(--ce-red);
  margin: 0;
  letter-spacing: 0.01em;
}

@media (max-width: 920px) {
  .contacts__grid { grid-template-columns: repeat(3, 1fr); }
  .contact-card__photo { width: 96px; height: 96px; }
}
@media (max-width: 540px) {
  .contacts__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .contact-card__photo { width: 86px; height: 86px; }
  .contact-card__name { font-size: 17px; }
  .contact-card { padding: 16px 10px; }
}

/* ============================================================
   PARTNERS RIBBON — défilement horizontal infini
   ============================================================ */
.partners-ribbon {
  margin: 80px 0 0;
  padding: 56px 0 64px;
  background:
    linear-gradient(135deg, var(--ce-red) 0%, var(--ce-red-dark) 100%);
  color: var(--ce-cream);
  position: relative;
  overflow: hidden;
}
/* Glue ribbon to footer (no gap) */
.partners-ribbon + .site-footer { margin-top: 0; }
.partners-ribbon::before {
  /* Subtle paper texture */
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: 0.6;
}
.partners-ribbon__head {
  text-align: center;
  margin: 0 0 32px;
  padding: 0 24px;
  position: relative; z-index: 2;
}
.partners-ribbon__kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252, 245, 237, 0.75);
  margin: 0 0 10px;
}
.partners-ribbon__kicker::before,
.partners-ribbon__kicker::after {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: rgba(252, 245, 237, 0.5);
  vertical-align: middle;
  margin: 0 10px;
}
.partners-ribbon__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.1;
  color: var(--ce-cream);
}

.partners-ribbon__viewport {
  position: relative; z-index: 1;
  overflow: hidden;
  /* Fade des bords pour effet "il y en a plus" */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partners-ribbon__track {
  display: flex;
  width: max-content;
  animation: ribbonSlide 45s linear infinite;
  will-change: transform;
  transform: translateZ(0);     /* force GPU layer pour stabilité mobile */
  backface-visibility: hidden;
}
.partners-ribbon__viewport:hover .partners-ribbon__track {
  animation-play-state: paused;
}
.partners-ribbon__list {
  display: flex; align-items: center;
  list-style: none; margin: 0;
  padding: 0 30px;
  gap: 56px;
  flex-shrink: 0;
}
.partners-ribbon__list li {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.partners-ribbon__list li:hover {
  transform: translateY(-3px) scale(1.05);
}
.partners-ribbon__list img {
  height: 54px;                       /* base harmonisée (avant: 38) */
  width: auto; max-width: 170px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);    /* tous en silhouette blanche */
  mix-blend-mode: lighten;
  opacity: 0.95;
  transition: opacity 0.25s ease;
}
.partners-ribbon__list img:hover { opacity: 1; }
/* Overrides ciblés pour visuellement aligner la TAILLE du TEXTE des logos */
.partners-ribbon__list img[alt="Chapka"]        { height: 56px; }
.partners-ribbon__list img[alt="Desjardins"]    { height: 52px; max-width: 180px; }
.partners-ribbon__list img[alt="Banque Nationale"] { height: 60px; max-width: 200px; }
.partners-ribbon__list img[alt="Air Transat"]   { height: 60px; max-width: 200px; }
.partners-ribbon__list img[alt="Fizz"]          { height: 64px; max-width: 160px; }
.partners-ribbon__list img[alt="Wise"]          { height: 72px; max-width: 190px; }
.partners-ribbon__list img[alt="Astell &amp; Associés"],
.partners-ribbon__list img[alt^="Astell"]       { height: 52px; max-width: 200px; }
.partners-ribbon__list img[alt="Régulus"]       { height: 56px; max-width: 200px; }
.partners-ribbon__list img[alt="Aleanza"]       { height: 50px; max-width: 200px; }
.partners-ribbon__list img[alt="Direct"]        { height: 56px; max-width: 200px; }
.partners-ribbon__list img[alt="gorh"]          { height: 60px; max-width: 200px; }
.partners-ribbon__list img[alt^="Hypoth"]       { height: 50px; max-width: 220px; }
.partners-ribbon__list img[alt*="Canada Explorers" i] { height: 64px; max-width: 95px; }

@keyframes ribbonSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-ribbon__track { animation: none; }
}
@media (max-width: 720px) {
  .partners-ribbon { padding: 40px 0 44px; }
  .partners-ribbon__track {
    animation-duration: 22s;          /* défile beaucoup plus vite sur mobile */
  }
  .partners-ribbon__list { gap: 36px; padding: 0 20px; }
  .partners-ribbon__list img { height: 36px; max-width: 110px; }
  /* Override des grands logos pour mobile */
  .partners-ribbon__list img[alt="Wise"]        { height: 52px; max-width: 140px; }
  .partners-ribbon__list img[alt="Fizz"]        { height: 46px; max-width: 130px; }
  .partners-ribbon__list img[alt="Air Transat"] { height: 44px; max-width: 140px; }
  .partners-ribbon__list img[alt*="Canada Explorers" i] { height: 50px; max-width: 70px; }
  /* Réduit la zone de fade aux bords pour mieux voir les logos */
  .partners-ribbon__viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  }
}

/* ============================================================
   FOOTER (style Webflow Canada Explorers)
   ============================================================ */
.site-footer {
  background: var(--ce-charcoal);
  color: var(--ce-cream);
  padding: 64px 24px 32px;
  margin-top: 0;            /* glué au ribbon au-dessus */
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  /* Subtle paper texture */
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: 0.5;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}
.site-footer__brand img {
  height: 100px; width: auto;
  opacity: 1;
  /* Logo noir inversé en blanc/cream pour ressortir parfaitement sur fond charcoal */
  filter: brightness(0) invert(1) sepia(0.10) hue-rotate(-10deg);
}
.site-footer__col h4 {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 14px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: var(--ce-red);
  border: 1.5px dashed var(--ce-red);
  border-radius: 6px;
  background: transparent;
}
.site-footer__col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.site-footer__col a {
  color: var(--ce-cream);
  font-size: 15px;
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.9;
}
.site-footer__col a:hover {
  color: var(--ce-red-light);
  opacity: 1;
}
.site-footer__socials {
  display: flex !important;
  flex-direction: row !important;     /* override le .site-footer__col ul (column) */
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 4px;
  list-style: none; padding: 0;
}
.site-footer__socials a {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(252, 245, 237, 0.08);
  border: 1px solid rgba(252, 245, 237, 0.15);
  transition: background 0.2s ease, transform 0.2s ease;
  opacity: 1;
}
.site-footer__socials a:hover {
  background: var(--ce-red);
  transform: translateY(-2px);
}
.site-footer__socials svg {
  width: 14px; height: 14px;
  stroke: var(--ce-cream);
  fill: none;
  stroke-width: 1.8;
  transition: stroke 0.2s ease;
}
.site-footer__bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(252, 245, 237, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(252, 245, 237, 0.55);
}
.site-footer__bottom a { color: inherit; transition: color 0.2s; }
.site-footer__bottom a:hover { color: var(--ce-cream); }

@media (max-width: 980px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .site-footer { padding: 48px 22px 24px; }
  .site-footer__top { grid-template-columns: 1fr; }
}

/* ============================================================
   CAFÉ VIRTUEL — callout inline (au cœur de la page)
   ============================================================ */
.cafe-callout {
  margin: 60px auto 20px;
  max-width: 920px;
}
.cafe-callout__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #fff 0%, var(--bg-warm) 100%);
  border: 1.5px dashed rgba(181, 59, 27, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.cafe-callout__inner:hover {
  border-style: solid;
  border-color: var(--ce-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.cafe-callout__avatar {
  flex-shrink: 0;
  font-size: 36px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ce-red);
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(181, 59, 27, 0.40);
  animation: cupBob 3.6s ease-in-out infinite;
}
.cafe-callout__text {
  flex: 1; min-width: 0;
}
.cafe-callout__line {
  margin: 0 0 4px;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  line-height: 1.3;
  color: var(--text);
}
.cafe-callout__sub {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.4;
}
.cafe-callout__cta {
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .cafe-callout__inner { flex-direction: column; text-align: center; padding: 22px; }
  .cafe-callout__cta { width: 100%; justify-content: center; }
}

/* ============================================================
   POP-UP CAFÉ VIRTUEL (discret, bas-droite)
   ============================================================ */
.cafe-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  width: 300px;                   /* plus discret (était 340) */
  max-width: calc(100vw - 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px -14px rgba(55, 52, 51, 0.25), 0 6px 16px -6px rgba(0,0,0,0.08);
  padding: 16px 16px 16px;        /* padding réduit */
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(.2,.7,.4,1), transform 0.45s cubic-bezier(.2,.7,.4,1);
}
.cafe-popup.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.cafe-popup__close {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 10;                    /* devant la photo */
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--ce-red);      /* rouge Canada Explorers, bien visible */
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,0.30);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.cafe-popup__close:hover {
  background: var(--ce-red-dark);
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 6px 14px -2px rgba(181, 59, 27, 0.40);
}
.cafe-popup__close svg { width: 12px; height: 12px; }
.cafe-popup__visual {
  position: relative;
  width: 100%;
  height: 110px;                  /* un poil plus court */
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-warm);
}
.cafe-popup__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;    /* on remonte : on voit le titre CAFÉ VIRTUEL + glaçons + haut du gobelet */
}
.cafe-popup__body {
  display: flex; flex-direction: column; gap: 8px;
  padding: 0 4px;
}
.cafe-popup__hello {
  margin: 0;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ce-red);
}
.cafe-popup__title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.22;
  color: var(--text);
}
.cafe-popup__lead {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}
.cafe-popup__lead strong { color: var(--text); }
.cafe-popup .btn { align-self: flex-start; margin-top: 4px; }
.cafe-popup__small {
  margin: 6px 0 0;
  font-style: italic;
  font-size: 12.5px;
  color: var(--muted);
  font-family: 'Fraunces', serif;
}

@media (max-width: 480px) {
  .cafe-popup { bottom: 12px; right: 12px; width: calc(100vw - 24px); padding: 18px; }
  .cafe-popup__visual { height: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  .cafe-popup { transition: opacity 0.2s; transform: none; }
  .cafe-popup.is-visible { transform: none; }
}

/* ============================================================
   FAQ — Questions fréquentes (SEO boost)
   ============================================================ */
.faq {
  margin: 80px auto 60px;
  max-width: 920px;
}
.faq__head {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 700px;
}
.faq__list {
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq__item:hover { border-color: rgba(181, 59, 27, 0.30); }
.faq__item[open] {
  border-color: var(--ce-red);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ce-red);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__item summary:hover { color: var(--ce-red); }
.faq__item > div {
  padding: 0 22px 22px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 15px;
}
.faq__item > div p { margin: 0; }
.faq__item code {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--bg-warm);
  padding: 2px 8px; border-radius: 6px;
  font-size: 13px;
  color: var(--ce-red);
  font-weight: 700;
}
.faq__item a { color: var(--ce-red); text-decoration: underline; font-weight: 600; }
@media (max-width: 600px) {
  .faq__item summary { font-size: 16px; padding: 16px 18px; }
  .faq__item > div { font-size: 14.5px; padding: 0 18px 18px; }
}

/* ============================================================
   MODAL "Je veux m'expatrier" — 3 profils
   ============================================================ */
.expat-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.expat-modal.is-open { display: flex; }
.expat-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(55, 52, 51, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.expat-modal__panel {
  position: relative;
  background: var(--ce-cream);
  border-radius: var(--radius-xl);
  padding: 48px clamp(24px, 4vw, 56px);
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.35s cubic-bezier(.2,.7,.4,1);
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.expat-modal__close {
  position: sticky;             /* reste accessible quand on scroll */
  top: 8px;
  margin-left: auto;
  width: 44px; height: 44px;
  background: var(--ce-red);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.30);
  transition: background 0.2s, transform 0.2s;
  z-index: 5;
}
.expat-modal__close:hover {
  background: var(--ce-red-dark);
  transform: rotate(90deg) scale(1.05);
}
.expat-modal__close svg { width: 18px; height: 18px; }

/* Bouton "Retour aux bons plans" en bas de la modale */
.expat-modal__back {
  display: block;
  margin: 28px auto 0;
  padding: 14px 28px;
  background: transparent;
  border: 1.5px dashed var(--ce-red);
  border-radius: 999px;
  color: var(--ce-red);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-style 0.2s;
}
.expat-modal__back:hover {
  background: var(--ce-red);
  color: #fff;
  border-style: solid;
}
.expat-modal__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 800;
  text-align: center;
  color: var(--text);
  margin: 0 0 36px;
  letter-spacing: -0.02em;
}
.expat-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.profile-card {
  display: flex; flex-direction: column;
  gap: 14px;
  padding: 32px 22px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.profile-card__title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}
.profile-card__desc {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.45;
  min-height: 56px;
}
.profile-card__visual {
  display: grid;
  place-items: center;
  width: 110px; height: 110px;
  margin: 6px auto;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.profile-card__visual img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.profile-card:hover .profile-card__visual { transform: scale(1.05); }
.profile-card--solo   .profile-card__visual { background: rgba(181, 59, 27, 0.10); }
.profile-card--couple .profile-card__visual { background: rgba(73, 120, 43, 0.12); }
.profile-card--family .profile-card__visual { background: rgba(48, 97, 138, 0.12); }

/* Decor illustration en filigrane derrière le titre de la modale */
.expat-modal__decor {
  position: absolute;
  top: 8px; left: 8px;
  width: 220px; height: 220px;
  opacity: 0.10;
  pointer-events: none;
}
.expat-modal__decor img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 800px) {
  .expat-modal__decor { display: none; }
}
.profile-card__cta {
  margin-top: auto;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.18s ease;
}
.profile-card:hover .profile-card__cta { transform: translateY(-1px); }

.profile-card--solo   { border-color: rgba(181, 59, 27, 0.25); }
.profile-card--solo:hover   { border-color: var(--ce-red); }
.profile-card--solo   .profile-card__title { color: var(--ce-red); }
.profile-card--solo   .profile-card__cta   { background: var(--ce-red); }

.profile-card--couple { border-color: rgba(73, 120, 43, 0.30); }
.profile-card--couple:hover { border-color: var(--ce-green); }
.profile-card--couple .profile-card__title { color: var(--ce-green); }
.profile-card--couple .profile-card__cta   { background: var(--ce-green); }

.profile-card--family { border-color: rgba(48, 97, 138, 0.30); }
.profile-card--family:hover { border-color: var(--ce-blue); }
.profile-card--family .profile-card__title { color: var(--ce-blue); }
.profile-card--family .profile-card__cta   { background: var(--ce-blue); }

@media (max-width: 800px) {
  .expat-modal__grid { grid-template-columns: 1fr; gap: 14px; }
  .expat-modal__panel { padding: 36px 22px; }
  .profile-card { padding: 24px 18px; }
  .profile-card__desc { min-height: auto; }
}

/* ============================================================
   Toast
   ============================================================ */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 30px);
  background: var(--ce-charcoal);
  color: var(--ce-cream);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  box-shadow: var(--shadow-lg);
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .step { opacity: 1; transform: none; }
}
