/* =========================================================
   ABIVI - Aide au Bien Vivre
   Feuille de style v2, plus stricte, plus pro
   ========================================================= */

:root {
  /* ROSE ABIVI */
  --pink:        #d6196e;
  --pink-dark:   #ad0f54;
  --pink-soft:   #fde7f1;

  /* ACCENTS (parcimonie) */
  --teal:        #2a7f62;
  --orange:      #e07a1f;
  --navy:        #102a43;

  /* NEUTRES */
  --ink-900: #0f1418;
  --ink-800: #1d242b;
  --ink-700: #303a44;
  --ink-600: #485661;
  --ink-500: #6b7783;
  --ink-400: #97a2ad;
  --ink-300: #c5cdd4;
  --ink-200: #e3e7eb;
  --ink-100: #eef1f4;
  --ink-50:  #f6f8fa;

  --bg:        #ffffff;
  --bg-soft:   #f6f8fa;
  --bg-grey:   #1d242b;

  --shadow-sm: 0 1px 2px rgba(15, 20, 24, .05);
  --shadow-md: 0 6px 18px rgba(15, 20, 24, .08);
  --shadow-lg: 0 18px 40px rgba(15, 20, 24, .14);

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --max:  1320px;
  --max-wide: 1480px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--pink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--pink-dark); }

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  color: var(--ink-900);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { margin: 0 0 1em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* TOPBAR */
.topbar {
  background: var(--bg-grey);
  color: #c8d0d8;
  font-size: .85rem;
  padding: 9px 0;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--pink-soft); }
.topbar .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar .meta { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar .meta span,
.topbar .meta a { display: inline-flex; align-items: center; gap: 6px; }
.socials { display: flex; align-items: center; gap: 10px; }
.socials a {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: all .15s ease;
}
.socials a:hover { background: var(--pink); }
.socials svg { width: 14px; height: 14px; fill: #fff; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--ink-100);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { height: 58px; width: auto; }
.brand .anniv {
  height: 108px;
  width: auto;
  margin: -8px -4px -38px -4px;
  position: relative;
  z-index: 2;
}
.brand .anniv-sep { height: 44px; width: 1px; background: var(--ink-200); }
@media (max-width: 980px) {
  .brand .anniv { height: 84px; margin: -5px -4px -28px -4px; }
}
@media (max-width: 640px) {
  .brand .anniv { height: 64px; margin: 0; }
  .brand .anniv-sep { height: 32px; }
}

/* Livret d'accueil card */
.livret-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 36px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.livret-card .thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-200);
}
.livret-card .thumb img { display: block; width: 100%; height: auto; }
.livret-card .thumb::after {
  content: 'PDF';
  position: absolute;
  top: 10px; right: 10px;
  background: var(--pink);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.livret-card .body h3 { margin: 0 0 10px; font-size: 1.5rem; }
.livret-card .body .lab {
  display: inline-block;
  color: var(--pink); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  font-size: .76rem; margin-bottom: 14px;
}
.livret-card .body ul { padding-left: 22px; }
.livret-card .body ul li { margin-bottom: 4px; }
@media (max-width: 720px) {
  .livret-card { grid-template-columns: 1fr; padding: 24px; }
  .livret-card .thumb { max-width: 240px; margin: 0 auto; }
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink-800);
  font-weight: 600;
  font-size: .92rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all .15s ease;
  position: relative;
}
.nav a:hover { color: var(--pink); }
.nav a.active { color: var(--pink); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--pink);
}
.nav .has-sub { position: relative; }
.nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 320px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  display: none;
}
.nav .has-sub:hover .submenu,
.nav .has-sub:focus-within .submenu { display: block; }
.nav .submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
}
.nav .submenu a::after { display: none; }
.nav .submenu a:hover { background: var(--ink-50); color: var(--pink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .92rem;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  border: 1.5px solid var(--pink);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .01em;
}
.btn::after { display: none; }
.btn:hover { background: var(--pink-dark); border-color: var(--pink-dark); color: #fff; }
.btn.ghost {
  background: transparent;
  color: var(--pink) !important;
  border-color: var(--pink);
}
.btn.ghost:hover { background: var(--pink); color: #fff !important; }
.btn.dark { background: var(--ink-900); border-color: var(--ink-900); }
.btn.dark:hover { background: var(--ink-800); border-color: var(--ink-800); }

.burger {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  color: var(--ink-900);
  cursor: pointer;
  line-height: 1;
}

/* HERO SLIDESHOW */
.hero {
  position: relative;
  height: clamp(520px, 70vh, 660px);
  overflow: hidden;
  background: var(--ink-900);
}
.hero .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s ease;
}
.hero .slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,20,24,.85) 0%, rgba(15,20,24,.5) 50%, rgba(15,20,24,.2) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero .content {
  max-width: 640px;
  color: #fff;
}
.hero .eyebrow {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 6px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero h1 strong { color: var(--pink); font-weight: 800; }
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero .cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn.ghost { color: #fff !important; border-color: #fff; }
.hero .btn.ghost:hover { background: #fff; color: var(--ink-900) !important; }
.hero .dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero .dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,.4);
  border: 0;
  cursor: pointer;
  transition: all .2s ease;
  padding: 0;
}
.hero .dot.active { background: var(--pink); width: 44px; }
.hero .badge {
  position: absolute;
  bottom: 26px;
  right: 28px;
  z-index: 3;
  background: rgba(255,255,255,.96);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-900);
  box-shadow: var(--shadow-md);
}
.hero .badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  position: relative;
}
.hero .badge .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .3;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.6); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* SECTIONS */
section { padding: clamp(56px, 7vw, 88px) 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--ink-900); color: #c8d0d8; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .76rem;
  margin-bottom: 14px;
}
.section-head h2 { margin: 0; font-weight: 700; }
.section-head p { color: var(--ink-500); font-size: 1.05rem; margin-top: 14px; }

