/* ========================================================
 * affaire.pro v2 · Espace Entreprise
 * Fun B2B · coworking & bureaux à Montpellier
 * Aubergine + coral + sun-yellow + cream + mint
 * ======================================================== */

:root {
  /* anchors */
  --plum:        #3D1F4A;    /* primary deep aubergine */
  --plum-d:      #2A1334;
  --plum-l:      #5A3373;
  --plum-12:     rgba(61,31,74,0.12);

  /* hot accent — coral / papaya */
  --coral:       #FF6B47;
  --coral-d:     #E04F2A;
  --coral-l:     #FF8C70;
  --coral-pa:    #FFE0D5;

  /* warm accent — sun */
  --sun:         #FFD93D;
  --sun-d:       #E5BE1A;
  --sun-l:       #FFE873;
  --sun-pa:      #FFF4B8;

  /* cool counter-accent — mint */
  --mint:        #9FE5C5;
  --mint-d:      #5FB99A;
  --mint-pa:     #DFF5E8;

  /* paper */
  --cream:       #FFF6E8;
  --cream-w:     #FFFCF5;
  --paper:       #FFFFFF;
  --ink:         #1B1320;
  --ink-soft:    #45384F;
  --rule:        #F0E2C5;
  --rule-d:      #D9C9A8;

  /* fonts */
  --display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --body:    'Plus Jakarta Sans', 'Inter', -apple-system, system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* shapes */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --maxw: 1240px;
  --gut: 24px;

  --shadow-sm: 0 4px 12px -4px rgba(61,31,74,0.12);
  --shadow:    0 8px 24px -8px rgba(61,31,74,0.18);
  --shadow-lg: 0 20px 50px -20px rgba(61,31,74,0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral-d); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; text-decoration-color: var(--sun); transition: color .15s; }
a:hover { color: var(--plum); text-decoration-color: var(--coral); }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--plum);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.1; margin-bottom: 16px; }
h3 { font-size: 1.35rem; line-height: 1.25; margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 1.05rem; line-height: 1.3; margin-bottom: 8px; font-weight: 600; }

/* coral squiggle under selected words */
.squiggle {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 60 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q 10 1 20 5 T 40 5 T 60 5' fill='none' stroke='%23FF6B47' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 8px;
  padding-bottom: 10px;
}
.hl-sun {
  background: linear-gradient(180deg, transparent 60%, var(--sun) 60%, var(--sun) 92%, transparent 92%);
  padding: 0 4px;
}
.hl-mint {
  background: linear-gradient(180deg, transparent 60%, var(--mint) 60%, var(--mint) 92%, transparent 92%);
  padding: 0 4px;
}
.hl-coral {
  color: var(--coral-d);
}

p { margin-bottom: 14px; }

.w { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* ---------- header ---------- */
.hdr {
  background: var(--cream);
  border-bottom: 2px dashed var(--rule-d);
  position: sticky; top: 0; z-index: 100;
}
.hdr-in {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gut);
  max-width: var(--maxw); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--plum);
  text-decoration: none !important;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--sun);
  position: relative;
  transform: rotate(-4deg);
  transition: transform 0.2s;
}
.brand-mark::after {
  content: '';
  position: absolute; inset: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.brand-mark span {
  position: relative; z-index: 1;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  font-style: italic;
  color: var(--plum);
  letter-spacing: -0.04em;
}
.brand:hover .brand-mark { transform: rotate(4deg); }
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--plum);
  letter-spacing: -0.02em;
}
.brand-tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-d);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  text-decoration: none;
  color: var(--plum);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 2px;
  position: relative;
  transition: color 0.15s;
}
.nav a:hover { color: var(--coral-d); }
.nav a[aria-current="page"] {
  color: var(--coral-d);
}
.nav a[aria-current="page"]::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: var(--sun);
  border-radius: 2px;
}
.nav-cta {
  background: var(--coral) !important;
  color: var(--paper) !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  border: 2px solid var(--plum);
  box-shadow: 3px 3px 0 var(--plum);
  transition: all 0.15s;
}
.nav-cta:hover {
  background: var(--coral-d) !important;
  color: var(--paper) !important;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--plum);
}
.nav-cta::after { display: none !important; }

