:root {
  --green: #5db23c;
  --green-dark: #066c38;
  --green-deep: #054a27;
  --green-soft: #e8f5e0;
  --green-glow: rgba(93, 178, 60, 0.45);
  --ink: #1f2937;
  --ink-soft: #4b5563;
  --muted: #a1a1a1;
  --bg: #ffffff;
  --bg-alt: #f7faf4;
  --dark: #1a1a1a;
  --radius: 12px;
  --radius-lg: 24px;
  --max: 1200px;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 40px rgba(6, 108, 56, 0.18);
  --transition: 0.25s ease;
  --font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green-dark);
  color: #fff;
  padding: 12px 18px;
  z-index: 999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ----------------------------- HEADER ----------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-stuck,
body:not(.has-hero) .site-header {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
body:not(.has-hero) { padding-top: 86px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand img { height: 42px; width: auto; }

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--green-dark); }
.main-nav li:first-child a { color: var(--green); }
.main-nav li:first-child a:hover { color: var(--green-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.linkedin-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--green);
  background: var(--green-soft);
  transition: all var(--transition);
}
.linkedin-btn:hover { background: var(--green); color: #fff; }
.linkedin-btn svg { width: 18px; height: 18px; fill: currentColor; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  font-family: var(--font);
  border: 0;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-dark); }

.btn-conference {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 0 0 0 var(--green-glow);
  animation: conf-glow 2.4s ease-in-out infinite;
}
.btn-conference:hover {
  background: var(--green-deep);
  box-shadow: 0 0 0 6px var(--green-glow);
  animation: none;
}
@keyframes conf-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
  50% { box-shadow: 0 0 0 8px rgba(93, 178, 60, 0); }
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-outline:hover { background: var(--green-dark); color: #fff; }

.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(3px); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
  transition: var(--transition);
}

/* ------------------------------ HERO ------------------------------ */
.hero {
  position: relative;
  padding: 140px 0 64px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -10% 0 -10%;
  background: radial-gradient(ellipse at 50% 30%, var(--green-glow), transparent 55%);
  filter: blur(40px);
  z-index: -1;
}
.hero-content { text-align: center; max-width: 780px; margin: 0 auto; }
.hero-eyebrow {
  display: block;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero h1 strong {
  font-weight: 700;
  color: var(--ink);
}
.hero p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--green-dark);
  margin: 4px auto 30px !important;
  letter-spacing: 0.02em;
  max-width: unset !important;
}
.slogan-on {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.02em;
  gap: 0.05em;
}
.slogan-on img {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: -0.08em;
  vertical-align: middle;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------- DIVIDER ----------------------------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 56px 0 40px;
}
.divider::before,
.divider::after {
  content: "";
  height: 2px;
  width: 32px;
  background: var(--green);
  border-radius: 2px;
}
.divider img { height: 22px; width: auto; opacity: 0.9; }
.divider-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  display: block;
  text-align: center;
}
.section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.section-intro .divider { padding: 56px 0 0; }

/* ---------------------------- SECTIONS ---------------------------- */
section { scroll-margin-top: 90px; }
.section-title {
  text-align: center;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 16px;
  color: var(--ink);
}
.section-title strong { font-weight: 700; }
.section-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--ink-soft);
}
.section-motto {
  text-align: center;
  font-size: 1.25rem;
  color: var(--green-dark);
  font-style: italic;
  font-weight: 400;
  max-width: 680px;
  margin: -8px auto 40px;
}

.values-intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  margin: 0 0 56px;
  padding: 0;
}
.values-portrait {
  margin: 0;
  text-align: center;
}
.values-portrait img {
  width: 100%;
  max-width: 220px;
  border-radius: 14px;
  filter: grayscale(100%) contrast(1.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.values-portrait figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.values-portrait figcaption span {
  display: block;
  font-weight: 400;
  font-style: italic;
  font-size: 0.78rem;
}
.values-intro-text p {
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.values-intro-text blockquote {
  margin: 16px 0;
  padding: 12px 18px;
  border-left: 3px solid var(--green);
  background: var(--bg-alt);
  border-radius: 0 8px 8px 0;
  color: var(--ink);
  font-style: italic;
  font-size: 0.97rem;
}

/* --------------------------- MISSION ------------------------------ */
.mission-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 56px;
  align-items: center;
  padding: 24px 0;
}
.mission-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
}
.mission-image::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 22%;
  background: linear-gradient(to top, var(--green) 0%, var(--green) 40%, transparent 100%);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}