/* METRICS */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.metric {
  padding: 26px 22px;
  text-align: left;
  border-right: 1px solid var(--ink-200);
}
.metric:last-child { border-right: 0; }
.metric .num {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.metric .num.is-pink { color: var(--pink); }
.metric .num.is-teal { color: var(--teal); }
.metric .num.is-orange { color: var(--orange); }
.metric .num.is-navy { color: var(--navy); }
.metric .label { display: block; font-size: .85rem; color: var(--ink-500); margin-top: 8px; font-weight: 500; }

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink-300); }
.service-card .photo {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card .photo .picto {
  position: absolute;
  bottom: -22px;
  left: 22px;
  width: 56px; height: 56px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  padding: 10px;
  border: 1px solid var(--ink-200);
}
.service-card .photo .picto img { max-width: 100%; max-height: 100%; }
.service-card .body { padding: 36px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin: 0 0 10px; }
.service-card p { color: var(--ink-500); font-size: .94rem; }
.service-card ul { list-style: none; padding: 0; margin: 14px 0 0; }
.service-card ul li {
  padding-left: 22px;
  position: relative;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--ink-700);
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--pink);
}
.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 22px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--pink);
}
.service-card .more:hover { gap: 10px; }

/* ABOUT SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split .visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.split .visual img { width: 100%; height: auto; display: block; }
.split .visual .accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--pink);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.split .visual .accent strong { display: block; font-size: 1.6rem; line-height: 1; }
.split .visual .accent small { font-size: .8rem; opacity: .9; }
.split ul.bullets { list-style: none; padding: 0; }
.split ul.bullets li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
  color: var(--ink-700);
}
.split ul.bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 16px; height: 2px;
  background: var(--pink);
}
.split ul.bullets li strong { color: var(--ink-900); }

/* VALUES */
.values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.value {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1px solid var(--ink-200);
}
.value .num {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  color: var(--pink);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.value h4 { margin: 0 0 6px; color: var(--ink-900); font-size: 1.05rem; }
.value p { font-size: .88rem; color: var(--ink-500); margin: 0; }

/* PARTNERS */
.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.partner {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--ink-200);
  transition: all .2s ease;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.partner img { max-height: 140px; max-width: 100%; width: auto; filter: grayscale(20%); transition: filter .2s ease; }
.partner:hover img { filter: grayscale(0); }

/* POSTS */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.post {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
}
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post .cover {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.post .cover .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.96);
  color: var(--ink-900);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}
