@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;1,600&display=swap");

/* Nesisen — design system (static) */
:root {
  --ink: #0c1222;
  --ink-soft: #1e293b;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --bg: #f1f4f9;
  --bg-deep: #e8edf6;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --accent: #0f766e;
  --accent-hover: #0d9488;
  --accent-dim: rgba(15, 118, 110, 0.12);
  --violet: #5b21b6;
  --violet-dim: rgba(91, 33, 182, 0.1);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 4px 24px rgba(15, 23, 42, 0.12);
  --max: 1120px;
  --header-h: 72px;
  --gutter: clamp(1rem, 4.5vw, 2.5rem);
  --font: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

picture {
  display: block;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@supports (overflow: clip) {
  html {
    overflow-x: clip;
  }
}

::selection {
  background: rgba(15, 118, 110, 0.22);
  color: var(--ink);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 0.96rem + 0.35vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink-soft);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(15, 118, 110, 0.09), transparent 55%),
    radial-gradient(900px 500px at 95% 0%, rgba(91, 33, 182, 0.07), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: min(calc(100% - var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex: 1;
  min-width: 0;
}

.lang-switch {
  display: inline-flex;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}

.lang-switch__btn {
  font: inherit;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.55rem;
  min-width: 2.35rem;
  min-height: 2.25rem;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
}

.lang-switch__btn.is-active {
  background: var(--accent-dim);
  color: var(--accent);
}

.lang-switch__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 3.2vw, 1.35rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}

.site-logo__mark {
  width: clamp(28px, 6vw, 32px);
  height: clamp(28px, 6vw, 32px);
  flex-shrink: 0;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.25);
}

.site-logo:hover {
  color: var(--accent);
}

.site-logo:hover .site-logo__mark {
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
}

.site-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a.is-active {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0d9488 45%, #0e7490 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.4);
}

.btn--ghost {
  background: var(--surface);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: rgba(15, 118, 110, 0.35);
  color: var(--accent);
}

@media (max-width: 880px) {
  .btn {
    min-height: 2.75rem;
  }

  /*
   * backdrop-filter crée un bloc de conteneur pour les descendants position:fixed.
   * .site-nav est dans le header : le menu se plaçait par rapport au header / au document,
   * pas au viewport — invisible en bas de page quand le scroll est verrouillé sur body.
   */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--surface);
  }

  /* Contenu sous le header seulement : le bandeau (logo + menu) reste visible au verrouillage */
  body.nav-open .page-scroll-root {
    z-index: 1;
  }

  /* Scroll verrouillé via JS sur .page-scroll-root — évite les bugs iOS / Android */
  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 45;
    max-height: min(calc(100dvh - var(--header-h) - 0.5rem), calc(100vh - var(--header-h) - 0.5rem));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem max(1.25rem, env(safe-area-inset-right)) 1.25rem max(1.25rem, env(safe-area-inset-left));
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
    min-height: 3rem;
  }

  .site-nav .btn--primary {
    width: 100%;
    min-height: 3rem;
  }
}

/* —— Typography —— */
.pro-hero__title,
.pro-section__title,
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0 0 1rem;
}

.pro-hero__title {
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
  max-width: 26ch;
}

@media (max-width: 900px) {
  .pro-hero__title {
    max-width: none;
    text-wrap: unset;
  }
}

.pro-hero__text {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 48ch;
}

