/* ============================================================
   FIELD DATA AFRICA — Main stylesheet
   Editorial / organic. Forest dominant, orange accent.
   ============================================================ */

/* ---------- RESET + BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* Global 80% scale — body zoom shrinks the entire rendered output (text,
   images, spacing) so the default browser zoom 100% matches what previously
   showed at browser zoom 80%. Supported in Chrome, Edge, Safari, Firefox 126+. */
body { zoom: 0.8; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  background: var(--color-bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(27, 58, 45, 0.025) 1px, transparent 0);
  background-size: 28px 28px;
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Anti-flash: hide body until i18n has applied the correct language */
html:not([data-i18n-ready]) body { opacity: 0; }
html[data-i18n-ready] body { opacity: 1; transition: opacity 180ms var(--ease); }

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--color-accent-2); color: var(--color-bg); }

/* ---------- LAYOUT PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--content-narrow); }

.section { padding-block: clamp(var(--sp-8), 10vw, var(--sp-10)); }
.section--tight { padding-block: clamp(var(--sp-7), 7vw, var(--sp-9)); }
.section--green {
  background: var(--color-accent-2);
  color: #f3eee2;
}
.section--green h2,
.section--green h3,
.section--green h4 { color: #f3eee2; }
.section--green .eyebrow { color: var(--color-accent); }
.section--green p { color: rgba(243, 238, 226, 0.78); }
.section--cream {
  background: var(--color-surface-2);
}

.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-fg);
}
h1 { font-size: var(--fs-4xl); font-variation-settings: "opsz" 144, "SOFT" 30; }
h2 { font-size: var(--fs-3xl); font-variation-settings: "opsz" 96; }
h3 { font-size: var(--fs-xl);  font-variation-settings: "opsz" 36; font-weight: 600; }
h4 { font-size: var(--fs-lg);  font-weight: 600; }

p { max-width: 64ch; }
p.lead { font-size: var(--fs-lg); color: var(--color-fg); max-width: 56ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ---------- HEADER + NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding-block: var(--sp-4);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0; /* tight wrap around the image */
}
.brand__logo {
  height: 56px;
  width: auto;
  display: block;
  /* Subtle hover lift */
  transition: opacity var(--dur-fast) var(--ease);
}
.brand:hover .brand__logo { opacity: 0.82; }

/* Footer is on dark forest green — invert the wordmark to cream/white */
.footer__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--sp-3);
}
.footer__brand .brand__logo {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

@media (max-width: 480px) {
  .brand__logo { height: 44px; }
  .footer__brand .brand__logo { height: 44px; }
}
.nav__links { display: flex; gap: var(--sp-5); flex-wrap: wrap; align-items: center; }
.nav__links a {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  font-weight: 500;
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active {
  color: var(--color-fg);
}
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--color-accent);
}

/* Services dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-sm);
  color: var(--color-muted);
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav__dropdown__trigger::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  margin-left: 2px;
  transition: transform var(--dur-fast) var(--ease);
}
.nav__dropdown:hover .nav__dropdown__trigger,
.nav__dropdown.is-active .nav__dropdown__trigger,
.nav__dropdown__trigger.is-active {
  color: var(--color-fg);
}
.nav__dropdown.is-active .nav__dropdown__trigger::after,
.nav__dropdown__trigger.is-active::after {
  background: transparent;
}
.nav__dropdown__trigger.is-active::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--color-accent);
}
.nav__dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  min-width: 280px;
  padding: var(--sp-3);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear var(--dur);
  z-index: 60;
}
.nav__dropdown:hover .nav__dropdown__menu,
.nav__dropdown:focus-within .nav__dropdown__menu,
.nav__dropdown.is-open .nav__dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav__dropdown__menu a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  color: var(--color-fg);
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav__dropdown__menu a:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent-2);
}
.nav__dropdown__menu a::after { display: none !important; }
.nav__dropdown__menu .menu-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__dropdown__menu .menu-icon svg { width: 18px; height: 18px; stroke-width: 1.8; }

@media (max-width: 1024px) {
  .nav__dropdown__menu {
    position: static;
    transform: none;
    opacity: 1; visibility: visible;
    box-shadow: none;
    border: 0;
    min-width: 0;
    padding-left: var(--sp-5);
    background: transparent;
    margin-top: var(--sp-3);
  }
  .nav__dropdown__trigger::after { display: none; }
}
.nav__actions { display: flex; align-items: center; gap: var(--sp-2); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.62em 1.2em;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.nav__cta:hover { background: #c93d0a; transform: translateY(-1px); }

.lang-toggle, .theme-toggle {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.lang-toggle:hover, .theme-toggle:hover {
  background: var(--color-fg);
  color: var(--color-bg);
  border-color: var(--color-fg);
}

.nav__burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav__burger span { width: 22px; height: 2px; background: var(--color-fg); display: block; transition: transform var(--dur) var(--ease); }

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links--open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--color-surface);
    padding: var(--sp-5) var(--gutter);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-2);
    gap: var(--sp-4);
  }
  .nav__links--open a { font-size: var(--fs-lg); color: var(--color-fg); }
}

.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--color-fg); color: var(--color-bg);
  padding: var(--sp-3) var(--sp-4);
  z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 0.9em 1.6em;
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--radius-full);
  transition: transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover { background: #c93d0a; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--color-fg);
  border-color: var(--color-fg);
}
.btn--ghost:hover { background: var(--color-fg); color: var(--color-bg); }
.btn--on-green {
  background: #fff;
  color: var(--color-accent-2);
}
.btn--on-green:hover { background: var(--color-accent); color: #fff; }
.btn--ghost-on-green {
  background: transparent;
  color: #f3eee2;
  border-color: rgba(243, 238, 226, 0.4);
}
.btn--ghost-on-green:hover { background: #f3eee2; color: var(--color-accent-2); border-color: #f3eee2; }

.btn .arrow { transition: transform var(--dur-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-block: clamp(var(--sp-8), 10vw, var(--sp-10));
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(236, 101, 52, 0.10) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(27, 58, 45, 0.12) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Hero with photo background (home page) */
.hero--photo {
  position: relative;
  isolation: isolate;
  padding-block: clamp(var(--sp-9), 14vw, calc(var(--sp-10) * 1.4));
  color: #f3eee2;
  background-color: var(--color-accent-2);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  /* background-image is set inline on the element */
}
/* Re-purpose ::before as the dark overlay above the photo */
.hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: rgba(15, 26, 20, 0.68);
  pointer-events: none;
  width: auto; height: auto;
  border-radius: 0;
  display: block;
}
.hero--photo::after { display: none; }
.hero--photo .container { position: relative; z-index: 2; }
.hero--photo .eyebrow { color: var(--color-accent); }
.hero--photo .hero__title { color: #f3eee2; }
.hero--photo .hero__title em { color: var(--color-accent); font-style: italic; }
.hero--photo .hero__subtitle { color: rgba(243, 238, 226, 0.88); }
.hero--photo .btn--primary { background: var(--color-accent); }
.hero--photo .btn--ghost {
  color: #f3eee2;
  border-color: rgba(243, 238, 226, 0.5);
}
.hero--photo .btn--ghost:hover {
  background: #f3eee2;
  color: var(--color-accent-2);
  border-color: #f3eee2;
}
.hero--photo .hero__photo { display: none; }

/* Subhero with photo banner */
.subhero--photo {
  position: relative;
  padding: 0;
  background: var(--color-accent-2);
}
.subhero--photo .subhero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-accent-2);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  /* background-image set inline */
}
.subhero--photo .subhero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 20, 0.35) 0%, rgba(15, 26, 20, 0.55) 100%);
  pointer-events: none;
}
/* Aïcha — slightly denser overlay on both banners */
.page-aicha .subhero--photo .subhero__bg::after {
  background: linear-gradient(180deg, rgba(15, 26, 20, 0.55) 0%, rgba(15, 26, 20, 0.72) 100%);
}
/* Caravane — +8 % opacity on hero banner */
.page-caravane .subhero--photo .subhero__bg::after {
  background: linear-gradient(180deg, rgba(15, 26, 20, 0.43) 0%, rgba(15, 26, 20, 0.63) 100%);
}
.page-mission .subhero--photo .subhero__bg::after {
  background: rgba(15, 26, 20, 0.68);
}
.page-mission .mission-marquee__overlay {
  background: rgba(15, 26, 20, 0.68);
}

