/* ===========================================================
   Moonwave — déclinaison "lumineuse" de la DA Wadlie
   Studio prospection B2B. Dominance claire (blanc / écrus tintés),
   nuit indigo réservée à la hero et au footer, accents beige /
   lavande / cyan portés par des formes abstraites sur les cartes.
   =========================================================== */

:root{
  --mw-bg:      #0D1220;
  --mw-panel:   #161D33;
  --mw-panel-2: #1C2440;
  --mw-line:    rgba(238,241,248,0.10);
  --mw-line-2:  rgba(238,241,248,0.16);
  --mw-cream:   #EEF1F8;
  --mw-muted:   rgba(238,241,248,0.62);
  --mw-muted-2: rgba(238,241,248,0.42);
  /* Same saturated palette as Wadlie — no diluted pastel versions */
  --mw-beige:   #FEB889;
  --mw-amber:   #FEB889;
  --mw-lavender:#FF5C61; /* repurposed slot: Wadlie coral */
  --mw-cyan:    #32C2C2; /* repurposed slot: Wadlie turquoise ("bleu") */
  --mw-yellow:  #FFBF00;
  --mw-ink:     #0D1220;
  --mw-ink-muted: rgba(13,18,32,0.62);
  --mw-ink-muted-2: rgba(13,18,32,0.6);

  /* Light surfaces — the dominant tone across the page */
  --mw-surface:      #FFFFFF;
  --mw-surface-tint: #FBF7F1;
  --mw-line-light:   rgba(13,18,32,0.09);
  --mw-line-light-2: rgba(13,18,32,0.14);

  /* Light tint versions — reserved for small elements only (icon-pill
     backgrounds, badges), never for large card/panel/CTA surfaces. */
  --mw-beige-tint:    rgba(254,184,137,.18);
  --mw-lavender-tint: rgba(255,92,97,.16);
  --mw-cyan-tint:     rgba(50,194,194,.16);
  --mw-yellow-tint:   rgba(255,191,0,.18);
  --mw-beige-ink:    var(--mw-ink);
  --mw-lavender-ink: var(--mw-ink);
  --mw-cyan-ink:     var(--mw-ink);
  --mw-yellow-ink:   var(--mw-ink);
}

.mw-body{ background: var(--mw-surface); color: var(--mw-ink); }

.mw-logo{ height: 52px; width: auto; display: block; color: var(--mw-cream); flex-shrink: 0; }
.mw-logo-lg{ height: 68px; }
.mw-logo-dark{ color: var(--mw-ink); }

/* ---------- Header ---------- */
#site-header.mw-header{ transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.mw-quote-mark{ position: absolute; top: 24px; left: 50%; transform: translateX(-50%); pointer-events: none; }
#site-header.mw-header.scrolled{
  background: rgba(13,18,32,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mw-line);
  box-shadow: 0 4px 30px -15px rgba(0,0,0,0.4);
}
#site-header.mw-header.menu-open{
  background: var(--mw-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.mw-nav-link{
  position: relative;
  color: var(--mw-cream);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color .2s var(--ease);
}
.mw-nav-link::after{
  content:'';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  border-radius: 999px;
  background: var(--mw-beige);
  transition: width .25s var(--ease);
}
.mw-nav-link:hover::after,
.mw-nav-link.active::after{ width: 100%; }
.mw-nav-link.active{ color: var(--mw-beige); }

.mw-menu-btn{ color: var(--mw-cream); border-color: var(--mw-line-2); }

#mobile-menu.mw-mobile-menu{ background: var(--mw-bg); }
.mw-mobile-nav-link{
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.3;
  color: var(--mw-cream);
  padding: 12px 0;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.mw-mobile-nav-link:hover,
.mw-mobile-nav-link:active{ color: var(--mw-beige); padding-left: 6px; }

/* ---------- Eyebrow / tags ---------- */
.mw-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--mw-line-2);
  background: rgba(238,241,248,0.04);
  color: var(--mw-cream);
}
.mw-eyebrow-light{
  border-color: var(--mw-line-light-2);
  background: rgba(13,18,32,0.03);
  color: var(--mw-ink);
}
.mw-eyebrow-on-accent{
  border-color: rgba(13,18,32,0.14);
  background: rgba(255,255,255,0.5);
  color: var(--mw-ink);
}
.mw-dot{ width: 7px; height: 7px; border-radius: 999px; background: var(--mw-beige); flex-shrink: 0; }
.mw-accent-text{ color: var(--mw-beige-ink); }
.mw-hero .mw-accent-text{ color: var(--mw-beige); }