.pro-hero__copy .pro-lead {
  margin-bottom: 0.85rem;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.pro-kicker {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.pro-lead {
  font-size: clamp(1rem, 0.95rem + 0.45vw, 1.125rem);
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 52ch;
}

@media (max-width: 640px) {
  .pro-lead {
    max-width: none;
  }
}

/* —— Sections —— */
.pro-section {
  padding: clamp(2.25rem, 5.5vw, 5rem) 0;
}

.pro-section--tight {
  padding-top: 2rem;
}

.pro-section--surface {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.pro-section--dark {
  background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 55%, #134e4a 100%);
  color: #e2e8f0;
}

.pro-section--dark h1,
.pro-section--dark h2,
.pro-section--dark h3 {
  color: #f8fafc;
}

.pro-section--dark .pro-kicker {
  color: #5eead4;
}

.pro-section--dark .pro-lead,
.pro-section--dark p {
  color: #cbd5e1;
}

/* —— Hero —— */
.pro-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.pro-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.pro-hero__grid > * {
  min-width: 0;
}

@media (max-width: 900px) {
  .pro-hero__grid {
    grid-template-columns: 1fr;
  }
}

.pro-hero__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--surface);
}

/* —— Cards & grids —— */
.pro-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.pro-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (max-width: 640px) {
  .pro-grid-3 {
    grid-template-columns: 1fr;
  }

  .pro-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .pro-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@keyframes pro-card-enter {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pro-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.5rem 1.5rem 1.65rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.pro-card[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
}

.pro-card[data-reveal].is-revealed {
  animation: pro-card-enter 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: auto;
}

.pro-card[data-reveal].is-revealed:nth-child(1) {
  animation-delay: 0.04s;
}

.pro-card[data-reveal].is-revealed:nth-child(2) {
  animation-delay: 0.14s;
}

.pro-card[data-reveal].is-revealed:nth-child(3) {
  animation-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .pro-card[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .pro-card[data-reveal].is-revealed {
    animation: none;
  }
}

.pro-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(15, 118, 110, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border-color: rgba(15, 118, 110, 0.28);
}

.pro-card[data-reveal]:not(.is-revealed):hover {
  transform: translateY(32px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border-color: var(--line);
}

.pro-card__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pro-card:hover .pro-card__icon {
  transform: scale(1.12) translateY(-4px);
}

.pro-card h3 {
  transition: color 0.25s ease;
}

.pro-card:hover h3 {
  color: var(--accent);
}

.pro-section--dark .pro-card:hover h3 {
  color: #99f6e4;
}

.pro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 480px) {
  .pro-card {
    padding: 1.2rem 1.15rem 1.35rem;
  }
}

@media (hover: none) {
  .pro-card:hover {
    transform: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    border-color: var(--line);
  }

  .pro-card:hover .pro-card__icon {
    transform: none;
  }

  .pro-card:hover h3 {
    color: var(--ink);
  }

  .pro-section--dark .pro-card:hover h3 {
    color: #f8fafc;
  }
}

/* —— Split layouts —— */
.pro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.35rem, 4vw, 3rem);
  align-items: center;
}

.pro-split > * {
  min-width: 0;
}

@media (max-width: 900px) {
  .pro-split {
    grid-template-columns: 1fr;
  }
}

.pro-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* —— Accordion (details) —— */
.pro-acc {
  --acc-dur: 0.58s;
  --acc-ease: cubic-bezier(0.33, 1, 0.68, 1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 0.65rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.3s var(--acc-ease),
    box-shadow 0.45s var(--acc-ease);
}

.pro-acc summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  transition:
    background 0.35s var(--acc-ease, ease),
    color 0.3s var(--acc-ease, ease);
}

.pro-acc summary::-webkit-details-marker {
  display: none;
}

.pro-acc summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform var(--acc-dur, 0.58s) var(--acc-ease, ease);
}

.pro-acc[open] summary::after {
  transform: rotate(-135deg);
}

.pro-acc__collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--acc-dur, 0.58s) var(--acc-ease, ease);
}

.pro-acc[open] > .pro-acc__collapse {
  grid-template-rows: 1fr;
}

.pro-acc__collapse > .pro-acc__body {
  overflow: hidden;
  min-height: 0;
  transform: translateY(-8px);
  transition: transform var(--acc-dur, 0.58s) var(--acc-ease, ease);
}

.pro-acc[open] > .pro-acc__collapse > .pro-acc__body {
  transform: translateY(0);
  transition-delay: 0.05s;
}

.pro-acc .pro-acc__body {
  padding: 0.5rem 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.pro-acc .pro-acc__body p {
  margin: 0 0 0.65rem;
}

.pro-acc .pro-acc__body p:last-child {
  margin-bottom: 0;
}

.pro-acc summary:hover {
  background: rgba(15, 118, 110, 0.06);
}

.pro-acc[open] {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07);
}