/* ============================================================
   MISSION — Hero pull-quote (glassmorphic on photo)
   ============================================================ */
.hero-pull {
  background: rgba(15, 26, 20, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(243, 238, 226, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(var(--sp-5), 4vw, var(--sp-7));
  max-width: 56ch;
  margin-inline: auto;
}
.hero-pull p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 0.8rem + 2vw, 2.2rem);
  font-variation-settings: "opsz" 60, "SOFT" 30;
  line-height: var(--lh-snug);
  color: #f3eee2;
  max-width: none;
  text-align: center;
}
.hero-pull p strong { color: var(--color-accent); font-weight: 700; }

/* ============================================================
   MISSION — Marquee photo banner (full-bleed)
   ============================================================ */
.mission-marquee {
  position: relative;
  width: 100%;
  height: clamp(220px, 32vw, 380px);
  background-size: cover;
  background-position: center 60%;
  overflow: hidden;
}
.mission-marquee__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 26, 20, 0.35) 0%, rgba(15, 26, 20, 0.45) 100%);
  pointer-events: none;
}

/* ============================================================
   MISSION — Ambition big stat (1M infographic)
   ============================================================ */
.ambition-section {
  position: relative;
}
.ambition-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-7);
  background: linear-gradient(180deg, var(--color-accent-2) 0%, #163325 100%);
  color: #f3eee2;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  max-width: 100%;
}
.ambition-stat::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 101, 52, 0.30), transparent 70%);
  pointer-events: none;
}
.ambition-stat::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 184, 154, 0.18), transparent 70%);
  pointer-events: none;
}
.ambition-stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 2rem + 6vw, 6.5rem);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.05em;
  position: relative;
  z-index: 1;
}
.ambition-stat__plus {
  color: var(--color-accent);
  font-size: 0.62em;
  font-weight: 600;
}
.ambition-stat__label {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(243, 238, 226, 0.86);
  max-width: 30ch;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   À PROPOS — Company grid (text + 4 fact tiles)
   ============================================================ */
.company-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(var(--sp-6), 5vw, var(--sp-8));
  align-items: start;
}
@media (max-width: 900px) {
  .company-grid { grid-template-columns: 1fr; }
}
.company-grid__text .eyebrow { margin-bottom: var(--sp-3); }
.company-grid__text h2 { max-width: 22ch; }
.fact-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
.fact-tile {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.fact-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: color-mix(in srgb, var(--color-accent) 35%, var(--color-border));
}
.fact-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fact-tile__icon svg { width: 22px; height: 22px; }
.fact-tile__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0;
}
.fact-tile__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  line-height: 1.2;
  color: var(--color-fg);
  margin: 0;
}

/* ============================================================
   À PROPOS — Split photo block (text + image side-by-side)
   ============================================================ */
.split-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-6), 5vw, var(--sp-8));
  align-items: center;
}
@media (max-width: 900px) {
  .split-photo { grid-template-columns: 1fr; }
}
.split-photo__text .eyebrow { margin-bottom: var(--sp-3); }
.split-photo__text h2 { max-width: 22ch; }
.split-photo__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-2);
}
.split-photo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .split-photo__media { aspect-ratio: 16 / 10; order: -1; }
}

/* ============================================================
   À PROPOS — Advantage grid (text + stat aside)
   ============================================================ */
.advantage-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(var(--sp-6), 5vw, var(--sp-8));
  align-items: start;
  margin-top: var(--sp-7);
}
@media (max-width: 980px) {
  .advantage-grid { grid-template-columns: 1fr; }
}
.advantage-grid__stats {
  display: grid;
  gap: var(--sp-4);
  position: sticky;
  top: clamp(var(--sp-6), 10vw, var(--sp-8));
}
@media (max-width: 980px) {
  .advantage-grid__stats { position: static; grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .advantage-grid__stats { grid-template-columns: 1fr; }
}
.adv-stat {
  background: var(--color-accent-2);
  color: #f3eee2;
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  position: relative;
  overflow: hidden;
}
.adv-stat::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 101, 52, 0.22), transparent 70%);
  pointer-events: none;
}
.adv-stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 1.2rem + 2.4vw, 3rem);
  font-variation-settings: "opsz" 144, "SOFT" 20;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.18em;
}
.adv-stat__num small {
  font-family: var(--font-mono);
  font-size: 0.45em;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}
.adv-stat__label {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.35;
  color: rgba(243, 238, 226, 0.88);
}

/* ============================================================
   À PROPOS — Slogan section (green background, three steps)
   ============================================================ */