/* ---------- Buttons — single consistent beige CTA ---------- */
.mw-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 999px;
  transition: all .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.mw-btn .btn-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  transition: transform .35s var(--bounce), background .25s var(--ease);
  flex-shrink: 0;
}
.mw-btn-primary,
.mw-btn-accent{
  background: var(--mw-beige);
  color: var(--mw-ink);
}
.mw-btn-primary .btn-icon,
.mw-btn-accent .btn-icon{ background: rgba(13,18,32,0.12); }
.mw-btn-primary:hover,
.mw-btn-accent:hover{ transform: translateY(-3px) rotate(-2deg); box-shadow: 0 14px 32px -12px rgba(242,201,148,0.55); }
.mw-btn-primary:hover .btn-icon,
.mw-btn-accent:hover .btn-icon{ transform: translateX(4px) rotate(8deg); }

.mw-btn-ghost{ background: transparent; border: 1.5px solid var(--mw-line-2); color: var(--mw-cream); }
.mw-btn-ghost:hover{ background: rgba(238,241,248,0.06); border-color: rgba(238,241,248,0.35); transform: translateY(-2px); }

.mw-btn.w-full.justify-between{ justify-content: space-between; padding-left: 1.75rem; padding-right: 1.75rem; }

/* ---------- Sections ---------- */
.mw-section-dark{ background: var(--mw-bg); color: var(--mw-cream); }
.mw-section-light{ background: var(--mw-surface); color: var(--mw-ink); }
.mw-section-tint{ background: var(--mw-surface-tint); color: var(--mw-ink); }
.mw-ink{ color: var(--mw-ink); }
.mw-ink-muted{ color: var(--mw-ink-muted); }
.mw-lead{ color: var(--mw-muted); }
.mw-lead-sm{ color: var(--mw-muted-2); font-size: 0.85rem; }

.mw-hero{ background: var(--mw-bg); color: var(--mw-cream); }