.mission-image img { width: 100%; height: 100%; object-fit: cover; }
.mission-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin: 0 0 20px;
}
.mission-text h2 strong { font-weight: 700; }
.mission-text p { color: var(--ink-soft); margin: 0 0 14px; }
.mission-text .btn { margin-top: 12px; }

/* ---------------------- PRESTATIONS CARDS ------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards-grid .card-wide { grid-column: span 2; }

.card {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background-color: var(--green-dark);
  background-image: url('../assets/images/bg-hero.webp');
  background-size: 180% auto;
  background-position: 60% 40%;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6, 108, 56, 0.55) 0%, rgba(6, 74, 39, 0.88) 70%);
  z-index: 0;
}
.card > * { position: relative; z-index: 1; }
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  margin-bottom: auto;
}
.card-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.6; }
.card h3 {
  font-size: 1.4rem;
  margin: 14px 0 8px;
  font-weight: 600;
}
.card p { font-size: 0.95rem; margin: 0; opacity: 0.92; }

.prestations-intro {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
}

/* ---------------------------- VALEURS ----------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.value-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.value-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.value h3 { margin: 0 0 10px; font-size: 1.25rem; font-weight: 600; }
.value p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

/* ----------------------------- EQUIPE ----------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.team-cta {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-cta h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 16px;
}
.team-cta h2 strong { font-weight: 700; }
.team-cta p { margin: 0 0 20px; opacity: 0.95; }
.team-cta .btn-outline {
  border-color: #fff;
  color: #fff;
  align-self: flex-start;
}
.team-cta .btn-outline:hover { background: #fff; color: var(--green-dark); }

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-soft);
  margin-bottom: 16px;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  display: grid;
  place-items: center;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-avatar.placeholder { color: var(--green); }
.team-avatar.placeholder svg { width: 44px; height: 44px; }
.team-avatar.initials {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.02em;
}
.team-card h3 { margin: 0 0 4px; font-size: 1.15rem; font-weight: 600; }
.team-card .role { color: var(--muted); font-size: 0.9rem; margin: 0 0 12px; letter-spacing: 0.05em; }
.team-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 16px; }
.team-card .link-more {
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ----------------------------- CLIENTS ---------------------------- */
.clients-track {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 56px;
  row-gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0 0;
}
.clients-track a { display: inline-block; line-height: 0; }
.clients-track img {
  max-height: 64px;
  max-width: 160px;
  height: auto;
  width: auto;
  opacity: 0.7;
  filter: grayscale(30%);
  transition: opacity var(--transition), filter var(--transition);
}
.clients-track a:hover img,
.clients-track img:hover { opacity: 1; filter: grayscale(0); }