.post .cover .tag.is-teal { background: var(--teal); color: #fff; }
.post .cover .tag.is-orange { background: var(--orange); color: #fff; }
.post .cover .tag.is-navy { background: var(--navy); color: #fff; }
.post .cover .tag.is-pink { background: var(--pink); color: #fff; }
.post .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post .meta { font-size: .8rem; color: var(--ink-500); margin-bottom: 8px; letter-spacing: .04em; }
.post h3 { font-size: 1.1rem; margin-bottom: 10px; }
.post p { color: var(--ink-500); font-size: .92rem; margin-bottom: 18px; }
.post .more { font-weight: 600; font-size: .88rem; margin-top: auto; color: var(--pink); }

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--ink-200);
}
.testimonial .stars { color: var(--orange); margin-bottom: 14px; letter-spacing: 2px; font-size: 1rem; }
.testimonial p { font-size: 1.02rem; color: var(--ink-700); }
.testimonial .author {
  display: flex; align-items: center; gap: 12px;
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--ink-100);
  font-weight: 600; color: var(--ink-900);
}
.testimonial .author small {
  display: block; color: var(--ink-500);
  font-weight: 400; font-size: .82rem; margin-top: 2px;
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: grid; place-items: center;
  font-weight: 700; font-size: .9rem;
}

/* CTA */
.cta-banner {
  background: var(--ink-900);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 44px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 36px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--pink);
  opacity: .12;
}
.cta-banner h2 { color: #fff; margin: 0; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 8px 0 0; }
.cta-banner .actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner .btn.ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.4); }
.cta-banner .btn.ghost:hover { background: #fff; color: var(--ink-900) !important; border-color: #fff; }

/* FORM */
.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--ink-700); margin-bottom: 6px;
}
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--ink-200);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: .96rem;
  font-family: inherit;
  color: var(--ink-900);
  transition: all .15s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(214, 25, 110, .15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form-ok {
  background: var(--pink-soft);
  border: 1px solid #f5b6d3;
  color: var(--pink-dark);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}

/* INFO BOX */
.info-box {
  background: var(--ink-900);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.info-box h3 { color: #fff; margin: 0 0 24px; font-size: 1.2rem; }
.info-box .row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.info-box .row .ico {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--pink);
  display: grid; place-items: center; flex-shrink: 0;
}
.info-box .row .ico svg { width: 18px; height: 18px; fill: #fff; }
.info-box .row .lab {
  font-size: .76rem; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.6);
  font-weight: 600; margin-bottom: 4px;
}
.info-box .row .val { color: #fff; font-weight: 500; line-height: 1.4; }
.info-box .row .val a { color: #fff; }
.info-box .row .val a:hover { color: var(--pink-soft); }

/* PAGE HEADER */
.page-header {
  background: var(--ink-900);
  color: #fff;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header.with-photo {
  background-size: cover;
  background-position: center;
}
.page-header.with-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,20,24,.85) 0%, rgba(15,20,24,.55) 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow {
  color: var(--pink); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  font-size: .76rem; margin-bottom: 14px; display: inline-block;
}
.page-header h1 { color: #fff; margin: 0 0 14px; }
.page-header p { color: rgba(255,255,255,.85); max-width: 640px; font-size: 1.05rem; margin: 0; }
.page-header .crumbs { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 22px; }
.page-header .crumbs a { color: #fff; }
.page-header .crumbs a:hover { color: var(--pink-soft); }

/* PROSE */
.prose { max-width: 780px; margin: 0 auto; font-size: 1.02rem; }
.prose h2 { margin-top: 1.6em; font-size: 1.7rem; }
.prose h3 { margin-top: 1.4em; color: var(--ink-900); font-size: 1.15rem; }
.prose ul, .prose ol { padding-left: 22px; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--pink);
  padding: 6px 0 6px 22px;
  margin: 24px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-900);
}
.prose .callout {
  background: var(--pink-soft);
  border: 1px solid #f5b6d3;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 28px 0;
}
.prose .callout strong { color: var(--pink-dark); }
.prose .callout.is-teal { background: #e6f4ef; border-color: #b8d9cc; }
.prose .callout.is-teal strong { color: var(--teal); }
.prose .callout.is-orange { background: #fdf1e0; border-color: #f4d4a3; }
.prose .callout.is-orange strong { color: var(--orange); }

.img-feature {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0 auto 32px;
  display: block;
}

/* FOOTER */
.site-footer {
  background: var(--bg-grey);
  color: #c8d0d8;
  padding: 64px 0 22px;
  font-size: .92rem;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer h4 {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 700;
}
.site-footer a { color: #c8d0d8; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer .brand img { height: 56px; margin-bottom: 18px; }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.site-footer .socials { margin-top: 18px; }
.site-footer .agency {
  color: #fff;
  font-weight: 600;
  transition: color .15s ease;
}
.site-footer .agency:hover { color: var(--pink);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .partners { grid-template-columns: repeat(4, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--ink-200); }
  .values { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .services, .posts, .testimonials { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > :first-child { order: 0; }
  .cta-banner { grid-template-columns: 1fr; padding: 36px 28px; }
  .cta-banner .actions { justify-content: flex-start; }
  .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero { height: 540px; }
  .hero .badge { display: none; }
}
@media (max-width: 640px) {
  .topbar .meta { font-size: .8rem; gap: 14px; }
  .topbar .meta span:nth-child(3) { display: none; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 14px; border-bottom: 1px solid var(--ink-100); gap: 0; }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px 14px; }
  .nav a::after { display: none; }
  .nav .has-sub .submenu { position: static; box-shadow: none; border: 0; padding: 0 0 0 14px; min-width: 0; }
  .nav .has-sub:hover .submenu { display: block; }
  .burger { display: inline-block; }
  .services, .posts, .testimonials { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--ink-200); }
  .metric:last-child { border-bottom: 0; }
  .form .row { grid-template-columns: 1fr; }
  .site-footer .grid { grid-template-columns: 1fr; }
}