.slogan-section {
  background: var(--c-forest, #1B3A2D);
  color: var(--c-cream, #F6EFE2);
  padding-block: clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.slogan-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(236, 101, 52, 0.10), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(246, 239, 226, 0.06), transparent 50%);
  pointer-events: none;
}
.slogan-section > .container { position: relative; }
.slogan-section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--sp-7, 48px);
}
.slogan-section__eyebrow {
  color: rgba(246, 239, 226, 0.72);
  letter-spacing: 0.18em;
}
.slogan-section__phrase {
  font-family: var(--font-display);
  font-weight: 600;
  /* Unified section h2 size — coherent with all other section titles */
  font-size: var(--fs-3xl);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #F6EFE2;
  margin-top: var(--sp-3);
}
.slogan-section__phrase::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--c-orange, #EC6534);
  margin: var(--sp-5, 32px) auto 0;
  border-radius: 2px;
}
.slogan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5, 32px);
}
@media (max-width: 880px) {
  .slogan-steps { grid-template-columns: 1fr; }
}
.slogan-step {
  background: rgba(246, 239, 226, 0.04);
  border: 1px solid rgba(246, 239, 226, 0.12);
  border-radius: 16px;
  padding: clamp(28px, 3.2vw, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3, 16px);
  transition: border-color 200ms ease, transform 300ms ease, background 200ms ease;
}
.slogan-step:hover {
  border-color: rgba(236, 101, 52, 0.55);
  background: rgba(246, 239, 226, 0.06);
  transform: translateY(-2px);
}
.slogan-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(236, 101, 52, 0.14);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
  border: 1px solid rgba(236, 101, 52, 0.35);
}
.slogan-step__icon svg { width: 26px; height: 26px; }
.slogan-step__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  text-transform: uppercase;
}
.slogan-step__title {
  font-family: var(--font-display);
  font-weight: 600;
  /* Unified card-title size */
  font-size: var(--fs-xl);
  line-height: 1.2;
  color: #F6EFE2;
}
.slogan-step__body {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(246, 239, 226, 0.84);
}
.page-aicha .partners-cta-section::before {
  background:
    radial-gradient(ellipse at center, rgba(15, 26, 20, 0.68) 0%, rgba(15, 26, 20, 0.58) 60%, rgba(15, 26, 20, 0.45) 100%),
    linear-gradient(180deg, rgba(15, 26, 20, 0.10) 0%, rgba(15, 26, 20, 0.18) 100%);
}
.subhero--photo .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(var(--sp-8), 9vw, var(--sp-9));
}
.subhero--photo .eyebrow { color: var(--color-accent); }
.subhero--photo h1 { color: #f3eee2; }
.subhero--photo .subhero__lede { color: rgba(243, 238, 226, 0.85); }
.subhero--photo .btn--primary { background: var(--color-accent); }
.subhero--photo .btn--ghost { color: #f3eee2; border-color: rgba(243, 238, 226, 0.45); }
.subhero--photo .btn--ghost:hover { background: #f3eee2; color: var(--color-accent-2); border-color: #f3eee2; }
.subhero--photo .subhero__photo { display: none; }
.hero__photo {
  position: relative;
  margin-top: var(--sp-7);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-green-soft);
}
.hero__inner { max-width: 1180px; }
.hero--photo .hero__title { text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25); }
.hero--photo .hero__subtitle { text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4); }
.hero .eyebrow { margin-bottom: var(--sp-4); }
.hero__title {
  /* Unified page-hero h1 — matches .subhero h1 across all pages */
  font-size: clamp(2.2rem, 1.3rem + 3.4vw, 3.8rem);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  letter-spacing: -0.03em;
}
.hero__title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}
.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-muted);
  max-width: 60ch;
  margin-top: var(--sp-5);
}
.hero__cta {
  display: flex; gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-7);
}
.hero--photo .hero__cta { justify-content: center; }
.hero--photo .hero__inner { text-align: center; margin-inline: auto; }
.hero--photo .hero__subtitle { max-width: 64ch; margin-inline: auto; }

/* Page-level hero variants (subpages) */
.subhero {
  padding-block: clamp(var(--sp-8), 8vw, var(--sp-9));
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.subhero h1 {
  /* Unified page-hero h1 — matches .hero__title across all pages */
  font-size: clamp(2.2rem, 1.3rem + 3.4vw, 3.8rem);
  max-width: 22ch;
  margin-top: var(--sp-3);
}
.subhero__lede {
  font-size: var(--fs-lg);
  color: var(--color-muted);
  max-width: 56ch;
  margin-top: var(--sp-5);
}
.subhero__photo {
  margin-top: var(--sp-7);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--color-green-soft);
}

/* ---------- PHOTO PLACEHOLDER ---------- */
.photo {
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(236, 101, 52, 0.10), transparent 55%),
    radial-gradient(120% 100% at 100% 100%, rgba(27, 58, 45, 0.18), transparent 60%),
    linear-gradient(160deg, #E8E1D2 0%, #DFE7DF 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: var(--sp-6);
  border-radius: inherit;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-accent-2);
}
.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(27, 58, 45, 0.08) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
.photo::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(27, 58, 45, 0.12);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.photo__label {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent-2);
  background: rgba(255, 255, 255, 0.88);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  max-width: 78%;
  box-shadow: 0 2px 12px -4px rgba(27, 58, 45, 0.12);
  line-height: 1.45;
}
.photo__label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3Z'/><circle cx='12' cy='13' r='3'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3Z'/><circle cx='12' cy='13' r='3'/></svg>") center/contain no-repeat;
}

/* When a real <img> is present, hide the placeholder treatment */
.photo > img {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;   /* favour upper half so faces / horizons sit well */
  border-radius: inherit;
  display: block;
}
.photo:has(> img) { padding: 0; background: var(--color-accent-2); }
.photo:has(> img) > .photo__label,
.photo:has(> img)::before,
.photo:has(> img)::after { display: none; }
/* Team portraits need head-up framing */
.team-card__photo > img { object-position: center 20%; }
/* Service block media: landscape framing */
.service-block__media > img { object-position: center 45%; }

/* When a real partner logo <img> is present, hide the placeholder text */
.partner-logo > img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.partner-logo:has(> img):hover > img { opacity: 1; transform: scale(1.06); }

/* ---------- SECTION HEAD ---------- */
.section__head {
  max-width: 60ch;
  margin-bottom: var(--sp-8);
}
.section__head .eyebrow { margin-bottom: var(--sp-3); }
.section__head h2 + p {
  margin-top: var(--sp-4);
  color: var(--color-muted);
  font-size: var(--fs-lg);
}

/* ---------- PROBLEM PULL-QUOTE BLOCK ---------- */
.pull {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: var(--sp-5);
  background: var(--color-green-soft);
  padding: var(--sp-6) var(--sp-7);
  border-radius: var(--radius-lg);
  margin-block: var(--sp-6);
}
.pull::before {
  content: '';
  background: var(--color-accent);
  border-radius: var(--radius-sm);
}
.pull p {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  line-height: var(--lh-snug);
  color: var(--color-accent-2);
  max-width: none;
  font-weight: 500;
}
.pull p strong {
  font-weight: 700;
  color: var(--color-accent);
}
.pull__source {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--color-muted);
  margin-top: var(--sp-3);
  display: block;
}

