@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: #FFFFFF;
    color: #171717;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}
.page {
    max-width: 1450px;
    margin: 0 auto;
    padding: 10px 10px 10px;
}
.back-to-index {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin: 0 0 42px;
    padding: 9px 15px;
    border: 1px solid #171717;
    color: #171717;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 160ms ease, color 160ms ease;
}
.back-to-index:hover,
.back-to-index:focus-visible {
    background: #171717;
    color: #FFFFFF;
}
.back-to-index:focus-visible {
    outline: 3px solid rgba(23, 23, 23, 0.25);
    outline-offset: 3px;
}
.kicker {
    margin: 0 0 16px;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.experience {
  max-width: 720px;
  margin: 3rem auto;
}

h1 {
    max-width: 850px;
    margin: 0 0 55px;
    font-size: clamp(2.8rem, 4vw, 3.5rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.045em;
}

h1.text-end {
  margin-left: auto;
  text-align: right;
  font-weight: 600; /* plus léger que bold */
  font-size: 3.1rem; /* un peu plus compact */
  letter-spacing: 0.5px;
}
/* Dates seules */
.meta-date {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
figure {
    margin: 0;
}
.hero img {
    display: block;
    width: 100%;
    height: auto;
}

/* pour mettre deux images */

.double-image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 2rem 0;
}

.double-image figure {
  margin: 0;
}

.double-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .double-image {
    grid-template-columns: 1fr;
  }
}

.intro {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 8%;
    margin: 70px 0 110px;
    align-items: start;
}
.intro p {
    margin: 0;
    max-width: 520px;
    font-size: 1.12rem;
}
.statement {
    max-width: 900px;
    margin: 0 auto 120px;
    font-size: clamp(2.2rem, 2vw, 4.5rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.035em;
}
.text-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 28px;
    row-gap: 80px;
    margin-bottom: 120px;
}
.text-block {
    font-size: 1.08rem;
}
.text-block p {
    margin: 0 0 1.2em;
}
.block-one {
    grid-column: 2 / span 4;
}
.block-two {
    grid-column: 7 / span 5;
}
.small-title {
    margin: 0 0 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.color-statement {
    grid-column: 1 / span 7;
    margin-top: 20px;
    font-size: clamp(2rem, 2.8vw, 3.7rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
}
.block-three {
    grid-column: 8 / span 4;
}
.final {
    max-width: 900px;
    margin: 30px 0 0 18%;
    padding-top: 45px;
    border-top: 2px solid #171717;
    font-size: clamp(1.6rem, 2.7vw, 2.8rem);
    line-height: 1.22;
    font-weight: 600;
}

@media (max-width: 850px) {
.page {
    padding: 40px 24px 70px;
}
.back-to-index {
    margin-bottom: 34px;
}
h1 {
    margin-bottom: 35px;
}
.intro {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 45px 0 75px;
}
.statement {
    margin-bottom: 80px;
}
.text-grid {
    display: block;
    margin-bottom: 70px;
}
.text-block, .color-statement {
    margin-bottom: 55px;
}
.final {
    margin-left: 0;
}
}