/* ----------------------------- CONTACT ---------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin: 0 0 16px;
}
.contact-info h2 strong { font-weight: 700; }
.contact-info p { color: var(--ink-soft); margin: 0 0 24px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.contact-list li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

.contact-form {
  background: var(--bg-alt);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid #eee;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.field textarea { min-height: 120px; resize: vertical; }

/* ------------------------------ FOOTER ---------------------------- */
.site-footer {
  background: #141414;
  color: #d8d8d8;
  padding: 64px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand img { height: 54px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: #a9a9a9; font-size: 0.95rem; margin: 0; max-width: 320px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #d8d8d8;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green); }
.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 16px;
}
.newsletter p { color: #a9a9a9; font-size: 0.9rem; margin: 0 0 14px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #1f1f1f;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: #777; }
.newsletter-form button {
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--green-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  margin-top: 40px;
  border-top: 1px solid #262626;
  font-size: 0.85rem;
  color: #888;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #888; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green); }

/* ------------------------ LEGAL PAGE ------------------------------ */
.legal-page { padding: 140px 0 80px; }
.legal-header { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.legal-header .eyebrow {
  display: inline-block;
  color: var(--green-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.legal-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  margin: 0 0 10px;
}
.legal-header h1 strong { font-weight: 700; }
.legal-lead {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1rem;
}
.legal-prose h2 {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 36px 0 10px;
}
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul { margin: 0 0 14px; padding-left: 22px; }
.legal-prose li { margin-bottom: 4px; }
.legal-prose a { color: var(--green-dark); text-decoration: underline; }
.legal-prose a:hover { color: var(--green); }
.legal-prose strong { color: var(--ink); font-weight: 600; }

/* ----------------------- CONFERENCE PAGE -------------------------- */
.page-hero {
  position: relative;
  padding: 150px 0 48px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, var(--green-glow), transparent 60%);
  z-index: -1;
  opacity: 0.7;
}
.page-hero .eyebrow {
  color: var(--green-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  margin: 14px 0 18px;
}
.page-hero h1 strong { font-weight: 700; }
.page-hero p {
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

.conf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 40px 0;
}
.conf-item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: transform var(--transition), box-shadow var(--transition);
}
.conf-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.conf-item .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}
.conf-item h3 { margin: 0 0 10px; font-size: 1.2rem; font-weight: 600; }
.conf-item p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.conf-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  margin: 64px 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center;
}
.conf-cta h2 { margin: 0 0 12px; font-size: 1.8rem; font-weight: 400; }
.conf-cta h2 strong { font-weight: 700; }
.conf-cta p { margin: 0; opacity: 0.95; }
.conf-cta .btn {
  background: #fff;
  color: var(--green-dark);
  justify-self: end;
}
.conf-cta .btn:hover { background: var(--green-soft); }

/* --------- CONFERENCE: STORY & REFERENCES --------- */
.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 48px;
  align-items: start;
}
.story-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  position: sticky;
  top: 110px;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-text p {
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.story-text p strong { color: var(--ink); }
.story-text p em { color: var(--green-dark); font-style: italic; }

.ref-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ref-list li > a,
.ref-list li > span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 42px 18px 22px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.ref-list li > a::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.1rem;
  transition: transform var(--transition);
}
.ref-list li > a:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.ref-list li > a:hover::after { transform: translateY(-50%) translateX(4px); }

.ref-logo {
  flex-shrink: 0;
  width: 96px;
  height: 84px;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 10px;
  overflow: hidden;
}
.ref-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.ref-logo--dark { background: #1c2a3f; }

.ref-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.conf-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 56px 0 0;
}
.conf-gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
}
.conf-gallery img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.conf-gallery figcaption {
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: #fff;
  border-top: 1px solid #eee;
}
@media (max-width: 720px) {
  .conf-gallery { grid-template-columns: 1fr; }
  .conf-gallery img { height: 240px; }
}
.ref-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}
.ref-meta {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

/* --------------------------- RESPONSIVE --------------------------- */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 16px 24px;
  }
  .main-nav.open ul { flex-direction: column; gap: 14px; }
  .menu-toggle { display: block; }
  .header-actions .btn { padding: 10px 16px; font-size: 14px; }
  .header-actions .linkedin-btn { display: none; }

  .mission-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-intro { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .values-portrait { max-width: 180px; margin: 0 auto; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid .card-wide { grid-column: span 2; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .conf-grid { grid-template-columns: 1fr; }
  .conf-cta { grid-template-columns: 1fr; padding: 28px; }
  .conf-cta .btn { justify-self: start; }
  .story-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-image { position: static; aspect-ratio: 16/10; max-height: 360px; }
  .ref-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid .card-wide { grid-column: span 1; }
  .header-inner { padding: 12px 16px; }
  .hero { padding: 110px 0 32px; }
  .page-hero { padding: 110px 0 32px; }
  .clients-track { gap: 32px; }
}