/* ---------- IMPACT NUMBERS (signature) ---------- */
.impact {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--sp-7);
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-5) var(--sp-4);
}
@media (max-width: 1100px) {
  .impact__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
}
.impact__cell {
  position: relative;
  padding-inline: var(--sp-3);
  text-align: center;
}
.impact__cell + .impact__cell {
  border-left: 1px solid color-mix(in srgb, currentColor 15%, transparent);
}
@media (max-width: 1100px) {
  .impact__cell:nth-child(3n+1) { border-left: 0; }
}
@media (max-width: 520px) {
  .impact__cell:nth-child(odd) { border-left: 0; }
  .impact__cell:nth-child(n+3) { border-top: 1px solid color-mix(in srgb, currentColor 15%, transparent); padding-top: var(--sp-5); }
}
.impact__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 1rem + 2.8vw, 3.2rem);
  font-variation-settings: "opsz" 144, "SOFT" 20;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-fg);
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
}
.impact__num small {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--color-accent);
  white-space: nowrap;
}
.impact__label {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin-top: var(--sp-3);
  line-height: var(--lh-snug);
}
.section--green .impact__num { color: #f3eee2; }
.section--green .impact__num small { color: var(--color-accent); }
.section--green .impact { border-color: rgba(243, 238, 226, 0.18); }
.section--green .impact__cell + .impact__cell { border-color: rgba(243, 238, 226, 0.18); }
.section--green .impact__label { color: rgba(243, 238, 226, 0.7); }

/* ---------- JOURNEY (4-step timeline) ---------- */
.journey {
  position: relative;
  display: grid;
  gap: var(--sp-7);
}
.journey__step {
  display: grid;
  grid-template-columns: 140px minmax(240px, 360px) 1fr;
  gap: var(--sp-6);
  position: relative;
  padding-bottom: var(--sp-6);
  align-items: start;
}
.journey__photo,
.journey__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 12px 32px -10px rgba(21, 33, 27, 0.25);
}
/* LVP media card: logo + 3 socials — light background, transparent vignettes */
.journey__media--lvp {
  background: linear-gradient(160deg, #f7f1e3 0%, #e8e3d2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
  object-fit: unset;
  border: 1px solid var(--color-border);
}
.journey__media--lvp .lvp-logo {
  max-width: 92%;
  max-height: 55%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.journey__socials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  width: 100%;
}
.journey__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: var(--sp-3) var(--sp-2);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.55);
  color: var(--color-accent-2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.journey__social svg { width: 22px; height: 22px; }
.journey__social--tiktok { color: #1a1a1a; }
.journey__social--tiktok svg { color: #FE2C55; }
.journey__social--youtube { color: #FF0000; }
.journey__social--facebook { color: #1877F2; }
.journey__social:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

/* Aïcha logo card — logo fills the frame */
.journey__media--aicha {
  background: linear-gradient(160deg, var(--color-green-soft) 0%, #c8dac4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  object-fit: unset;
  overflow: hidden;
}
.journey__media--aicha img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1000px) {
  .journey__step {
    grid-template-columns: minmax(80px, 110px) 1fr;
    grid-template-areas: "num body" "photo body";
  }
  .journey__step > .journey__num { grid-area: num; }
  .journey__step > .journey__photo { grid-area: photo; aspect-ratio: 16 / 9; }
  .journey__step > .journey__body { grid-area: body; }
}
@media (max-width: 700px) {
  .journey__step {
    grid-template-columns: 1fr;
    grid-template-areas: "num" "photo" "body";
  }
  .journey__step > .journey__photo { aspect-ratio: 16 / 9; }
}
.journey__step::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 56px;
  bottom: -8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent) 0%, var(--color-border) 80%);
}
.journey__step:last-child::before { display: none; }

.journey__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 1.8rem + 4vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--color-accent-2);
  font-variation-settings: "opsz" 144;
  position: relative;
  padding-left: 38px;
}
.journey__num::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px var(--color-bg), 0 0 0 7px rgba(236, 101, 52, 0.25);
}
.journey__body { padding-top: var(--sp-2); }
.journey__eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}
.journey__title {
  font-family: var(--font-display);
  /* Unified card-title size — matches all other card titles */
  font-size: var(--fs-xl);
  font-weight: 600;
  font-variation-settings: "opsz" 36;
  letter-spacing: var(--tracking-tight);
  color: var(--color-fg);
  margin-bottom: var(--sp-4);
}
.journey__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  padding: 0.35em 0.85em;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}
.journey__pair {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
@media (min-width: 700px) {
  .journey__pair { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
.journey__pair > div { padding: var(--sp-4); border-radius: var(--radius); }
.journey__pair > div:first-child {
  background: var(--color-surface-2);
}
.journey__pair > div:last-child {
  background: var(--color-green-soft);
}
.journey__pair h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent-2);
  margin-bottom: var(--sp-2);
}
.journey__pair p { color: var(--color-fg); max-width: none; font-size: var(--fs-base); }
.journey__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-top: var(--sp-2);
}
.journey__link:hover { color: var(--color-accent-2); }
.journey__link:hover .arrow { transform: translateX(4px); }
.journey__link .arrow { transition: transform var(--dur-fast) var(--ease); }

@media (max-width: 560px) {
  .journey__step { grid-template-columns: 1fr; gap: var(--sp-3); }
  .journey__step::before { display: none; }
  .journey__num::before { display: none; }
  .journey__num { font-size: 4rem; padding-left: 0; }
}

/* ---------- ADVANTAGE QUOTE (legacy, used elsewhere) ---------- */
.advantage {
  background: var(--color-green-soft);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-7);
  margin-block: var(--sp-7);
}
.advantage p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 0.8rem + 2vw, 2.2rem);
  font-variation-settings: "opsz" 60, "SOFT" 30;
  line-height: var(--lh-snug);
  color: var(--color-accent-2);
  max-width: 30ch;
  font-weight: 500;
}
.advantage p strong { color: var(--color-accent); font-weight: 700; }

/* ---------- ADVANTAGE — editorial centered block with photo backdrop ---------- */
.advantage-section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(var(--sp-9), 12vw, var(--sp-10));
  color: #f3eee2;
  background-color: var(--color-accent-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.advantage-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 26, 20, 0.55) 0%, rgba(15, 26, 20, 0.65) 100%);
}
.advantage-section > .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1080px;
}
.advantage-section .eyebrow {
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--sp-4);
}
.advantage-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  /* Unified section h2 — matches all other section titles */
  font-size: var(--fs-3xl);
  line-height: 1.1;
  color: #f3eee2;
  max-width: 22ch;
  margin: 0 auto;
  letter-spacing: var(--tracking-tight);
}
.advantage-section__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent);
}
.advantage-section__body {
  margin: var(--sp-6) auto 0;
  max-width: 56ch;
  font-size: var(--fs-lg);
  color: rgba(243, 238, 226, 0.86);
  line-height: 1.5;
}
.advantage-section__pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2) var(--sp-3);
  margin-top: var(--sp-7);
  list-style: none;
  padding: 0;
}
.advantage-section__pillars li {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #f3eee2;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  background: rgba(243, 238, 226, 0.08);
  border: 1px solid rgba(243, 238, 226, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}
.advantage-section__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-7);
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--fs-sm);
}
.advantage-section__link:hover { color: #fff; }
.advantage-section__link:hover .arrow { transform: translateX(4px); }
.advantage-section__link .arrow { transition: transform var(--dur-fast) var(--ease); }

/* ---------- BLOCK QUOTE (closing) ---------- */
.blockquote {
  font-family: var(--font-display);
  /* Unified pull-quote size — matches .advantage p */
  font-size: clamp(1.4rem, 0.8rem + 2vw, 2.2rem);
  font-variation-settings: "opsz" 96, "SOFT" 50;
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  color: var(--color-accent-2);
  text-align: center;
  max-width: 30ch;
  margin: 0 auto;
  position: relative;
  padding-block: var(--sp-7);
}
.blockquote::before, .blockquote::after {
  content: '';
  display: block;
  width: 60px; height: 1px;
  background: var(--color-accent);
  margin: var(--sp-5) auto;
}

/* ---------- COMPLIANCE BANNER ---------- */
.compliance {
  background: var(--color-surface-2);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--color-muted);
  max-width: 80ch;
  margin: 0 auto;
}
.compliance__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-accent-2);
  color: #f3eee2;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.compliance strong { color: var(--color-fg); }

