:root {
  --bg: #f4f1ea;
  --bg-deep: #ebe6db;
  --ink: #0b1c2c;
  --ink-soft: #3a4a58;
  --ink-faint: #6b7884;
  --accent: #1f5f8b;
  --accent-soft: rgba(31, 95, 139, 0.12);
  --line: rgba(11, 28, 44, 0.1);
  --radius: 999px;
  --font: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --shadow: 0 24px 60px rgba(11, 28, 44, 0.08);
}

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

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(31, 95, 139, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(180, 140, 80, 0.1), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.5rem 0.75rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1100px;
  margin: 0 auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.logo {
  display: block;
  height: clamp(1.75rem, 4vw, 2.25rem);
  width: auto;
  object-fit: contain;
}



.locale {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 42rem;
  padding: clamp(1.5rem, 5vw, 3rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-weight: 550;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}

.lede {
  margin: 0;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.55;
}

.lede-fr {
  margin: 1.1rem 0 0;
  color: var(--ink-faint);
  font-size: 0.98rem;
  line-height: 1.5;
  font-style: italic;
}

.foot {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.foot p {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.9rem;
}

@media (max-width: 520px) {
  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero > * {
    animation: rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero > *:nth-child(2) { animation-delay: 60ms; }
  .hero > *:nth-child(3) { animation-delay: 120ms; }
  .hero > *:nth-child(4) { animation-delay: 180ms; }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