/* ---------- hero ---------- */
.hero {
  padding: 56px 0 64px;
  background:
    radial-gradient(ellipse at top right, var(--sun-pa) 0%, transparent 45%),
    radial-gradient(ellipse at bottom left, var(--coral-pa) 0%, transparent 50%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 8%; right: -50px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.5;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 12%; left: -40px;
  width: 90px; height: 90px;
  border-radius: 28px;
  background: var(--sun);
  opacity: 0.55;
  transform: rotate(15deg);
  z-index: 0;
}
.hero .w { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 18px;
  padding: 7px 14px;
  background: var(--sun);
  border-radius: 999px;
  border: 2px solid var(--plum);
  font-weight: 700;
  transform: rotate(-1.5deg);
}
.kicker.coral { background: var(--coral-pa); }
.kicker.mint { background: var(--mint-pa); }
.kicker.plum { background: var(--plum); color: var(--sun-l); border-color: var(--sun); }
.kicker.cream { background: var(--cream-w); }

.hero-lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 24px 0 32px;
  max-width: 54ch;
}
.hero-lead strong { color: var(--plum); }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  font-family: var(--body);
  transition: all 0.15s;
  cursor: pointer;
  border: 2px solid var(--plum);
  position: relative;
}
.btn-primary {
  background: var(--coral);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--plum);
}
.btn-primary:hover {
  background: var(--coral-d);
  color: var(--paper);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--plum);
}
.btn-sun {
  background: var(--sun);
  color: var(--plum);
  box-shadow: 4px 4px 0 var(--plum);
}
.btn-sun:hover {
  background: var(--sun-l);
  color: var(--plum);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--plum);
}
.btn-mint {
  background: var(--mint);
  color: var(--plum);
  box-shadow: 4px 4px 0 var(--plum);
}
.btn-mint:hover {
  background: #B0EBD0;
  color: var(--plum);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--plum);
}
.btn-ghost {
  background: transparent;
  color: var(--plum);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--cream-w);
  color: var(--plum);
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: none;
}
.btn-ghost-light:hover { background: rgba(255,246,232,0.1); color: var(--paper); }
.btn-arrow::after { content: '→'; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

.hero-trust {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-trust span::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--plum);
  font-weight: 700;
  font-size: 13px;
}

/* hero photo with playful frame */
.hero-photo { position: relative; }
.hero-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--plum);
  transform: rotate(1.5deg);
  transition: transform 0.3s;
}
.hero-img:hover { transform: rotate(0); }
.hero-img img { width: 100%; height: auto; display: block; }
.hero-img-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--sun);
  color: var(--plum);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--plum);
}
.hero-sticker {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--coral);
  color: var(--paper);
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.1;
  text-align: center;
  border: 3px solid var(--plum);
  transform: rotate(8deg);
  box-shadow: var(--shadow);
  padding: 6px;
}
.hero-sticker strong { font-size: 1.4rem; display: block; }

/* ---------- sections ---------- */
.s { padding: 80px 0; position: relative; }
.s-cream { background: var(--cream); }
.s-cream-w { background: var(--cream-w); }
.s-paper { background: var(--paper); }
.s-plum {
  background: var(--plum);
  color: var(--cream);
}
.s-plum h2, .s-plum h3, .s-plum h4 { color: var(--cream); }
.s-plum a { color: var(--sun); text-decoration-color: var(--coral); }
.s-plum .kicker { background: var(--sun); color: var(--plum); }

.s-sun {
  background: var(--sun);
}
.s-mint {
  background: var(--mint);
}
.s-coral {
  background: var(--coral);
  color: var(--paper);
}
.s-coral h2, .s-coral h3 { color: var(--paper); }
.s-coral .kicker { background: var(--plum); color: var(--sun); border-color: var(--sun); }

/* zigzag dividers */
.zig-top, .zig-bot {
  position: absolute; left: 0; right: 0;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 18' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 18 L20 0 L40 18 Z' fill='%23FFF6E8'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 40px 18px;
}
.zig-top { top: -1px; transform: rotate(180deg); }
.zig-bot { bottom: -1px; }