/* ---------- PARTNERS BAND ---------- */
.partners {
  text-align: center;
}
.partners__label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--sp-5);
}
.partners__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-6) var(--sp-7);
  align-items: center;
  justify-items: center;
}
.partner-logo {
  background: transparent;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--color-muted);
  letter-spacing: -0.01em;
  text-align: center;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.partner-logo:hover { color: var(--color-accent-2); transform: translateY(-2px); }

/* ---------- ADDRESS / PARTNERS CTA — full-bleed editorial section ---------- */
.partners-cta-section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(var(--sp-9), 12vw, var(--sp-10));
  color: #f3eee2;
  background-color: var(--color-accent-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-align: center;
}
.partners-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(15, 26, 20, 0.92) 0%, rgba(15, 26, 20, 0.78) 60%, rgba(15, 26, 20, 0.70) 100%),
    linear-gradient(180deg, rgba(15, 26, 20, 0.20) 0%, rgba(15, 26, 20, 0.30) 100%);
}
.partners-cta-section > .container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  display: grid;
  gap: var(--sp-5);
  justify-items: center;
}
.partners-cta-section h2 {
  color: #f3eee2;
  font-family: var(--font-display);
  font-weight: 600;
  /* Unified section h2 size */
  font-size: var(--fs-3xl);
  line-height: 1.15;
  letter-spacing: var(--tracking-tight);
  max-width: 28ch;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.partners-cta-section p {
  color: rgba(243, 238, 226, 0.86);
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.55;
  font-size: var(--fs-lg);
}
.partners-cta-section .eyebrow { color: var(--color-accent); }
.partners-cta-section .btn { margin-inline: auto; }

/* legacy .addr-cta still used elsewhere (collecte/aicha/caravane final blocks) */
.addr-cta {
  display: grid;
  gap: var(--sp-5);
  background-color: var(--color-accent-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f3eee2;
  border-radius: var(--radius-xl);
  padding: clamp(var(--sp-7), 5vw, var(--sp-9));
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.addr-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 26, 20, 0.60) 0%, rgba(15, 26, 20, 0.78) 100%);
}
.addr-cta > * { position: relative; z-index: 2; }
.addr-cta h2 { color: #f3eee2; max-width: 28ch; margin-inline: auto; font-size: var(--fs-3xl); text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25); }
.addr-cta p { color: rgba(243, 238, 226, 0.86); max-width: 56ch; margin-inline: auto; line-height: 1.5; }
.addr-cta .eyebrow { color: var(--color-accent); }
.addr-cta .btn { margin-inline: auto; }

/* ---------- SERVICE / FEATURE GROUP ---------- */
.service-block {
  display: grid;
  gap: var(--sp-6);
  padding-block: var(--sp-7);
  border-bottom: 1px solid var(--color-border);
}
.service-block:last-of-type { border-bottom: 0; }
@media (min-width: 880px) {
  .service-block { grid-template-columns: 380px 1fr; gap: var(--sp-8); }
}
.service-block__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-block__body h3 {
  /* Unified card-title size */
  font-size: var(--fs-xl);
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 30;
  margin-bottom: var(--sp-4);
}
.service-block__body .lede {
  color: var(--color-fg);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-5);
  max-width: 60ch;
}
.service-block__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.service-block__list li {
  position: relative;
  padding-left: 32px;
  color: var(--color-muted);
  font-size: var(--fs-base);
  line-height: var(--lh-snug);
}
.service-block__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.2em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EC6534' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4 10-10'/></svg>") center/14px no-repeat,
    var(--color-accent-soft);
}
.service-block__use-for {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--color-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-3);
}
.service-block__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--color-border);
}
.service-block__stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.03em;
  color: var(--color-accent-2);
  line-height: 1;
}
.service-block__stat-label {
  font-size: var(--fs-xs);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-top: var(--sp-2);
}

/* ---------- WHY CARDS (Pourquoi FDA) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
}
.why-card {
  padding: var(--sp-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.why-card:hover { transform: translateY(-4px); border-color: var(--color-accent); }
.why-card__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--sp-4);
}
.why-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  padding: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.why-card__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
  display: block;
  flex-shrink: 0;
}
.section--green .why-card__icon {
  background: rgba(236, 101, 52, 0.18);
  color: var(--color-accent);
}

/* Generic pictogram for sections (mission principles, etc.) */
.picto {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.picto svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
  display: block;
  flex-shrink: 0;
}
.section--green .picto {
  background: rgba(236, 101, 52, 0.2);
  color: var(--color-accent);
}
.why-card h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.why-card p { color: var(--color-muted); font-size: var(--fs-sm); }

