
:root {
  --paper: #f5f1e8;
  --ink: #151515;
  --muted: #6e6b64;
  --line: rgba(21,21,21,.18);
  --indigo: #3156dd;
  --vermillion: #ef5e46;
  --leaf: #3f8460;
  --sun: #e7bd31;
  --max: 1380px;
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed",
             "DejaVu Sans Condensed", "Liberation Sans Narrow", sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("assets/paper-texture-user.webp");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .72;
  mix-blend-mode: multiply;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 128px;
  padding: 26px clamp(20px, 4vw, 64px) 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(245,241,232,.95);
  backdrop-filter: blur(12px);
}

.brand {
  font-family: var(--display);
  font-stretch: condensed;
  font-size: 29px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: .22em;
  text-indent: .22em;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.8vw, 24px);
  font-size: 16px;
}

.main-nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover { border-color: var(--ink); }

.nav-dot {
  color: var(--indigo);
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}


.hero {
  position: relative;
  width: 100%;
  height: calc(100svh - 128px);
  min-height: 580px;
  overflow: hidden;
  background: #d8d3c9;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.hero-stamp {
  position: absolute;
  right: clamp(18px, 3vw, 44px);
  bottom: clamp(18px, 3vw, 38px);
  background: var(--paper);
  padding: 9px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) 0;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--indigo);
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, .featured-copy h3 {
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 800;
}

h1 {
  margin-bottom: 38px;
  font-size: clamp(58px, 7.5vw, 110px);
  line-height: .88;
  letter-spacing: -.018em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(50px, 6vw, 88px);
  line-height: .9;
  letter-spacing: -.012em;
}

.intro {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.portrait-card { margin: 0; }
.portrait-card > img {
  width: 100%;
  aspect-ratio: .76;
  object-fit: cover;
}
.portrait-signature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
}
.monogram {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.portrait-card figcaption {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--muted);
}

.lead {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(18px, 1.75vw, 25px);
  line-height: 1.52;
  color: #292823;
}
.lead em { color: var(--indigo); }

.political-softness {
  max-width: 700px;
  margin: -4px 0 24px;
  padding-left: 18px;
  border-left: 2px solid var(--vermillion);
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.18;
  letter-spacing: .002em;
}

.micro-copy {
  margin-bottom: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, .55fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 58px;
}

.section-note {
  margin: 0;
  max-width: 530px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

/* SHOP — volontairement conservé */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 24px;
}

.product-card h3 {
  margin: 15px 0 5px;
  font-size: 16px;
  letter-spacing: -.02em;
}
.product-card > p {
  margin-bottom: 13px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}
.product-meta strong { font-size: 13px; }
.product-meta span { color: var(--muted); }

.product-placeholder {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.32), rgba(255,255,255,0)),
    var(--paper);
}
.product-placeholder::before,
.product-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid currentColor;
  opacity: .74;
}
.product-placeholder span {
  z-index: 2;
  padding: 8px 10px;
  background: var(--paper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}
.mark-card { color: var(--vermillion); }
.mark-card::before { width: 46%; height: 60%; transform: rotate(-7deg); }
.mark-card::after { width: 46%; height: 60%; transform: rotate(7deg); }
.mark-poster { color: var(--indigo); }
.mark-poster::before { width: 54%; height: 72%; }
.mark-poster::after { width: 38%; height: 56%; transform: translate(18%, 12%); }
.mark-patch { color: var(--leaf); }
.mark-patch::before { width: 48%; height: 48%; border-radius: 50%; }
.mark-patch::after { width: 56%; height: 38%; border-radius: 50%; transform: rotate(-23deg); }
.mark-bag { color: var(--sun); }
.mark-bag::before { width: 52%; height: 56%; transform: translateY(8%); }
.mark-bag::after { width: 24%; height: 24%; border-bottom: none; border-radius: 50% 50% 0 0; transform: translateY(-98%); }
.mark-sticker { color: var(--vermillion); }
.mark-sticker::before { width: 48%; height: 48%; border-radius: 58% 42% 55% 45%; transform: rotate(13deg); }
.mark-sticker::after { width: 28%; height: 28%; border-radius: 50%; transform: translate(52%, -55%); }
.mark-print { color: var(--indigo); }
.mark-print::before { width: 62%; height: 62%; transform: rotate(4deg); }
.mark-print::after { width: 62%; height: 62%; transform: rotate(-4deg); }

/* ATELIER — trois colonnes façon cascade */
.atelier-masonry {
  columns: 3 300px;
  column-gap: 22px;
}
.atelier-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
  vertical-align: top;
}
.atelier-item img {
  width: 100%;
  height: auto;
}
.atelier-item figcaption {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.video-card {
  position: relative;
  border: 0;
  padding: 0;
  background: #d8d3c9;
  overflow: hidden;
  color: #fff;
  font: inherit;
  text-align: left;
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.02) 55%);
}
.play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 3px;
  backdrop-filter: blur(5px);
}
.video-label {
  position: absolute;
  z-index: 2;
  left: 15px;
  bottom: 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.short-text-card {
  min-height: 280px;
  padding: clamp(26px, 4vw, 56px) clamp(26px, 4vw, 44px);
  display: flex;
  align-items: flex-end;
  position: relative;
}
.short-text-card::before {
  content: "“";
  position: absolute;
  left: 4px;
  top: -10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(90px, 10vw, 150px);
  line-height: 1;
  color: rgba(49, 86, 221, .22);
}
.short-text-card blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
  color: #2d2c28;
}

