/* GÉNÉRÉ — feuille de style sur-mesure. */
:root {
  --ink: #111111;
  --paper: #f4f0e8;
  --white: #fffdf8;
  --acid: #e7f94f;
  --tomato: #ff684f;
  --blue: #243fe5;
  --line: 2px solid var(--ink);
  --font-display: Syne, system-ui, sans-serif;
  --font-body: Manrope, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --step--1: 0.78rem;
  --step-0: 1rem;
  --step-1: 1.18rem;
  --step-2: 1.5rem;
  --step-3: 2rem;
  --step-4: 2.55rem;
  --step-5: 3.5rem;
  --space-1: 0.5rem;
  --space-2: 0.8rem;
  --space-3: 1.25rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6.5rem;
  --shell: 86rem;
  --shadow: 7px 7px 0 var(--ink);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-style: double;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.85rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.08;
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  gap: var(--space-3);
  padding: 1rem max(1rem, calc((100% - var(--shell)) / 2));
  background: var(--white);
  border-bottom: var(--line);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  min-width: 0;
}

.site-nav ul,
.site-nav > div > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  box-shadow: inset 0 -0.65em 0 var(--acid);
}

.site-footer {
  padding: var(--space-5) max(1rem, calc((100% - var(--shell)) / 2));
  color: var(--white);
  background: var(--ink);
  border-top: 2px solid var(--ink);
}

.footer-grid {
  display: grid;
  gap: var(--space-4);
}

.footer-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 800;
  text-transform: uppercase;
}

.footer-note,
.footer-legal {
  margin: 0;
  color: #dedbd4;
  font-size: 0.88rem;
}

.footer-nav ul,
.footer-nav > div > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
}

.section-shell,
.hero-split,
.page-intro,
.manifesto-band,
.contact-layout {
  width: min(100%, var(--shell));
  margin-inline: auto;
}

.section-shell,
.page-intro,
.contact-layout {
  padding: var(--space-6) 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 2px;
  background: currentColor;
  content: '';
}

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: var(--space-4);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.2rem;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--tomato);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  background: var(--blue);
  box-shadow: 7px 7px 0 var(--ink);
  text-decoration: none;
  transform: translate(-2px, -2px);
}

.button--light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--acid);
}

.text-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-home {
  background: var(--acid);
  border-bottom: var(--line);
}

.hero-split {
  display: grid;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-5) 1rem;
}

.hero-copy h1 {
  margin-bottom: var(--space-3);
}

.hero-copy .lede {
  margin-bottom: 0;
}

.hero-media {
  padding: 0 1rem var(--space-5);
}

.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--tomato);
  border: var(--line);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.media-frame:hover img {
  transform: scale(1.025);
}

.media--43 {
  aspect-ratio: 4/3;
}

.media--169 {
  aspect-ratio: 16/9;
}

.media--34 {
  aspect-ratio: 3/4;
}

.media--11 {
  aspect-ratio: 1/1;
}

.ticker {
  overflow: hidden;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-bottom: var(--line);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.statement {
  background: var(--white);
  border-bottom: var(--line);
}

.statement-grid {
  display: grid;
  gap: var(--space-4);
}

.statement-title {
  color: var(--blue);
}

.indexed-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: var(--line);
}

.indexed-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: var(--line);
}

.indexed-list span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
}

.indexed-list strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.feature-split {
  border-bottom: var(--line);
}

.split-grid {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}

.split-copy {
  align-self: center;
}

.split-copy h2 {
  margin-bottom: var(--space-3);
}

.acid-panel {
  background: var(--acid);
}

.tomato-panel {
  background: var(--tomato);
}

.blue-panel {
  color: var(--white);
  background: var(--blue);
}

.cta-strip {
  border-bottom: var(--line);
}

.cta-grid {
  display: grid;
  gap: var(--space-4);
  align-items: end;
}

.cta-grid p {
  font-size: var(--step-1);
}

.page-intro-section {
  background: var(--white);
  border-bottom: var(--line);
}

.page-intro {
  display: grid;
  gap: var(--space-4);
}

.page-intro h1 {
  color: var(--blue);
}

.page-intro-copy {
  font-size: var(--step-1);
}

.menu-section {
  background: var(--paper);
  border-bottom: var(--line);
}

.menu-grid {
  display: grid;
  gap: var(--space-3);
  align-items: start;
}