/* ---------- PHONE FRAME (Aïcha chat, LVP shorts) ---------- */
.phone {
  position: relative;
  background:
    linear-gradient(160deg, #2a2e2c 0%, #0d1411 45%, #1a1f1c 100%);
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 30px 60px -20px rgba(13, 20, 17, 0.55),
    0 10px 20px -8px rgba(13, 20, 17, 0.30),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08),
    inset 0 0 0 3px rgba(0, 0, 0, 0.6);
  isolation: isolate;
  margin: 0 auto;
}
/* Power + volume buttons (subtle, on the sides) */
.phone::before {
  content: '';
  position: absolute;
  right: -2px; top: 110px;
  width: 3px; height: 72px;
  background: #1a1f1c;
  border-radius: 2px;
}
.phone::after {
  content: '';
  position: absolute;
  left: -2px; top: 92px;
  width: 3px; height: 36px;
  background: #1a1f1c;
  border-radius: 2px;
  box-shadow: 0 56px 0 0 #1a1f1c, 0 56px 0 0 #1a1f1c;
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ECE5DD;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 24px;
  background: #0a0e0c;
  border-radius: 18px;
  z-index: 20;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone__notch::before {
  /* speaker grill */
  content: '';
  position: absolute;
  top: 50%; left: 18px;
  transform: translateY(-50%);
  width: 28px; height: 4px;
  background: #1d2120;
  border-radius: 2px;
}
.phone__notch::after {
  /* front camera dot */
  content: '';
  position: absolute;
  top: 50%; right: 14px;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  background: #1d2120;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(80, 100, 200, 0.4);
}
.phone__status {
  /* iOS-style status bar */
  position: relative;
  z-index: 10;
  padding: 14px 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #0a0e0c;
  background: transparent;
  letter-spacing: -0.01em;
}
.phone__status__icons { display: inline-flex; gap: 5px; align-items: center; color: #0a0e0c; }
.phone__status__icons svg { width: 14px; height: 14px; }
.phone__status__time { padding-left: 8px; }

/* ---------- WhatsApp conversation inside phone ---------- */
.phone--whatsapp .phone__screen { background: #ECE5DD; }
.phone--whatsapp .phone__status { color: #fff; padding-top: 14px; padding-bottom: 6px; background: #075E54; }
.phone--whatsapp .phone__status__icons { color: #fff; }

.wa-header {
  background: #075E54;
  color: #fff;
  padding: 6px 14px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 5;
}
.wa-header__back {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.wa-header__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.wa-header__info { display: flex; flex-direction: column; line-height: 1.2; }
.wa-header__name { font-weight: 600; font-size: 15px; }
.wa-header__status { font-size: 11.5px; opacity: 0.85; }
.wa-header__actions { margin-left: auto; display: inline-flex; gap: 16px; }
.wa-header__actions svg { width: 18px; height: 18px; }

.wa-chat {
  flex: 1;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  background-color: #ECE5DD;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(7, 94, 84, 0.04) 0, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(7, 94, 84, 0.04) 0, transparent 30%);
}
.wa-bubble {
  max-width: 78%;
  padding: 6px 10px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.35;
  color: #303030;
  position: relative;
  word-break: break-word;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}
.wa-bubble--in {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 0;
}
.wa-bubble--out {
  background: #DCF8C6;
  align-self: flex-end;
  border-top-right-radius: 0;
}
.wa-bubble__time {
  position: absolute;
  bottom: 4px; right: 8px;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.45);
}
.wa-bubble__time svg {
  width: 13px; height: 13px;
  vertical-align: -3px;
  margin-left: 2px;
  color: #4FC3F7;
}
.wa-photo {
  max-width: 78%;
  border-radius: 8px;
  align-self: flex-end;
  overflow: hidden;
  background: #DCF8C6;
  padding: 3px;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}
.wa-photo img,
.wa-photo svg { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; display: block; }

.wa-input {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 12px;
  background: transparent;
}
.wa-input__field {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wa-input__field svg { width: 16px; height: 16px; color: #888; }
.wa-input__mic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #075E54;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-input__mic svg { width: 18px; height: 18px; }

/* size for Aïcha phone */
.phone--aicha {
  width: min(320px, 100%);
  aspect-ratio: 9 / 19.5;
}

/* ---------- VIDEO GALLERY (LVP shorts as phones) ---------- */
.shorts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-7);
  justify-items: center;
  padding-top: var(--sp-4);
}
.short {
  /* phone frame inherits .phone styling via shared class */
  width: min(240px, 100%);
  aspect-ratio: 9 / 19.5;
  position: relative;
  display: block;
  text-decoration: none;
  background:
    linear-gradient(160deg, #2a2e2c 0%, #0d1411 45%, #1a1f1c 100%);
  border-radius: 38px;
  padding: 9px;
  box-shadow:
    0 30px 60px -20px rgba(13, 20, 17, 0.55),
    0 10px 20px -8px rgba(13, 20, 17, 0.30),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08),
    inset 0 0 0 3px rgba(0, 0, 0, 0.6);
  isolation: isolate;
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}
.short:hover { transform: translateY(-6px) rotate(-1deg); }
.short::before {
  /* power button */
  content: '';
  position: absolute;
  right: -2px; top: 100px;
  width: 3px; height: 60px;
  background: #1a1f1c;
  border-radius: 2px;
}
.short::after {
  /* volume buttons */
  content: '';
  position: absolute;
  left: -2px; top: 80px;
  width: 3px; height: 30px;
  background: #1a1f1c;
  border-radius: 2px;
  box-shadow: 0 46px 0 0 #1a1f1c;
}
.short__inner {
  display: block;
  position: relative;
  width: 100%; height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}
.short__iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
  z-index: 6;
}
.short.is-playing { transform: none !important; }
.short.is-playing:hover { transform: translateY(-4px) !important; }
.short__gradient,
.short__notch,
.short__label,
.short__handle { display: block; }
.short__notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #0a0e0c;
  border-radius: 14px;
  z-index: 20;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.short__notch::before {
  content: '';
  position: absolute;
  top: 50%; left: 14px;
  transform: translateY(-50%);
  width: 22px; height: 4px;
  background: #1d2120;
  border-radius: 2px;
}
.short__notch::after {
  content: '';
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: #1d2120;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(80, 100, 200, 0.4);
}
.short img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 600ms var(--ease), filter var(--dur) var(--ease);
}
.short:hover img { transform: scale(1.06); filter: brightness(0.78); }
.short__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 25%, transparent 60%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}
.short__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.55);
}
.short__play svg { width: 24px; height: 24px; margin-left: 3px; }
.short:hover .short__play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--color-accent);
  color: #fff;
}
.short__badge {
  position: absolute;
  top: 38px; left: 14px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-flex; align-items: center; gap: 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.short__badge svg { width: 11px; height: 11px; }
.short__label {
  position: absolute;
  bottom: 22px;
  left: 14px; right: 14px;
  z-index: 5;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.short__handle {
  position: absolute;
  bottom: 8px;
  left: 14px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
}
/* Side actions column (YouTube Shorts style) */
.short__actions {
  position: absolute;
  right: 8px;
  bottom: 50px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #fff;
  align-items: center;
}
.short__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.short__action svg {
  width: 22px; height: 22px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.short__action span {
  font-size: 9px;
  font-weight: 600;
}

/* ---------- EDITORIAL SCOPE (LVP, 3-category grid) ---------- */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
.editorial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  overflow: hidden;
  text-align: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.editorial-card:hover { transform: translateY(-3px); border-color: var(--color-accent); box-shadow: var(--shadow-2); }
.editorial-card__photo {
  height: 280px;
  overflow: hidden;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.editorial-card__photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 600ms var(--ease);
}
.editorial-card:hover .editorial-card__photo img { transform: scale(1.04); }
.editorial-card > h3,
.editorial-card > p,
.editorial-card > ul { margin-inline: var(--sp-5); }
.editorial-card > h3 { margin-top: var(--sp-4); font-size: var(--fs-base); }
.editorial-card > p { font-size: var(--fs-sm); margin-block: var(--sp-2); }
.editorial-card > ul { margin-bottom: var(--sp-5); justify-content: center; gap: 4px; }
.editorial-card ul li { font-size: 12px; padding: 4px 9px; }
/* legacy icon style (kept in case used elsewhere) */
.editorial-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin: var(--sp-6) var(--sp-6) 0;
}
.editorial-card__icon svg { width: 24px; height: 24px; stroke-width: 1.8; }
.editorial-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--color-fg);
  margin: 0;
}
.editorial-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}
.editorial-card ul li {
  font-size: var(--fs-sm);
  background: var(--color-surface-2);
  color: var(--color-fg);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-weight: 500;
  border: 1px solid var(--color-border);
}