/* OEUVRES */
.featured-work {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  margin-bottom: clamp(70px, 9vw, 130px);
}
.featured-work figure { margin: 0; }
.featured-work figure img {
  width: 100%;
  aspect-ratio: .83;
  object-fit: cover;
}
.featured-copy h3 {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: .95;
  letter-spacing: -.012em;
}
.featured-copy > p:not(.eyebrow):not(.work-tech) {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  color: #33312c;
}
.work-tech {
  margin-top: 30px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .11em;
}

.work-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.work img {
  width: 100%;
  aspect-ratio: .82;
  object-fit: cover;
}
.work-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  align-items: baseline;
}
.work-caption h3 {
  margin: 0;
  font-size: 13px;
}
.work-caption p {
  margin: 0;
  font-size: 10px;
  text-align: right;
  color: var(--muted);
}

/* CARNETS */
.note-layout {
  display: grid;
  grid-template-columns: 1.15fr .7fr;
  gap: clamp(40px, 10vw, 160px);
  align-items: end;
}
.note-layout p {
  margin: 0;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.footer {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 30px;
  font-size: 11px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.made-with { text-align: right; }

@media (max-width: 1000px) {
  .intro,
  .featured-work {
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
  }

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

  .atelier-masonry { columns: 2 280px; }

  .footer {
    grid-template-columns: 1fr 1fr;
    padding: 42px 0;
  }
  .made-with { text-align: left; }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 118px;
    padding: 18px 14px 9px;
  }

  .brand { font-size: 24px; }
  .main-nav {
    width: 100%;
    gap: 7px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .hero {
    height: calc(100svh - 118px);
    min-height: 500px;
  }
  .hero img { object-position: 48% 52%; }
  .hero-stamp { right: 13px; bottom: 13px; }

  .section,
  .footer {
    width: calc(100% - 28px);
  }
  .section { padding: 76px 0; }

  .intro,
  .featured-work,
  .section-heading,
  .note-layout {
    grid-template-columns: 1fr;
  }

  .intro { gap: 48px; }
  .portrait-card { order: 1; }
  .intro-copy { order: 2; }

  h1 { font-size: clamp(56px, 16vw, 78px); }
  h2 { font-size: clamp(48px, 14vw, 68px); }

  .lead { font-size: 18px; }

  .product-grid,
  .work-thumbnails {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .atelier-masonry { columns: 1; }

  .featured-work { gap: 36px; }
  .featured-copy h3 { font-size: clamp(38px, 12vw, 56px); }

  .work img { aspect-ratio: auto; }

  .footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 42px 0;
  }
}

@media (max-width: 720px) {
  .nav-dot { font-size: 12px; }
  .political-softness {
    font-size: 24px;
    margin-top: 0;
  }
}


.main-nav a.boutique-link {
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}


.featured-copy h3,
.featured-work .featured-copy h3 {
  font-family: Georgia, "Times New Roman", serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: clamp(34px, 3.9vw, 56px);
  line-height: 1.04;
  letter-spacing: 0 !important;
}


.product-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: #ddd0bf;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.serif-switch {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--indigo);
}

.serif-note-title {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em !important;
  line-height: 1.02;
}

.product-photo {
  background: transparent;
}

.product-photo img {
  object-fit: contain;
  background: transparent;
}


.footer a, .footer span {
  line-height: 1.4;
}