/* Dot-grid texture — subtle "signal grid" ambience (works on both light & dark) */
.mw-grid-texture{
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(238,241,248,0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(60% 70% at 30% 20%, #000 0%, transparent 75%);
  mask-image: radial-gradient(60% 70% at 30% 20%, #000 0%, transparent 75%);
  pointer-events: none;
}
.mw-grid-texture-light{
  background-image: radial-gradient(rgba(13,18,32,0.07) 1px, transparent 1px);
}

/* ---------- Radar / signal decoration ---------- */
.mw-radar{
  position: absolute;
  top: 50%;
  right: -6%;
  width: 520px;
  height: 520px;
  transform: translateY(-50%);
  pointer-events: none;
}
.mw-radar-sm{ width: 320px; height: 320px; right: 2%; opacity: 0.8; }
.mw-radar-ring{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(242,201,148,0.22);
}
.mw-radar-ring.r2{ inset: 60px; border-color: rgba(185,176,238,0.20); }
.mw-radar-ring.r3{ inset: 130px; border-color: rgba(111,216,224,0.20); }
.mw-radar-dot{
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--mw-beige);
  box-shadow: 0 0 0 0 rgba(242,201,148,0.55);
  animation: mw-ping 2.6s ease-out infinite;
}
@keyframes mw-ping{
  0%{ box-shadow: 0 0 0 0 rgba(242,201,148,0.55); }
  70%{ box-shadow: 0 0 0 60px rgba(242,201,148,0); }
  100%{ box-shadow: 0 0 0 0 rgba(242,201,148,0); }
}
@media (max-width: 1023px){ .mw-radar{ width: 340px; height: 340px; right: -20%; opacity: 0.7; } }
@media (prefers-reduced-motion: reduce){ .mw-radar-dot{ animation: none; } }

/* ---------- Received-bubble shape (mirror of Wadlie's sent-bubble .bubble) ----------
   Wadlie's cards cut their small corner at the BOTTOM (message "sent" outward).
   Moonwave cuts it at the TOP instead — a shape that reads as "received". */
.mw-bubble{ border-radius: 6px 32px 32px 32px; }
.mw-bubble-r{ border-radius: 32px 6px 32px 32px; }
.mw-bubble-lg{ border-radius: 8px 44px 44px 44px; }
.mw-bubble-lg-r{ border-radius: 44px 8px 44px 44px; }
@media (min-width: 1024px){
  .mw-bubble-lg{ border-radius: 10px 58px 58px 58px; }
  .mw-bubble-lg-r{ border-radius: 58px 10px 58px 58px; }
}

/* Abstract blob accents — small organic shapes bleeding off a card corner,
   the recurring "manifest abstract shape" motif requested for Moonwave cards. */
.mw-blob{ position: absolute; border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; pointer-events: none; }
.mw-blob-beige{ background: var(--mw-beige); }
.mw-blob-lavender{ background: var(--mw-lavender); }
.mw-blob-cyan{ background: var(--mw-cyan); }

/* ---------- Cards ---------- */
.mw-icon-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 4px 14px 14px 14px;
  margin-bottom: 20px;
}
.mw-icon-amber{ background: rgba(242,201,148,0.35); color: var(--mw-beige-ink); }
.mw-icon-lavender{ background: rgba(185,176,238,0.30); color: var(--mw-lavender-ink); }
.mw-icon-cyan{ background: rgba(111,216,224,0.30); color: var(--mw-cyan-ink); }

/* Light card used throughout (leviers, offres, guide, timeline nodes...) —
   reuses Wadlie's own .card hover physics via a scoped override. */
.mw-body .card{ background: var(--mw-surface); border-color: var(--mw-line-light); }
.mw-body .card:hover{ box-shadow: 0 28px 50px -30px rgba(13,18,32,0.22); border-color: var(--mw-line-light-2); }

.mw-card-light{
  position: relative;
  background: var(--mw-surface);
  border: 1.5px solid var(--mw-line-light);
  padding: 32px;
  overflow: hidden;
  transition: transform .35s var(--bounce), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.mw-card-light:hover{ transform: translateY(-6px) rotate(-0.6deg); box-shadow: 0 26px 48px -28px rgba(13,18,32,0.22); border-color: var(--mw-line-light-2); }
.mw-card-desc{ color: var(--mw-ink-muted); font-size: 0.92rem; line-height: 1.65; }

.mw-list{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mw-list li{
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--mw-ink-muted);
}
.mw-list li::before{
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--mw-beige-ink);
}

/* ---------- Offer cards ("Nos offres") ---------- */
.mw-offer-card{
  position: relative;
  background: var(--mw-surface);
  border: 1.5px solid var(--mw-line-light);
  padding: 40px 32px 32px;
  overflow: hidden;
  transition: transform .35s var(--bounce), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.mw-offer-card:hover{ transform: translateY(-6px) rotate(-0.5deg); box-shadow: 0 30px 55px -28px rgba(13,18,32,0.22); }
.mw-offer-card .mw-blob{ width: 100px; height: 100px; top: -18px; right: -15px; opacity: 0.55; }

/* ---------- Stat numbers — "chiffres" cards — outline only, no fill ---------- */
.mw-body .stat-card{
  background: transparent;
  border: 2px solid var(--mw-ink);
  color: var(--mw-ink);
}
.mw-body .stat-number{
  color: var(--mw-ink);
  -webkit-text-stroke: 1.5px var(--mw-ink);
  -webkit-text-fill-color: transparent;
}
.mw-body .stat-card p{ color: rgba(13,18,32,.75); }

/* ---------- "Le constat" — texte à gauche, panneaux couleur empilés à droite ---------- */
.mw-constat-grid{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
@media (max-width: 1023px){ .mw-constat-grid{ grid-template-columns: 1fr; gap: 40px; } }
.mw-constat-sticky{ position: sticky; top: 120px; }
@media (max-width: 1023px){ .mw-constat-sticky{ position: static; } }

.mw-panel-strip{
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 10px 6px;
}
.mw-panel-card{
  position: relative;
  background: var(--mw-surface);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px -26px rgba(13,18,32,.25);
}
.mw-panel-card:not(:first-child)::before{
  content: '';
  position: absolute;
  top: -40px;
  left: 34px;
  width: 0;
  height: 40px;
  border-left: 2px dashed var(--mw-line-light-2);
}
.mw-panel-num{
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}
.mw-panel-box{ border-radius: 6px 16px 16px 16px; padding: 16px 18px; }
.mw-panel-title{ font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: var(--mw-ink); margin-bottom: 6px; }
.mw-panel-desc{ font-size: 0.88rem; line-height: 1.55; color: rgba(13,18,32,.75); }
@media (max-width: 639px){
  .mw-panel-card{ padding: 20px; }
}

/* ---------- FAQ : titre à gauche, questions à droite ---------- */
.mw-faq-grid{ display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
@media (max-width: 1023px){ .mw-faq-grid{ grid-template-columns: 1fr; gap: 32px; } }
.mw-faq-sticky{ position: sticky; top: 120px; }
@media (max-width: 1023px){ .mw-faq-sticky{ position: static; } }

/* ---------- Méthode : texte à gauche (synchronisé), timeline à droite ---------- */
.mw-method-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 1023px){ .mw-method-grid{ grid-template-columns: 1fr; gap: 40px; } }
.mw-method-sticky{ position: sticky; top: 120px; }
@media (max-width: 1023px){ .mw-method-sticky{ position: static; } }
.mw-vmethod{ position: relative; }
.mw-vmethod-line{
  position: absolute;
  left: 23px; top: 24px; bottom: 24px;
  width: 2px;
  background: var(--mw-line-light-2);
}
.mw-vmethod-line-fill{
  position: absolute;
  left: 0; top: 0; width: 100%; height: 0%;
  background: linear-gradient(to bottom, var(--mw-beige), var(--mw-lavender), var(--mw-cyan), var(--mw-yellow));
}
.mw-vmethod-item{ position: relative; display: flex; align-items: flex-start; gap: 24px; padding: 6px 0; min-height: 150px; }
.mw-vmethod-item.c-beige{ --accent: var(--mw-beige); }
.mw-vmethod-item.c-coral{ --accent: var(--mw-lavender); }
.mw-vmethod-item.c-turquoise{ --accent: var(--mw-cyan); }
.mw-vmethod-item.c-yellow{ --accent: var(--mw-yellow); }
.mw-vmethod-dot{
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--mw-surface);
  border: 2px solid var(--accent, var(--mw-line-light-2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent, var(--mw-ink-muted-2));
  transition: background .4s var(--ease), border-color .4s var(--ease), color .25s var(--ease), transform .4s var(--bounce);
}
.mw-vmethod-item.is-active .mw-vmethod-dot{ background: var(--accent); border-color: var(--accent); color: var(--mw-ink); transform: scale(1.1); }
.mw-vmethod-content{ flex: 1; padding-top: 11px; }
.mw-vmethod-label{ display: block; font-weight: 700; color: var(--mw-ink-muted); transition: color .3s var(--ease); }
.mw-vmethod-item.is-active .mw-vmethod-label{ display: none; }
.mw-vmethod-card{
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  background: var(--mw-ink);
  border-radius: 6px 22px 22px 22px;
  border-top: 4px solid var(--accent, var(--mw-ink));
  transition: grid-template-rows .45s var(--ease), opacity .3s var(--ease), margin-top .45s var(--ease);
}
.mw-vmethod-card-inner{ overflow: hidden; }
.mw-vmethod-item.is-active .mw-vmethod-card{ grid-template-rows: 1fr; opacity: 1; margin-top: -11px; }
.mw-vmethod-card-title{ color: #fff; font-weight: 700; font-size: 1.05rem; padding: 18px 22px 6px; }
.mw-vmethod-card-desc{ color: rgba(255,255,255,.72); font-size: 0.9rem; line-height: 1.6; padding: 0 22px 18px; }
@media (max-width: 639px){
  .mw-vmethod-line{ left: 19px; }
  .mw-vmethod-dot{ width: 40px; height: 40px; }
}
@media (prefers-reduced-motion: reduce){
  .mw-vmethod-dot, .mw-vmethod-card{ transition: none !important; }
}

/* ---------- "Pourquoi Moonwave" — cartes dos & don'ts ---------- */
.mw-dd-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 8px; margin-bottom: 8px; align-items: stretch; }
@media (max-width: 767px){ .mw-dd-grid{ grid-template-columns: 1fr; gap: 40px; } }
.mw-dd-card{
  position: relative;
  background: var(--mw-surface);
  border-radius: 6px 24px 24px 24px;
  border-top: 4px solid var(--mw-line-light);
  box-shadow: 0 20px 44px -28px rgba(13,18,32,.22);
}
.mw-dd-card--neg{ border-top-color: var(--mw-lavender); }
.mw-dd-card--pos{ border-top-color: var(--mw-cyan); }
.mw-dd-body{ padding: 28px 28px 32px; }
.mw-dd-head{ display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.mw-dd-badge{
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mw-dd-badge--neg{ background: var(--mw-lavender); }
.mw-dd-badge--pos{ background: var(--mw-cyan); }
.mw-dd-title{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--mw-ink);
}
.mw-dd-list{ display: flex; flex-direction: column; gap: 18px; }
.mw-dd-list li{ display: flex; align-items: flex-start; gap: 12px; }
.mw-dd-dot{
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 1px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mw-dd-dot--neg{ background: var(--mw-lavender); }
.mw-dd-dot--pos{ background: var(--mw-cyan); }
.mw-dd-item-title{ font-weight: 700; font-size: 0.92rem; color: var(--mw-ink); margin-bottom: 2px; }
.mw-dd-item-desc{ font-size: 0.86rem; line-height: 1.5; color: var(--mw-ink-muted); }

/* ---------- Reviews ---------- */
.mw-review-card{
  position: relative;
  background: var(--mw-surface);
  border: 1.5px solid var(--mw-line-light);
  border-radius: 6px 28px 28px 28px;
  padding: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px -30px rgba(13,18,32,0.18);
}
.mw-review-avatar{
  width: 46px; height: 46px;
  border-radius: 4px 16px 16px 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- Guide (lead magnet) ---------- */
.mw-guide-card{
  background: var(--mw-surface);
  border: 1.5px solid var(--mw-line-light);
  border-radius: 6px 40px 40px 40px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.mw-guide-icon{
  width: 56px; height: 56px;
  border-radius: 4px 18px 18px 18px;
  background: var(--mw-cyan-tint);
  color: var(--mw-cyan-ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.mw-guide-form{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.mw-guide-form input[type="email"]{
  flex: 1;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--mw-line-light-2);
  background: var(--mw-surface);
  color: var(--mw-ink);
  font-size: 0.92rem;
}
.mw-guide-form input[type="email"]::placeholder{ color: var(--mw-ink-muted-2); }
.mw-guide-form input[type="email"]:focus{ outline: none; border-color: var(--mw-beige); }

/* ---------- CTA banner — colourful, more breathing room ---------- */
.mw-cta-banner{
  background: var(--mw-beige);
  color: var(--mw-ink);
  border-radius: 6px 48px 48px 48px;
  padding: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.mw-cta-banner h2{ margin-top: 18px; margin-bottom: 16px; }
.mw-cta-desc{ color: rgba(13,18,32,.72); margin-top: 4px; }
.mw-cta-banner .mw-btn-primary{ background: var(--mw-ink); color: #fff; }
.mw-cta-banner .mw-btn-primary .btn-icon{ background: rgba(255,255,255,.18); }
.mw-cta-banner .mw-btn-primary:hover{ box-shadow: 0 14px 32px -12px rgba(13,18,32,0.45); }
.mw-cta-banner .mw-eyebrow-on-accent{
  border-color: rgba(13,18,32,0.14);
  background: rgba(255,255,255,0.6);
  color: var(--mw-ink);
}
@media (max-width: 639px){
  .mw-cta-banner{ padding: 28px 22px; gap: 24px; border-radius: 6px 32px 32px 32px; }
  .mw-cta-banner > a.mw-btn{ width: 100%; justify-content: center; }
}

/* ---------- Extra colour accents (decorative) ---------- */
.mw-decor{ position: absolute; pointer-events: none; }
.mw-decor-lavender{ background: rgba(185,176,238,0.35); }
.mw-decor-cyan{ background: rgba(111,216,224,0.30); }
.mw-decor-beige{ background: rgba(242,201,148,0.35); }

/* ---------- Footer ---------- */
.mw-footer{ background: var(--mw-ink); color: var(--mw-cream); }
.mw-footer-border{ border-bottom: 1px solid var(--mw-line); }
.mw-footer-link{ color: var(--mw-muted); transition: color .2s var(--ease); }
.mw-footer-link:hover{ color: var(--mw-beige); }