/* ---------- SOCIALS — total highlight + channel pills ---------- */
.socials-block {
  display: grid;
  gap: var(--sp-7);
  margin-top: var(--sp-7);
  align-items: stretch;
}
@media (min-width: 900px) {
  .socials-block { grid-template-columns: 1fr 1.3fr; min-height: 380px; }
}
.socials-total {
  background: var(--color-accent-2);
  color: #f3eee2;
  border-radius: var(--radius-xl);
  padding: clamp(var(--sp-7), 5vw, var(--sp-9));
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}
.socials-total::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 101, 52, 0.30), transparent 70%);
  z-index: -1;
}
.socials-total__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 2rem + 4vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #f3eee2;
  font-variation-settings: "opsz" 144;
}
.socials-total__num span { display: inline-block; }
.socials-total__label {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(243, 238, 226, 0.78);
  margin-top: var(--sp-3);
}
.socials-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (max-width: 540px) {
  .socials-channels { grid-template-columns: 1fr; }
}
/* Centered 4-up variant — used on blog hero & CTA */
.socials-channels--center {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 880px;
  margin-inline: auto;
  justify-items: stretch;
}
@media (max-width: 920px) {
  .socials-channels--center { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .socials-channels--center { grid-template-columns: 1fr; }
}
.channel-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-fg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  text-decoration: none;
  min-height: 86px;
}
.channel-pill:hover {
  transform: translateY(-2px);
  border-color: var(--channel-color, var(--color-accent));
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.12);
}
.channel-pill__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  background: var(--channel-color, var(--color-accent));
}
.channel-pill__icon svg { width: 24px; height: 24px; }
.channel-pill__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--color-fg);
  line-height: 1.1;
}
.channel-pill__handle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  display: block;
  margin-top: 2px;
}
.channel-pill > div, .channel-pill > .channel-pill__text {
  display: flex; flex-direction: column;
}
.channel-pill {
  /* allow text wrap-block */
  display: grid;
  grid-template-columns: auto 1fr;
}
.channel-pill .channel-pill__name + .channel-pill__handle { grid-column: 2; }
.channel-pill--fb { --channel-color: #1877F2; }
.channel-pill--tt { --channel-color: #000000; }
.channel-pill--tt .channel-pill__icon { background: linear-gradient(135deg, #25F4EE 0%, #000 50%, #FE2C55 100%); }
.channel-pill--ig .channel-pill__icon { background: linear-gradient(135deg, #FEDA75, #FA7E1E 30%, #D62976 60%, #962FBF 80%, #4F5BD5); }
.channel-pill--ig { --channel-color: #D62976; }
.channel-pill--yt { --channel-color: #FF0000; }

/* ---------- SOCIALS — modern, with hero card + secondary cards ---------- */
.socials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
@media (min-width: 720px) {
  .socials-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "fb fb tt tt" "ig ig yt yt";
    grid-template-rows: minmax(220px, 1fr) minmax(180px, 1fr);
  }
  .social-card--fb { grid-area: fb; }
  .social-card--tt { grid-area: tt; }
  .social-card--ig { grid-area: ig; }
  .social-card--yt { grid-area: yt; }
}
.social-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--social-from, #1877F2) 0%, var(--social-to, #1877F2) 100%);
}
.social-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.social-card__icon svg { width: 28px; height: 28px; color: #fff; }
.social-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  letter-spacing: -0.02em;
  color: #fff;
}
.social-card__handle {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
}
.social-card__count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.social-card__count-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.social-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-4);
}
.social-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.social-card--major .social-card__count { font-size: clamp(2.6rem, 2rem + 2.4vw, 3.6rem); }
.social-card--fb { --social-from: #1877F2; --social-to: #0d5fb5; }
.social-card--tt { --social-from: #25F4EE; --social-to: #FE2C55; }
.social-card--tt::before { background: linear-gradient(135deg, #25F4EE 0%, #000 50%, #FE2C55 100%); }
.social-card--ig::before { background: linear-gradient(135deg, #FEDA75, #FA7E1E 30%, #D62976 60%, #962FBF 80%, #4F5BD5); }
.social-card--yt { --social-from: #FF0000; --social-to: #b30000; }

/* ---------- SOCIAL LOGOS (LVP) ---------- */
.socials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-5);
  align-items: stretch;
}
.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.social:hover { transform: translateY(-4px); border-color: var(--color-accent); }
.social__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.social__icon svg { width: 28px; height: 28px; }
.social--fb .social__icon { background: #1877F2; }
.social--tt .social__icon { background: #000; }
.social--ig .social__icon { background: linear-gradient(45deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5); }
.social--yt .social__icon { background: #FF0000; }
.social__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--color-fg);
}
.social__handle {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  font-family: var(--font-mono);
}
.social--major {
  background: var(--color-accent-2);
  color: #f3eee2;
  border-color: var(--color-accent-2);
}
.social--major .social__name { color: #f3eee2; }
.social--major .social__handle { color: rgba(243, 238, 226, 0.7); }
.social--major:hover { border-color: var(--color-accent); }

/* ---------- TABLE (Caravane theory-of-change) ---------- */
.toctable {
  border-collapse: collapse;
  width: 100%;
  font-size: var(--fs-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.toctable th, .toctable td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  vertical-align: top;
}
.toctable thead th {
  background: var(--color-accent-2);
  color: #f3eee2;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.toctable tbody tr + tr { border-top: 1px solid var(--color-border); }
.toctable tbody td:first-child { font-weight: 600; color: var(--color-fg); border-right: 1px solid var(--color-border); }
.toctable tbody td:last-child { color: var(--color-muted); }

/* ---------- TEAM CARDS ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-6);
}
@media (min-width: 1100px) {
  /* With 5 founders, lay out as 3 + 2 centered for nice balance */
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
.team-card {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.team-card__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
}
.team-card__role {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-accent);
  font-weight: 600;
}
.team-card__bio {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  line-height: var(--lh-snug);
}

/* ---------- BLOG CARDS ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}

/* ============================================================
   CONTACT — Booking module (date+time picker → mailto)
   ============================================================ */
.booking-module {
  display: grid;
  gap: clamp(var(--sp-6), 3vw, var(--sp-7));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--sp-5), 4vw, var(--sp-7));
  box-shadow: var(--shadow-2);
  max-width: 880px;
  margin-inline: auto;
  margin-top: var(--sp-7);
}
.booking-step {
  display: grid;
  gap: var(--sp-4);
}
.booking-step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--color-fg);
  margin: 0;
}
.booking-step__badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* Date strip */
.booking-dates {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--sp-2);
}
@media (max-width: 720px) {
  .booking-dates { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .booking-dates { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.booking-date {
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-2);
  text-align: center;
  cursor: pointer;
  font-family: var(--font-body);
  display: grid;
  gap: 2px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.booking-date:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
  transform: translateY(-1px);
}
.booking-date.is-selected {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}
.booking-date--weekend { opacity: 0.55; }
.booking-date--weekend:hover { opacity: 1; }
.booking-date__day {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  line-height: 1;
}
.booking-date.is-selected .booking-date__day { color: rgba(255, 255, 255, 0.85); }
.booking-date__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-fg);
}
.booking-date.is-selected .booking-date__num { color: #fff; }
.booking-date__month {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  line-height: 1;
}
.booking-date.is-selected .booking-date__month { color: rgba(255, 255, 255, 0.85); }

/* Time strip */
.booking-times {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--sp-2);
}
@media (max-width: 540px) {
  .booking-times { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.booking-time {
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-fg);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.booking-time:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
  transform: translateY(-1px);
}
.booking-time.is-selected {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

/* Form fields */
.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 640px) {
  .booking-fields { grid-template-columns: 1fr; }
}
.booking-fields > label:nth-child(3),
.booking-fields > label:nth-child(4) { grid-column: 1 / -1; }
.booking-fields label {
  display: grid;
  gap: 6px;
}
.booking-fields label > span {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-muted);
}
.booking-fields input,
.booking-fields select,
.booking-fields textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-fg);
  width: 100%;
  resize: vertical;
}
.booking-fields textarea { min-height: 90px; }
.booking-fields input:focus,
.booking-fields select:focus,
.booking-fields textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

/* Recap */
.booking-recap {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--color-accent-soft);
  border: 1px solid color-mix(in srgb, var(--color-accent) 35%, transparent);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
}
.booking-recap__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-recap__icon svg { width: 18px; height: 18px; }
.booking-recap__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.booking-recap__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-muted);
}
.booking-recap__text strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-fg);
}