.sec-head {
  margin-bottom: 48px;
  max-width: 72ch;
}
.sec-head .lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 60ch;
}
.s-plum .sec-head .lead, .s-coral .sec-head .lead { color: rgba(255,246,232,0.88); }

/* ---------- grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---------- card (sticker-style) ---------- */
.card {
  background: var(--paper);
  border: 2px solid var(--plum);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  box-shadow: 4px 4px 0 var(--plum);
}
.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--plum);
}
.card .kicker { margin-bottom: 14px; transform: rotate(-2deg); }
.card.tilt-l { transform: rotate(-1.2deg); }
.card.tilt-l:hover { transform: rotate(-1.2deg) translate(-2px, -2px); }
.card.tilt-r { transform: rotate(1.2deg); }
.card.tilt-r:hover { transform: rotate(1.2deg) translate(-2px, -2px); }

.card-sun { background: var(--sun); border-color: var(--plum); }
.card-mint { background: var(--mint); border-color: var(--plum); }
.card-coral { background: var(--coral); color: var(--paper); border-color: var(--plum); }
.card-coral h3, .card-coral h4 { color: var(--paper); }
.card-plum { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.card-plum h3, .card-plum h4 { color: var(--paper); }

/* ---------- stat band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--plum);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 3px solid var(--plum);
}
.stat {
  padding: 32px 24px;
  background: var(--plum);
  color: var(--cream);
  text-align: left;
}
.stat:nth-child(2) { background: var(--coral); color: var(--paper); }
.stat:nth-child(3) { background: var(--sun); color: var(--plum); }
.stat:nth-child(4) { background: var(--mint); color: var(--plum); }
.stat-num {
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 10px;
  opacity: 0.92;
  font-weight: 500;
}

/* ---------- pricing card ---------- */
.price-card {
  background: var(--paper);
  border: 2px solid var(--plum);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: 5px 5px 0 var(--plum);
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.price-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--plum);
}
.price-card .kicker { margin-bottom: 16px; }
.price-card h3 { font-size: 1.5rem; }
.price-tag {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--plum);
  margin: 18px 0 6px;
  letter-spacing: -0.03em;
}
.price-tag .currency { font-size: 1.6rem; vertical-align: top; }
.price-tag .per {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  font-family: var(--body);
}
.price-features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.price-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--plum);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card.featured {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
}
.price-card.featured h3 { color: var(--paper); }
.price-card.featured .price-tag { color: var(--sun); }
.price-card.featured .price-tag .per { color: var(--mint-pa); }
.price-card.featured .kicker { background: var(--coral); color: var(--paper); border-color: var(--sun); }
.price-card.featured .price-features li::before { background: var(--sun); }
.price-card.featured .price-features li { color: var(--cream); }
.price-card.featured::before {
  content: '⭐ POPULAIRE';
  position: absolute;
  top: -16px; right: 24px;
  background: var(--sun);
  color: var(--plum);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 2px solid var(--plum);
  transform: rotate(4deg);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 80ch; margin: 0 auto; }
.faq {
  background: var(--paper);
  border: 2px solid var(--plum);
  border-radius: var(--r);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--plum);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--plum);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sun);
  border: 2px solid var(--plum);
  font-size: 1.4rem;
  color: var(--plum);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq[open] summary::after { content: '−'; background: var(--coral); color: var(--paper); }
.faq[open] summary { border-bottom: 2px dashed var(--rule-d); }
.faq p, .faq ul, .faq ol { padding: 18px 24px 4px; margin: 0; }
.faq ul, .faq ol { padding-bottom: 20px; padding-left: 44px; }
.faq li { margin-bottom: 6px; }

/* ---------- pullquote ---------- */
.pullquote {
  background: var(--sun);
  border: 2px solid var(--plum);
  border-radius: var(--r-lg);
  padding: 36px 36px;
  margin: 32px 0;
  position: relative;
  box-shadow: 5px 5px 0 var(--plum);
  transform: rotate(-1deg);
}
.pullquote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-family: var(--display);
  font-size: 6rem;
  line-height: 1;
  color: var(--coral);
  font-weight: 700;
}
.pullquote p {
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.3;
  color: var(--plum);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.pullquote cite {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plum);
  opacity: 0.85;
  font-weight: 500;
}

