/* We_Are_Explorer — Design system */
:root {
  --bg: #06060a;
  --bg-elevated: #0c0c14;
  --bg-card: #101018;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 212, 255, 0.35);
  --accent: #00d4ff;
  --accent-dim: rgba(0, 212, 255, 0.12);
  --accent-glow: rgba(0, 212, 255, 0.25);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-soft: #64748b;
  --font: "Inter", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
  display: block;
}

/* Contenu SEO injecté côté serveur — remplacé par app.js après hydratation */
.seo-prerender {
  padding-block: 2rem;
  max-width: 42rem;
}

.seo-prerender h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0 0 1rem;
}

.seo-prerender h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.75rem;
}

.seo-prerender ul {
  padding-left: 1.2rem;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.25rem;
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  pointer-events: none;
}

.site-header__bar {
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  pointer-events: auto;
}

.site-header.is-scrolled .site-header__bar {
  background: rgba(6, 6, 10, 0.92);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.logo__img {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.footer-brand .logo__img {
  height: 42px;
  max-width: 240px;
}

.nav-desktop {
  display: none;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--text);
}

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #06060a;
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 36px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  background: var(--accent-dim);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 109;
  background: rgba(6, 6, 10, 0.55);
  backdrop-filter: blur(2px);
}

.nav-backdrop.is-visible {
  display: block;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  background: var(--bg);
  padding: 1.25rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  padding: 0.85rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.nav-mobile a.is-active {
  color: var(--accent);
}

.nav-mobile__cta {
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

.hero-copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-copy h1,
.hero-copy .hero-lead,
.hero-copy .eyebrow {
  max-width: 100%;
}

.hero-inner > *,
.featured-project__content,
.project-card__body,
.domain-card,
.approach-step,
.value-card {
  min-width: 0;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim), transparent 50%);
}

.hero-metric {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-metric div {
  flex: 1;
  min-width: 100px;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(6, 6, 10, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
}

.hero-metric strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
}

.hero-metric span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
}

/* Value cards */
.value-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
}

.value-benefit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.value-card p:last-child {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Projects */
.projects-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.45rem 1rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.project-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.project-card__media {
  aspect-ratio: 16/10;
  background: var(--bg-elevated);
  overflow: hidden;
  position: relative;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.project-card:hover .project-card__media img {
  transform: scale(1.05);
}

.project-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent-dim), var(--bg-elevated));
}