/* Submit + disclaimer */
.booking-submit {
  justify-self: stretch;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.booking-submit.is-disabled,
.booking-submit[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: auto; /* keep click for scroll-to fallback */
}
.booking-disclaimer {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.02em;
  color: var(--color-muted);
  text-align: center;
  margin: 0;
  max-width: 60ch;
  margin-inline: auto;
}
.booking-fallback {
  margin-top: var(--sp-4);
  padding: var(--sp-5);
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  display: grid;
  gap: var(--sp-3);
}
.booking-fallback__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-fg);
  margin: 0;
}
.booking-fallback__body {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin: 0;
}
.booking-fallback__text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.5;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-fg);
  width: 100%;
  resize: vertical;
  white-space: pre-wrap;
}
.booking-fallback__copy {
  justify-self: start;
}

/* ============================================================
   BLOG — YouTube video grid (LVP shorts facade)
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
  align-items: start;
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-fg);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: color-mix(in srgb, var(--color-accent) 40%, var(--color-border));
}
.video-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #15211b;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}
.video-card:hover .video-card__thumb img { transform: scale(1.04); }
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.video-card__play svg { width: 22px; height: 22px; margin-left: 3px; }
.video-card:hover .video-card__play {
  background: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.05);
  border-color: var(--color-accent);
}
.video-card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.video-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
}
.video-card__tag {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent);
}
.video-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--color-fg);
  letter-spacing: var(--tracking-tight);
}
.blog-card {
  display: grid;
  gap: var(--sp-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blog-card__photo { aspect-ratio: 16 / 9; }
.blog-card__body { padding: var(--sp-5); }
.blog-card__date {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--sp-3);
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--color-fg);
}
.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-muted);
}

/* ---------- CONTACT PAGE ---------- */
.contact-card {
  display: grid;
  gap: var(--sp-5);
  padding: var(--sp-7);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.contact-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}
.contact-list li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--fs-sm);
}
.contact-list strong { color: var(--color-fg); min-width: 100px; }
.contact-list a { color: var(--color-accent); }
.contact-list a:hover { color: var(--color-accent-2); }

/* ---------- SDG cards (Mission page) ---------- */
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 220px));
  gap: var(--sp-4);
  justify-content: center;
}
.sdg {
  position: relative;
  background: var(--sdg-color, var(--color-accent-2));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-height: 180px;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.sdg:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.sdg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.10) 100%);
  pointer-events: none;
}
.sdg > * { position: relative; z-index: 1; }
.sdg__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.sdg__icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0.92;
}
.sdg__icon svg { width: 100%; height: 100%; }
.sdg__label {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-accent-2);
  color: rgba(243, 238, 226, 0.7);
  padding-block: var(--sp-8) var(--sp-5);
  font-size: var(--fs-sm);
  margin-top: var(--sp-7);
}
.footer-grid {
  display: grid;
  gap: var(--sp-7);
  margin-bottom: var(--sp-7);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: #f3eee2;
  margin-bottom: var(--sp-4);
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--sp-2);
}
.footer-grid li a {
  color: rgba(243, 238, 226, 0.75);
  font-size: var(--fs-sm);
  transition: color var(--dur-fast) var(--ease);
}
.footer-grid li a:hover { color: var(--color-accent); }
.footer-grid p { color: rgba(243, 238, 226, 0.75); max-width: 36ch; }
.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xl);
  color: #f3eee2;
  margin-bottom: var(--sp-3);
  display: inline-flex; align-items: center; gap: var(--sp-2);
}
.footer__brand .brand__mark { background: var(--color-bg); color: var(--color-accent-2); }
.footer__base {
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(243, 238, 226, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(243, 238, 226, 0.6);
}
.footer__compliance {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  color: #f3eee2;
}

/* ---------- DRAW-ON SVG ---------- */
.draw-on path,
.draw-on line,
.draw-on circle,
.draw-on rect {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.draw-on.is-drawn path,
.draw-on.is-drawn line,
.draw-on.is-drawn circle,
.draw-on.is-drawn rect { stroke-dashoffset: 0; }

/* ---------- RESPONSIVE GUARDRAILS (mobile-first checklist) ---------- */
@media (pointer: coarse) {
  /* Tap targets ≥ 44×44 on touch */
  .btn, .nav__cta, .nav__links a, .journey__link, .lang-toggle, .theme-toggle, .footer-grid li a {
    min-height: 44px;
  }
  .btn, .nav__cta { padding-block: 0.95em; }
}
@media (max-width: 479px) {
  /* Hero CTAs stack full-width below 480px */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; text-align: center; }
  /* Body never below 14px on mobile */
  body { font-size: max(14px, var(--fs-base)); }
  /* Tighter card padding */
  .why-card, .team-card, .blog-card__body, .contact-card { padding: var(--sp-5); }
  /* Subhero h1 stays proportional on mobile but uses same unified scale */
  .subhero h1, .hero__title { font-size: clamp(2rem, 5vw + 1.2rem, 3rem); }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.grid > .reveal:nth-child(2),
.journey > .reveal:nth-child(2) { transition-delay: 80ms; }
.grid > .reveal:nth-child(3),
.journey > .reveal:nth-child(3) { transition-delay: 160ms; }
.grid > .reveal:nth-child(4),
.journey > .reveal:nth-child(4) { transition-delay: 240ms; }
.impact__cell.reveal:nth-child(2) { transition-delay: 60ms; }
.impact__cell.reveal:nth-child(3) { transition-delay: 120ms; }
.impact__cell.reveal:nth-child(4) { transition-delay: 180ms; }
.impact__cell.reveal:nth-child(5) { transition-delay: 240ms; }
.impact__cell.reveal:nth-child(6) { transition-delay: 300ms; }

/* ---------- UTILITIES ---------- */
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.text-center { text-align: center; }
.muted { color: var(--color-muted); }
.accent { color: var(--color-accent); }
.accent-2 { color: var(--color-accent-2); }
.italic { font-style: italic; }