/* ---------- crumb ---------- */
.crumb {
  background: var(--cream-w);
  border-bottom: 2px dashed var(--rule-d);
  padding: 14px 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.crumb a { text-decoration: none; color: var(--plum); }
.crumb a:hover { color: var(--coral-d); }
.crumb-sep {
  margin: 0 10px;
  color: var(--coral);
  font-weight: 700;
}

/* ---------- cta banner ---------- */
.cta-banner {
  background: var(--plum);
  color: var(--cream);
  padding: 56px 48px;
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--plum);
  box-shadow: 6px 6px 0 var(--coral);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px; left: -30px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.25;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -30px;
  width: 110px; height: 110px;
  border-radius: 30px;
  background: var(--sun);
  opacity: 0.25;
  transform: rotate(20deg);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--paper); }
.cta-banner h2 .hl-sun { color: var(--plum); }
.cta-banner p {
  color: var(--cream);
  max-width: 60ch;
  margin: 14px auto 28px;
  opacity: 0.92;
}
.cta-banner .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---------- prose ---------- */
.prose { max-width: 76ch; }
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 28px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; }
.prose ul li, .prose ol li { margin-bottom: 8px; }

/* ---------- footer ---------- */
.ft {
  background: var(--plum);
  color: var(--cream);
  padding: 56px 0 28px;
  border-top: 6px solid var(--coral);
}
.ft a { color: var(--cream); text-decoration: none; opacity: 0.88; }
.ft a:hover { color: var(--sun); opacity: 1; }
.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.ft .brand-mark { background: var(--coral); }
.ft .brand-mark::after { background: var(--sun); }
.ft .brand-mark span { color: var(--plum); }
.ft .brand-name { color: var(--paper); }
.ft .brand-tag { color: var(--sun); }
.ft h4 {
  color: var(--sun);
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 700;
}
.ft ul { list-style: none; padding: 0; }
.ft ul li { margin-bottom: 8px; }
.ft ul li a { font-size: 0.92rem; }
.ft-desc { font-size: 0.92rem; opacity: 0.85; margin-top: 14px; max-width: 38ch; }
.ft-bottom {
  border-top: 1px dashed rgba(255,246,232,0.22);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 0.82rem;
  opacity: 0.75;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- mobile menu ---------- */
.burger { display: none; }
.mobnav { display: none; }

@media (max-width: 900px) {
  .nav { display: none; }
  .burger {
    display: flex; align-items: center; justify-content: center;
    background: var(--sun); border: 2px solid var(--plum);
    border-radius: 12px;
    width: 44px; height: 44px;
    color: var(--plum); cursor: pointer;
    box-shadow: 3px 3px 0 var(--plum);
  }
  .burger svg { width: 24px; height: 24px; }
  .mobnav {
    display: block; position: fixed; inset: 0;
    background: var(--cream); z-index: 200;
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .mobnav.open { transform: translateX(0); }
  .mobnav a {
    display: block; padding: 16px 0;
    border-bottom: 2px dashed var(--rule-d);
    text-decoration: none; color: var(--plum);
    font-family: var(--display); font-weight: 700; font-size: 1.2rem;
  }
  .mobnav-close {
    position: absolute; top: 18px; right: 24px;
    background: var(--coral); border: 2px solid var(--plum);
    color: var(--paper);
    border-radius: 12px;
    width: 44px; height: 44px; cursor: pointer;
    box-shadow: 3px 3px 0 var(--plum);
  }
  .mobnav-close svg { width: 24px; height: 24px; }
  .mobnav-cta { margin-top: 24px; }

  .hero-grid, .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr; gap: 28px;
  }
  .stats { grid-template-columns: 1fr 1fr; border-radius: var(--r); }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .ft-grid > :first-child { grid-column: 1 / -1; }
  .s { padding: 56px 0; }
  .hero { padding: 40px 0 48px; }
  .cta-banner { padding: 40px 24px; }
  h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-sticker { width: 70px; height: 70px; font-size: 0.7rem; top: -10px; right: -8px; }
  .hero-sticker strong { font-size: 1.1rem; }
  .pullquote { padding: 28px 24px; }
  .pullquote p { font-size: 1.2rem; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .ft-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 24px; }
  .brand-text .brand-tag { display: none; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