.project-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.project-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.project-block {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.project-block strong {
  display: block;
  color: var(--text-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.project-block p {
  margin: 0;
  color: var(--text-muted);
}

.project-card__link {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

/* Impact */
.impact-section {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.impact-item {
  text-align: center;
}

.impact-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.impact-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Partners */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.partner-pill {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.partner-pill:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-block h3 {
  font-size: 1rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.about-block p {
  margin: 0;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--accent-dim), var(--bg-card));
}

.cta-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.cta-band p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 28rem;
  margin-inline: auto;
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 22rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin: 0 0 1rem;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s;
}

.social-links a:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.social-links img {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

/* Page hero */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 2rem;
  max-width: 100%;
  box-sizing: border-box;
}

.page-hero__inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
  max-width: 100%;
}

.page-hero .hero-lead,
.page-hero .eyebrow {
  max-width: 100%;
}

/* Detail */
.project-detail {
  padding: calc(var(--header-h) + 2rem) 0 4rem;
}

.detail-hero {
  margin-bottom: 3rem;
}

.detail-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  aspect-ratio: 21/9;
  background: var(--bg-card);
}

.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-cover--brand {
  aspect-ratio: auto;
  max-height: none;
  padding: 1.5rem;
  background: linear-gradient(145deg, #f5e6dc, #c9a88a 45%, #8b5e4a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-cover--brand img {
  width: auto;
  max-width: min(100%, 320px);
  height: auto;
  max-height: min(70vw, 280px);
  object-fit: contain;
}

.project-detail .hero-lead {
  max-width: 40rem;
}

.detail-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.contact-aside {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.contact-aside h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.contact-aside__lead {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-aside__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-aside__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
}

.contact-aside__list a {
  color: var(--accent);
  font-weight: 500;
  word-break: break-word;
}

.contact-aside__list a:hover {
  text-decoration: underline;
}

.contact-aside__social {
  margin-top: 0.5rem;
}

.contact-form {
  max-width: none;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-status {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.form-status.error {
  color: #f87171;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.text-center {
  text-align: center;
}

.section-cta-link {
  margin-top: 2rem;
}

/* Sector pills (hero) */
.sector-pills {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
}

.sector-pill {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border-hover);
  background: rgba(6, 6, 10, 0.6);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.sector-pill:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.hero-visual__caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
}

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

/* Domains */
.domains-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.domain-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.domain-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.domain-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.domain-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.domain-card__digital {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Approach */
.approach-steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .approach-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.approach-step {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}

.approach-step__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.approach-step h3 {
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.approach-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Featured project */
.featured-project {
  display: grid;
  gap: 2rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-hover);
  background: linear-gradient(135deg, var(--accent-dim), var(--bg-card));
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.featured-project:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .featured-project {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.featured-project__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.featured-project__domain {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.featured-project h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.featured-project p {
  margin: 0;
  color: var(--text-muted);
  max-width: 36rem;
}

.featured-project__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.featured-project__visual {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.featured-project__visual--cover {
  width: 160px;
  height: 160px;
  background: linear-gradient(145deg, #f5e6dc, #c9a88a 40%, #8b5e4a);
}

.featured-project__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
}

.featured-project__letter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}

.projects-mosaic {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .projects-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coming-soon-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  opacity: 0.85;
  transition: border-color 0.25s, opacity 0.25s;
}

.coming-soon-card:hover {
  border-color: var(--border-hover);
  opacity: 1;
}

.coming-soon-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.coming-soon-card h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.coming-soon-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.coming-soon-card__status {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

.vision-section {
  padding: 5rem 0;
  background: linear-gradient(160deg, var(--accent-dim) 0%, var(--bg) 60%);
  border-block: 1px solid var(--border);
}

.vision-inner {
  max-width: 42rem;
}

.vision-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.vision-inner p {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.team-card__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 1rem;
  border: 2px solid var(--border);
}

.team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 2px solid var(--border);
}

.team-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
}

.team-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.team-card__role {
  font-weight: 500;
  color: var(--accent);
}

.team-card__bio {
  margin-top: 0.65rem !important;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.team-sections {
  display: grid;
  gap: 2.5rem;
}

.team-subsection__title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  text-align: center;
}

.project-card__summary {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.expertise-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-media {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .project-media {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-media__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.project-media__item img,
.project-media__item video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.project-media__item--video video {
  object-fit: contain;
  background: #0a0a0a;
}

/* ——— Accueil (landing) ——— */
.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.hero--landing {
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  padding-bottom: 4rem;
}

.hero--landing .hero-inner {
  width: 100%;
  flex: 1;
}

.home-pillars-section {
  padding: 3.5rem 0;
}

.home-pillars-tag {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 1.5rem;
}

.home-pillars {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .home-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-pillar {
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.home-pillar__icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.home-pillar h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}

.home-pillar p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.home-explore-section {
  padding: 4rem 0;
}

.home-explore-header {
  margin-inline: auto;
  max-width: 28rem;
}

.home-explore {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .home-explore {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-explore__card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  min-height: 100%;
}

.home-explore__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.home-explore__icon {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.home-explore__card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.home-explore__card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-explore__link {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.home-final-cta {
  padding: 4rem 0 5rem;
}

.cta-band--home {
  padding: 3rem 2rem;
  text-align: center;
}

.cta-band--home .hero-actions {
  flex-wrap: wrap;
}

.page-subtitle {
  color: var(--text-muted);
  font-weight: 600;
}