.pro-acc[open] summary {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.1) 0%, rgba(15, 118, 110, 0.02) 100%);
  color: var(--accent);
  border-bottom: 1px solid var(--line);
}

.pro-acc__n {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-dim);
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.35rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--acc-dur, 0.58s) var(--acc-ease, ease),
    color var(--acc-dur, 0.58s) var(--acc-ease, ease);
}

.pro-acc[open] .pro-acc__n {
  background: var(--accent);
  color: #fff;
}

.pro-acc__t {
  flex: 1;
  text-align: left;
  font-size: 1.02rem;
  line-height: 1.35;
  word-break: break-word;
  hyphens: auto;
}

.pro-acc__lead {
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .pro-acc {
    --acc-dur: 0.01ms;
  }

  .pro-acc__collapse,
  .pro-acc__collapse > .pro-acc__body,
  .pro-acc summary::after,
  .pro-acc__n {
    transition: none;
  }

  .pro-acc__collapse > .pro-acc__body {
    transform: none;
    transition-delay: 0s;
  }
}

/* —— Bloc « Pourquoi nous choisir » (accueil) —— */
.pro-why__head {
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 2.85rem);
}

.pro-why__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0.4rem 0 0;
  line-height: 1.22;
}

@media (min-width: 901px) {
  .pro-why__showcase {
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
  }
}

.pro-why__project {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.2rem;
  color: var(--ink);
}

.pro-why__project-meta {
  margin: 0 0 1.05rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pro-why__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 22px 56px rgba(15, 23, 42, 0.11),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  background: linear-gradient(155deg, rgba(15, 118, 110, 0.09), rgba(91, 33, 182, 0.05));
  padding: 11px;
}

.pro-why__frame img {
  border-radius: calc(var(--radius-lg) - 8px);
  width: 100%;
  height: auto;
  display: block;
}

.pro-why__caption {
  margin: 1.2rem 0 1.1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

/* —— Pricing —— */
.pro-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.25rem);
  align-items: stretch;
}