.menu-card {
  min-height: 100%;
  padding: var(--space-4);
  background: var(--white);
  border: var(--line);
}

.menu-card:nth-child(2) {
  background: var(--acid);
}

.menu-card:nth-child(3) {
  color: var(--white);
  background: var(--blue);
}

.menu-card .number {
  display: block;
  margin-bottom: var(--space-5);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 700;
}

.menu-card h2 {
  margin-bottom: var(--space-3);
  font-size: 1.65rem;
}

.note-band {
  color: var(--white);
  background: var(--ink);
  border-bottom: var(--line);
}

.note-band .section-shell {
  display: grid;
  gap: var(--space-3);
}

.note-band strong {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.1;
}

.editorial-pair {
  background: var(--white);
  border-bottom: var(--line);
}

.editorial-grid {
  display: grid;
  gap: var(--space-4);
  align-items: start;
}

.editorial-copy {
  padding-top: var(--space-2);
}

.editorial-copy h2 {
  margin-bottom: var(--space-3);
}

.manifesto-section {
  background: var(--tomato);
  border-bottom: var(--line);
}

.manifesto-band {
  padding: var(--space-6) 1rem;
}

.manifesto-band blockquote {
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.manifesto-band cite {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.principles {
  background: var(--paper);
  border-bottom: var(--line);
}

.principles-grid {
  display: grid;
  gap: var(--space-3);
  align-items: start;
}

.principle {
  padding: var(--space-4);
  background: var(--white);
  border: var(--line);
}

.principle h3 {
  margin-bottom: var(--space-2);
}

.principle-marker {
  display: block;
  margin-bottom: var(--space-4);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 700;
}

.contact-hero {
  background: var(--acid);
  border-bottom: var(--line);
}

.contact-layout {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}

.contact-copy h1 {
  margin-bottom: var(--space-3);
}

.contact-form-panel {
  padding: var(--space-4);
  background: var(--white);
  border: var(--line);
  box-shadow: var(--shadow);
}

.contact-form-panel label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form-panel input,
.contact-form-panel textarea,
.contact-form-panel select {
  width: 100%;
  min-height: 3rem;
  margin-bottom: 1rem;
  padding: 0.7rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 0;
  font: inherit;
}

.contact-form-panel textarea {
  min-height: 9rem;
}

.contact-form-panel button,
.contact-form-panel input[type='submit'] {
  width: auto;
  margin: 0;
  padding: 0.8rem 1.2rem;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.visit-section {
  background: var(--white);
  border-bottom: var(--line);
}

.visit-grid {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}

.info-grid {
  display: grid;
  gap: var(--space-3);
  align-items: start;
}

.info-card {
  padding: var(--space-4);
  border: var(--line);
}

.info-card:first-child {
  background: var(--tomato);
}

.info-card:last-child {
  background: var(--acid);
}

.info-card h2 {
  margin-bottom: var(--space-2);
  font-size: 1.45rem;
}

.final-call {
  color: var(--white);
  background: var(--blue);
}

.final-call .section-shell {
  display: grid;
  gap: var(--space-4);
}

.final-call h2 {
  color: var(--white);
}

@media (min-width: 42rem) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .site-nav ul,
  .site-nav > div > ul {
    justify-content: flex-end;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }

  .statement-grid,
  .cta-grid,
  .page-intro,
  .editorial-grid,
  .visit-grid,
  .final-call .section-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-grid,
  .principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifesto-band blockquote {
    font-size: 2.45rem;
  }
}

@media (min-width: 62rem) {
  h1 {
    font-size: var(--step-5);
  }

  h2 {
    font-size: var(--step-4);
  }

  .site-header {
    position: sticky;
    top: 0;
    padding-block: 1.1rem;
  }

  .section-shell,
  .page-intro,
  .contact-layout {
    padding: var(--space-7) 2rem;
  }

  .hero-split {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: calc(100vh - 5rem);
  }

  .hero-copy {
    padding: var(--space-7) 2rem;
  }

  .hero-media {
    display: flex;
    align-items: center;
    padding: var(--space-5) 2rem var(--space-5) 0;
  }

  .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-7);
  }

  .split-grid--reverse .media-frame {
    order: 2;
  }

  .contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .manifesto-band {
    padding: var(--space-7) 2rem;
  }

  .manifesto-band blockquote {
    font-size: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