@media (max-width: 640px) {
  .pro-pricing {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .pro-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pro-price-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3.5vw, 1.75rem) clamp(1.15rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  min-width: 0;
}

.pro-price-card--featured {
  border-color: rgba(15, 118, 110, 0.45);
  background: linear-gradient(180deg, #fff 0%, #f0fdfa 100%);
}

.pro-price-card h3 {
  margin-top: 0;
}

.pro-price-card .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0.5rem 0 1rem;
}

.pro-price-card > .btn {
  margin-bottom: 1rem;
}

.pro-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.pro-checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.pro-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 10px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* —— Contact form —— */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
  display: block;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  font: inherit;
  padding: 0.75rem 1rem;
  min-height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.contact-form textarea {
  min-height: clamp(10rem, 28vh, 12rem);
  resize: vertical;
}

.form-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Page Contact — visuel plein cadre : cadre un peu moins « haut » que le PNG 2/3 + cover = zoom (marges blanches rognées) */
.page-contact .pro-split__media {
  display: grid;
  place-items: stretch;
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 3 / 4;
  max-height: min(760px, 90vh);
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(75% 55% at 50% 22%, rgba(15, 118, 110, 0.11), transparent 68%),
    linear-gradient(160deg, var(--surface) 0%, var(--bg-deep) 100%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.page-contact .pro-split__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  object-fit: cover;
  object-position: center 32%;
  mix-blend-mode: normal;
  filter: none;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: #94a3b8;
  padding: 3rem env(safe-area-inset-right, 0) max(1.5rem, env(safe-area-inset-bottom, 0px)) env(safe-area-inset-left, 0);
  margin-top: 0;
}

.site-footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.site-footer a:hover {
  color: #5eead4;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f1f5f9;
  margin: 0 0 1rem;
}

.footer-col p,
.footer-col ul {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.footer-col--brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

@media (max-width: 800px) {
  .footer-col--brand {
    justify-content: flex-start;
  }
}

.footer-wordmark {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 3.15rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #f1f5f9;
  line-height: 1;
  margin: 0.35rem 0 0;
  background: linear-gradient(135deg, #ecfdf5 0%, #5eead4 45%, #e9d5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@supports not (background-clip: text) {
  .footer-wordmark {
    color: #e2e8f0;
    -webkit-text-fill-color: unset;
  }
}

/* —— Cookie bar —— */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem max(1.25rem, env(safe-area-inset-right, 0)) max(1rem, env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-left, 0));
  background: rgba(15, 23, 42, 0.95);
  color: #e2e8f0;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar p {
  margin: 0;
  max-width: 52ch;
}

.cookie-bar button {
  font: inherit;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  min-height: 2.75rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.cookie-bar button:hover {
  background: var(--accent-hover);
}

/* —— Utils —— */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-lg {
  margin-bottom: 2rem;
}

.stack-sm > * + * {
  margin-top: 0.5rem;
}

/* —— Motion — pages intérieures (header + hero, comme l’accueil) —— */
@keyframes page-header-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-agence .site-header,
.page-prix .site-header,
.page-projets .site-header,
.page-contact .site-header {
  animation: page-header-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-agence .pro-agence-hero__title,
.page-agence .pro-agence-hero__intro,
.page-agence .pro-agence-hero__visual,
.page-prix .pro-prix-hero__title,
.page-prix .pro-prix-hero__intro,
.page-prix .pro-prix-hero__visual,
.page-projets .pro-projets-hero__title,
.page-projets .pro-projets-hero__intro {
  opacity: 0;
  animation: page-hero-fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-agence .pro-agence-hero__title {
  animation-delay: 0.06s;
}

.page-agence .pro-agence-hero__intro {
  animation-delay: 0.14s;
}

.page-agence .pro-agence-hero__visual {
  animation-delay: 0.22s;
}

.page-prix .pro-prix-hero__title {
  animation-delay: 0.06s;
}

.page-prix .pro-prix-hero__intro {
  animation-delay: 0.14s;
}

.page-prix .pro-prix-hero__visual {
  animation-delay: 0.22s;
}

.page-projets .pro-projets-hero__title {
  animation-delay: 0.06s;
}

.page-projets .pro-projets-hero__intro {
  animation-delay: 0.14s;
}

.page-contact .pro-section .pro-split > div:first-child > .pro-hero__title,
.page-contact .pro-section .pro-split > div:first-child > .pro-lead,
.page-contact .pro-section .pro-split > div:first-child > .contact-form,
.page-contact .pro-section .pro-split > div:first-child > .form-note,
.page-contact .pro-section .pro-split > .pro-split__media {
  opacity: 0;
  animation: page-hero-fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-contact .pro-section .pro-split > div:first-child > .pro-hero__title {
  animation-delay: 0.06s;
}

.page-contact .pro-section .pro-split > div:first-child > .pro-lead {
  animation-delay: 0.12s;
}

.page-contact .pro-section .pro-split > div:first-child > .contact-form {
  animation-delay: 0.18s;
}

.page-contact .pro-section .pro-split > div:first-child > .form-note {
  animation-delay: 0.24s;
}

.page-contact .pro-section .pro-split > .pro-split__media {
  animation-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  .page-agence .site-header,
  .page-prix .site-header,
  .page-projets .site-header,
  .page-contact .site-header,
  .page-agence .pro-agence-hero__title,
  .page-agence .pro-agence-hero__intro,
  .page-agence .pro-agence-hero__visual,
  .page-prix .pro-prix-hero__title,
  .page-prix .pro-prix-hero__intro,
  .page-prix .pro-prix-hero__visual,
  .page-projets .pro-projets-hero__title,
  .page-projets .pro-projets-hero__intro,
  .page-contact .pro-section .pro-split > div:first-child > .pro-hero__title,
  .page-contact .pro-section .pro-split > div:first-child > .pro-lead,
  .page-contact .pro-section .pro-split > div:first-child > .contact-form,
  .page-contact .pro-section .pro-split > div:first-child > .form-note,
  .page-contact .pro-section .pro-split > .pro-split__media {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
