@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,700;1,9..144,900&family=Raleway:ital,wght@0,300;0,400;0,600;1,300&family=Overpass+Mono:wght@300;400&display=swap");

:root {
  --lin: #e8e0cc;
  --lin-mid: #d4c8b0;
  --lin-deep: #c0b090;
  --ink: #1e1408;
  --ink-soft: #3a2c14;
  --ink-muted: #8a7050;
  --miel: #c07a28;
  --ambre: #d4901a;
  --jaune: #c8a830;
  --brule: #b85c18;
  --fougere: #4a7a3a;
  --mousse: #3a6848;
  --olive: #6a8a40;
  --prune: #7a4a8a;
  --violet: #5a3870;
  --shadow-soft: 0 12px 30px rgba(30, 20, 8, .08);
  --shadow-card: 0 18px 40px rgba(30, 20, 8, .12);
  --container: min(1120px, calc(100% - 40px));
  --font-title: "Fraunces", Georgia, serif;
  --font-body: "Raleway", Arial, sans-serif;
  --font-mono: "Overpass Mono", monospace;
}

* { box-sizing: border-box; }
*::before,
*::after { box-sizing: inherit; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  background-color: var(--lin);
  background-image:
    repeating-linear-gradient(0deg, rgba(120, 100, 60, .028) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(90deg, rgba(80, 110, 70, .022) 0 2px, transparent 2px 8px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, 900px auto;
  background-blend-mode: normal, normal, multiply;
}
img,
video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button,
input,
textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--miel); outline-offset: 4px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.section--compact { padding: 64px 0; }
.paper-frame {
  position: relative;
  border-top: 1px solid var(--lin-mid);
  border-bottom: 1px solid var(--lin-mid);
}
.paper-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(192, 176, 144, .45);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(232, 224, 204, .94);
  border-bottom: 1px solid var(--lin-mid);
  backdrop-filter: blur(12px);
}
.header-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: var(--container);
  margin: 0 auto;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--font-title);
  font-size: 22px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}
.brand-text span {
  margin-top: 2px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 7.8px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .36em;
  text-transform: uppercase;
}
.brand-logo { justify-self: center; }
.brand-logo img { width: 72px; mix-blend-mode: multiply; }
.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.site-nav a { padding: 6px 0; border-bottom: 1px solid transparent; }
.site-nav a:hover { color: var(--miel); border-color: currentColor; }
.menu-toggle {
  display: none;
  padding: 6px 12px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--lin-mid);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.instagram-link {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
}
.instagram-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
}
.instagram-link .instagram-dot { fill: var(--ink); stroke: none; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.hero-media,
.hero-video,
.hero-overlay { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  background: linear-gradient(to bottom, rgba(8, 5, 2, .05), rgba(8, 5, 2, .25) 50%, rgba(8, 5, 2, .78));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 68px;
}
.hero-title {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(54px, 9vw, 116px);
  font-style: italic;
  font-weight: 900;
  line-height: .88;
}
.hero-title span { color: var(--jaune); }
.hero-lead {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
}
.action-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .20em;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .2s;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: var(--lin); background: var(--miel); border-color: var(--brule); }
.button-primary:hover { background: var(--brule); }
.button-secondary { color: rgba(255, 255, 255, .84); background: transparent; border-color: rgba(255, 255, 255, .4); }
.button-secondary:hover { background: rgba(255, 255, 255, .08); }

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(42px, 6vw, 76px);
  font-style: italic;
  font-weight: 900;
  line-height: .9;
}
.section-intro {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 300;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}
.section-head--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.section-head--centered .section-intro { margin-right: auto; margin-left: auto; }
.section-head--centered .section-rule { width: min(360px, 56vw); }
.section-head--presentation {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  margin-bottom: 58px;
}
.section-head--presentation .section-kicker {
  margin-bottom: 14px;
  font-size: 10.5px;
  letter-spacing: .32em;
}
.section-rule {
  width: min(320px, 30vw);
  height: 1px;
  background: var(--lin-deep);
  opacity: .65;
}

.presentation-layout,
.presentation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .44fr);
  gap: 34px;
  align-items: stretch;
}
.presentation-copy { display: flex; align-items: stretch; }
.presentation-grid--text-only {
  grid-template-columns: minmax(0, 680px);
}
.text-stack { display: grid; gap: 18px; }
.panel {
  background: rgba(232, 224, 204, .78);
  border: 1px solid var(--lin-mid);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}
.panel h3,
.panel h2 { margin: 0 0 12px; font-family: var(--font-title); font-style: italic; font-size: 28px; line-height: 1; }
.panel p { margin: 0 0 12px; color: var(--ink-soft); font-weight: 300; }
.panel p:last-child { margin-bottom: 0; }
.presentation-panel {
  position: relative;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 30px 34px 30px 38px;
  background:
    linear-gradient(180deg, rgba(232, 224, 204, .84), rgba(212, 200, 176, .38)),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, 900px auto;
  background-blend-mode: normal, multiply;
  border-color: rgba(192, 176, 144, .72);
  box-shadow: var(--shadow-soft);
}
.presentation-panel::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 18px;
  width: 3px;
  background: linear-gradient(180deg, var(--miel), var(--mousse));
  opacity: .82;
}
.presentation-panel h3 {
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 31px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}
.presentation-panel p {
  max-width: 740px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: 0;
}
.presentation-panel em {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
}
.meta-list { display: grid; gap: 12px; margin: 0; }
.meta-list div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding-top: 12px; border-top: 1px solid var(--lin-mid); }
.meta-list dt { color: var(--ink-muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .20em; text-transform: uppercase; }
.meta-list dd { margin: 0; color: var(--ink-soft); }
.portrait-card {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: end;
  margin: 0;
  isolation: isolate;
}
.portrait-card img { width: min(360px, 100%); mix-blend-mode: multiply; }
.portrait-card--photo {
  justify-self: end;
  align-self: start;
  width: min(410px, 100%);
  transform: translateY(18px);
}
.portrait-card--photo::before,
.portrait-card--photo::after {
  content: "";
  position: absolute;
  inset: -18px;
  pointer-events: none;
  z-index: 1;
}
.portrait-card--photo::before {
  background:
    linear-gradient(90deg, var(--lin) 0%, rgba(232, 224, 204, .34) 10%, rgba(232, 224, 204, 0) 28%),
    linear-gradient(180deg, var(--lin) 0%, rgba(232, 224, 204, 0) 14%, rgba(232, 224, 204, 0) 82%, var(--lin) 100%),
    linear-gradient(270deg, var(--lin) 0%, rgba(232, 224, 204, 0) 18%);
  mix-blend-mode: normal;
}
.portrait-card--photo::after {
  background-image:
    repeating-linear-gradient(0deg, rgba(120, 100, 60, .035) 0 2px, transparent 2px 6px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, 900px auto;
  opacity: .18;
  mix-blend-mode: multiply;
}
.portrait-card--photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 4.35;
  object-fit: cover;
  object-position: 52% 54%;
  filter: sepia(.08) saturate(.96) contrast(1.02) brightness(1.02);
  mix-blend-mode: multiply;
  opacity: .96;
  -webkit-mask-image:
    radial-gradient(ellipse 76% 84% at 57% 46%, #000 56%, rgba(0, 0, 0, .86) 72%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 12%, #000 92%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 76% 84% at 57% 46%, #000 56%, rgba(0, 0, 0, .86) 72%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 12%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.caption { color: var(--ink-muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .22em; text-align: center; text-transform: uppercase; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.project-card {
  --project-color: var(--miel);
  display: grid;
  grid-template-rows: 330px 1fr;
  min-height: 440px;
  overflow: hidden;
  background: rgba(212, 200, 176, .46);
  border: 1px solid var(--lin-mid);
  box-shadow: var(--shadow-soft);
  transition: transform .22s, box-shadow .22s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  mix-blend-mode: normal;
}
.project-card-body { padding: 20px; border-top: 3px solid var(--project-color); background: var(--lin); }
.project-card h3 { margin: 0 0 8px; font-family: var(--font-title); font-size: 28px; font-style: italic; line-height: 1; }
.project-card p { margin: 0; color: var(--ink-soft); font-size: 14px; font-weight: 300; }
.project-card .project-type { color: var(--project-color); }
.project-type { display: block; margin-bottom: 8px; font-family: var(--font-mono); font-size: 8px; letter-spacing: .20em; text-transform: uppercase; }
.project-card--girls { --project-color: var(--brule); }
.project-card--hiero { --project-color: var(--violet); }
.project-card--songe { --project-color: var(--mousse); }
.project-card--premier { --project-color: var(--ambre); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; }
.contact-form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input,
textarea {
  width: 100%;
  border: 1px solid var(--lin-mid);
  background: rgba(232, 224, 204, .42);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}
textarea { min-height: 150px; resize: vertical; }
input::placeholder,
textarea::placeholder { color: var(--ink-muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
input:focus,
textarea:focus { border-color: var(--prune); }

.site-footer { border-top: 1px solid var(--lin-mid); padding: 28px 0 42px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; width: var(--container); margin: 0 auto; }
.footer-copy { color: var(--ink-muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .20em; text-transform: uppercase; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--ink-muted); font-family: var(--font-title); font-size: 15px; font-style: italic; font-weight: 700; }
.footer-links a:hover { color: var(--miel); }

.project-page { min-height: 100vh; }
.project-hero {
  padding: 62px 0 72px;
  background:
    linear-gradient(115deg, rgba(192, 122, 40, .88), rgba(212, 144, 26, .58)),
    radial-gradient(circle at 18% 20%, rgba(232, 224, 204, .34), transparent 34%),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, 900px auto;
  background-blend-mode: normal, soft-light, multiply;
  border-bottom: 1px solid rgba(184, 92, 24, .38);
}
.back-link { display: inline-block; margin-bottom: 34px; color: var(--ink-muted); font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .20em; text-transform: uppercase; }
.back-link:hover { color: var(--project-color, var(--miel)); }
.project-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 42px; align-items: center; }
.project-media {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 12px;
  background: rgba(232, 224, 204, .76);
  border: 1px solid rgba(192, 176, 144, .75);
  box-shadow: var(--shadow-card);
}
.project-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  padding: 0;
  mix-blend-mode: normal;
}
.project-copy { display: grid; gap: 18px; }
.project-title { margin: 0; font-family: var(--font-title); font-size: clamp(44px, 7vw, 86px); font-style: italic; font-weight: 900; line-height: .9; }
.project-copy .project-type { color: var(--project-color, var(--miel)); }
.project-note-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; }
.project-note { border-top: 3px solid var(--project-color, var(--miel)); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.gallery-item { min-height: 250px; display: grid; place-items: center; margin: 0; overflow: hidden; background: rgba(212, 200, 176, .45); border: 1px solid var(--lin-mid); box-shadow: var(--shadow-soft); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; padding: 0; mix-blend-mode: normal; }
.media-placeholder { padding: 22px; text-align: center; color: var(--ink-muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.play-icon { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 12px; border-radius: 50%; background: var(--project-color, var(--miel)); color: var(--lin); font-size: 18px; }
.project-girls { --project-color: var(--brule); }
.project-hiero { --project-color: var(--violet); }
.project-songe { --project-color: var(--mousse); }
.project-premier { --project-color: var(--ambre); }
.project-songe .girls-hero-layout {
  grid-template-columns: minmax(0, .82fr) minmax(300px, .74fr);
  gap: 72px;
}
.project-songe .girls-hero h1 {
  font-size: clamp(52px, 7vw, 92px);
}

.girls-page {
  background: var(--lin);
  color: var(--ink);
}
.girls-page .section {
  background: var(--lin);
  color: var(--ink);
}
.girls-hero {
  padding: 18px 0 54px;
  background-color: var(--lin);
  background:
    repeating-linear-gradient(0deg, rgba(120, 100, 60, .028) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(90deg, rgba(80, 110, 70, .022) 0 2px, transparent 2px 8px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, 900px auto;
  background-blend-mode: normal, normal, multiply;
  border-bottom: 1px solid var(--lin-mid);
}
.girls-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  gap: 42px;
  align-items: start;
}
.girls-hero-content {
  min-width: 0;
  padding-bottom: 0;
}
.girls-back-link {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.girls-back-link:hover { color: var(--project-color, var(--brule)); }
.girls-hero .project-type {
  color: var(--project-color, var(--brule));
  font-size: 12px;
  letter-spacing: .24em;
}
.girls-hero h1 {
  max-width: 620px;
  margin: 0 0 20px;
  font-family: var(--font-title);
  font-size: clamp(54px, 8vw, 108px);
  font-style: italic;
  font-weight: 900;
  line-height: .95;
}
.girls-hero p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 300;
}
.girls-hero-photo {
  margin: 0;
  padding: 12px;
  background: rgba(232, 224, 204, .76);
  border: 1px solid rgba(192, 176, 144, .75);
  box-shadow: var(--shadow-card);
}
.girls-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.girls-hero-photo figcaption {
  margin-top: 10px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.girls-intro-section {
  padding-top: 84px;
}
.girls-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 28px;
  align-items: stretch;
}
.girls-summary {
  padding: 0 0 0 18px;
  border-left: 3px solid var(--project-color, var(--brule));
}
.girls-summary h2,
.girls-feature-grid h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(34px, 4.8vw, 62px);
  font-style: italic;
  font-weight: 900;
  line-height: .95;
}
.girls-summary p,
.girls-feature-grid p {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 300;
}
.girls-tech-card {
  align-self: end;
  padding: 28px;
  background: #f3eee2;
  border: 1px solid var(--lin-mid);
  box-shadow: var(--shadow-soft);
}
.girls-tech-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}
.girls-tech-card div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--lin-mid);
}
.girls-tech-card dt {
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.girls-tech-card dd {
  margin: 0;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}
.girls-tech-card a { border-bottom: 1px solid currentColor; }
.girls-scenography {
  background: #f0eadc !important;
}
.girls-feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: center;
}
.girls-feature-photo {
  margin: 0;
  background: #111;
  box-shadow: var(--shadow-card);
}
.girls-feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.girls-press-section {
  background: #16100c !important;
  color: var(--lin) !important;
}
.girls-press-quote {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 54px 42px 42px;
  border: 1px solid rgba(232, 224, 204, .22);
  background: rgba(232, 224, 204, .06);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
}
.girls-press-quote::before {
  content: "“";
  position: absolute;
  top: -22px;
  left: 28px;
  color: var(--project-color, var(--brule));
  font-family: var(--font-title);
  font-size: 110px;
  font-style: italic;
  line-height: 1;
}
.girls-press-quote p {
  margin: 0 0 22px;
  color: rgba(232, 224, 204, .94);
  font-family: var(--font-title);
  font-size: clamp(30px, 4.8vw, 58px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.06;
}
.girls-press-quote cite {
  display: block;
  color: rgba(232, 224, 204, .62);
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .20em;
  text-transform: uppercase;
  text-align: right;
}

@media (max-width: 980px) {
  .projects-grid,
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .presentation-layout,
  .presentation-grid,
  .section-head--presentation,
  .contact-grid,
  .project-hero-grid,
  .girls-intro-grid,
  .girls-hero-layout,
  .girls-feature-grid { grid-template-columns: 1fr; }
  .project-note-grid { grid-template-columns: 1fr; }
  .presentation-layout { gap: 28px; }
  .girls-hero-content { padding-bottom: 0; }
}
@media (max-width: 760px) {
  .header-row { grid-template-columns: 1fr auto 1fr; min-height: 70px; }
  .brand-logo img { width: 58px; }
  .brand-text { font-size: 19px; }
  .brand-text span { font-size: 7px; }
  .header-right { gap: 10px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 16px;
    background: rgba(232, 224, 204, .98);
    border: 1px solid var(--lin-mid);
    box-shadow: var(--shadow-soft);
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 11px 0; }
  .instagram-link { display: none; }
  .hero { min-height: 84vh; }
  .hero-title { font-size: clamp(44px, 16vw, 72px); }
  .section { padding: 68px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .section-head--presentation { margin-bottom: 34px; }
  .section-rule { width: 100%; }
  .projects-grid,
  .gallery-grid,
  .form-grid { grid-template-columns: 1fr; }
  .project-card { grid-template-rows: auto 1fr; min-height: auto; }
  .project-card img { height: auto; aspect-ratio: 4 / 3; }
  .presentation-panel {
    margin-top: 24px;
    padding: 28px 22px;
  }
  .presentation-panel::before { display: none; }
  .presentation-panel p {
    font-size: 15px;
    line-height: 1.68;
  }
  .portrait-card--photo {
    justify-self: center;
    align-self: start;
    width: min(330px, 86vw);
    transform: translateY(0);
  }
  .portrait-card--photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 4.25;
  }
  .panel { padding: 22px; }
  .paper-frame::before { inset: 12px; }
  .girls-hero { padding: 24px 0 46px; }
  .girls-back-link { margin-bottom: 28px; font-size: 11px; }
  .girls-hero .project-type { font-size: 10px; }
  .girls-hero h1 { font-size: clamp(48px, 16vw, 78px); }
  .girls-hero-photo { padding: 8px; }
  .girls-summary { padding-left: 14px; }
  .girls-tech-card div { grid-template-columns: 1fr; gap: 4px; }
  .girls-press-quote { padding: 46px 24px 30px; }
  .girls-press-quote::before { left: 18px; font-size: 86px; }
  .girls-press-quote cite { text-align: left; }
}

/* Direction artistique renforcée - accueil */
:root {
  --lin: #eee4cf;
  --lin-mid: #d7c79e;
  --lin-deep: #a88c5a;
  --paper-light: #f6eedf;
  --paper-warm: #ead9b4;
  --ink: #1a1008;
  --ink-soft: #392918;
  --ink-muted: #84633e;
  --safran: #c06b16;
  --safran-deep: #9f4212;
  --mousse-deep: #263f2d;
  --olive-deep: #496233;
  --prune-deep: #4c243e;
  --bordeaux: #783018;
  --shadow-soft: 0 18px 46px rgba(36, 23, 8, .10);
  --shadow-card: 0 30px 70px rgba(36, 23, 8, .18);
}

body {
  overflow-x: hidden;
  background-color: var(--lin);
  background-image:
    radial-gradient(ellipse 48vw 34vw at 88% 12%, rgba(192, 107, 22, .12), transparent 68%),
    radial-gradient(ellipse 42vw 30vw at 8% 46%, rgba(38, 63, 45, .11), transparent 70%),
    repeating-linear-gradient(0deg, rgba(89, 67, 32, .034) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(46, 74, 50, .026) 0 1px, transparent 1px 8px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, auto, 980px auto;
}

html { overflow-x: clip; }

::selection {
  color: var(--paper-light);
  background: var(--prune-deep);
}

.site-header {
  background:
    linear-gradient(90deg, rgba(246, 238, 223, .94), rgba(234, 217, 180, .88)),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, 980px auto;
  border-bottom: 1px solid rgba(132, 99, 62, .28);
  box-shadow: 0 12px 32px rgba(36, 23, 8, .06);
}

.header-row { min-height: 82px; }
.brand-text {
  color: var(--ink);
  letter-spacing: .01em;
}
.brand-logo img {
  width: 78px;
  filter: contrast(1.08) saturate(1.05);
}
.site-nav a {
  position: relative;
  border-bottom: 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--safran), var(--mousse-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.site-nav a:hover {
  color: var(--ink);
  border-color: transparent;
}
.site-nav a:hover::after { transform: scaleX(1); }

.hero {
  min-height: calc(100vh - 8px);
  align-items: center;
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  right: -9vw;
  bottom: -15vw;
  width: 54vw;
  height: 34vw;
  border: 1px solid rgba(246, 238, 223, .22);
  border-radius: 58% 42% 48% 52% / 42% 54% 46% 58%;
  background: radial-gradient(ellipse at 44% 42%, rgba(192, 107, 22, .34), transparent 66%);
  transform: rotate(-11deg);
}
.hero::after {
  left: -14vw;
  bottom: -2px;
  width: 72vw;
  height: 84px;
  background: var(--lin);
  clip-path: polygon(0 42%, 16% 62%, 34% 38%, 54% 64%, 75% 36%, 100% 58%, 100% 100%, 0 100%);
  opacity: .98;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 5, 2, .82), rgba(8, 5, 2, .42) 48%, rgba(8, 5, 2, .22)),
    linear-gradient(to bottom, rgba(8, 5, 2, .08), rgba(8, 5, 2, .16) 44%, rgba(8, 5, 2, .78));
}
.hero-content {
  padding: 132px 0 122px;
}
.hero .section-kicker {
  color: rgba(246, 238, 223, .70);
  font-size: 9.5px;
  letter-spacing: .34em;
}
.hero-title {
  max-width: 880px;
  margin-bottom: 24px;
  text-shadow: 0 24px 64px rgba(0, 0, 0, .34);
}
.hero-title span {
  color: #e3a132;
  text-shadow: 0 0 34px rgba(192, 107, 22, .36);
}
.hero-lead {
  max-width: 660px;
  color: rgba(246, 238, 223, .78);
  font-size: clamp(17px, 1.7vw, 22px);
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  border-radius: 0 18px 0 18px;
  box-shadow: 0 12px 30px rgba(36, 23, 8, .12);
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: translateX(-120%);
  transition: transform .36s ease;
}
.button:hover::before { transform: translateX(120%); }
.button-primary {
  color: var(--paper-light);
  background: linear-gradient(135deg, var(--safran), var(--safran-deep));
  border-color: rgba(120, 48, 24, .72);
}
.button-primary:hover { background: linear-gradient(135deg, var(--safran-deep), var(--prune-deep)); }
.button-secondary {
  color: rgba(246, 238, 223, .90);
  border-color: rgba(246, 238, 223, .44);
  background: rgba(26, 16, 8, .12);
  backdrop-filter: blur(8px);
}

main > .section {
  position: relative;
  isolation: isolate;
}
main > .section::before,
main > .section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

#presentation {
  padding: 112px 0 104px;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(ellipse 46vw 28vw at 9% 16%, rgba(38, 63, 45, .15), transparent 68%),
    linear-gradient(180deg, var(--lin) 0%, var(--paper-light) 38%, #ead7ad 100%);
}
#presentation::before {
  top: -42px;
  right: -10vw;
  width: 58vw;
  height: 130px;
  border-top: 1px solid rgba(76, 36, 62, .16);
  background: linear-gradient(90deg, transparent, rgba(76, 36, 62, .13), transparent);
  clip-path: polygon(0 52%, 18% 34%, 42% 60%, 64% 28%, 100% 50%, 100% 100%, 0 100%);
}
#presentation::after {
  left: -13vw;
  bottom: -78px;
  width: 42vw;
  height: 210px;
  border-radius: 48% 52% 46% 54% / 52% 36% 64% 48%;
  background: linear-gradient(145deg, rgba(192, 107, 22, .18), rgba(38, 63, 45, .10));
  transform: rotate(8deg);
}
.paper-frame::before {
  inset: 28px;
  border-color: rgba(132, 99, 62, .18);
}
.section-kicker {
  color: var(--safran-deep);
  font-weight: 400;
}
.section-title {
  color: var(--ink);
  letter-spacing: 0;
}
.section-rule {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--safran), var(--mousse-deep), transparent);
}
.section-head--presentation {
  margin-bottom: 48px;
}
.presentation-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, .44fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.presentation-panel {
  padding: clamp(30px, 4vw, 48px) clamp(28px, 4vw, 52px);
  background:
    linear-gradient(145deg, rgba(246, 238, 223, .94), rgba(234, 217, 180, .72)),
    url("../images/paper-texture-generated.jpg");
  border: 1px solid rgba(132, 99, 62, .26);
  box-shadow: 0 26px 72px rgba(36, 23, 8, .13);
}
.presentation-panel::before {
  top: 30px;
  bottom: 30px;
  left: 22px;
  width: 4px;
  background: linear-gradient(180deg, var(--safran), var(--olive-deep) 55%, var(--prune-deep));
}
.presentation-panel::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: 20px;
  width: 110px;
  height: 62px;
  border: 1px solid rgba(76, 36, 62, .22);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.presentation-panel h3 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4.4vw, 58px);
}
.presentation-panel p {
  font-size: 16.5px;
  line-height: 1.82;
}
.presentation-panel a {
  color: var(--safran-deep);
  border-bottom: 1px solid rgba(159, 66, 18, .42);
}
.portrait-card--photo {
  transform: translateY(-8px);
}
.portrait-card--photo::before {
  background:
    radial-gradient(ellipse at 54% 48%, rgba(246, 238, 223, 0) 42%, rgba(246, 238, 223, .70) 78%, var(--paper-light) 100%),
    linear-gradient(90deg, var(--paper-light) 0%, rgba(246, 238, 223, 0) 21%, rgba(246, 238, 223, 0) 78%, var(--paper-light) 100%);
}
.portrait-card--photo img {
  filter: sepia(.04) saturate(1.10) contrast(1.09) brightness(1.04);
  opacity: 1;
}

#projets {
  padding: 116px 0 124px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ead7ad 0%, #d9c18c 50%, #cba763 100%),
    url("../images/paper-texture-generated.jpg");
  background-blend-mode: normal, multiply;
  border-top: 1px solid rgba(132, 99, 62, .20);
  border-bottom: 1px solid rgba(70, 44, 18, .24);
}
#projets::before {
  top: -2px;
  left: 0;
  width: 100%;
  height: 78px;
  background: var(--paper-light);
  clip-path: polygon(0 0, 100% 0, 100% 28%, 82% 54%, 63% 24%, 42% 58%, 22% 30%, 0 62%);
}
#projets::after {
  right: -11vw;
  bottom: -72px;
  width: 48vw;
  height: 180px;
  background: linear-gradient(135deg, rgba(38, 63, 45, .30), rgba(76, 36, 62, .18));
  border-radius: 60% 40% 56% 44% / 38% 58% 42% 62%;
  transform: rotate(-7deg);
}
#projets .section-head {
  margin-bottom: 52px;
}
#projets .section-title {
  color: var(--ink);
  text-shadow: 0 14px 40px rgba(80, 51, 16, .16);
}
.projects-grid {
  gap: clamp(18px, 2.6vw, 30px);
  align-items: stretch;
}
.project-card {
  position: relative;
  grid-template-rows: 320px 1fr;
  min-height: 470px;
  border: 1px solid rgba(72, 47, 24, .26);
  background: rgba(246, 238, 223, .88);
  box-shadow: 0 20px 54px rgba(69, 47, 18, .14);
}
.project-card:nth-child(even) {
  transform: translateY(26px);
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 82px rgba(36, 23, 8, .24);
}
.project-card:nth-child(even):hover {
  transform: translateY(14px);
}
.project-card::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto;
  height: 132px;
  z-index: 1;
  border: 1px solid rgba(246, 238, 223, .24);
  border-bottom: 0;
  pointer-events: none;
}
.project-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 28px;
  border: 1px solid rgba(76, 36, 62, .28);
  border-radius: 50%;
  opacity: .55;
  transform: rotate(-12deg);
  pointer-events: none;
}
.project-card img {
  filter: saturate(1.08) contrast(1.06);
  transition: transform .45s ease, filter .45s ease;
}
.project-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.14) contrast(1.08);
}
.project-card-body {
  position: relative;
  min-height: 170px;
  padding: 26px 24px 28px;
  background:
    linear-gradient(180deg, rgba(246, 238, 223, .96), rgba(238, 228, 207, .92)),
    url("../images/paper-texture-generated.jpg");
  border-top: 5px solid var(--project-color);
}
.project-card-body::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 42%;
  height: 5px;
  background: var(--ink);
  opacity: .58;
}
.project-card h3 {
  margin-bottom: 12px;
  font-size: clamp(29px, 2.7vw, 36px);
  line-height: .92;
}
.project-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.58;
}
.project-card .project-type {
  font-size: 8.5px;
  letter-spacing: .24em;
}

#contact {
  padding: 118px 0 112px;
  overflow: hidden;
  border: 0;
  color: var(--paper-light);
  background:
    radial-gradient(ellipse 38vw 26vw at 84% 10%, rgba(192, 107, 22, .30), transparent 72%),
    linear-gradient(135deg, #1a1008 0%, #263f2d 56%, #4c243e 100%);
}
#contact::before {
  top: -54px;
  left: -8vw;
  width: 62vw;
  height: 145px;
  background: #cba763;
  clip-path: polygon(0 0, 100% 0, 92% 50%, 68% 28%, 43% 72%, 18% 38%, 0 60%);
}
#contact::after {
  right: -80px;
  bottom: 24px;
  width: 330px;
  height: 180px;
  border: 1px solid rgba(246, 238, 223, .18);
  border-radius: 54% 46% 44% 56% / 44% 58% 42% 56%;
  background: radial-gradient(ellipse at 50% 50%, rgba(246, 238, 223, .07), transparent 66%);
  transform: rotate(-16deg);
}
#contact .section-kicker,
#contact .section-title,
#contact .section-intro {
  color: var(--paper-light);
}
#contact .section-kicker { opacity: .68; }
#contact .section-intro { color: rgba(246, 238, 223, .76); }
#contact .section-rule {
  background: linear-gradient(90deg, rgba(246, 238, 223, .12), var(--safran), rgba(246, 238, 223, .36));
}
.contact-grid {
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 3vw, 34px);
}
#contact .panel {
  color: var(--paper-light);
  background:
    linear-gradient(145deg, rgba(246, 238, 223, .12), rgba(246, 238, 223, .045)),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, 900px auto;
  background-blend-mode: normal, multiply;
  border: 1px solid rgba(246, 238, 223, .18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}
#contact .panel h3 { color: var(--paper-light); }
#contact .meta-list div { border-color: rgba(246, 238, 223, .16); }
#contact .meta-list dt { color: rgba(246, 238, 223, .55); }
#contact .meta-list dd { color: rgba(246, 238, 223, .88); }
#contact input,
#contact textarea {
  color: var(--paper-light);
  background: rgba(246, 238, 223, .08);
  border-color: rgba(246, 238, 223, .22);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
#contact input::placeholder,
#contact textarea::placeholder {
  color: rgba(246, 238, 223, .55);
}
#contact input:focus,
#contact textarea:focus {
  border-color: var(--safran);
  background: rgba(246, 238, 223, .12);
  box-shadow: 0 0 0 3px rgba(192, 107, 22, .16);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 34px 0 48px;
  color: var(--paper-light);
  background: #130c07;
  border-top: 1px solid rgba(246, 238, 223, .12);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(192, 107, 22, .16), transparent 42%, rgba(38, 63, 45, .18)),
    repeating-linear-gradient(90deg, rgba(246, 238, 223, .035) 0 1px, transparent 1px 9px);
  pointer-events: none;
}
.footer-row {
  position: relative;
  z-index: 1;
}
.footer-copy,
.footer-links a {
  color: rgba(246, 238, 223, .68);
}
.footer-links a:hover { color: #e3a132; }

@media (max-width: 980px) {
  .hero-content { padding: 110px 0 96px; }
  .presentation-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .presentation-copy { display: block; }
  .presentation-panel { width: 100%; }
  .project-card:nth-child(even),
  .project-card:nth-child(even):hover { transform: none; }
  .project-card:hover { transform: translateY(-6px); }
  .presentation-layout,
  .contact-grid { gap: 30px; }
}

@media (max-width: 760px) {
  .header-row { min-height: 72px; }
  .site-nav {
    background:
      linear-gradient(145deg, rgba(246, 238, 223, .98), rgba(234, 217, 180, .96)),
      url("../images/paper-texture-generated.jpg");
    border-color: rgba(132, 99, 62, .30);
  }
  .hero { min-height: 86vh; }
  .hero::before {
    right: -32vw;
    width: 90vw;
    height: 54vw;
  }
  .hero::after { height: 52px; }
  .hero-content { padding: 88px 0 76px; }
  .hero-lead { font-size: 16px; }
  .button {
    width: 100%;
    min-height: 44px;
  }
  #presentation,
  #projets,
  #contact { padding: 78px 0; }
  #projets::before { height: 46px; }
  .presentation-panel::after { display: none; }
  .project-card { grid-template-rows: auto 1fr; min-height: auto; }
  .project-card-body { min-height: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Ajustements DA : moins de decor parasite, plus de couleur affiche */
body {
  background-color: #efe1c2;
  background-image:
    radial-gradient(circle at 12% 14%, rgba(232, 104, 29, .14) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 34%, rgba(38, 63, 45, .13) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(192, 107, 22, .08), transparent 28%, rgba(38, 63, 45, .08) 72%, transparent),
    url("../images/paper-texture-generated.jpg");
  background-size: 26px 26px, 34px 34px, auto, 960px auto;
  background-blend-mode: multiply, multiply, normal, multiply;
}

.hero {
  align-items: center;
}
.hero::before,
.hero::after {
  display: none;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 5, 2, .58), rgba(8, 5, 2, .46) 44%, rgba(8, 5, 2, .20)),
    linear-gradient(to bottom, rgba(8, 5, 2, .04), rgba(8, 5, 2, .18) 48%, rgba(8, 5, 2, .70));
}
.hero-content {
  width: min(900px, calc(100% - 40px));
  margin-right: clamp(18px, 3.5vw, 68px);
  margin-left: auto;
  padding: 124px 0 112px;
}
.hero-title {
  max-width: 780px;
}
.hero-title span {
  color: #ffb12f;
}

#presentation {
  padding: 104px 0 96px;
  background:
    radial-gradient(circle at 9% 18%, rgba(232, 104, 29, .18) 0 2px, transparent 3px),
    linear-gradient(180deg, #efe1c2 0%, #f6ead4 42%, #ead4a8 100%),
    url("../images/paper-texture-generated.jpg");
  background-size: 28px 28px, auto, 960px auto;
  background-blend-mode: multiply, normal, multiply;
}
#presentation::before,
#presentation::after,
.presentation-panel::after {
  display: none;
}
.presentation-layout {
  grid-template-columns: minmax(0, .90fr) minmax(360px, .55fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: start;
}
.presentation-copy {
  align-items: flex-start;
}
.presentation-panel {
  max-width: 760px;
  padding: 36px 42px 38px 52px;
  background:
    linear-gradient(180deg, rgba(255, 246, 226, .94), rgba(238, 221, 184, .86)),
    url("../images/paper-texture-generated.jpg");
  box-shadow: 18px 18px 0 rgba(192, 107, 22, .14), 0 24px 62px rgba(36, 23, 8, .12);
}
.presentation-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.9vw, 50px);
}
.presentation-panel p {
  font-size: 15.8px;
  line-height: 1.68;
}
.presentation-panel::before {
  left: 26px;
  top: 34px;
  bottom: 34px;
  background: linear-gradient(180deg, #e8681d, #263f2d);
}
.portrait-card--photo {
  align-self: start;
  justify-self: end;
  width: min(420px, 100%);
  transform: none;
}
.portrait-card--photo::before {
  background:
    linear-gradient(90deg, #f6ead4 0%, rgba(246, 234, 212, 0) 22%, rgba(246, 234, 212, 0) 78%, #f6ead4 100%),
    linear-gradient(180deg, #f6ead4 0%, rgba(246, 234, 212, 0) 16%, rgba(246, 234, 212, 0) 84%, #f6ead4 100%);
}
.portrait-card--photo img {
  filter: saturate(1.18) contrast(1.1) brightness(1.04);
}

#projets {
  background:
    radial-gradient(circle at 18% 20%, rgba(38, 63, 45, .22) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 66%, rgba(86, 33, 61, .18) 0 2px, transparent 3px),
    linear-gradient(180deg, #f0d086 0%, #de9e38 52%, #bc5b20 100%),
    url("../images/paper-texture-generated.jpg");
  background-size: 30px 30px, 42px 42px, auto, 960px auto;
  background-blend-mode: multiply, multiply, normal, multiply;
}
#projets::before,
#projets::after {
  display: none;
}
.project-card::after {
  display: none;
}
.project-card::before {
  border-color: rgba(255, 246, 226, .30);
}
.project-card-body {
  background:
    linear-gradient(180deg, rgba(255, 246, 226, .96), rgba(238, 225, 196, .94)),
    url("../images/paper-texture-generated.jpg");
}

#contact {
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 177, 47, .24) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 62%, rgba(232, 104, 29, .18) 0 2px, transparent 3px),
    linear-gradient(135deg, #171006 0%, #263f2d 54%, #56213d 100%);
  background-size: 28px 28px, 42px 42px, auto;
  background-blend-mode: soft-light, soft-light, normal;
}
#contact::before,
#contact::after {
  display: none;
}
#contact .section-head {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
#contact .section-rule {
  width: min(420px, 70vw);
  margin: 0 auto;
}
.contact-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
#contact .contact-form {
  background:
    linear-gradient(180deg, rgba(255, 246, 226, .96), rgba(238, 225, 196, .92)),
    url("../images/paper-texture-generated.jpg");
  color: var(--ink);
  border: 1px solid rgba(255, 246, 226, .42);
  box-shadow: 18px 18px 0 rgba(255, 177, 47, .20), 0 32px 82px rgba(0, 0, 0, .32);
}
#contact input,
#contact textarea {
  color: var(--ink);
  background: rgba(255, 250, 238, .82);
  border-color: rgba(38, 63, 45, .28);
}
#contact input::placeholder,
#contact textarea::placeholder {
  color: rgba(57, 41, 24, .62);
}
#contact input:focus,
#contact textarea:focus {
  background: #fff8eb;
  border-color: #e8681d;
}

@media (max-width: 980px) {
  .hero-content {
    width: var(--container);
    margin-right: auto;
    margin-left: auto;
  }
  .presentation-layout {
    grid-template-columns: 1fr;
  }
  .portrait-card--photo {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 30px 30px, 38px 38px, auto, 960px auto;
  }
  .hero-content {
    padding: 88px 0 76px;
  }
  .presentation-panel {
    padding: 30px 24px;
    box-shadow: 8px 8px 0 rgba(192, 107, 22, .14), 0 20px 48px rgba(36, 23, 8, .10);
  }
  #contact .contact-form {
    box-shadow: 8px 8px 0 rgba(255, 177, 47, .20), 0 24px 58px rgba(0, 0, 0, .26);
  }
}

/* Ajustements papier original + bords dechirés */
body {
  background-color: #eadfc8;
  background-image:
    linear-gradient(115deg, rgba(232, 104, 29, .08), transparent 34%, rgba(38, 63, 45, .07) 70%, transparent),
    repeating-linear-gradient(0deg, rgba(96, 73, 36, .030) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(70, 96, 58, .022) 0 1px, transparent 1px 9px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, 980px auto;
  background-blend-mode: normal, normal, normal, multiply;
}

#presentation {
  background:
    linear-gradient(180deg, #eadfc8 0%, #f4ead5 42%, #e7d0a2 100%),
    repeating-linear-gradient(0deg, rgba(96, 73, 36, .026) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(70, 96, 58, .020) 0 1px, transparent 1px 10px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, 980px auto;
  background-blend-mode: normal, normal, normal, multiply;
}

#projets {
  background:
    linear-gradient(180deg, rgba(238, 203, 120, .94) 0%, rgba(220, 150, 48, .94) 54%, rgba(185, 86, 31, .96) 100%),
    radial-gradient(ellipse at 20% 24%, rgba(255, 246, 226, .18), transparent 36%),
    radial-gradient(ellipse at 82% 70%, rgba(38, 63, 45, .20), transparent 42%),
    repeating-linear-gradient(0deg, rgba(26, 16, 8, .045) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(38, 63, 45, .050) 0 1px, transparent 1px 10px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, auto, auto, 880px auto;
  background-blend-mode: normal, soft-light, multiply, multiply, multiply, multiply;
}

#contact {
  background:
    linear-gradient(135deg, #171006 0%, #253d2c 54%, #56213d 100%),
    repeating-linear-gradient(0deg, rgba(246, 238, 223, .035) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(255, 177, 47, .045) 0 1px, transparent 1px 12px);
  background-size: auto, auto, auto;
  background-blend-mode: normal, soft-light, soft-light;
}

.presentation-panel,
.orane-bio,
.project-card-body,
#contact .contact-form {
  clip-path: polygon(
    0.7% 0.8%, 8% 0%, 17% 0.6%, 28% 0.1%, 39% 0.9%, 52% 0.2%,
    64% 0.7%, 77% 0.1%, 90% 0.6%, 99.2% 0.2%,
    100% 9%, 99.4% 19%, 100% 31%, 99.3% 44%, 100% 58%,
    99.5% 70%, 100% 83%, 99.1% 99.2%,
    89% 100%, 76% 99.3%, 63% 100%, 49% 99.2%, 36% 100%,
    23% 99.4%, 11% 100%, 0.6% 99.1%,
    0% 88%, 0.8% 76%, 0.1% 64%, 0.7% 51%, 0% 39%,
    0.7% 27%, 0.1% 15%
  );
}

.presentation-panel {
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 34px rgba(36, 23, 8, .12));
  background:
    linear-gradient(180deg, rgba(255, 250, 238, .99), rgba(241, 226, 194, .97)),
    repeating-linear-gradient(0deg, rgba(96, 73, 36, .035) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(70, 96, 58, .026) 0 1px, transparent 1px 10px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, 820px auto;
  background-blend-mode: normal, normal, normal, multiply;
}

.presentation-panel::before {
  display: none;
}

.presentation-panel h3 {
  border-left: 4px solid #e8681d;
  padding-left: 18px;
}

.orane-bio {
  width: min(390px, 100%);
  margin-top: 18px;
  padding: 22px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 1), rgba(238, 222, 190, .98)),
    repeating-linear-gradient(0deg, rgba(96, 73, 36, .04) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(70, 96, 58, .03) 0 1px, transparent 1px 10px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, 820px auto;
  background-blend-mode: normal, normal, normal, multiply;
  color: var(--ink);
  filter: drop-shadow(0 14px 24px rgba(36, 23, 8, .12));
  text-align: left;
}

.orane-bio h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 28px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.orane-bio p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.62;
}

.project-card-body {
  border-top: 0;
  box-shadow: inset 0 5px 0 var(--project-color);
}

.project-card-body::before {
  display: none;
}

#contact .contact-form {
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, .30));
}

@media (max-width: 760px) {
  .orane-bio {
    width: min(330px, 86vw);
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
  }
}

/* Corrections : hero à gauche et textures plus visibles */
.hero-content {
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
  padding: 124px 0 112px;
}
.hero-title,
.hero-lead {
  max-width: 680px;
}

body {
  background-image:
    linear-gradient(115deg, rgba(232, 104, 29, .10), transparent 34%, rgba(38, 63, 45, .08) 70%, transparent),
    radial-gradient(ellipse at 18% 28%, rgba(255, 246, 226, .24), transparent 38%),
    repeating-linear-gradient(0deg, rgba(96, 73, 36, .050) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(70, 96, 58, .035) 0 1px, transparent 1px 8px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, auto, 760px auto;
}

#presentation {
  background:
    linear-gradient(180deg, #eadfc8 0%, #f4ead5 42%, #e4c891 100%),
    radial-gradient(ellipse at 74% 18%, rgba(232, 104, 29, .16), transparent 34%),
    repeating-linear-gradient(0deg, rgba(96, 73, 36, .055) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(70, 96, 58, .038) 0 1px, transparent 1px 8px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, auto, 760px auto;
  background-blend-mode: normal, soft-light, multiply, multiply, multiply;
}

#projets {
  background:
    linear-gradient(180deg, rgba(239, 199, 109, .96) 0%, rgba(219, 141, 35, .97) 52%, rgba(171, 70, 29, .98) 100%),
    radial-gradient(ellipse at 22% 16%, rgba(255, 246, 226, .28), transparent 34%),
    radial-gradient(ellipse at 80% 72%, rgba(38, 63, 45, .24), transparent 42%),
    repeating-linear-gradient(0deg, rgba(26, 16, 8, .070) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(38, 63, 45, .070) 0 1px, transparent 1px 9px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, auto, auto, 720px auto;
  background-blend-mode: normal, soft-light, multiply, multiply, multiply, multiply;
}

.presentation-panel,
.orane-bio,
.project-card-body,
#contact .contact-form {
  background-blend-mode: normal, multiply, multiply, multiply;
}

.presentation-panel {
  background:
    linear-gradient(180deg, rgba(255, 250, 238, .995), rgba(239, 221, 184, .985)),
    radial-gradient(ellipse at 18% 22%, rgba(232, 104, 29, .10), transparent 34%),
    repeating-linear-gradient(0deg, rgba(96, 73, 36, .055) 0 1px, transparent 1px 6px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, 680px auto;
}

.orane-bio,
#contact .contact-form {
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 1), rgba(238, 221, 185, .99)),
    radial-gradient(ellipse at 80% 20%, rgba(38, 63, 45, .10), transparent 36%),
    repeating-linear-gradient(0deg, rgba(96, 73, 36, .060) 0 1px, transparent 1px 6px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, 680px auto;
}

.project-card-body {
  background:
    linear-gradient(180deg, rgba(255, 250, 238, .98), rgba(235, 219, 184, .96)),
    radial-gradient(ellipse at 88% 20%, rgba(232, 104, 29, .10), transparent 38%),
    repeating-linear-gradient(0deg, rgba(96, 73, 36, .050) 0 1px, transparent 1px 6px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, 680px auto;
}

@media (max-width: 760px) {
  .hero-title,
  .hero-lead {
    max-width: 100%;
  }
}

/* Dessins intégrés + corrections lisibilité */
#projets,
#contact {
  position: relative;
}

#projets .container,
#contact .container {
  position: relative;
  z-index: 2;
}

#projets::before,
#projets::after,
#contact::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

#projets::before {
  right: -26px;
  top: 72px;
  width: min(34vw, 430px);
  height: 560px;
  background-image: url("../images/dessin-femme-arbre.jpg");
  mix-blend-mode: multiply;
  opacity: .22;
  transform: rotate(2deg);
}

#projets::after {
  left: min(5vw, 72px);
  bottom: 54px;
  width: min(35vw, 520px);
  height: 300px;
  background-image: url("../images/dessin-rafflesia.jpg");
  mix-blend-mode: multiply;
  opacity: .20;
  transform: rotate(-3deg);
}

#contact::before {
  right: -20px;
  bottom: 28px;
  width: min(34vw, 430px);
  height: 560px;
  background-image: url("../images/dessin-petit-homme-ecorce.jpg");
  filter: invert(1) sepia(.35) saturate(.8);
  mix-blend-mode: screen;
  opacity: .18;
  transform: rotate(2deg);
}

.portrait-card--photo::before,
.portrait-card--photo::after {
  display: none;
}

.orane-bio {
  position: relative;
  z-index: 5;
  opacity: 1;
  color: var(--ink);
  background-color: #fffaf0;
  clip-path: polygon(
    0.6% 0.6%, 11% 0%, 25% .5%, 40% 0%, 57% .6%, 73% 0%, 89% .5%, 99.4% 0.4%,
    100% 16%, 99.6% 31%, 100% 48%, 99.4% 64%, 100% 82%, 99.2% 99.4%,
    82% 100%, 64% 99.4%, 47% 100%, 29% 99.5%, 12% 100%, .6% 99.2%,
    0% 82%, .5% 64%, 0% 48%, .5% 31%, 0% 16%
  );
}

.orane-bio h3,
.orane-bio p {
  position: relative;
  z-index: 2;
  color: var(--ink);
  opacity: 1;
  text-shadow: none;
}

.orane-bio p {
  font-size: 14.5px;
  line-height: 1.58;
}

.presentation-panel a {
  color: inherit;
  border-bottom: 0;
  text-decoration: none;
  font-weight: inherit;
}

@media (max-width: 980px) {
  #projets::before {
    width: 330px;
    height: 430px;
    opacity: .12;
  }

  #projets::after {
    width: 340px;
    height: 210px;
    opacity: .12;
  }

  #contact::before {
    width: 320px;
    height: 420px;
    opacity: .10;
  }
}

/* Retour texture originale + titres encadrés */
body,
#presentation,
#projets,
#contact {
  background-image:
    repeating-linear-gradient(0deg, rgba(120, 100, 60, .032) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(90deg, rgba(80, 110, 70, .026) 0 2px, transparent 2px 8px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, 900px auto;
  background-blend-mode: normal, normal, multiply;
}

body {
  background-color: #eadfc8;
}

#presentation {
  background-color: #eadfc8;
}

#projets {
  background-color: #d9922e;
  background-image:
    linear-gradient(180deg, rgba(242, 199, 103, .86), rgba(188, 83, 29, .88)),
    repeating-linear-gradient(0deg, rgba(80, 43, 15, .052) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(90deg, rgba(32, 68, 43, .046) 0 2px, transparent 2px 8px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, 900px auto;
  background-blend-mode: normal, multiply, multiply, multiply;
}

#contact {
  background-color: #253d2c;
  background-image:
    linear-gradient(135deg, rgba(23, 16, 6, .96), rgba(37, 61, 44, .94) 54%, rgba(86, 33, 61, .94)),
    repeating-linear-gradient(0deg, rgba(246, 238, 223, .045) 0 2px, transparent 2px 7px),
    repeating-linear-gradient(90deg, rgba(255, 177, 47, .040) 0 2px, transparent 2px 9px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, 900px auto;
  background-blend-mode: normal, soft-light, soft-light, multiply;
}

#projets::before,
#projets::after,
#contact::before {
  display: none;
  background-image: none;
}

.section-title {
  display: inline-block;
  width: fit-content;
  justify-self: center;
  padding: .12em .32em .20em;
  border: 2px solid rgba(26, 16, 8, .62);
  background: rgba(255, 250, 238, .26);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

#presentation .section-title {
  border-color: rgba(184, 92, 24, .78);
  background: rgba(255, 250, 238, .32);
}

#projets .section-title {
  border-color: rgba(38, 63, 45, .82);
  background: rgba(255, 246, 226, .24);
}

#contact .section-title {
  border-color: rgba(255, 177, 47, .76);
  background: rgba(255, 246, 226, .08);
}

.section-head--presentation,
.section-head--centered,
#contact .section-head {
  justify-items: center;
}

/* Cadres 70s sobres + mots répétés */
:root {
  --retro-orange: #ee5b1b;
  --retro-red: #b8391d;
  --retro-gold: #f2b42a;
  --retro-lavande: #b8c2df;
  --retro-prune: #5c1748;
}

.section-head,
.projects-grid,
#contact .container {
  position: relative;
  z-index: 2;
}

.section-head {
  overflow: visible;
}

.section-title {
  border: 3px solid var(--retro-prune);
  border-radius: 18px;
  background: rgba(255, 248, 232, .74);
  box-shadow:
    0 0 0 5px var(--retro-orange),
    0 0 0 10px var(--retro-gold),
    0 0 0 15px var(--retro-lavande);
  padding: .16em .44em .23em;
}

#presentation .section-title {
  border-color: var(--retro-prune);
  background: rgba(255, 248, 232, .78);
  box-shadow:
    0 0 0 5px #db7f26,
    0 0 0 10px #f3c24d,
    0 0 0 15px #9fb7a0;
}

#projets .section-title {
  border-color: #263f2d;
  background: rgba(255, 244, 221, .72);
  box-shadow:
    0 0 0 5px var(--retro-orange),
    0 0 0 10px var(--retro-gold),
    0 0 0 15px var(--retro-lavande);
}

#contact .section-title {
  color: #fff4dc;
  border-color: #ffb12f;
  background: rgba(34, 16, 32, .34);
  box-shadow:
    0 0 0 5px #e7581e,
    0 0 0 10px #7b174f,
    0 0 0 15px #f2b42a;
}

#presentation .section-head,
#projets .section-head,
#contact .section-head {
  margin-bottom: clamp(42px, 5vw, 72px);
}

#projets::before,
#contact::before {
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  background: none;
  filter: none;
  pointer-events: none;
  white-space: pre;
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 900;
  line-height: .78;
  letter-spacing: 0;
  opacity: 1;
  z-index: 0;
}

#projets::before {
  content: "Créations\A Créations\A Créations";
  left: clamp(12px, 4vw, 72px);
  top: clamp(68px, 9vw, 130px);
  color: rgba(80, 37, 14, .14);
  font-size: clamp(58px, 10vw, 150px);
  mix-blend-mode: multiply;
  transform: rotate(-1.5deg);
}

#contact::before {
  content: "Contact\A Contact\A Contact";
  left: clamp(16px, 5vw, 90px);
  top: clamp(42px, 8vw, 110px);
  color: rgba(255, 177, 47, .13);
  font-size: clamp(64px, 12vw, 170px);
  mix-blend-mode: screen;
  transform: rotate(-2deg);
}

#projets::after {
  display: none;
}

.projects-grid {
  gap: clamp(36px, 4vw, 56px);
}

.project-card {
  overflow: visible;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  padding: 14px;
  gap: 18px;
}

.project-card:nth-child(even) {
  transform: none;
}

.project-card:hover {
  box-shadow: none;
  transform: translateY(-4px);
}

.project-card:nth-child(even):hover {
  transform: translateY(-4px);
}

.project-card img {
  border: 3px solid var(--retro-prune);
  border-radius: 18px;
  box-shadow:
    0 0 0 4px var(--retro-orange),
    0 0 0 8px var(--retro-gold),
    0 0 0 12px var(--retro-lavande);
}

.project-card-body {
  clip-path: none;
  min-height: 100%;
  border: 3px solid var(--retro-prune);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 237, .95), rgba(235, 221, 192, .91)),
    repeating-linear-gradient(0deg, rgba(74, 47, 20, .035) 0 1px, transparent 1px 5px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, 620px auto;
  background-blend-mode: normal, multiply, multiply;
  box-shadow:
    0 0 0 4px var(--retro-orange),
    0 0 0 8px var(--retro-gold),
    0 0 0 12px var(--retro-lavande),
    0 18px 26px rgba(39, 25, 10, .18);
  padding: clamp(22px, 2.2vw, 30px);
}

.project-card--hiero img,
.project-card--hiero .project-card-body {
  box-shadow:
    0 0 0 4px #7c4b91,
    0 0 0 8px #f2b42a,
    0 0 0 12px #b8c2df,
    0 18px 26px rgba(39, 25, 10, .14);
}

.project-card--songe img,
.project-card--songe .project-card-body {
  box-shadow:
    0 0 0 4px #4d7f52,
    0 0 0 8px #f2b42a,
    0 0 0 12px #ee5b1b,
    0 18px 26px rgba(39, 25, 10, .14);
}

.project-card--premier img,
.project-card--premier .project-card-body {
  box-shadow:
    0 0 0 4px #f2b42a,
    0 0 0 8px #ee5b1b,
    0 0 0 12px #5c1748,
    0 18px 26px rgba(39, 25, 10, .14);
}

.project-card h3 {
  margin-top: 4px;
}

.presentation-panel,
.orane-bio,
#contact .contact-form {
  clip-path: none;
  border: 3px solid var(--retro-prune);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 250, 237, .96), rgba(235, 221, 192, .92)),
    repeating-linear-gradient(0deg, rgba(74, 47, 20, .035) 0 1px, transparent 1px 5px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, 620px auto;
  background-blend-mode: normal, multiply, multiply;
  box-shadow:
    0 0 0 5px #db7f26,
    0 0 0 10px #f3c24d,
    0 0 0 15px #9fb7a0,
    0 20px 34px rgba(39, 25, 10, .16);
}

.orane-bio {
  margin: 22px 10px 0;
}

#contact .contact-form {
  border-color: #ffb12f;
  background:
    linear-gradient(135deg, rgba(255, 248, 231, .97), rgba(230, 216, 184, .94)),
    repeating-linear-gradient(0deg, rgba(74, 47, 20, .04) 0 1px, transparent 1px 5px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, 620px auto;
  background-blend-mode: normal, multiply, multiply;
  box-shadow:
    0 0 0 5px #e7581e,
    0 0 0 10px #7b174f,
    0 0 0 15px #f2b42a,
    0 22px 36px rgba(0, 0, 0, .24);
}

@media (max-width: 780px) {
  .section-title {
    box-shadow:
      0 0 0 4px var(--retro-orange),
      0 0 0 8px var(--retro-gold),
      0 0 0 12px var(--retro-lavande);
  }

  #projets::before,
  #contact::before {
    font-size: clamp(46px, 16vw, 96px);
    opacity: .72;
  }

  .project-card {
    padding: 10px;
  }
}

#presentation .section-title,
#projets .section-title,
#contact .section-title,
.hero-title,
.girls-hero h1,
.girls-summary h2,
.girls-feature-grid h2 {
  color: var(--retro-cream);
  -webkit-text-stroke: 1.15px var(--retro-orange);
  text-shadow:
    3px 0 0 var(--retro-cream),
    4px 0 0 var(--retro-orange),
    7px 0 0 var(--retro-cream),
    8px 0 0 var(--retro-orange);
}

/* Harmonisation 70s globale, sans mots répétés */
:root {
  --retro-cream: #fff4dc;
  --retro-sky: #aebcdd;
  --retro-green: #4f7c4d;
  --retro-ochre: #d8872c;
}

#projets::before,
#contact::before {
  content: "";
  display: none !important;
}

#projets,
#contact,
.girls-hero,
.girls-page .section {
  position: relative;
}

#projets::after,
#contact::after,
.girls-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: min(440px, 42vw);
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      var(--retro-orange) 0 23%,
      var(--retro-gold) 23% 46%,
      var(--retro-sky) 46% 69%,
      var(--retro-prune) 69% 100%);
  box-shadow: 0 8px 0 rgba(255, 244, 220, .38);
  opacity: .88;
}

#projets::after {
  display: block;
  right: clamp(20px, 7vw, 108px);
  top: clamp(84px, 9vw, 150px);
  transform: rotate(-2deg);
}

#contact::after {
  right: clamp(18px, 7vw, 96px);
  bottom: clamp(46px, 7vw, 88px);
  transform: rotate(2deg);
}

.girls-hero::before {
  left: clamp(18px, 6vw, 84px);
  top: 96px;
  transform: rotate(-2deg);
}

.section-title,
.hero-title,
.girls-hero h1,
.girls-summary h2,
.girls-feature-grid h2 {
  color: var(--retro-cream);
  -webkit-text-stroke: 1.15px var(--retro-orange);
  text-shadow:
    3px 0 0 var(--retro-cream),
    4px 0 0 var(--retro-orange),
    7px 0 0 var(--retro-cream),
    8px 0 0 var(--retro-orange);
}

.hero-title span {
  color: var(--retro-cream);
  -webkit-text-stroke: 1.15px var(--retro-gold);
  text-shadow:
    3px 0 0 var(--retro-cream),
    4px 0 0 var(--retro-gold),
    7px 0 0 var(--retro-cream),
    8px 0 0 var(--retro-gold);
}

.section-title {
  background-color: rgba(255, 244, 220, .82);
}

#contact .section-title {
  background-color: rgba(33, 18, 35, .46);
}

.portrait-card--photo {
  padding: clamp(14px, 2vw, 20px);
  border: 3px solid #4f7c4d;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 237, .78), rgba(236, 215, 174, .68)),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, 680px auto;
  background-blend-mode: normal, multiply;
  box-shadow:
    0 0 0 5px #f2b42a,
    0 0 0 10px #ee5b1b,
    0 0 0 15px #aebcdd,
    0 24px 42px rgba(39, 25, 10, .18);
}

.portrait-card--photo img {
  display: block;
  width: 100%;
  border: 3px solid #5c1748;
  border-radius: 20px;
  box-shadow:
    0 0 0 4px rgba(255, 244, 220, .78),
    0 0 0 8px #4f7c4d;
}

.project-card {
  grid-template-rows: 320px 1fr;
}

.project-card::before,
.project-card::after {
  display: none;
}

.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.project-card-body {
  display: flex;
  flex-direction: column;
  min-height: 238px;
}

.project-card h3 {
  min-height: 2.02em;
  font-size: clamp(27px, 2.15vw, 34px);
}

.project-card--hiero h3 {
  font-size: clamp(27px, 2.15vw, 34px);
}

.project-card .project-type {
  min-height: 1.35em;
}

.girls-hero {
  overflow: hidden;
  border-bottom: 0;
}

.girls-hero-content {
  position: relative;
  z-index: 2;
}

.girls-back-link {
  padding: 10px 14px;
  border: 2px solid var(--retro-prune);
  border-radius: 14px;
  background: rgba(255, 244, 220, .62);
  box-shadow:
    0 0 0 4px var(--retro-gold),
    0 0 0 8px var(--retro-sky);
}

.girls-hero .project-type {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 244, 220, .62);
}

.girls-hero h1 {
  display: inline-block;
  max-width: 760px;
  margin-bottom: 26px;
  padding: .10em .20em .18em;
  border: 3px solid var(--retro-prune);
  border-radius: 22px;
  background: rgba(255, 244, 220, .62);
  box-shadow:
    0 0 0 5px var(--retro-orange),
    0 0 0 10px var(--retro-gold),
    0 0 0 15px var(--retro-sky);
}

.project-hiero .girls-hero h1 {
  font-size: clamp(54px, 8vw, 108px);
}

.project-songe .girls-hero h1 {
  font-size: clamp(48px, 6.2vw, 86px);
}

.girls-hero-photo {
  position: relative;
  z-index: 2;
  border: 3px solid var(--retro-prune);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, .94), rgba(232, 213, 181, .90)),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, 620px auto;
  background-blend-mode: normal, multiply;
  box-shadow:
    0 0 0 5px var(--retro-orange),
    0 0 0 10px var(--retro-gold),
    0 0 0 15px var(--retro-sky),
    0 24px 44px rgba(39, 25, 10, .18);
}

.girls-hero-photo img,
.girls-feature-photo img {
  border-radius: 16px;
}

.girls-summary,
.girls-tech-card,
.girls-feature-grid article,
.girls-press-quote {
  clip-path: none;
  border: 3px solid var(--retro-prune);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 250, 237, .96), rgba(236, 222, 194, .92)),
    repeating-linear-gradient(0deg, rgba(74, 47, 20, .036) 0 1px, transparent 1px 5px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, 620px auto;
  background-blend-mode: normal, multiply, multiply;
  box-shadow:
    0 0 0 5px var(--retro-orange),
    0 0 0 10px var(--retro-gold),
    0 0 0 15px var(--retro-sky),
    0 22px 38px rgba(39, 25, 10, .15);
}

.girls-summary {
  padding: clamp(28px, 4vw, 44px);
  border-left-width: 3px;
}

.girls-tech-card {
  border-color: #4f7c4d;
  box-shadow:
    0 0 0 5px #f2b42a,
    0 0 0 10px #4f7c4d,
    0 0 0 15px #ee5b1b,
    0 22px 38px rgba(39, 25, 10, .15);
}

.girls-feature-grid article {
  padding: clamp(26px, 4vw, 42px);
}

.girls-feature-photo {
  border: 3px solid var(--retro-prune);
  border-radius: 22px;
  background: rgba(255, 244, 220, .86);
  padding: 12px;
  box-shadow:
    0 0 0 5px var(--retro-gold),
    0 0 0 10px var(--retro-sky),
    0 0 0 15px var(--retro-orange),
    0 22px 38px rgba(39, 25, 10, .16);
}

.girls-press-quote {
  color: var(--ink);
}

.girls-press-section {
  background:
    linear-gradient(135deg, #231207 0%, #5c1748 46%, #263f2d 100%) !important;
}

body.project-hiero {
  --project-color: #7c4b91;
}

body.project-songe {
  --project-color: #4f7c4d;
}

body.project-premier {
  --project-color: #d8872c;
}

@media (max-width: 780px) {
  .section-title,
  .hero-title,
  .girls-hero h1,
  .girls-summary h2,
  .girls-feature-grid h2 {
    text-shadow:
      2px 0 0 var(--retro-cream),
      3px 0 0 var(--retro-orange),
      5px 0 0 var(--retro-cream),
      6px 0 0 var(--retro-orange);
  }

  #projets::after,
  #contact::after,
  .girls-hero::before {
    width: min(300px, 62vw);
    height: 14px;
  }

  .portrait-card--photo,
  .girls-hero-photo,
  .girls-summary,
  .girls-tech-card,
  .girls-feature-grid article,
  .girls-press-quote {
    box-shadow:
      0 0 0 4px var(--retro-orange),
      0 0 0 8px var(--retro-gold),
      0 0 0 12px var(--retro-sky),
      0 18px 30px rgba(39, 25, 10, .14);
  }
}

/* Version lisible : retro 70s arrondi, cadres sans chevauchement */
:root {
  --retro-title-font: "Cooper Black", "Cooper Std Black", "Arial Rounded MT Bold", var(--font-title);
  --retro-peach: #f1d9c9;
  --retro-cream-soft: #fff7df;
  --retro-caramel: #c96f42;
  --retro-honey: #f1ae43;
  --retro-brown: #2b180b;
  --retro-forest: #456f46;
}

#projets::before,
#projets::after,
#contact::before,
#contact::after,
.girls-hero::before {
  content: "";
  display: none !important;
}

#projets {
  background-color: #e7b86d;
  background-image:
    linear-gradient(180deg, rgba(249, 222, 166, .92), rgba(218, 139, 63, .90)),
    repeating-linear-gradient(0deg, rgba(65, 43, 19, .035) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(65, 43, 19, .025) 0 1px, transparent 1px 9px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, 900px auto;
  background-blend-mode: normal, multiply, multiply, multiply;
}

.section-title,
.hero-title,
.hero-title span,
.girls-hero h1,
.girls-summary h2,
.girls-feature-grid h2,
.project-card h3,
.presentation-panel h3,
.orane-bio h3 {
  font-family: var(--retro-title-font);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--retro-caramel);
  -webkit-text-stroke: 0;
  text-shadow:
    0 3px 0 var(--retro-honey),
    0 6px 0 rgba(43, 24, 11, .10);
}

.hero-title,
.hero-title span {
  color: #f59a57;
  text-shadow:
    0 4px 0 rgba(255, 214, 122, .78),
    0 8px 0 rgba(0, 0, 0, .18);
}

.section-title {
  padding: .10em .34em .18em;
  border: 4px solid var(--retro-brown);
  border-radius: 22px;
  background: var(--retro-cream-soft);
  box-shadow: 8px 8px 0 var(--retro-honey);
}

#presentation .section-title {
  border-color: var(--retro-forest);
  box-shadow: 8px 8px 0 #d8883c;
}

#projets .section-title {
  border-color: var(--retro-brown);
  color: #9f4d32;
  background: #fff0cf;
  box-shadow: 8px 8px 0 #f3b348;
}

#contact .section-title {
  color: #f8a05f;
  border-color: #f3b348;
  background: rgba(35, 18, 28, .76);
  box-shadow: 8px 8px 0 #7b174f;
}

#presentation .section-head,
#projets .section-head,
#contact .section-head {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.hero-title {
  max-width: 720px;
  line-height: .92;
}

.presentation-panel,
.orane-bio,
#contact .contact-form,
.project-card-body,
.girls-summary,
.girls-tech-card,
.girls-feature-grid article,
.girls-press-quote {
  border: 3px solid var(--retro-brown);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 248, 225, .97), rgba(238, 223, 193, .94)),
    repeating-linear-gradient(0deg, rgba(74, 47, 20, .030) 0 1px, transparent 1px 6px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, 620px auto;
  background-blend-mode: normal, multiply, multiply;
  box-shadow: 9px 9px 0 rgba(193, 110, 54, .55);
}

.portrait-card--photo,
.girls-hero-photo,
.girls-feature-photo {
  border: 3px solid var(--retro-forest);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 248, 225, .84), rgba(239, 202, 146, .72)),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, 680px auto;
  background-blend-mode: normal, multiply;
  box-shadow: 9px 9px 0 rgba(241, 174, 67, .68);
}

.portrait-card--photo {
  padding: 16px;
}

.portrait-card--photo img,
.girls-hero-photo img,
.girls-feature-photo img,
.project-card img {
  border-radius: 14px;
  border: 0;
  box-shadow: none;
}

.project-card {
  grid-template-rows: 292px 1fr;
  min-height: 610px;
  padding: 0;
  gap: 18px;
  border-radius: 18px;
}

.project-card img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  border: 3px solid var(--retro-brown);
  box-shadow: 7px 7px 0 rgba(255, 247, 223, .72);
}

.project-card-body {
  min-height: 286px;
  padding: 24px 22px 26px;
  box-shadow: 7px 7px 0 rgba(69, 111, 70, .34);
}

.project-card--girls .project-card-body,
.project-card--girls img {
  border-color: #9f4d32;
}

.project-card--hiero .project-card-body,
.project-card--hiero img {
  border-color: #7b4d86;
}

.project-card--songe .project-card-body,
.project-card--songe img {
  border-color: #456f46;
}

.project-card--premier .project-card-body,
.project-card--premier img {
  border-color: #b87924;
}

.project-card h3,
.project-card--hiero h3 {
  min-height: 72px;
  margin: 0 0 12px;
  font-size: 29px;
  line-height: 1.02;
}

.project-card p,
.presentation-panel p,
.orane-bio p,
.girls-summary p,
.girls-feature-grid p,
.girls-tech-card dd {
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
}

.project-card p {
  margin-top: auto;
  font-size: 15px;
}

.project-type,
.section-kicker,
.girls-back-link,
.girls-tech-card dt {
  font-family: var(--font-mono);
  font-weight: 400;
}

.project-card .project-type {
  color: var(--project-color);
  min-height: 18px;
}

.girls-hero h1 {
  padding: .08em .22em .16em;
  border: 4px solid var(--retro-brown);
  border-radius: 24px;
  background: var(--retro-cream-soft);
  box-shadow: 8px 8px 0 var(--retro-honey);
  color: var(--retro-caramel);
}

.project-hiero .girls-hero h1,
.project-songe .girls-hero h1,
.project-premier .girls-hero h1 {
  font-size: clamp(48px, 6.8vw, 88px);
}

.girls-back-link,
.girls-hero .project-type {
  border-radius: 12px;
  box-shadow: 5px 5px 0 rgba(241, 174, 67, .52);
}

@media (max-width: 900px) {
  .project-card {
    min-height: auto;
  }

  .project-card h3,
  .project-card--hiero h3 {
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .section-title,
  .hero-title,
  .hero-title span,
  .girls-hero h1,
  .girls-summary h2,
  .girls-feature-grid h2,
  .project-card h3 {
    text-shadow:
      0 2px 0 var(--retro-honey),
      0 4px 0 rgba(43, 24, 11, .10);
  }

  .section-title,
  .girls-hero h1 {
    box-shadow: 6px 6px 0 var(--retro-honey);
  }
}

/* Nettoyage final lisibilité */
:root {
  --font-body: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
}

#presentation .section-title,
#projets .section-title,
#contact .section-title,
.section-title,
.hero-title,
.hero-title span,
.girls-hero h1,
.girls-summary h2,
.girls-feature-grid h2,
.project-card h3,
.presentation-panel h3,
.orane-bio h3 {
  -webkit-text-stroke: 0;
  text-shadow:
    0 3px 0 var(--retro-honey),
    0 6px 0 rgba(43, 24, 11, .10);
}

#contact .section-title {
  text-shadow:
    0 3px 0 #7b174f,
    0 6px 0 rgba(0, 0, 0, .22);
}

.hero-title,
.hero-title span {
  text-shadow:
    0 4px 0 rgba(255, 214, 122, .78),
    0 8px 0 rgba(0, 0, 0, .18);
}

.section-title {
  font-size: clamp(46px, 6.4vw, 78px);
  line-height: .94;
}

.project-card h3,
.project-card--hiero h3,
.project-card--songe h3,
.project-card--premier h3 {
  font-size: 28px;
  line-height: 1.04;
  color: #a95435;
}

.project-card--hiero h3 {
  color: #744982;
}

.project-card--songe h3 {
  color: #456f46;
}

.project-card--premier h3 {
  color: #9a641e;
}

/* Passe 70s lisible : header, hero, fonds et bio */
.site-header {
  background:
    linear-gradient(180deg, rgba(255, 247, 223, .96), rgba(239, 214, 169, .94)),
    repeating-linear-gradient(90deg, rgba(43, 24, 11, .045) 0 1px, transparent 1px 8px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, 760px auto;
  background-blend-mode: normal, multiply, multiply;
  border-bottom: 3px solid var(--retro-brown);
  box-shadow: 0 8px 0 rgba(241, 174, 67, .72);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 8px;
  background:
    linear-gradient(90deg,
      #c96f42 0 28%,
      #f1ae43 28% 52%,
      #456f46 52% 76%,
      #744982 76% 100%);
  border-top: 2px solid var(--retro-brown);
  border-bottom: 2px solid var(--retro-brown);
}

.header-row {
  min-height: 86px;
}

.brand-text {
  width: fit-content;
  padding: 8px 13px 10px;
  border: 2px solid var(--retro-brown);
  border-radius: 16px;
  background: var(--retro-cream-soft);
  color: #9f4d32;
  font-family: var(--retro-title-font);
  font-style: normal;
  font-size: 23px;
  box-shadow: 5px 5px 0 rgba(241, 174, 67, .70);
}

.brand-text span {
  color: #456f46;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .30em;
}

.brand-logo img {
  width: 74px;
  padding: 7px;
  border: 2px solid var(--retro-brown);
  border-radius: 999px;
  background: rgba(255, 247, 223, .88);
  box-shadow: 5px 5px 0 rgba(69, 111, 70, .44);
}

.site-nav {
  gap: 10px;
}

.site-nav a,
.instagram-link {
  border: 2px solid var(--retro-brown);
  border-radius: 999px;
  background: rgba(255, 247, 223, .72);
  box-shadow: 4px 4px 0 rgba(201, 111, 66, .34);
}

.site-nav a {
  padding: 8px 12px;
}

.site-nav a::after {
  display: none;
}

.instagram-link {
  width: 34px;
  height: 34px;
}

.hero {
  min-height: calc(88vh - 76px);
  align-items: center;
}

.hero::before {
  right: auto;
  left: clamp(24px, 7vw, 110px);
  top: 118px;
  bottom: auto;
  width: min(250px, 26vw);
  height: min(250px, 26vw);
  border: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 0 38%, rgba(255, 247, 223, .30) 39% 43%, transparent 44% 100%),
    radial-gradient(circle, rgba(241, 174, 67, .28), transparent 64%);
  opacity: .85;
  transform: rotate(-8deg);
}

.hero-content {
  width: var(--container);
  margin-right: auto;
  margin-left: auto;
  padding: 108px 0 92px;
  transform: translateX(clamp(-34px, -2.2vw, -10px));
}

.hero-title {
  max-width: 610px;
  margin-bottom: 20px;
  font-family: "Arial Rounded MT Bold", "Cooper Black", var(--font-title);
  font-size: clamp(42px, 7vw, 88px);
  line-height: .96;
  text-shadow: none;
}

.hero-word {
  display: inline-block;
  padding: .02em .08em .08em;
  border-radius: .24em;
  text-shadow:
    0 4px 0 rgba(255, 247, 223, .70),
    0 7px 0 rgba(43, 24, 11, .16);
}

.hero-word--theatre {
  color: #f08c4a;
}

.hero-word--film {
  color: #f1ae43;
}

.hero-word--performance {
  color: #7fb06b;
}

.hero-lead {
  max-width: 520px;
  color: rgba(255, 247, 223, .86);
  font-size: clamp(15px, 1.35vw, 18px);
  font-style: normal;
  font-weight: 500;
}

.action-row {
  gap: 16px;
}

.button {
  min-height: 48px;
  padding: 12px 20px;
  border: 3px solid var(--retro-brown);
  border-radius: 999px;
  color: var(--retro-brown);
  background: var(--retro-cream-soft);
  box-shadow: 6px 6px 0 rgba(241, 174, 67, .80);
  font-family: var(--font-mono);
  font-weight: 400;
}

.button::before {
  display: none;
}

.button-primary {
  color: var(--retro-brown);
  background: #f1ae43;
  border-color: var(--retro-brown);
}

.button-secondary {
  color: var(--retro-brown);
  background: #fff7df;
  border-color: var(--retro-brown);
  backdrop-filter: none;
  box-shadow: 6px 6px 0 rgba(69, 111, 70, .68);
}

.button:hover {
  transform: translate(-2px, -2px);
}

#presentation,
#projets,
#contact {
  overflow: hidden;
}

#presentation::before,
#projets::before,
#contact::before {
  content: "";
  display: block !important;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 0 50%, rgba(43, 24, 11, .16) 51% 53%, transparent 54%),
    radial-gradient(circle, rgba(255, 247, 223, .20), transparent 67%);
  mix-blend-mode: multiply;
}

#presentation::before {
  right: -70px;
  top: 110px;
  width: 360px;
  height: 360px;
  opacity: .38;
}

#projets::before {
  left: -78px;
  top: 150px;
  width: 390px;
  height: 390px;
  opacity: .30;
}

#contact::before {
  right: -92px;
  top: 92px;
  width: 360px;
  height: 360px;
  opacity: .22;
  mix-blend-mode: screen;
}

#presentation .container,
#projets .container,
#contact .container {
  position: relative;
  z-index: 2;
}

#presentation .section-title,
#projets .section-title {
  color: var(--retro-brown);
  text-shadow:
    0 3px 0 #f1ae43,
    0 5px 0 rgba(43, 24, 11, .08);
}

#presentation .section-title {
  max-width: min(940px, 100%);
  font-size: clamp(42px, 5.5vw, 66px);
}

.portrait-card--photo {
  justify-self: center;
  width: min(410px, 100%);
}

.orane-bio {
  width: min(342px, calc(100% - 28px));
  margin: 24px auto 0;
  padding: 22px 24px 24px;
}

.orane-bio h3 {
  color: #9f4d32;
  font-size: clamp(28px, 3.1vw, 40px);
  text-shadow:
    0 3px 0 #f1ae43,
    0 5px 0 rgba(43, 24, 11, .08);
}

@media (max-width: 920px) {
  .header-row {
    grid-template-columns: 1fr auto;
  }

  .brand-logo {
    display: none;
  }

  .hero-content {
    transform: none;
  }
}

@media (max-width: 780px) {
  .site-nav a {
    padding: 7px 10px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-title {
    font-size: clamp(40px, 13vw, 66px);
  }

  #presentation .section-title {
    font-size: clamp(36px, 10vw, 54px);
  }
}

.hero-title .hero-word--theatre {
  color: #f08c4a;
}

.hero-title .hero-word--film {
  color: #f1ae43;
}

.hero-title .hero-word--performance {
  color: #7fb06b;
}

.hero-title .hero-word {
  text-shadow:
    0 4px 0 rgba(255, 247, 223, .70),
    0 7px 0 rgba(43, 24, 11, .16);
}

/* Ajustements 05/07 : alignements, intro et textures */
.brand-logo img {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-content {
  padding: 136px 0 74px;
  transform: translate(clamp(-86px, -5vw, -42px), 38px);
}

.hero-title {
  max-width: 580px;
  font-size: clamp(40px, 6.5vw, 82px);
}

.hero-lead {
  max-width: 560px;
}

.project-card {
  padding-top: clamp(18px, 2.4vw, 30px);
}

.project-card:nth-child(even),
.project-card:nth-child(even):hover {
  transform: none;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card img {
  object-position: center 58%;
}

.girls-hero-layout {
  align-items: center;
}

.girls-hero-photo {
  margin-top: clamp(26px, 4vw, 54px);
}

.girls-hero,
.girls-intro-section {
  background-image:
    radial-gradient(circle at 14% 22%, rgba(241, 174, 67, .22) 0 70px, transparent 71px),
    radial-gradient(circle at 88% 18%, rgba(116, 73, 130, .12) 0 110px, transparent 111px),
    repeating-linear-gradient(135deg, rgba(43, 24, 11, .030) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(0deg, rgba(69, 111, 70, .034) 0 1px, transparent 1px 8px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, auto, 760px auto;
  background-blend-mode: multiply, multiply, multiply, multiply, multiply;
}

.girls-hero {
  background-color: #eadfc8;
}

.girls-intro-section {
  background-color: #f0dfbd;
}

.portrait-card--photo::before,
.portrait-card--photo::after {
  display: none !important;
}

.portrait-card--photo img {
  filter: saturate(1.12) contrast(1.05) brightness(1.02);
  mix-blend-mode: normal;
}

#presentation {
  background-image:
    radial-gradient(circle at 10% 26%, rgba(241, 174, 67, .18) 0 95px, transparent 96px),
    radial-gradient(circle at 88% 78%, rgba(69, 111, 70, .12) 0 140px, transparent 141px),
    repeating-linear-gradient(135deg, rgba(43, 24, 11, .030) 0 2px, transparent 2px 16px),
    repeating-linear-gradient(0deg, rgba(96, 73, 36, .045) 0 1px, transparent 1px 6px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, auto, auto, 760px auto;
  background-blend-mode: multiply, multiply, multiply, multiply, multiply;
}

/* Retouches finales 05/07 : nettoyage hero, presentation et cartes projets */
.header-row {
  grid-template-columns: auto 1fr !important;
  column-gap: clamp(24px, 5vw, 72px);
}

.header-right {
  justify-self: end;
}

.brand-logo {
  display: none !important;
}

.brand-text {
  color: var(--retro-brown) !important;
  text-shadow: 0 2px 0 rgba(241, 174, 67, .35);
}

.brand-text span {
  font-weight: 500;
  letter-spacing: .18em;
}

.hero-video {
  filter: saturate(1.12) contrast(1.08) brightness(1.12) !important;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 5, 2, .40), rgba(8, 5, 2, .22) 46%, rgba(8, 5, 2, .10)),
    linear-gradient(to bottom, rgba(8, 5, 2, .02), rgba(8, 5, 2, .08) 52%, rgba(8, 5, 2, .36)) !important;
}

.hero::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 4 !important;
  display: block !important;
  height: 16px !important;
  border-top: 3px solid var(--retro-brown) !important;
  border-bottom: 3px solid var(--retro-brown) !important;
  border-radius: 0 !important;
  background:
    linear-gradient(90deg,
      #e96f2d 0 28%,
      #f1ae43 28% 52%,
      #456f46 52% 76%,
      #744982 76% 100%) !important;
  box-shadow: 0 4px 0 rgba(43, 24, 11, .18) !important;
  clip-path: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.hero-title .hero-word,
.hero-title .hero-word--theatre,
.hero-title .hero-word--film,
.hero-title .hero-word--performance {
  color: #fff7df !important;
  text-shadow:
    0 3px 0 rgba(43, 24, 11, .86),
    0 7px 0 rgba(233, 111, 45, .32),
    0 11px 0 rgba(69, 111, 70, .20) !important;
}

#presentation,
#projets,
#contact,
.girls-hero,
.girls-intro-section {
  background-image:
    repeating-linear-gradient(0deg, rgba(43, 24, 11, .040) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(43, 24, 11, .026) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, rgba(241, 174, 67, .16), transparent 38%, rgba(69, 111, 70, .10)),
    url("../images/paper-texture-generated.jpg") !important;
  background-size: auto, auto, auto, 760px auto !important;
  background-blend-mode: multiply, multiply, multiply, multiply !important;
}

#presentation::before,
#presentation::after,
#projets::before,
#projets::after,
#contact::before,
#contact::after {
  content: none !important;
  display: none !important;
}

.section-title--brand {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: .18em;
}

.section-title--brand span {
  display: inline-block;
}

.section-title--brand small {
  display: inline-block;
  margin-bottom: .13em;
  font-family: var(--font-body);
  font-size: .34em;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.presentation-copy {
  display: grid;
  gap: 28px;
}

.presentation-panel--actions {
  max-width: 920px;
  border-color: #456f46 !important;
  box-shadow:
    10px 10px 0 rgba(241, 174, 67, .55),
    18px 18px 0 rgba(69, 111, 70, .22) !important;
}

.presentation-panel--actions h3 {
  color: #456f46;
}

.portrait-card--photo::before,
.portrait-card--photo::after {
  content: none !important;
  display: none !important;
}

.portrait-card--photo img {
  filter: saturate(1.08) contrast(1.04) brightness(1.02) !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

#projets .section-head {
  gap: clamp(28px, 5vw, 72px);
}

#projets .section-kicker {
  margin-bottom: clamp(22px, 3vw, 40px);
  font-family: var(--retro-title-font);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .9;
  text-transform: none;
}

#projets .section-title {
  margin-top: 0;
}

#projets .section-intro {
  max-width: 580px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.35;
}

.project-card,
.project-card:nth-child(even) {
  border: 4px solid var(--retro-brown) !important;
  border-radius: 24px !important;
  box-shadow: 8px 8px 0 rgba(43, 24, 11, .14) !important;
  transform: none !important;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease !important;
}

.project-card:hover,
.project-card:nth-child(even):hover {
  box-shadow:
    8px 8px 0 var(--project-color),
    14px 14px 0 rgba(43, 24, 11, .16) !important;
  filter: saturate(1.04) contrast(1.02);
  transform: translateY(-6px) !important;
}

.project-card img,
.project-card--girls img,
.project-card--hiero img,
.project-card--songe img,
.project-card--premier img {
  border: 0 !important;
  border-radius: 18px 18px 0 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.project-card:hover img,
.project-card:nth-child(even):hover img {
  filter: saturate(1.10) contrast(1.06) !important;
  transform: none !important;
}

.project-card-body,
.project-card--girls .project-card-body,
.project-card--hiero .project-card-body,
.project-card--songe .project-card-body,
.project-card--premier .project-card-body {
  border: 0 !important;
  border-top: 4px solid var(--project-color) !important;
  border-radius: 0 0 18px 18px !important;
  box-shadow: none !important;
}

.project-card h3,
.project-card--hiero h3,
.project-card--songe h3,
.project-card--premier h3 {
  font-size: clamp(30px, 2.7vw, 42px) !important;
}

#contact .section-kicker {
  display: none !important;
}

@media (max-width: 920px) {
  .header-row {
    grid-template-columns: 1fr !important;
    justify-items: center;
  }

  .header-right {
    justify-self: center;
  }

  .section-title--brand {
    display: flex;
  }
}

@media (max-width: 920px) {
  .hero-content {
    transform: translateY(26px);
  }
}

.girls-page .girls-intro-section {
  background:
    radial-gradient(circle at 14% 22%, rgba(241, 174, 67, .22) 0 70px, transparent 71px),
    radial-gradient(circle at 88% 18%, rgba(116, 73, 130, .12) 0 110px, transparent 111px),
    repeating-linear-gradient(135deg, rgba(43, 24, 11, .030) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(0deg, rgba(69, 111, 70, .034) 0 1px, transparent 1px 8px),
    url("../images/paper-texture-generated.jpg"),
    #f0dfbd !important;
  background-size: auto, auto, auto, auto, 760px auto, auto !important;
  background-blend-mode: multiply, multiply, multiply, multiply, multiply, normal !important;
}

.girls-summary h3 {
  margin: 30px 0 12px;
  color: #9f4d32;
  font-family: var(--retro-title-font);
  font-size: clamp(26px, 3vw, 38px);
  font-style: normal;
  font-weight: 900;
  line-height: 1.05;
  text-shadow:
    0 2px 0 #f1ae43,
    0 4px 0 rgba(43, 24, 11, .08);
}

.project-callout {
  margin: 28px 0 30px;
  padding: 24px 26px;
  border: 3px solid var(--retro-brown);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 247, 223, .94), rgba(240, 195, 122, .70)),
    repeating-linear-gradient(135deg, rgba(43, 24, 11, .040) 0 2px, transparent 2px 13px),
    url("../images/paper-texture-generated.jpg");
  background-size: auto, auto, 620px auto;
  background-blend-mode: normal, multiply, multiply;
  box-shadow: 7px 7px 0 rgba(69, 111, 70, .38);
}

.project-callout p {
  margin: 0 0 12px;
  font-weight: 600;
}

.project-callout p:last-child {
  margin-bottom: 0;
}

.project-visual-section .girls-feature-grid {
  grid-template-columns: minmax(270px, .68fr) minmax(340px, 1fr);
  align-items: center;
}

.project-visual-heading {
  padding: clamp(24px, 4vw, 40px);
}

.project-visual-heading p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.project-visual-section .girls-feature-photo {
  justify-self: stretch;
}

@media (max-width: 780px) {
  .project-visual-section .girls-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Verrouillage final : doit rester en fin de fichier */
.header-row {
  grid-template-columns: auto 1fr !important;
}

.header-right {
  justify-self: end !important;
}

.brand-logo {
  display: none !important;
}

.hero-video {
  filter: saturate(1.12) contrast(1.08) brightness(1.12) !important;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 5, 2, .40), rgba(8, 5, 2, .22) 46%, rgba(8, 5, 2, .10)),
    linear-gradient(to bottom, rgba(8, 5, 2, .02), rgba(8, 5, 2, .08) 52%, rgba(8, 5, 2, .36)) !important;
}

.hero::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 4 !important;
  display: block !important;
  height: 16px !important;
  border-top: 3px solid var(--retro-brown) !important;
  border-bottom: 3px solid var(--retro-brown) !important;
  border-radius: 0 !important;
  background:
    linear-gradient(90deg,
      #e96f2d 0 28%,
      #f1ae43 28% 52%,
      #456f46 52% 76%,
      #744982 76% 100%) !important;
  box-shadow: 0 4px 0 rgba(43, 24, 11, .18) !important;
  clip-path: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.hero-title .hero-word,
.hero-title .hero-word--theatre,
.hero-title .hero-word--film,
.hero-title .hero-word--performance {
  color: #fff7df !important;
}

#presentation,
#projets,
#contact,
.girls-hero,
.girls-intro-section,
.girls-page .girls-intro-section {
  background-image:
    repeating-linear-gradient(0deg, rgba(43, 24, 11, .040) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(43, 24, 11, .026) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, rgba(241, 174, 67, .16), transparent 38%, rgba(69, 111, 70, .10)),
    url("../images/paper-texture-generated.jpg") !important;
  background-size: auto, auto, auto, 760px auto !important;
  background-blend-mode: multiply, multiply, multiply, multiply !important;
}

#presentation::before,
#presentation::after,
#projets::before,
#projets::after,
#contact::before,
#contact::after {
  content: none !important;
  display: none !important;
}

.portrait-card--photo::before,
.portrait-card--photo::after {
  content: none !important;
  display: none !important;
}

.portrait-card--photo img {
  filter: saturate(1.08) contrast(1.04) brightness(1.02) !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

#projets .section-kicker {
  margin-bottom: clamp(22px, 3vw, 40px) !important;
  font-family: var(--retro-title-font) !important;
  font-size: clamp(40px, 6vw, 72px) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.project-card,
.project-card:nth-child(even) {
  border: 4px solid var(--retro-brown) !important;
  border-radius: 24px !important;
  box-shadow: 8px 8px 0 rgba(43, 24, 11, .14) !important;
  transform: none !important;
}

.project-card:hover,
.project-card:nth-child(even):hover {
  box-shadow:
    8px 8px 0 var(--project-color),
    14px 14px 0 rgba(43, 24, 11, .16) !important;
  transform: translateY(-6px) !important;
}

.project-card img,
.project-card--girls img,
.project-card--hiero img,
.project-card--songe img,
.project-card--premier img {
  border: 0 !important;
  border-radius: 18px 18px 0 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.project-card-body,
.project-card--girls .project-card-body,
.project-card--hiero .project-card-body,
.project-card--songe .project-card-body,
.project-card--premier .project-card-body {
  border: 0 !important;
  border-top: 4px solid var(--project-color) !important;
  border-radius: 0 0 18px 18px !important;
  box-shadow: none !important;
}

.project-card h3,
.project-card--hiero h3,
.project-card--songe h3,
.project-card--premier h3 {
  font-size: clamp(30px, 2.7vw, 42px) !important;
}

#contact .section-kicker {
  display: none !important;
}

@media (max-width: 920px) {
  .header-row {
    grid-template-columns: 1fr !important;
    justify-items: center;
  }

  .header-right {
    justify-self: center !important;
  }
}

/* Dernières corrections : ligne hero pleine largeur, bandeau créations, cartes alignées */
.hero::after {
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  min-width: 100vw !important;
  max-width: none !important;
  transform: translateX(-50%) !important;
  background:
    linear-gradient(90deg,
      #e96f2d 0 25%,
      #f1ae43 25% 47%,
      #456f46 47% 73%,
      #744982 73% 100%) !important;
  background-size: 100% 100% !important;
}

.creation-banner {
  position: relative;
  overflow: hidden;
  margin: clamp(28px, 4vw, 54px) 0 clamp(34px, 5vw, 62px);
  border: 4px solid var(--retro-brown);
  border-radius: 26px;
  background: #1f130a;
  box-shadow:
    10px 10px 0 rgba(233, 111, 45, .56),
    18px 18px 0 rgba(69, 111, 70, .22);
}

.creation-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(31, 19, 10, .20), transparent 42%, rgba(31, 19, 10, .24)),
    repeating-linear-gradient(0deg, rgba(255, 247, 223, .10) 0 1px, transparent 1px 7px);
  mix-blend-mode: soft-light;
}

.creation-banner-video {
  display: block;
  width: 100%;
  height: clamp(180px, 24vw, 320px);
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(1.12) contrast(1.06) brightness(1.03);
}

.project-card,
.project-card:nth-child(even) {
  overflow: hidden !important;
  padding: 0 !important;
  background: var(--lin) !important;
}

.project-card img,
.project-card--girls img,
.project-card--hiero img,
.project-card--songe img,
.project-card--premier img {
  display: block !important;
  width: 100% !important;
  height: clamp(270px, 28vw, 420px) !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center 56% !important;
}

.project-card h3,
.project-card--hiero h3,
.project-card--songe h3,
.project-card--premier h3 {
  font-size: clamp(30px, 2.55vw, 40px) !important;
  line-height: .95 !important;
}

.project-card--hiero h3 {
  font-size: clamp(30px, 2.55vw, 40px) !important;
}

.presentation-panel--actions p {
  max-width: 66ch;
}

@media (max-width: 780px) {
  .creation-banner {
    border-radius: 20px;
  }

  .creation-banner-video {
    height: 210px;
  }

  .project-card img,
  .project-card--girls img,
  .project-card--hiero img,
  .project-card--songe img,
  .project-card--premier img {
    height: 290px !important;
  }
}

/* Corrections finales 05/07 nuit : lignes simples et page Girls & Boys */
:root {
  --section-line: #f1ae43;
}

.site-header {
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.site-header::before {
  content: none !important;
  display: none !important;
}

.site-header::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 4px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--section-line) !important;
  box-shadow: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.hero::after {
  height: 5px !important;
  border: 0 !important;
  background: var(--section-line) !important;
  box-shadow: none !important;
}

#presentation,
#projets,
#contact,
.girls-hero,
.girls-intro-section {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

#projets,
#contact {
  border-top: 5px solid var(--section-line) !important;
}

#projets {
  padding-top: clamp(58px, 7vw, 92px) !important;
}

#projets .section-head {
  margin-bottom: clamp(26px, 4vw, 46px) !important;
}

.creation-banner {
  display: none !important;
}

.project-card h3,
.project-card--hiero h3,
.project-card--songe h3,
.project-card--premier h3 {
  overflow: visible !important;
  padding-top: .06em;
  font-size: clamp(28px, 2.35vw, 36px) !important;
  line-height: 1.05 !important;
}

.project-card-body {
  padding-top: 24px !important;
}

.girls-hero {
  padding-top: clamp(28px, 4vw, 58px) !important;
  padding-bottom: clamp(52px, 7vw, 92px) !important;
}

.girls-hero-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr) !important;
  align-items: end !important;
  gap: clamp(36px, 6vw, 88px) !important;
}

.project-girls .girls-hero-content {
  align-self: center !important;
  padding-bottom: clamp(18px, 3vw, 42px) !important;
}

.project-girls .girls-back-link {
  margin-bottom: clamp(26px, 4vw, 48px) !important;
}

.project-girls .girls-hero .project-type {
  max-width: 720px;
  margin-bottom: clamp(22px, 3vw, 34px) !important;
}

.project-girls .girls-hero h1 {
  display: inline-block;
  max-width: min(780px, 100%);
  margin: 0 0 clamp(28px, 3vw, 42px) !important;
  padding: clamp(26px, 4vw, 42px) clamp(32px, 5vw, 58px) clamp(30px, 4vw, 48px);
  border: 5px solid var(--retro-brown);
  border-radius: 34px;
  background: rgba(255, 247, 223, .88);
  box-shadow:
    10px 10px 0 rgba(241, 174, 67, .90),
    18px 18px 0 rgba(43, 24, 11, .08);
  color: #c96e3e;
  font-size: clamp(58px, 8vw, 112px) !important;
  line-height: .92 !important;
  text-shadow:
    0 4px 0 #f1ae43,
    0 8px 0 rgba(43, 24, 11, .12) !important;
}

.project-girls .girls-hero p {
  max-width: 720px;
}

.project-girls .girls-hero-photo {
  align-self: end !important;
  margin-top: clamp(72px, 9vw, 142px) !important;
}

.project-girls .girls-summary h2 {
  margin-bottom: 24px !important;
  color: #9f4d32 !important;
  font-size: clamp(28px, 3.1vw, 42px) !important;
  line-height: 1.08 !important;
  text-shadow:
    0 2px 0 #f1ae43,
    0 4px 0 rgba(43, 24, 11, .08) !important;
}

.project-girls .girls-intro-section {
  border-top: 5px solid var(--section-line) !important;
}

@media (max-width: 920px) {
  .girls-hero-layout {
    grid-template-columns: 1fr !important;
  }

  .project-girls .girls-hero-photo {
    margin-top: 22px !important;
  }

  .project-girls .girls-hero h1 {
    font-size: clamp(48px, 15vw, 82px) !important;
  }
}

/* Ajustement titre Girls & Boys sur toute la longueur */
.project-girls .girls-hero-layout {
  grid-template-columns: 1fr !important;
}

.project-girls .girls-hero-content {
  width: 100%;
}

.project-girls .girls-hero h1 {
  max-width: 1120px;
  white-space: nowrap;
  font-size: clamp(54px, 7.4vw, 96px) !important;
}

.project-girls .girls-hero-photo {
  width: min(680px, 100%);
  justify-self: end;
  margin-top: clamp(34px, 5vw, 74px) !important;
}

@media (max-width: 780px) {
  .project-girls .girls-hero h1 {
    white-space: normal;
  }
}

/* Direction vermillon pour Girls & Boys */
.project-girls {
  --section-line: #e24022;
  --project-accent: #e24022;
  --project-accent-dark: #35110c;
  --project-accent-soft: #f4a24b;
  --project-wash: rgba(226, 64, 34, .18);
  --girls-vermilion: #e24022;
  --girls-vermilion-deep: #7f1f17;
  --girls-vermilion-dark: #35110c;
  --girls-vermilion-soft: #f4a24b;
  --retro-brown: #2d130d;
  color: #5f271d;
}

.project-girls .site-header::after,
.project-girls .girls-intro-section,
.project-girls .girls-mini-gallery-section {
  border-color: var(--girls-vermilion) !important;
}

.project-girls .brand-text,
.project-girls .site-nav a,
.project-girls .instagram-link,
.project-girls .footer-links a,
.project-girls .footer-copy {
  color: var(--girls-vermilion-dark) !important;
}

.project-girls .girls-hero,
.project-girls .girls-intro-section,
.project-girls .girls-mini-gallery-section {
  background-color: #edd8bc !important;
  background-image:
    repeating-linear-gradient(0deg, rgba(126, 31, 23, .052) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(126, 31, 23, .034) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, rgba(226, 64, 34, .16), transparent 40%, rgba(244, 162, 75, .16)),
    url("../images/paper-texture-generated.jpg") !important;
}

.project-girls .girls-hero {
  padding-top: clamp(18px, 2.4vw, 34px) !important;
  padding-bottom: clamp(30px, 4.5vw, 56px) !important;
}

.project-girls .girls-hero-layout {
  display: block !important;
}

.project-girls .girls-hero-content {
  max-width: 1080px;
  padding-bottom: 0 !important;
}

.project-girls .girls-back-link,
.project-girls .girls-hero .project-type {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 10px clamp(22px, 3vw, 34px) 0 !important;
  border-color: var(--girls-vermilion-deep) !important;
  color: var(--girls-vermilion-deep) !important;
  background: rgba(255, 247, 223, .74) !important;
  box-shadow: 7px 7px 0 rgba(226, 64, 34, .30) !important;
}

.project-girls .girls-hero .project-type {
  padding: 11px 22px;
  border: 3px solid var(--girls-vermilion);
  border-radius: 16px;
}

.project-girls .girls-hero h1 {
  display: block !important;
  width: min(1050px, 100%) !important;
  max-width: 1050px !important;
  margin: 0 0 clamp(18px, 2.5vw, 28px) !important;
  padding: clamp(20px, 2.6vw, 34px) clamp(34px, 5vw, 62px) !important;
  border: 5px solid var(--girls-vermilion-dark) !important;
  border-radius: 30px !important;
  background: rgba(255, 247, 223, .90) !important;
  color: #c94d31 !important;
  font-size: clamp(46px, 6.2vw, 78px) !important;
  line-height: .95 !important;
  white-space: nowrap !important;
  text-align: center;
  text-shadow:
    0 3px 0 var(--girls-vermilion-soft),
    0 7px 0 rgba(126, 31, 23, .14) !important;
  box-shadow:
    9px 9px 0 rgba(226, 64, 34, .72),
    16px 16px 0 rgba(126, 31, 23, .10) !important;
}

.project-girls .girls-hero p {
  max-width: 760px;
  color: #6d2a1f !important;
  font-size: clamp(18px, 2vw, 24px) !important;
}

.project-girls .girls-intro-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, .78fr) !important;
  align-items: start !important;
  gap: clamp(28px, 4vw, 58px) !important;
}

.project-girls .girls-side-column {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.project-girls .girls-intro-photo {
  width: min(380px, 100%) !important;
  justify-self: end;
  margin: 0 !important;
  padding: 10px !important;
  border: 4px solid #8a271d !important;
  border-radius: 22px !important;
  background: rgba(255, 247, 223, .78) !important;
  box-shadow:
    8px 8px 0 rgba(226, 64, 34, .45),
    14px 14px 0 rgba(126, 31, 23, .10) !important;
}

.project-girls .girls-intro-photo img {
  height: auto !important;
  max-height: 280px;
  object-fit: cover;
  object-position: center 46%;
  border-radius: 14px !important;
}

.project-girls .girls-intro-photo figcaption {
  color: #8a271d !important;
}

.project-girls .girls-summary,
.project-girls .girls-tech-card {
  border-color: #8a271d !important;
  color: #5f271d !important;
  box-shadow:
    8px 8px 0 rgba(226, 64, 34, .38),
    14px 14px 0 rgba(126, 31, 23, .08) !important;
}

.project-girls .girls-summary h2,
.project-girls .girls-tech-card .section-kicker {
  color: #b43b27 !important;
  text-shadow:
    0 2px 0 var(--girls-vermilion-soft),
    0 4px 0 rgba(126, 31, 23, .10) !important;
}

.project-girls .girls-summary p,
.project-girls .girls-tech-card dd {
  color: #5f271d !important;
}

.project-girls .girls-tech-card dt,
.project-girls .girls-tech-card a {
  color: #b43b27 !important;
}

.project-girls .girls-mini-gallery-section {
  padding-top: clamp(38px, 5vw, 64px) !important;
  border-top: 5px solid var(--girls-vermilion) !important;
}

.project-girls .girls-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.project-girls .girls-mini-gallery figure {
  overflow: hidden;
  margin: 0;
  padding: 8px;
  border: 3px solid #8a271d;
  border-radius: 18px;
  background: rgba(255, 247, 223, .78);
  box-shadow: 7px 7px 0 rgba(226, 64, 34, .36);
}

.project-girls .girls-mini-gallery img {
  display: block;
  width: 100%;
  height: clamp(120px, 14vw, 180px);
  object-fit: cover;
  object-position: center 70%;
  border-radius: 11px;
  filter: saturate(1.05) contrast(1.04);
}

@media (max-width: 920px) {
  .project-girls .girls-intro-grid {
    grid-template-columns: 1fr !important;
  }

  .project-girls .girls-intro-photo {
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .project-girls .girls-hero h1 {
    white-space: normal !important;
    font-size: clamp(42px, 14vw, 70px) !important;
  }

  .project-girls .girls-mini-gallery {
    grid-template-columns: 1fr;
  }
}

/* Galeries projet 06/07 : photos plus presentes et modele commun */
.project-page {
  --project-accent: #cf6d3d;
  --project-accent-dark: #34190e;
  --project-accent-soft: #f4b746;
  color: var(--project-accent-dark);
}

.project-songe {
  --section-line: #5a7b3d;
  --project-accent: #5a7b3d;
  --project-accent-dark: #1f2d1a;
  --project-accent-soft: #e7ab3a;
  --project-wash: rgba(90, 123, 61, .18);
}

.project-hiero {
  --section-line: #a22623;
  --project-accent: #a22623;
  --project-accent-dark: #230d0c;
  --project-accent-soft: #e1a43d;
  --project-wash: rgba(162, 38, 35, .20);
}

.project-premier {
  --section-line: #2d6f77;
  --project-accent: #2d6f77;
  --project-accent-dark: #14272a;
  --project-accent-soft: #db8730;
  --project-wash: rgba(45, 111, 119, .18);
}

.project-page .site-header::after,
.project-page .girls-intro-section,
.project-page .project-gallery-section {
  border-color: var(--project-accent) !important;
}

.project-page .brand-text,
.project-page .site-nav a,
.project-page .instagram-link,
.project-page .footer-links a,
.project-page .footer-copy {
  color: var(--project-accent-dark) !important;
}

.project-page .girls-hero,
.project-page .girls-intro-section,
.project-page .project-gallery-section {
  background-color: #ead9b9 !important;
  background-image:
    repeating-linear-gradient(0deg, rgba(43, 24, 13, .052) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(43, 24, 13, .036) 0 1px, transparent 1px 10px),
    radial-gradient(circle at 17% 20%, var(--project-wash, rgba(207, 109, 61, .16)), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(244, 183, 70, .16), transparent 34%),
    url("../images/paper-texture-generated.jpg") !important;
}

.project-page .girls-hero {
  padding-top: clamp(18px, 2.4vw, 34px) !important;
  padding-bottom: clamp(30px, 4.5vw, 58px) !important;
}

.project-page .girls-hero-layout {
  display: block !important;
}

.project-page .girls-hero-content {
  max-width: 1080px;
  padding-bottom: 0 !important;
}

.project-page .girls-back-link,
.project-page .girls-hero .project-type {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 10px clamp(22px, 3vw, 34px) 0 !important;
  border-color: var(--project-accent-dark) !important;
  color: var(--project-accent-dark) !important;
  background: rgba(255, 247, 223, .78) !important;
  box-shadow: 7px 7px 0 color-mix(in srgb, var(--project-accent) 42%, transparent) !important;
}

.project-page .girls-hero .project-type {
  padding: 11px 22px;
  border: 3px solid var(--project-accent);
  border-radius: 16px;
}

.project-page .girls-hero h1 {
  display: block !important;
  width: min(1050px, 100%) !important;
  max-width: 1050px !important;
  margin: 0 0 clamp(18px, 2.5vw, 28px) !important;
  padding: clamp(20px, 2.6vw, 34px) clamp(34px, 5vw, 62px) !important;
  border: 5px solid var(--project-accent-dark) !important;
  border-radius: 30px !important;
  background: rgba(255, 247, 223, .90) !important;
  color: var(--project-accent) !important;
  font-size: clamp(46px, 6vw, 76px) !important;
  line-height: .98 !important;
  text-align: center;
  text-shadow:
    0 3px 0 var(--project-accent-soft),
    0 7px 0 color-mix(in srgb, var(--project-accent-dark) 16%, transparent) !important;
  box-shadow:
    9px 9px 0 color-mix(in srgb, var(--project-accent) 72%, transparent),
    16px 16px 0 color-mix(in srgb, var(--project-accent-dark) 10%, transparent) !important;
}

.project-page .girls-hero p {
  max-width: 760px;
  color: var(--project-accent-dark) !important;
  font-size: clamp(18px, 2vw, 24px) !important;
}

.project-page .girls-intro-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr) !important;
  align-items: start !important;
  gap: clamp(30px, 4vw, 62px) !important;
}

.project-page .girls-side-column {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.project-page .girls-intro-photo {
  width: min(560px, 100%) !important;
  justify-self: end;
  margin: 0 !important;
  padding: 10px !important;
  border: 4px solid var(--project-accent-dark) !important;
  border-radius: 22px !important;
  background: rgba(255, 247, 223, .78) !important;
  box-shadow:
    8px 8px 0 color-mix(in srgb, var(--project-accent) 48%, transparent),
    14px 14px 0 color-mix(in srgb, var(--project-accent-dark) 10%, transparent) !important;
}

.project-page .girls-intro-photo img {
  display: block;
  width: 100%;
  height: clamp(300px, 30vw, 440px) !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  border-radius: 14px !important;
}

.project-songe .girls-intro-photo img { object-position: center 58%; }
.project-hiero .girls-intro-photo img { object-position: center 64%; }

.project-page .girls-intro-photo figcaption {
  color: var(--project-accent-dark) !important;
}

.project-page .girls-summary,
.project-page .girls-tech-card {
  border-color: var(--project-accent-dark) !important;
  color: var(--project-accent-dark) !important;
  box-shadow:
    8px 8px 0 color-mix(in srgb, var(--project-accent) 36%, transparent),
    14px 14px 0 color-mix(in srgb, var(--project-accent-dark) 8%, transparent) !important;
}

.project-page .girls-summary h2,
.project-page .girls-summary h3,
.project-page .girls-tech-card .section-kicker,
.project-page .project-gallery-head h2 {
  color: var(--project-accent) !important;
  text-shadow:
    0 2px 0 var(--project-accent-soft),
    0 4px 0 color-mix(in srgb, var(--project-accent-dark) 10%, transparent) !important;
}

.project-page .girls-summary p,
.project-page .girls-tech-card dd,
.project-page .project-gallery-head p {
  color: var(--project-accent-dark) !important;
}

.project-page .girls-tech-card dt,
.project-page .girls-tech-card a,
.project-page .section-kicker {
  color: var(--project-accent) !important;
}

.project-gallery-section {
  padding-top: clamp(40px, 5vw, 72px) !important;
  padding-bottom: clamp(54px, 7vw, 92px) !important;
  border-top: 5px solid var(--project-accent) !important;
}

.project-gallery-head {
  max-width: 760px;
  margin: 0 0 clamp(24px, 3vw, 38px);
}

.project-gallery-head h2 {
  margin: 6px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1;
}

.project-gallery-head p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 20px);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.project-gallery figure {
  grid-column: span 2;
  overflow: hidden;
  margin: 0;
  padding: 9px;
  border: 4px solid var(--project-accent-dark);
  border-radius: 22px;
  background: rgba(255, 247, 223, .82);
  box-shadow:
    8px 8px 0 color-mix(in srgb, var(--project-accent) 38%, transparent),
    14px 14px 0 color-mix(in srgb, var(--project-accent-dark) 8%, transparent);
}

.project-gallery figure.is-wide {
  grid-column: span 3;
}

.project-gallery img {
  display: block;
  width: 100%;
  height: clamp(220px, 21vw, 340px);
  object-fit: cover;
  object-position: center;
  border-radius: 13px;
  filter: saturate(1.08) contrast(1.04);
}

.project-gallery figure.is-wide img {
  height: clamp(270px, 28vw, 460px);
}

.project-gallery figure.is-drawing {
  background: rgba(255, 252, 242, .90);
}

.project-gallery figure.is-drawing img {
  height: clamp(280px, 30vw, 520px);
  object-fit: contain;
  padding: clamp(10px, 1.4vw, 18px);
  background: #f5f7f6;
}

.project-gallery--girls img {
  height: clamp(220px, 22vw, 330px) !important;
  object-position: center 68% !important;
}

.project-girls .project-gallery--girls {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.project-girls .project-gallery--girls figure {
  grid-column: span 1 !important;
}

.project-gallery--songe .is-wide:first-child img {
  object-position: center 60%;
}

.project-gallery--songe figure:nth-child(2) img {
  object-position: 38% center;
}

.project-gallery--hiero img {
  object-position: center 62%;
}

.project-gallery--hiero figure:nth-child(3) img {
  object-position: 30% center;
}

.project-gallery--hiero figure:nth-child(4) img {
  object-position: center 70%;
}

@media (max-width: 980px) {
  .project-page .girls-intro-grid {
    grid-template-columns: 1fr !important;
  }

  .project-page .girls-intro-photo {
    justify-self: start;
  }

  .project-gallery figure,
  .project-gallery figure.is-wide {
    grid-column: span 3;
  }
}

@media (max-width: 680px) {
  .project-page .girls-hero h1 {
    font-size: clamp(40px, 13vw, 68px) !important;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-girls .project-gallery--girls {
    grid-template-columns: 1fr !important;
  }

  .project-gallery figure,
  .project-gallery figure.is-wide,
  .project-girls .project-gallery--girls figure {
    grid-column: 1;
  }

  .project-gallery img,
  .project-gallery figure.is-wide img,
  .project-gallery figure.is-drawing img {
    height: auto;
    max-height: none;
  }
}

/* Ajustements 06/07 matin : heroes plus sobres, medias Songe et cartes photo-first */
#contact {
  background:
    linear-gradient(135deg, rgba(20, 15, 7, .92) 0%, rgba(33, 58, 42, .96) 42%, rgba(50, 89, 54, .94) 72%, rgba(106, 92, 47, .92) 100%),
    url("../images/paper-texture-generated.jpg") !important;
  background-size: auto, 900px auto !important;
  background-blend-mode: normal, multiply !important;
}

#contact::before,
#contact::after {
  display: none !important;
}

#projets .projects-grid {
  align-items: stretch;
}

#projets .project-card,
#projets .project-card:nth-child(even) {
  min-height: clamp(360px, 32vw, 500px) !important;
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  border: 5px solid var(--ink) !important;
  border-radius: 28px !important;
  background: var(--ink) !important;
  box-shadow:
    10px 10px 0 color-mix(in srgb, var(--project-color) 70%, transparent),
    18px 18px 0 rgba(30, 20, 8, .14) !important;
}

#projets .project-card::before,
#projets .project-card::after {
  display: none !important;
}

#projets .project-card img,
#projets .project-card--girls img,
#projets .project-card--hiero img,
#projets .project-card--songe img,
#projets .project-card--premier img {
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(360px, 32vw, 500px) !important;
  object-fit: cover !important;
  filter: saturate(1.14) contrast(1.06) brightness(.95) !important;
}

#projets .project-card--hiero img {
  object-position: center 62% !important;
}

#projets .project-card--songe img {
  object-position: center 44% !important;
}

#projets .project-card-body,
#projets .project-card--girls .project-card-body,
#projets .project-card--hiero .project-card-body,
#projets .project-card--songe .project-card-body,
#projets .project-card--premier .project-card-body {
  position: absolute !important;
  right: 14px !important;
  bottom: 14px !important;
  left: 14px !important;
  min-height: 0 !important;
  padding: 16px 18px 18px !important;
  border: 3px solid rgba(255, 246, 226, .76) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(18, 13, 8, .18), rgba(18, 13, 8, .82)),
    color-mix(in srgb, var(--project-color) 24%, rgba(20, 14, 8, .76)) !important;
  box-shadow: none !important;
  backdrop-filter: blur(2px);
}

#projets .project-card-body::before {
  display: none !important;
}

#projets .project-card .project-type {
  margin-bottom: 6px;
  color: rgba(255, 246, 226, .80) !important;
}

#projets .project-card h3,
#projets .project-card--hiero h3,
#projets .project-card--songe h3,
#projets .project-card--premier h3 {
  max-width: 100%;
  margin: 0 !important;
  overflow: visible !important;
  color: #fff6e2 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(24px, 2vw, 34px) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 1.02 !important;
  letter-spacing: .01em !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .28) !important;
  overflow-wrap: anywhere;
}

#projets .project-card p {
  display: none !important;
}

.project-songe {
  --section-line: #6f9a45;
  --project-accent: #4f7f3a;
  --project-accent-dark: #182919;
  --project-accent-soft: #b6c66b;
  --project-wash: rgba(75, 126, 55, .22);
}

.project-hiero {
  --section-line: #7e4aa0;
  --project-accent: #7e4aa0;
  --project-accent-dark: #211029;
  --project-accent-soft: #c78bde;
  --project-wash: rgba(126, 74, 160, .22);
}

.project-page .girls-hero {
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--project-accent) !important;
  border-bottom: 5px solid var(--project-accent) !important;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--project-accent-dark) 96%, #000) 0%, color-mix(in srgb, var(--project-accent) 38%, var(--project-accent-dark)) 100%),
    url("../images/paper-texture-generated.jpg") !important;
  background-blend-mode: normal, multiply !important;
}

.project-page .girls-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .30;
  background:
    linear-gradient(90deg, transparent 0 18%, color-mix(in srgb, var(--project-accent-soft) 50%, transparent) 18% 19%, transparent 19% 100%),
    repeating-linear-gradient(0deg, rgba(255, 246, 226, .06) 0 1px, transparent 1px 11px);
}

.project-page .girls-hero-content {
  position: relative;
  z-index: 1;
}

.project-page .girls-back-link,
.project-page .girls-hero .project-type {
  border-color: color-mix(in srgb, var(--project-accent-soft) 70%, #fff6e2) !important;
  color: #fff6e2 !important;
  background: rgba(255, 246, 226, .08) !important;
  box-shadow: none !important;
}

.project-page .girls-hero h1,
.project-girls .girls-hero h1 {
  max-width: 980px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff6e2 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(52px, 7.2vw, 112px) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: .90 !important;
  letter-spacing: -.01em !important;
  text-align: left !important;
  text-transform: uppercase !important;
  text-shadow: 0 7px 0 color-mix(in srgb, var(--project-accent) 58%, transparent) !important;
  box-shadow: none !important;
}

.project-page .girls-hero p {
  max-width: 680px;
  color: rgba(255, 246, 226, .82) !important;
}

.project-page .girls-intro-section,
.project-page .project-gallery-section {
  border-top: 5px solid var(--project-accent) !important;
}

body:not(.project-songe) .project-gallery-head {
  display: none !important;
}

.project-gallery-section {
  overflow: hidden;
}

.project-gallery figure {
  padding: 5px !important;
  border-color: var(--project-accent-dark) !important;
  background: rgba(255, 246, 226, .68) !important;
}

.project-gallery img {
  border-radius: 12px !important;
}

.project-teaser {
  max-width: 980px;
  margin: 0 0 clamp(28px, 4vw, 48px);
}

.project-teaser h2 {
  margin: 0 0 clamp(16px, 2.4vw, 26px);
  color: var(--project-accent-dark);
  font-family: var(--font-body);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}

.songe-teaser-video {
  width: min(980px, 100%);
  height: clamp(220px, 36vw, 520px);
  object-fit: cover;
  border: 5px solid var(--project-accent-dark);
  border-radius: 24px;
  background: #000;
  box-shadow:
    10px 10px 0 color-mix(in srgb, var(--project-accent) 55%, transparent),
    18px 18px 0 rgba(24, 41, 25, .12);
}

.project-gallery--scroll {
  display: flex !important;
  grid-template-columns: none !important;
  gap: clamp(14px, 2vw, 22px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 22px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.project-gallery--scroll figure,
.project-gallery--scroll figure.is-wide {
  flex: 0 0 min(560px, 82vw);
  width: min(560px, 82vw);
  grid-column: auto !important;
  scroll-snap-align: start;
}

.project-gallery--scroll img,
.project-gallery--scroll figure.is-wide img {
  height: clamp(230px, 28vw, 380px) !important;
  object-fit: cover;
}

.project-gallery--scroll::-webkit-scrollbar {
  height: 10px;
}

.project-gallery--scroll::-webkit-scrollbar-track {
  background: rgba(24, 41, 25, .18);
  border-radius: 999px;
}

.project-gallery--scroll::-webkit-scrollbar-thumb {
  background: var(--project-accent);
  border-radius: 999px;
}

.project-hiero .girls-intro-photo img {
  object-position: center 58% !important;
}

@media (max-width: 780px) {
  #projets .project-card,
  #projets .project-card:nth-child(even) {
    min-height: 340px !important;
    transform: none !important;
  }

  #projets .project-card img,
  #projets .project-card--girls img,
  #projets .project-card--hiero img,
  #projets .project-card--songe img,
  #projets .project-card--premier img {
    min-height: 340px !important;
  }

  .project-page .girls-hero h1,
  .project-girls .girls-hero h1 {
    font-size: clamp(42px, 14vw, 76px) !important;
  }
}

.project-songe .girls-hero {
  background:
    linear-gradient(135deg, #0f2418 0%, #28532d 48%, #527a3c 100%),
    url("../images/paper-texture-generated.jpg") !important;
  background-blend-mode: normal, multiply !important;
}

.project-songe .girls-intro-section,
.project-songe .project-gallery-section {
  background-color: #dce2bf !important;
  background-image:
    repeating-linear-gradient(0deg, rgba(28, 71, 38, .055) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(28, 71, 38, .04) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, rgba(78, 124, 54, .18), transparent 42%, rgba(178, 198, 107, .22)),
    url("../images/paper-texture-generated.jpg") !important;
}

.project-hiero .girls-hero {
  background:
    linear-gradient(135deg, #170b22 0%, #3b1a51 50%, #714294 100%),
    url("../images/paper-texture-generated.jpg") !important;
  background-blend-mode: normal, multiply !important;
}

.project-hiero .girls-intro-section,
.project-hiero .project-gallery-section {
  background-color: #dfd0df !important;
  background-image:
    repeating-linear-gradient(0deg, rgba(70, 24, 89, .052) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(70, 24, 89, .038) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, rgba(126, 74, 160, .16), transparent 42%, rgba(199, 139, 222, .18)),
    url("../images/paper-texture-generated.jpg") !important;
}

.project-songe .girls-hero h1 {
  text-shadow: 0 7px 0 rgba(150, 180, 84, .42) !important;
}

.project-hiero .girls-hero h1 {
  text-shadow: 0 7px 0 rgba(126, 74, 160, .54) !important;
}

/* Ajustements typographiques accueil + galeries scroll conservees */
.hero-title,
.section-title,
.section-title--brand,
#presentation .section-title,
#projets .section-title,
#contact .section-title {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
  text-transform: uppercase !important;
}

.hero-title {
  max-width: 920px !important;
  color: #fff6e2 !important;
  line-height: .88 !important;
  text-shadow: 0 7px 0 rgba(207, 109, 61, .46) !important;
}

.hero-title .hero-word,
.hero-title .hero-word--theatre,
.hero-title .hero-word--film,
.hero-title .hero-word--performance {
  color: #fff6e2 !important;
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: inherit !important;
  text-shadow: inherit !important;
}

.section-title,
.section-title--brand {
  line-height: .9 !important;
}

.section-title--brand span {
  display: inline-block;
  font-family: inherit !important;
  font-weight: 800 !important;
}

.section-title--brand small {
  display: inline-block;
  margin-left: .28em;
  font-family: inherit !important;
  font-size: .42em !important;
  font-weight: 600 !important;
  letter-spacing: .06em !important;
  vertical-align: middle;
}

.presentation-panel h3,
.presentation-panel--actions h3 {
  color: #263f2d !important;
  text-shadow: 0 2px 0 rgba(182, 198, 107, .42) !important;
}

#projets .project-card,
#projets .project-card:nth-child(even) {
  min-height: clamp(430px, 36vw, 560px) !important;
}

#projets .project-card img,
#projets .project-card--girls img,
#projets .project-card--hiero img,
#projets .project-card--songe img,
#projets .project-card--premier img {
  min-height: clamp(430px, 36vw, 560px) !important;
}

#projets .project-card-body,
#projets .project-card--girls .project-card-body,
#projets .project-card--hiero .project-card-body,
#projets .project-card--songe .project-card-body,
#projets .project-card--premier .project-card-body {
  padding: 16px 18px 18px !important;
  background:
    linear-gradient(180deg, rgba(18, 13, 8, .42), rgba(18, 13, 8, .88)),
    color-mix(in srgb, var(--project-color) 28%, rgba(20, 14, 8, .82)) !important;
}

#projets .project-card p {
  display: block !important;
  margin: 8px 0 0 !important;
  color: rgba(255, 246, 226, .86) !important;
  font-size: clamp(12.5px, .95vw, 14px) !important;
  font-weight: 500 !important;
  line-height: 1.42 !important;
}

#projets .project-card h3,
#projets .project-card--hiero h3,
#projets .project-card--songe h3,
#projets .project-card--premier h3 {
  font-size: clamp(23px, 1.85vw, 31px) !important;
}

.project-teaser {
  margin-right: auto !important;
  margin-left: auto !important;
}

.project-teaser h2 {
  text-align: center;
}

.songe-teaser-video {
  margin-right: auto;
  margin-left: auto;
}

.project-gallery--hiero.project-gallery--scroll figure,
.project-gallery--premier.project-gallery--scroll figure,
.project-gallery--hiero.project-gallery--scroll figure.is-wide,
.project-gallery--premier.project-gallery--scroll figure.is-wide {
  flex-basis: min(520px, 82vw);
  width: min(520px, 82vw);
}

.project-gallery--hiero.project-gallery--scroll figure.is-drawing {
  flex-basis: min(360px, 72vw);
  width: min(360px, 72vw);
}

.project-gallery--hiero.project-gallery--scroll img,
.project-gallery--premier.project-gallery--scroll img,
.project-gallery--hiero.project-gallery--scroll figure.is-wide img,
.project-gallery--premier.project-gallery--scroll figure.is-wide img {
  height: clamp(240px, 30vw, 410px) !important;
}

.project-gallery--hiero.project-gallery--scroll figure.is-drawing img {
  height: clamp(300px, 38vw, 520px) !important;
}

@media (max-width: 780px) {
  #projets .project-card,
  #projets .project-card:nth-child(even),
  #projets .project-card img,
  #projets .project-card--girls img,
  #projets .project-card--hiero img,
  #projets .project-card--songe img,
  #projets .project-card--premier img {
    min-height: 430px !important;
  }

  .section-title--brand small {
    display: block;
    margin: .18em 0 0;
  }
}

/* Ajustements 07/07 : fiches projets au survol, Premier Moi bleu, galeries propres */
#projets {
  --project-title-fill: #25180f;
  --project-title-border: #efaa3e;
  --project-title-shadow: #4c7448;
}

#projets .container {
  width: min(1520px, calc(100% - 24px)) !important;
}

#projets .section-head {
  justify-items: center;
  text-align: center;
}

#projets .section-head > div:first-child {
  display: grid;
  justify-items: center;
}

#projets .section-title {
  display: inline-block !important;
  padding: clamp(14px, 1.6vw, 22px) clamp(34px, 5vw, 72px) !important;
  border: 5px solid var(--project-title-border) !important;
  border-radius: 28px !important;
  background: var(--project-title-fill) !important;
  color: #ffa35f !important;
  text-shadow:
    0 4px 0 #8d1b5f,
    0 8px 0 rgba(0, 0, 0, .34) !important;
  box-shadow:
    9px 9px 0 var(--project-title-shadow),
    15px 15px 0 rgba(39, 24, 11, .18) !important;
}

#projets .section-intro {
  text-align: center;
}

#projets .projects-grid {
  grid-template-columns: repeat(4, minmax(245px, 1fr)) !important;
  gap: clamp(16px, 1.8vw, 30px) !important;
}

#projets .project-card--girls { --project-color: #b7382f !important; }
#projets .project-card--songe { --project-color: #4f7f3a !important; }
#projets .project-card--premier { --project-color: #2876a7 !important; }
#projets .project-card--hiero { --project-color: #7e4aa0 !important; }

#projets .project-card,
#projets .project-card:nth-child(even) {
  min-height: clamp(470px, 36vw, 610px) !important;
  border-width: 6px !important;
  border-color: #27180d !important;
  border-radius: 30px !important;
  box-shadow:
    10px 10px 0 color-mix(in srgb, var(--project-color) 72%, transparent),
    18px 18px 0 rgba(39, 24, 11, .15) !important;
}

#projets .project-card img,
#projets .project-card--girls img,
#projets .project-card--hiero img,
#projets .project-card--songe img,
#projets .project-card--premier img {
  min-height: clamp(470px, 36vw, 610px) !important;
  transform: scale(1.035);
  transition: transform .35s ease, filter .35s ease !important;
}

#projets .project-card:hover img,
#projets .project-card:focus-visible img {
  transform: scale(1.085) !important;
  filter: saturate(1.2) contrast(1.08) brightness(.88) !important;
}

#projets .project-card--girls img {
  object-position: center 38% !important;
}

#projets .project-card--songe img {
  object-position: 48% 35% !important;
}

#projets .project-card--premier img {
  object-position: center 36% !important;
}

#projets .project-card--hiero img {
  object-position: center 56% !important;
}

#projets .project-card-body,
#projets .project-card--girls .project-card-body,
#projets .project-card--hiero .project-card-body,
#projets .project-card--songe .project-card-body,
#projets .project-card--premier .project-card-body {
  padding: 18px 20px 20px !important;
  background:
    linear-gradient(180deg, rgba(18, 13, 8, .30), rgba(18, 13, 8, .92)),
    color-mix(in srgb, var(--project-color) 32%, rgba(20, 14, 8, .84)) !important;
  transform: translateY(calc(100% - 86px));
  transition: transform .32s ease, background .32s ease !important;
}

#projets .project-card:hover .project-card-body,
#projets .project-card:focus-visible .project-card-body {
  transform: translateY(0);
}

#projets .project-card p {
  display: block !important;
  max-height: 0;
  margin-top: 0 !important;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease, max-height .32s ease, margin-top .32s ease;
}

#projets .project-card:hover p,
#projets .project-card:focus-visible p {
  max-height: 180px;
  margin-top: 10px !important;
  opacity: 1;
  transform: translateY(0);
}

#projets .project-card h3,
#projets .project-card--hiero h3,
#projets .project-card--songe h3,
#projets .project-card--premier h3 {
  font-size: clamp(25px, 2vw, 34px) !important;
}

body.project-premier,
.project-premier {
  --project-color: #2876a7 !important;
  --section-line: #2876a7 !important;
  --project-accent: #2876a7 !important;
  --project-accent-dark: #112b3a !important;
  --project-accent-soft: #8fc7df !important;
  --project-wash: rgba(40, 118, 167, .22) !important;
}

.project-premier .girls-hero {
  background:
    linear-gradient(135deg, #0e2535 0%, #1f5d82 52%, #5fa4c1 100%),
    url("../images/paper-texture-generated.jpg") !important;
  background-blend-mode: normal, multiply !important;
}

.project-premier .girls-intro-section,
.project-premier .project-gallery-section {
  background-color: #d7e4e7 !important;
  background-image:
    repeating-linear-gradient(0deg, rgba(17, 43, 58, .052) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(17, 43, 58, .04) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, rgba(40, 118, 167, .16), transparent 42%, rgba(143, 199, 223, .20)),
    url("../images/paper-texture-generated.jpg") !important;
}

.project-premier .girls-hero h1,
.project-premier .girls-summary h2,
.project-premier .girls-summary h3,
.project-premier .girls-tech-card .section-kicker,
.project-premier .project-gallery-head h2 {
  color: #2876a7 !important;
  text-shadow:
    0 2px 0 #8fc7df,
    0 5px 0 rgba(17, 43, 58, .14) !important;
}

.project-gallery--scroll {
  align-items: flex-start !important;
}

.project-hiero .project-gallery--scroll figure,
.project-hiero .project-gallery--scroll figure.is-wide {
  align-self: flex-start;
  padding: 6px !important;
  background: color-mix(in srgb, var(--project-accent-dark) 92%, #fff6e2) !important;
}

.project-hiero .project-gallery--scroll figure:not(.is-drawing) img,
.project-hiero .project-gallery--scroll figure.is-wide img {
  display: block;
  height: clamp(255px, 30vw, 420px) !important;
  border-radius: 14px !important;
  object-fit: cover !important;
}

.project-hiero .project-gallery--scroll figure.is-drawing {
  background: rgba(255, 252, 242, .92) !important;
}

.project-hiero .project-gallery--scroll figure.is-drawing img {
  background: #f5f7f6 !important;
}

@media (max-width: 1180px) {
  #projets .projects-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  #projets .container {
    width: min(100% - 28px, 560px) !important;
  }

  #projets .projects-grid {
    grid-template-columns: 1fr !important;
  }

  #projets .project-card-body,
  #projets .project-card--girls .project-card-body,
  #projets .project-card--hiero .project-card-body,
  #projets .project-card--songe .project-card-body,
  #projets .project-card--premier .project-card-body {
    transform: translateY(0);
  }

  #projets .project-card p {
    max-height: none;
    margin-top: 10px !important;
    opacity: 1;
    transform: none;
  }
}

/* Refonte charte sombre cinematique 07/07 */
:root {
  --cinema-black: #050403;
  --forest-deep: #071913;
  --forest-panel: #0b241a;
  --espresso: #21150f;
  --cream: #f2eadb;
  --cream-soft: #d8cbb5;
  --gold: #b7812d;
  --burnt: #cf6d32;
  --line-soft: rgba(242, 234, 219, .18);
  --grain: url("../images/paper-texture-generated.jpg");
  --serif-cinema: Georgia, "Times New Roman", Times, serif;
  --sans-cinema: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
}

html {
  background: var(--cinema-black);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(183, 129, 45, .10), transparent 30%),
    linear-gradient(180deg, #050403 0%, #071913 48%, #050403 100%) !important;
  color: var(--cream);
  font-family: var(--sans-cinema);
}

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

.container,
.header-row,
.footer-row {
  width: min(1500px, calc(100% - 72px)) !important;
}

.site-header,
.project-page .site-header,
.project-girls .site-header {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 24px 0 !important;
  border: 0 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, .68), transparent) !important;
  backdrop-filter: none !important;
}

.site-header::before,
.site-header::after {
  display: none !important;
}

.header-row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-text,
.project-page .brand-text,
.project-girls .brand-text {
  min-width: 150px;
  padding: 10px 18px 9px !important;
  border: 1px solid rgba(183, 129, 45, .88) !important;
  border-radius: 12px !important;
  color: var(--cream) !important;
  background: rgba(5, 4, 3, .32) !important;
  font-family: var(--sans-cinema) !important;
  font-size: 24px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: .86 !important;
  letter-spacing: -.03em !important;
  box-shadow: none !important;
}

.brand-text span,
.project-page .brand-text span,
.project-girls .brand-text span {
  display: block;
  margin-top: 7px;
  color: var(--cream) !important;
  font-family: var(--sans-cinema) !important;
  font-size: 8px !important;
  font-weight: 800 !important;
  letter-spacing: .34em !important;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
}

.site-nav a,
.project-page .site-nav a,
.project-girls .site-nav a {
  color: rgba(242, 234, 219, .92) !important;
  font-family: var(--sans-cinema) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .32em !important;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--gold) !important;
}

.instagram-link {
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(183, 129, 45, .90) !important;
  border-radius: 50% !important;
  color: var(--cream) !important;
  background: rgba(5, 4, 3, .24) !important;
}

.instagram-link svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  border-color: rgba(183, 129, 45, .8) !important;
  color: var(--cream) !important;
  background: rgba(5, 4, 3, .36) !important;
}

.hero {
  min-height: clamp(680px, 88vh, 930px) !important;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(183, 129, 45, .62);
  background: #000 !important;
}

.hero-media,
.hero-video {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.18) brightness(.72);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .48) 42%, rgba(0, 0, 0, .68) 100%),
    radial-gradient(circle at 72% 44%, rgba(183, 129, 45, .08), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, .70) 0%, transparent 28%, rgba(0, 0, 0, .54) 100%) !important;
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(56px, 8vw, 128px);
  top: 24%;
  bottom: 22%;
  width: 1px;
  background: var(--burnt);
  z-index: 2;
}

.hero::after {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--gold), transparent) !important;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - 64px));
  margin-left: clamp(76px, 9.5vw, 160px) !important;
  padding-top: 70px;
}

.hero-title,
.hero-title span,
.hero-title .hero-word {
  color: var(--cream) !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(70px, 7.8vw, 146px) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: .84 !important;
  letter-spacing: -.055em !important;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .48) !important;
}

.hero-title {
  max-width: 820px !important;
  margin-bottom: 22px !important;
}

.hero-title .hero-word {
  display: block;
}

.hero-lead {
  max-width: 600px !important;
  color: rgba(242, 234, 219, .94) !important;
  font-size: clamp(18px, 1.45vw, 24px) !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
}

.button {
  min-height: 48px;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .32em !important;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--gold) !important;
  color: #fff7e6 !important;
  background: linear-gradient(135deg, #d79739, #b97826) !important;
  box-shadow: 0 12px 32px rgba(183, 129, 45, .26) !important;
}

.button-secondary {
  border-color: rgba(242, 234, 219, .78) !important;
  color: var(--cream) !important;
  background: rgba(0, 0, 0, .22) !important;
}

#projets,
.listing-projects {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px) 0 clamp(70px, 8vw, 110px) !important;
  border-top: 1px solid rgba(183, 129, 45, .62);
  border-bottom: 1px solid rgba(183, 129, 45, .25);
  background:
    radial-gradient(circle at 2% 24%, rgba(183, 129, 45, .16), transparent 22%),
    radial-gradient(circle at 100% 80%, rgba(207, 109, 50, .14), transparent 24%),
    linear-gradient(135deg, #07150f 0%, #0a241a 55%, #06110d 100%),
    var(--grain) !important;
  background-blend-mode: normal, normal, normal, multiply !important;
}

#projets .container,
.listing-projects .container {
  width: min(1500px, calc(100% - 72px)) !important;
}

#projets .section-head,
.listing-projects .section-head {
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 28px;
  margin-bottom: 30px !important;
  text-align: left !important;
}

#projets .section-head > div:first-child {
  display: block !important;
  justify-items: initial !important;
}

#projets .section-title,
.listing-hero h1 {
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--burnt) !important;
  font-family: var(--sans-cinema) !important;
  font-size: clamp(32px, 3vw, 54px) !important;
  font-weight: 800 !important;
  letter-spacing: .22em !important;
  line-height: 1 !important;
  text-transform: uppercase;
  text-shadow: none !important;
  box-shadow: none !important;
}

#projets .section-intro,
.listing-hero p {
  max-width: 680px;
  color: rgba(242, 234, 219, .92) !important;
  font-size: clamp(18px, 1.45vw, 24px) !important;
  line-height: 1.4;
}

.all-projects-link {
  color: var(--cream);
  font-family: var(--sans-cinema);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
  white-space: nowrap;
}

.all-projects-link span {
  display: inline-block;
  margin-left: 14px;
  color: var(--gold);
  font-size: 28px;
  line-height: 0;
  vertical-align: middle;
}

#projets .projects-grid,
.listing-projects .projects-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2vw, 30px) !important;
}

#projets .project-card,
#projets .project-card:nth-child(even),
.listing-projects .project-card,
.listing-projects .project-card:nth-child(even) {
  min-height: clamp(330px, 22vw, 430px) !important;
  border: 1px solid rgba(242, 234, 219, .42) !important;
  border-radius: 16px !important;
  background: #000 !important;
  box-shadow:
    6px 0 0 color-mix(in srgb, var(--project-color) 80%, transparent),
    0 18px 42px rgba(0, 0, 0, .28) !important;
  transform: none !important;
}

#projets .project-card img,
#projets .project-card--girls img,
#projets .project-card--hiero img,
#projets .project-card--songe img,
#projets .project-card--premier img,
.listing-projects .project-card img {
  min-height: clamp(330px, 22vw, 430px) !important;
  height: 100% !important;
  transform: none !important;
  filter: saturate(.95) contrast(1.12) brightness(.72) !important;
}

#projets .project-card:hover img,
.listing-projects .project-card:hover img {
  transform: scale(1.04) !important;
  filter: saturate(1.05) contrast(1.16) brightness(.64) !important;
}

#projets .project-card-body,
#projets .project-card--girls .project-card-body,
#projets .project-card--hiero .project-card-body,
#projets .project-card--songe .project-card-body,
#projets .project-card--premier .project-card-body,
.listing-projects .project-card-body {
  inset: auto 18px 18px 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  transform: none !important;
}

#projets .project-card .project-type,
.listing-projects .project-card .project-type {
  color: rgba(242, 234, 219, .88) !important;
  font-size: 10px !important;
  letter-spacing: .28em !important;
}

#projets .project-card h3,
#projets .project-card--hiero h3,
#projets .project-card--songe h3,
#projets .project-card--premier h3,
.listing-projects .project-card h3 {
  margin: 18px 0 18px !important;
  color: var(--cream) !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(30px, 2.8vw, 58px) !important;
  font-weight: 600 !important;
  line-height: .94 !important;
  letter-spacing: -.055em !important;
  text-transform: none !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .62) !important;
}

#projets .project-card p,
.listing-projects .project-card p {
  display: block !important;
  max-width: 82%;
  max-height: none !important;
  margin: 0 !important;
  overflow: visible !important;
  opacity: 1 !important;
  color: rgba(242, 234, 219, .92) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  transform: none !important;
}

#projets .project-card-body::after,
.listing-projects .project-card-body::after {
  content: "→";
  display: block;
  margin-top: 22px;
  color: var(--cream);
  font-size: 30px;
  line-height: 1;
}

#presentation,
.presentation-page #presentation {
  padding: clamp(72px, 8vw, 120px) 0 !important;
  background:
    linear-gradient(135deg, rgba(242, 234, 219, .96), rgba(224, 211, 188, .95)),
    var(--grain) !important;
  background-blend-mode: normal, multiply !important;
  color: var(--espresso);
}

#presentation .section-kicker,
.presentation-page .section-kicker {
  color: var(--burnt) !important;
}

#presentation .section-title,
#presentation .section-title--brand,
.presentation-page .listing-hero h1 {
  color: var(--espresso) !important;
  font-family: var(--serif-cinema) !important;
  letter-spacing: -.055em !important;
  text-transform: none !important;
}

.presentation-layout {
  gap: clamp(32px, 5vw, 72px) !important;
  align-items: start !important;
}

.presentation-panel,
.presentation-panel--actions,
.orane-bio {
  border: 1px solid rgba(33, 21, 15, .20) !important;
  border-radius: 18px !important;
  background: rgba(255, 249, 236, .66) !important;
  box-shadow: 0 20px 50px rgba(33, 21, 15, .10) !important;
}

.presentation-panel h2,
.presentation-panel h3,
.orane-bio h2,
.orane-bio h3 {
  color: var(--espresso) !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(30px, 3vw, 52px) !important;
  font-weight: 700 !important;
  letter-spacing: -.04em;
  text-shadow: none !important;
}

.presentation-panel p,
.orane-bio p {
  color: rgba(33, 21, 15, .78) !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
}

.inline-more {
  display: inline-block;
  margin-top: 14px;
  color: var(--burnt);
  font-family: var(--sans-cinema);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.portrait-card--photo {
  border: 1px solid rgba(33, 21, 15, .20) !important;
  border-radius: 18px !important;
  background: rgba(255, 249, 236, .72) !important;
  box-shadow: 0 20px 50px rgba(33, 21, 15, .12) !important;
}

.portrait-card--photo img {
  border-radius: 14px !important;
  filter: saturate(.95) contrast(1.04) !important;
}

#contact {
  padding: clamp(78px, 9vw, 130px) 0 !important;
  background:
    linear-gradient(135deg, rgba(3, 14, 10, .98), rgba(18, 51, 35, .96) 52%, rgba(7, 20, 15, .98)),
    var(--grain) !important;
  color: var(--cream);
}

#contact .section-title {
  display: inline-block !important;
  padding: 18px 56px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 18px !important;
  background: rgba(5, 4, 3, .38) !important;
  color: #ffa566 !important;
  font-family: var(--sans-cinema) !important;
  font-size: clamp(56px, 7vw, 118px) !important;
  font-weight: 900 !important;
  letter-spacing: -.04em !important;
  text-shadow: 0 5px 0 #7b174f, 0 14px 32px rgba(0, 0, 0, .36) !important;
}

#contact .section-intro {
  color: rgba(242, 234, 219, .78) !important;
}

.contact-form {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(183, 129, 45, .42) !important;
  border-radius: 20px !important;
  background: rgba(5, 4, 3, .38) !important;
}

input,
textarea {
  border: 1px solid rgba(242, 234, 219, .22) !important;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06) !important;
  color: var(--cream) !important;
}

.site-footer {
  border-top: 1px solid rgba(183, 129, 45, .28) !important;
  background: #050403;
  color: rgba(242, 234, 219, .72);
}

.footer-copy,
.footer-links a {
  color: rgba(242, 234, 219, .72) !important;
}

.listing-hero,
.project-page .girls-hero,
.project-girls .girls-hero {
  min-height: clamp(420px, 46vw, 610px) !important;
  display: grid;
  align-items: end;
  padding: 150px 0 70px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(183, 129, 45, .48) !important;
  background-color: #050403 !important;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .30) 52%, rgba(0, 0, 0, .68)),
    linear-gradient(180deg, rgba(0, 0, 0, .74), transparent 36%, rgba(0, 0, 0, .30)),
    var(--project-hero-image, url("../images/hero-video-poster.png")) !important;
  background-size: cover !important;
  background-position: center !important;
  background-blend-mode: normal, normal, normal !important;
}

.listing-page .listing-hero {
  --project-hero-image: url("../images/songe/songe-foret-2-crop.jpg");
}

.presentation-page .listing-hero {
  --project-hero-image: url("../images/orane-palmieri-presentation.jpeg");
  background-position: center 38% !important;
}

.project-songe .girls-hero {
  --project-hero-image: url("../images/songe/songe-foret-1-crop.jpg");
  background-position: center 44% !important;
}

.project-girls .girls-hero {
  --project-hero-image: url("../images/girls-boys/girls-boys-hero-wide.jpg");
  background-position: center 42% !important;
}

.project-hiero .girls-hero {
  --project-hero-image: url("../images/hierophanie/hierophanie-dark-2.jpg");
  background-position: center 54% !important;
}

.project-premier .girls-hero {
  --project-hero-image: url("../images/projet-premier-moi-affiche.jpg");
  background-position: center 28% !important;
}

.listing-hero h1,
.project-page .girls-hero h1,
.project-girls .girls-hero h1 {
  width: min(960px, 100%) !important;
  margin: 20px 0 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--cream) !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(58px, 7.2vw, 126px) !important;
  font-weight: 800 !important;
  line-height: .88 !important;
  letter-spacing: -.06em !important;
  text-align: left !important;
  text-transform: uppercase !important;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .62) !important;
  box-shadow: none !important;
}

.presentation-page .listing-hero h1 {
  text-transform: none !important;
}

.presentation-page .listing-hero h1 span {
  display: block;
  font-size: .5em;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.listing-hero p,
.project-page .girls-hero p,
.project-girls .girls-hero p {
  max-width: 760px;
  color: rgba(242, 234, 219, .88) !important;
  font-size: clamp(17px, 1.5vw, 24px) !important;
}

.girls-back-link,
.project-page .girls-back-link,
.project-girls .girls-back-link,
.project-page .girls-hero .project-type,
.project-girls .girls-hero .project-type {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-right: 12px !important;
  margin-bottom: 14px !important;
  padding: 10px 20px !important;
  border: 1px solid rgba(183, 129, 45, .62) !important;
  border-radius: 999px !important;
  color: rgba(242, 234, 219, .88) !important;
  background: rgba(5, 4, 3, .40) !important;
  box-shadow: none !important;
  font-size: 10px !important;
  letter-spacing: .28em !important;
}

.girls-page,
.project-page .girls-intro-section,
.project-girls .girls-intro-section,
.project-page .project-gallery-section,
.project-girls .project-gallery-section {
  background:
    linear-gradient(135deg, rgba(242, 234, 219, .97), rgba(223, 212, 193, .96)),
    var(--grain) !important;
  background-blend-mode: normal, multiply !important;
  color: var(--espresso) !important;
}

.project-page .girls-intro-section,
.project-girls .girls-intro-section {
  padding: clamp(48px, 6vw, 88px) 0 !important;
}

.project-page .girls-intro-grid,
.project-girls .girls-intro-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .86fr) !important;
  gap: clamp(30px, 4vw, 62px) !important;
  align-items: start !important;
}

.girls-summary,
.girls-tech-card,
.project-page .girls-summary,
.project-page .girls-tech-card,
.project-girls .girls-summary,
.project-girls .girls-tech-card {
  border: 1px solid rgba(33, 21, 15, .34) !important;
  border-radius: 8px !important;
  background: rgba(255, 249, 236, .54) !important;
  color: var(--espresso) !important;
  box-shadow: 0 20px 44px rgba(33, 21, 15, .10) !important;
}

.girls-summary h2,
.girls-summary h3,
.project-gallery-head h2 {
  color: color-mix(in srgb, var(--project-accent, var(--burnt)) 72%, var(--espresso)) !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(30px, 3vw, 54px) !important;
  font-weight: 500 !important;
  letter-spacing: -.04em !important;
  text-transform: none !important;
  text-shadow: none !important;
}

.girls-summary p,
.girls-tech-card dd,
.project-gallery-head p {
  color: rgba(33, 21, 15, .80) !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

.girls-tech-card {
  background: linear-gradient(135deg, #071913, #0b241a) !important;
  color: var(--cream) !important;
}

.girls-tech-card dt,
.girls-tech-card .section-kicker {
  color: var(--project-accent, var(--gold)) !important;
}

.girls-tech-card dd,
.girls-tech-card a {
  color: rgba(242, 234, 219, .88) !important;
}

.girls-tech-card div {
  border-color: rgba(242, 234, 219, .14) !important;
}

.girls-hero-photo,
.project-page .girls-intro-photo,
.project-girls .girls-intro-photo {
  padding: 0 !important;
  border: 1px solid rgba(33, 21, 15, .28) !important;
  border-radius: 10px !important;
  overflow: hidden;
  background: #0b0a08 !important;
  box-shadow: 0 18px 42px rgba(33, 21, 15, .14) !important;
}

.girls-hero-photo img,
.project-page .girls-intro-photo img,
.project-girls .girls-intro-photo img {
  height: clamp(260px, 28vw, 430px) !important;
  border-radius: 0 !important;
  filter: saturate(.98) contrast(1.08) !important;
}

.girls-hero-photo figcaption {
  padding: 10px 14px;
  color: rgba(33, 21, 15, .62) !important;
}

.project-gallery-section {
  border-top: 1px solid rgba(33, 21, 15, .20) !important;
}

.project-teaser {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left !important;
}

.project-teaser h2 {
  color: var(--forest-panel) !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(34px, 4vw, 62px) !important;
  font-weight: 700 !important;
  line-height: .9 !important;
  text-align: left !important;
}

.songe-teaser-video {
  border: 1px solid rgba(33, 21, 15, .38) !important;
  border-radius: 10px !important;
  box-shadow: 0 18px 42px rgba(33, 21, 15, .16) !important;
}

.project-gallery figure,
.project-gallery--scroll figure,
.project-gallery--scroll figure.is-wide {
  border: 1px solid rgba(33, 21, 15, .30) !important;
  border-radius: 10px !important;
  background: #0b0a08 !important;
  box-shadow: 0 18px 42px rgba(33, 21, 15, .12) !important;
}

.project-gallery img,
.project-gallery--scroll img,
.project-gallery--scroll figure.is-wide img {
  border-radius: 8px !important;
}

.project-girls {
  --project-accent: #b7382f !important;
  --project-accent-dark: #25100e !important;
  --project-accent-soft: #e3a05b !important;
}

.project-songe {
  --project-accent: #557c3d !important;
  --project-accent-dark: #122016 !important;
  --project-accent-soft: #d59a39 !important;
}

.project-premier {
  --project-accent: #2e82a9 !important;
  --project-accent-dark: #0f2634 !important;
  --project-accent-soft: #d97c36 !important;
}

.project-hiero {
  --project-accent: #874aa0 !important;
  --project-accent-dark: #1b0d22 !important;
  --project-accent-soft: #c53c32 !important;
}

@media (max-width: 1100px) {
  #projets .projects-grid,
  .listing-projects .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .project-page .girls-intro-grid,
  .project-girls .girls-intro-grid,
  .presentation-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 780px) {
  .container,
  .header-row,
  .footer-row,
  #projets .container,
  .listing-projects .container {
    width: min(100% - 28px, 620px) !important;
  }

  .site-header {
    padding: 16px 0 !important;
  }

  .header-row {
    align-items: flex-start;
  }

  .header-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 14px;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(183, 129, 45, .48);
    border-radius: 14px;
    background: rgba(5, 4, 3, .92);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex !important;
  }

  .brand-text {
    min-width: 132px;
    font-size: 20px !important;
  }

  .hero {
    min-height: 620px !important;
  }

  .hero::before {
    left: 26px;
  }

  .hero-content {
    width: min(100% - 52px, 620px);
    margin-left: 44px !important;
  }

  .hero-title,
  .hero-title span,
  .hero-title .hero-word {
    font-size: clamp(34px, 11vw, 50px) !important;
    line-height: .90 !important;
  }

  .action-row {
    flex-direction: column;
    align-items: flex-start;
  }

  #projets .section-head,
  .listing-projects .section-head {
    align-items: flex-start !important;
    flex-direction: column;
  }

  #projets .projects-grid,
  .listing-projects .projects-grid {
    grid-template-columns: 1fr !important;
  }

  #projets .project-card,
  .listing-projects .project-card {
    min-height: 420px !important;
  }

  .listing-hero,
  .project-page .girls-hero,
  .project-girls .girls-hero {
    min-height: 460px !important;
    padding: 124px 0 50px !important;
  }

  .listing-hero h1,
  .project-page .girls-hero h1,
  .project-girls .girls-hero h1 {
    font-size: clamp(46px, 15vw, 76px) !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Accueil compact final 2/3 hero + 1/3 projets - 07/07 */
.home-page {
  background:
    linear-gradient(180deg, #030302 0 64svh, #071711 64svh 100%) !important;
  color: var(--cream) !important;
}

.home-page .site-header {
  padding: clamp(16px, 2vw, 24px) 0 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, 0)) !important;
}

.home-page .header-row,
.home-page .container {
  width: min(1540px, calc(100% - 92px)) !important;
}

.home-page .brand-text {
  min-width: 164px;
  padding: 11px 18px 10px !important;
  border-radius: 12px !important;
  border-color: rgba(215, 151, 57, .78) !important;
  background: rgba(0, 0, 0, .26) !important;
}

.home-page .site-nav a {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  letter-spacing: .34em !important;
}

.home-page .hero {
  min-height: 66svh !important;
  height: 66svh !important;
  max-height: 720px !important;
  align-items: end !important;
  border-bottom: 1px solid rgba(215, 151, 57, .62) !important;
}

.home-page .hero-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 50% 45% !important;
  opacity: 1 !important;
  filter: saturate(1.05) contrast(1.08) brightness(.88) !important;
}

.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .42) 42%, rgba(0, 0, 0, .58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .50) 0%, rgba(0, 0, 0, .12) 40%, rgba(0, 0, 0, .62) 100%) !important;
}

.home-page .hero::before {
  left: clamp(50px, 7.6vw, 128px) !important;
  top: 30% !important;
  bottom: 20% !important;
  width: 2px !important;
  background: #d08325 !important;
}

.home-page .hero::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 0 !important;
  height: 1px !important;
  background: rgba(215, 151, 57, .72) !important;
  z-index: 4 !important;
}

.home-page .hero-content {
  width: min(760px, calc(100% - 120px)) !important;
  margin-left: clamp(82px, 9.5vw, 150px) !important;
  padding: 0 0 clamp(34px, 5.2vh, 58px) !important;
}

.home-page .hero-title,
.home-page .hero-title span,
.home-page .hero-title .hero-word {
  color: #fff4df !important;
  font-family: var(--font-title) !important;
  font-size: clamp(54px, 6.2vw, 104px) !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: .82 !important;
  letter-spacing: -.045em !important;
  text-transform: uppercase !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .52), 0 2px 0 rgba(207, 109, 50, .20) !important;
}

.home-page .hero-title {
  max-width: 720px !important;
  margin: 0 0 16px !important;
}

.home-page .hero-lead {
  max-width: 560px !important;
  margin: 0 0 24px !important;
  color: rgba(255, 247, 231, .94) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(17px, 1.25vw, 22px) !important;
  line-height: 1.42 !important;
}

.home-page .action-row {
  gap: 18px !important;
}

.home-page .button {
  min-height: 44px !important;
  padding: 12px 25px !important;
  border-radius: 999px !important;
  font-family: var(--font-mono) !important;
  font-size: 10px !important;
  letter-spacing: .34em !important;
}

.home-page #projets {
  min-height: 34svh !important;
  padding: clamp(22px, 3vh, 34px) 0 clamp(28px, 4vh, 46px) !important;
  border-top: 1px solid rgba(215, 151, 57, .68) !important;
  background:
    radial-gradient(circle at 0% 88%, rgba(207, 109, 50, .12), transparent 26%),
    radial-gradient(circle at 100% 90%, rgba(183, 129, 45, .13), transparent 24%),
    linear-gradient(135deg, #06120e 0%, #0b241a 52%, #06130e 100%),
    var(--grain) !important;
  background-blend-mode: screen, normal, normal, multiply !important;
}

/* Ajustements accueil demandes 08/07 : texte, blanc casse, hover cartes */
.home-page {
  background: #eee4d1 !important;
}

.home-page #projets {
  background:
    linear-gradient(180deg, rgba(245, 238, 221, .96), rgba(232, 219, 194, .98)),
    radial-gradient(circle at 88% 20%, rgba(217, 155, 57, .12), transparent 24%),
    url("../images/paper-texture-generated.jpg") !important;
  box-shadow: 0 -16px 42px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 248, 232, .72) !important;
}

.home-page #projets::before {
  border-top-color: rgba(217, 155, 57, .82) !important;
}

.home-page #projets .section-title {
  letter-spacing: -.012em !important;
  word-spacing: -.05em !important;
  color: #b38331 !important;
}

.home-page #projets .section-title::after {
  width: 36px !important;
  margin-left: 14px !important;
  background: rgba(31, 23, 16, .72) !important;
}

.home-page #projets .section-intro {
  max-width: 560px !important;
  color: rgba(31, 23, 16, .68) !important;
  line-height: 1.35 !important;
}

.home-page #projets .project-card,
.home-page #projets .project-card:nth-child(even) {
  border: 2px solid transparent !important;
  box-shadow: 0 18px 38px rgba(23, 16, 8, .22) !important;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease !important;
}

.home-page #projets .project-card::before {
  inset: 8px !important;
  border: 1px solid rgba(255, 248, 232, .16) !important;
  transition: border-color .26s ease, inset .26s ease !important;
}

.home-page #projets .project-card:hover,
.home-page #projets .project-card:focus-visible {
  border-color: var(--project-color) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 24px 48px rgba(23, 16, 8, .26), 0 0 0 5px color-mix(in srgb, var(--project-color), transparent 72%) !important;
}

.home-page #projets .project-card:hover::before,
.home-page #projets .project-card:focus-visible::before {
  inset: 12px !important;
  border-color: color-mix(in srgb, var(--project-color), white 42%) !important;
}

.home-page #projets .project-card::after {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .34) 44%, rgba(0, 0, 0, .08) 74%),
    linear-gradient(90deg, rgba(0, 0, 0, .46), rgba(0, 0, 0, .10) 58%, rgba(0, 0, 0, .24)) !important;
}

.home-page #projets .project-card h3,
.home-page #projets .project-card--hiero h3,
.home-page #projets .project-card--songe h3,
.home-page #projets .project-card--premier h3 {
  max-width: 92% !important;
  padding-top: clamp(4px, .75vh, 10px) !important;
  font-size: clamp(21px, 1.58vw, 31px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.025em !important;
}

.home-page #projets .project-card p {
  left: clamp(18px, 1.7vw, 26px) !important;
  right: clamp(18px, 1.7vw, 26px) !important;
  bottom: clamp(16px, 1.7vw, 24px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 248, 232, .93) !important;
  font-size: clamp(11.5px, .78vw, 14px) !important;
  line-height: 1.34 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .62) !important;
  opacity: 0 !important;
  transform: translateY(8px) !important;
}

.home-page #projets .project-card:hover p,
.home-page #projets .project-card:focus-visible p {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.home-page #projets .project-card:hover img,
.home-page #projets .project-card:focus-visible img {
  filter: saturate(1.08) contrast(1.08) brightness(.66) !important;
}

.home-page #projets::before,
.home-page #projets::after {
  display: none !important;
}

.home-page #projets .section-head {
  margin-bottom: clamp(16px, 2.4vh, 24px) !important;
}

.home-page #projets .section-title {
  color: #cf6d32 !important;
  font-family: var(--font-mono) !important;
  font-size: clamp(18px, 1.55vw, 30px) !important;
  font-weight: 700 !important;
  letter-spacing: .34em !important;
  line-height: 1 !important;
}

.home-page #projets .section-intro {
  margin-top: 8px !important;
  color: rgba(242, 234, 219, .90) !important;
  font-size: clamp(15px, 1.05vw, 19px) !important;
}

.home-page .all-projects-link {
  color: rgba(242, 234, 219, .88) !important;
  font-family: var(--font-mono) !important;
  font-size: 10px !important;
  letter-spacing: .32em !important;
}

.home-page #projets .projects-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(16px, 1.8vw, 28px) !important;
}

.home-page #projets .project-card,
.home-page #projets .project-card:nth-child(even) {
  min-height: clamp(205px, 18vw, 300px) !important;
  height: clamp(205px, 18vw, 300px) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(242, 234, 219, .38) !important;
  box-shadow:
    5px 0 0 color-mix(in srgb, var(--project-color) 86%, transparent),
    0 18px 34px rgba(0, 0, 0, .28) !important;
  overflow: hidden !important;
}

.home-page #projets .project-card img,
.home-page #projets .project-card--girls img,
.home-page #projets .project-card--hiero img,
.home-page #projets .project-card--songe img,
.home-page #projets .project-card--premier img {
  min-height: 100% !important;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  filter: saturate(1.02) contrast(1.08) brightness(.62) !important;
}

.home-page #projets .project-card--girls img {
  object-position: 44% 45% !important;
}

.home-page #projets .project-card--songe img {
  object-position: 45% 38% !important;
}

.home-page #projets .project-card--premier img {
  object-position: 50% 42% !important;
}

.home-page #projets .project-card--hiero img {
  object-position: 50% 48% !important;
}

.home-page #projets .project-card:hover,
.home-page #projets .project-card:focus-visible {
  transform: translateY(-5px) !important;
  box-shadow:
    5px 0 0 color-mix(in srgb, var(--project-color) 92%, transparent),
    0 24px 44px rgba(0, 0, 0, .36) !important;
}

.home-page #projets .project-card:hover img,
.home-page #projets .project-card:focus-visible img {
  transform: scale(1.04) !important;
  filter: saturate(1.08) contrast(1.12) brightness(.55) !important;
}

.home-page #projets .project-card-body,
.home-page #projets .project-card--girls .project-card-body,
.home-page #projets .project-card--hiero .project-card-body,
.home-page #projets .project-card--songe .project-card-body,
.home-page #projets .project-card--premier .project-card-body {
  inset: 18px 18px 16px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

.home-page #projets .project-card .project-type {
  margin-bottom: auto !important;
  color: rgba(255, 247, 231, .88) !important;
  font-family: var(--font-mono) !important;
  font-size: 9px !important;
  letter-spacing: .25em !important;
}

.home-page #projets .project-card h3,
.home-page #projets .project-card--hiero h3,
.home-page #projets .project-card--songe h3,
.home-page #projets .project-card--premier h3 {
  max-width: 82% !important;
  margin: 0 0 8px !important;
  color: #fff4df !important;
  font-family: var(--font-title) !important;
  font-size: clamp(24px, 2.15vw, 42px) !important;
  font-weight: 700 !important;
  line-height: .94 !important;
  letter-spacing: -.035em !important;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .65) !important;
}

.home-page #projets .project-card p {
  max-width: 90% !important;
  color: rgba(255, 247, 231, .88) !important;
  font-size: clamp(12px, .9vw, 15px) !important;
  line-height: 1.35 !important;
}

@media (max-width: 1100px) {
  .home-page .hero {
    min-height: 62svh !important;
    height: auto !important;
  }

  .home-page #projets .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-page #projets .project-card,
  .home-page #projets .project-card:nth-child(even) {
    height: clamp(230px, 30vw, 310px) !important;
  }
}

@media (max-width: 780px) {
  .home-page .header-row,
  .home-page .container {
    width: min(100% - 28px, 620px) !important;
  }

  .home-page .hero {
    min-height: 64svh !important;
    height: auto !important;
  }

  .home-page .hero::before {
    left: 20px !important;
  }

  .home-page .hero-content {
    width: min(100% - 48px, 560px) !important;
    margin-left: 36px !important;
    padding: 118px 0 34px !important;
  }

  .home-page .hero-title,
  .home-page .hero-title span,
  .home-page .hero-title .hero-word {
    font-size: clamp(38px, 12vw, 60px) !important;
  }

  .home-page #projets {
    padding-top: 26px !important;
  }

  .home-page #projets .section-head {
    align-items: flex-start !important;
  }

  .home-page .all-projects-link {
    display: none !important;
  }

  .home-page #projets .projects-grid {
    display: flex !important;
    gap: 16px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px !important;
  }

  .home-page #projets .project-card,
  .home-page #projets .project-card:nth-child(even) {
    flex: 0 0 min(82vw, 330px) !important;
    height: 250px !important;
    min-height: 250px !important;
    scroll-snap-align: start;
  }
}

/* Accueil epure final : hero + creations uniquement */
.home-page {
  min-height: 100svh !important;
  background:
    linear-gradient(180deg, #030302 0 58svh, #030302 58svh, #03100c 100%) !important;
  overflow-x: hidden !important;
}

.home-page .site-header {
  padding: 22px 0 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, 0)) !important;
}

.home-page .header-row,
.home-page .container {
  width: min(1560px, calc(100% - 88px)) !important;
}

.home-page .header-right {
  gap: 0 !important;
}

.home-page .instagram-link {
  display: none !important;
}

.home-page .site-nav {
  gap: clamp(34px, 5vw, 72px) !important;
}

.home-page .site-nav a,
.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible {
  display: inline !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff7e6 !important;
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .34em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  transform: none !important;
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible {
  color: #d79739 !important;
}

.home-page .hero {
  height: 50svh !important;
  min-height: 360px !important;
  max-height: 540px !important;
  border: 0 !important;
}

.home-page .hero::before {
  left: clamp(46px, 7.4vw, 126px) !important;
  top: 32% !important;
  bottom: 20% !important;
  width: 1px !important;
  background: #d79739 !important;
}

.home-page .hero::after {
  height: 1px !important;
  background: #d79739 !important;
  opacity: .92 !important;
}

.home-page .hero-video {
  object-position: 50% 43% !important;
  filter: saturate(1.06) contrast(1.08) brightness(.92) !important;
}

.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .36) 44%, rgba(0, 0, 0, .58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .50) 0%, rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .55) 100%) !important;
}

.home-page .hero-content {
  width: min(680px, calc(100% - 116px)) !important;
  margin-left: clamp(78px, 9vw, 150px) !important;
  padding: 0 0 clamp(42px, 6.4vh, 70px) !important;
}

.home-page .hero-title,
.home-page .hero-title span,
.home-page .hero-title .hero-word {
  font-size: clamp(36px, 4vw, 64px) !important;
  line-height: .84 !important;
  letter-spacing: -.04em !important;
}

.home-page .hero-title {
  max-width: 630px !important;
  margin-bottom: 12px !important;
}

.home-page .hero-lead {
  max-width: 540px !important;
  margin-bottom: 0 !important;
  font-size: clamp(14px, .95vw, 17px) !important;
  line-height: 1.45 !important;
}

.home-page .action-row {
  display: none !important;
}

.home-page #projets {
  min-height: 50svh !important;
  padding: clamp(14px, 2.3vh, 24px) 0 clamp(20px, 3.2vh, 34px) !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  background:
    linear-gradient(180deg, rgba(3, 12, 8, .96), rgba(3, 18, 13, .98)),
    radial-gradient(circle at 4% 34%, rgba(183, 129, 45, .10), transparent 24%),
    radial-gradient(circle at 96% 84%, rgba(207, 109, 50, .10), transparent 22%),
    repeating-linear-gradient(0deg, rgba(255, 247, 231, .018) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 247, 231, .015) 0 1px, transparent 1px 7px),
    var(--grain) !important;
  background-blend-mode: normal, screen, screen, normal, normal, multiply !important;
}

.home-page #projets::before,
.home-page #projets::after {
  display: none !important;
}

.home-page #projets .section-head {
  align-items: flex-start !important;
  margin-bottom: clamp(12px, 1.8vh, 18px) !important;
}

.home-page #projets .section-title {
  color: #cf6d32 !important;
  font-size: clamp(17px, 1.45vw, 27px) !important;
}

.home-page #projets .section-intro {
  margin-top: 6px !important;
  font-size: clamp(14px, .95vw, 17px) !important;
}

.home-page .all-projects-link {
  display: none !important;
}

.home-page #projets .projects-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(16px, 1.8vw, 28px) !important;
}

.home-page #projets .project-card,
.home-page #projets .project-card:nth-child(even) {
  height: clamp(190px, 15vw, 250px) !important;
  min-height: clamp(190px, 15vw, 250px) !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: #020503 !important;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .42) !important;
  isolation: isolate;
}

.home-page #projets .project-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, .18) 42%, rgba(0, 0, 0, .78)),
    linear-gradient(90deg, color-mix(in srgb, var(--project-color) 22%, transparent), transparent 48%) !important;
  pointer-events: none !important;
}

.home-page #projets .project-card::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 0 !important;
  height: 42% !important;
  z-index: 1 !important;
  background: linear-gradient(0deg, rgba(0, 0, 0, .86), transparent) !important;
  pointer-events: none !important;
}

.home-page #projets .project-card img,
.home-page #projets .project-card--girls img,
.home-page #projets .project-card--hiero img,
.home-page #projets .project-card--songe img,
.home-page #projets .project-card--premier img {
  filter: saturate(1.04) contrast(1.09) brightness(.76) !important;
}

.home-page #projets .project-card:hover img,
.home-page #projets .project-card:focus-visible img {
  transform: scale(1.045) !important;
  filter: saturate(1.1) contrast(1.12) brightness(.66) !important;
}

.home-page #projets .project-card-body,
.home-page #projets .project-card--girls .project-card-body,
.home-page #projets .project-card--hiero .project-card-body,
.home-page #projets .project-card--songe .project-card-body,
.home-page #projets .project-card--premier .project-card-body {
  z-index: 2 !important;
  inset: 16px 16px 15px 16px !important;
}

.home-page #projets .project-card .project-type {
  display: none !important;
}

.home-page #projets .project-card h3,
.home-page #projets .project-card--hiero h3,
.home-page #projets .project-card--songe h3,
.home-page #projets .project-card--premier h3 {
  max-width: 92% !important;
  margin: auto 0 0 !important;
  font-size: clamp(23px, 1.8vw, 34px) !important;
}

.home-page #projets .project-card p {
  display: block !important;
  max-width: 94% !important;
  max-height: 0 !important;
  margin-top: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transform: translateY(8px) !important;
  transition: opacity .25s ease, transform .25s ease, max-height .25s ease, margin-top .25s ease !important;
}

.home-page #projets .project-card:hover p,
.home-page #projets .project-card:focus-visible p {
  max-height: 90px !important;
  margin-top: 9px !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 1100px) {
  .home-page .hero {
    height: 50svh !important;
    min-height: 350px !important;
  }

  .home-page #projets {
    min-height: 50svh !important;
  }

  .home-page #projets .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-page #projets .project-card,
  .home-page #projets .project-card:nth-child(even) {
    height: clamp(190px, 26vw, 250px) !important;
    min-height: clamp(190px, 26vw, 250px) !important;
  }
}

@media (max-width: 780px) {
  .home-page .site-header {
    padding: 14px 0 !important;
  }

  .home-page .hero {
    height: auto !important;
    min-height: 52svh !important;
  }

  .home-page .hero-content {
    padding: 106px 0 26px !important;
  }

  .home-page .hero-title,
  .home-page .hero-title span,
  .home-page .hero-title .hero-word {
    font-size: clamp(32px, 10vw, 48px) !important;
  }

  .home-page #projets .projects-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
  }

  .home-page #projets .project-card,
  .home-page #projets .project-card:nth-child(even) {
    flex: 0 0 min(78vw, 320px) !important;
    height: 220px !important;
    min-height: 220px !important;
    scroll-snap-align: start;
  }
}

/* Ajustements accueil, presentation et contact - 07/07 soir */
:root {
  --font-clean: "Avenir Next", "Inter", "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--font-clean);
  letter-spacing: .005em;
}

.site-header {
  background: linear-gradient(180deg, rgba(3, 10, 7, .82), rgba(3, 10, 7, .52)) !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.header-row {
  min-height: 72px !important;
}

.brand-text {
  border-color: rgba(217, 151, 57, .72) !important;
  color: #fff7e8 !important;
  background: rgba(3, 10, 7, .16) !important;
}

.brand-text span {
  color: #ffe2a6 !important;
}

.site-nav,
.home-page .site-nav {
  gap: clamp(28px, 4vw, 62px) !important;
}

.site-nav a,
.home-page .site-nav a,
.presentation-page .site-nav a,
.contact-page .site-nav a,
.project-page .site-nav a,
.project-girls .site-nav a {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff9ec !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(11px, .75vw, 14px) !important;
  font-weight: 700 !important;
  letter-spacing: .28em !important;
  line-height: 1 !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .48) !important;
}

.site-nav a::after,
.home-page .site-nav a::after {
  content: "" !important;
  display: block !important;
  width: 100% !important;
  height: 1px !important;
  margin-top: 8px !important;
  background: #d79739 !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform .22s ease !important;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.home-page .site-nav a:hover::after,
.home-page .site-nav a:focus-visible::after {
  transform: scaleX(1) !important;
}

.instagram-link {
  display: none !important;
}

.home-page .hero {
  height: 56svh !important;
  min-height: 430px !important;
  max-height: 650px !important;
}

.home-page .hero-video {
  opacity: 1 !important;
  filter: saturate(1.1) contrast(1.03) brightness(1.2) !important;
}

.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .34) 43%, rgba(0, 0, 0, .2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .54) 0%, rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .24) 100%) !important;
}

.home-page .hero::before {
  display: none !important;
}

.home-page .hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background: #d79739 !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

.home-page .hero-content {
  width: min(920px, calc(100% - 88px)) !important;
  padding: 136px 0 50px !important;
}

.home-page .hero-title,
.home-page .hero-title span,
.home-page .hero-title .hero-word {
  font-family: var(--font-title) !important;
  font-weight: 900 !important;
  color: #fff6e5 !important;
  letter-spacing: .015em !important;
  text-shadow: 0 4px 0 rgba(31, 14, 5, .75), 0 20px 42px rgba(0, 0, 0, .55) !important;
}

.home-page .hero-title {
  max-width: 760px !important;
  font-size: clamp(58px, 6.3vw, 124px) !important;
  line-height: .86 !important;
}

.home-page .hero-lead {
  max-width: 680px !important;
  margin-top: 24px !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(18px, 1.35vw, 25px) !important;
  font-weight: 600 !important;
  color: rgba(255, 249, 236, .92) !important;
  line-height: 1.45 !important;
}

.home-page #projets {
  min-height: 44svh !important;
  padding: clamp(34px, 4.5vw, 64px) 0 clamp(60px, 7vw, 96px) !important;
  border-top: 0 !important;
  background:
    radial-gradient(circle at 14% 20%, rgba(205, 122, 48, .16), transparent 28%),
    radial-gradient(circle at 84% 62%, rgba(122, 74, 138, .14), transparent 30%),
    linear-gradient(180deg, #081912 0%, #03110c 62%, #020b08 100%) !important;
}

.home-page #projets::before {
  opacity: .28 !important;
  mix-blend-mode: screen !important;
}

.home-page #projets .section-head {
  margin-bottom: clamp(24px, 3vw, 42px) !important;
}

.home-page #projets .section-title {
  font-family: var(--font-title) !important;
  font-size: clamp(34px, 3.8vw, 66px) !important;
  font-weight: 900 !important;
  letter-spacing: .03em !important;
  color: #f0a13f !important;
  text-shadow: 0 3px 0 rgba(76, 30, 6, .62), 0 12px 30px rgba(0, 0, 0, .32) !important;
}

.home-page #projets .section-intro {
  margin-top: 6px !important;
  color: rgba(255, 248, 232, .88) !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(16px, 1.05vw, 20px) !important;
  font-weight: 600 !important;
}

.home-page #projets .projects-grid {
  gap: clamp(20px, 2.2vw, 36px) !important;
}

.home-page #projets .project-card,
.home-page #projets .project-card:nth-child(even) {
  height: clamp(220px, 16vw, 310px) !important;
  min-height: clamp(220px, 16vw, 310px) !important;
  border: 1px solid rgba(255, 240, 205, .2) !important;
  border-radius: 20px !important;
  background: #050907 !important;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .36) !important;
}

.home-page #projets .project-card::after {
  height: 64% !important;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .34) 58%, transparent) !important;
}

.home-page #projets .project-card h3,
.home-page #projets .project-card--hiero h3,
.home-page #projets .project-card--songe h3,
.home-page #projets .project-card--premier h3 {
  font-family: var(--font-title) !important;
  color: #fff8e8 !important;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .66) !important;
}

.home-page #projets .project-card p {
  color: rgba(255, 248, 232, .9) !important;
  font-family: var(--font-clean) !important;
  font-weight: 600 !important;
}

.presentation-page,
.contact-page {
  background:
    linear-gradient(180deg, #07140f 0%, #0c2419 240px, var(--lin) 241px),
    url("../images/paper-texture-generated.jpg") !important;
}

.presentation-page .listing-hero,
.contact-page .listing-hero {
  min-height: 52svh !important;
  padding: 132px 0 72px !important;
  color: #fff6e5 !important;
  border-bottom: 2px solid #d79739 !important;
}

.presentation-page .listing-hero::before,
.contact-page .listing-hero::before {
  opacity: .18 !important;
}

.presentation-page .listing-hero h1,
.contact-page .listing-hero h1 {
  max-width: 980px !important;
  color: #fff6e5 !important;
  font-family: var(--font-title) !important;
  font-size: clamp(58px, 8vw, 132px) !important;
  text-shadow: 0 4px 0 rgba(0, 0, 0, .7), 0 22px 50px rgba(0, 0, 0, .58) !important;
}

.presentation-page .listing-hero h1 span,
.contact-page .listing-hero .section-kicker,
.presentation-page .listing-hero .section-kicker {
  color: #f0a13f !important;
}

.presentation-page .listing-hero p,
.contact-page .listing-hero p {
  max-width: 720px !important;
  color: rgba(255, 248, 232, .92) !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(18px, 1.3vw, 23px) !important;
  font-weight: 600 !important;
}

.presentation-page #presentation {
  padding-top: clamp(64px, 7vw, 104px) !important;
  background:
    radial-gradient(circle at 12% 20%, rgba(215, 151, 57, .18), transparent 28%),
    radial-gradient(circle at 92% 70%, rgba(74, 122, 58, .15), transparent 30%),
    rgba(238, 228, 207, .86) !important;
}

.presentation-panel,
.presentation-panel--actions,
.orane-bio,
.contact-intro,
.contact-form {
  border: 1px solid rgba(30, 20, 8, .16) !important;
  background:
    linear-gradient(145deg, rgba(255, 249, 232, .95), rgba(235, 220, 189, .9)),
    url("../images/paper-texture-generated.jpg") !important;
  box-shadow: 12px 12px 0 rgba(215, 151, 57, .26), 0 26px 56px rgba(30, 20, 8, .14) !important;
}

.presentation-panel h2,
.presentation-panel h3,
.presentation-panel--actions h2,
.orane-bio h2,
.contact-intro h2 {
  color: #123225 !important;
  font-family: var(--font-title) !important;
  font-size: clamp(31px, 3.1vw, 58px) !important;
  line-height: .98 !important;
  text-shadow: 0 2px 0 rgba(240, 161, 63, .34) !important;
}

.presentation-panel--actions h2,
.contact-intro h2 {
  color: #b85c18 !important;
}

.presentation-panel p,
.presentation-panel--actions p,
.orane-bio p,
.contact-intro p,
.contact-form label {
  color: #2a1c0e !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(16px, 1.05vw, 19px) !important;
  line-height: 1.72 !important;
}

.contact-section {
  padding: clamp(70px, 8vw, 120px) 0 !important;
  background:
    radial-gradient(circle at 20% 22%, rgba(215, 151, 57, .18), transparent 30%),
    linear-gradient(180deg, rgba(238, 228, 207, .96), rgba(221, 203, 164, .92)) !important;
}

.contact-layout {
  display: grid !important;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.1fr) !important;
  gap: clamp(26px, 4vw, 62px) !important;
  align-items: start !important;
}

.contact-mail {
  display: inline-block !important;
  margin-top: 20px !important;
  color: #0c3a29 !important;
  font-family: var(--font-title) !important;
  font-size: clamp(21px, 2vw, 34px) !important;
  font-weight: 900 !important;
  text-decoration: underline !important;
  text-decoration-color: #d79739 !important;
  text-underline-offset: 7px !important;
}

.contact-form {
  display: grid !important;
  gap: 18px !important;
  padding: clamp(24px, 3vw, 44px) !important;
}

.contact-form label {
  display: grid !important;
  gap: 8px !important;
  font-weight: 700 !important;
}

.contact-form input,
.contact-form textarea {
  width: 100% !important;
  border: 1px solid rgba(30, 20, 8, .28) !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  color: #1e1408 !important;
  background: rgba(255, 250, 235, .84) !important;
}

.contact-form .button {
  justify-self: start !important;
  border-radius: 999px !important;
  border: 1px solid rgba(30, 20, 8, .24) !important;
  background: #d79739 !important;
  color: #160f07 !important;
  font-family: var(--font-clean) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .22em !important;
}

@media (max-width: 1100px) {
  .home-page .hero {
    height: 54svh !important;
    min-height: 400px !important;
  }

  .home-page #projets {
    min-height: 46svh !important;
  }

  .home-page #projets .project-card,
  .home-page #projets .project-card:nth-child(even) {
    height: clamp(220px, 25vw, 290px) !important;
    min-height: clamp(220px, 25vw, 290px) !important;
  }
}

@media (max-width: 780px) {
  .site-header {
    background: rgba(3, 10, 7, .92) !important;
  }

  .site-nav,
  .home-page .site-nav {
    gap: 0 !important;
  }

  .home-page .hero {
    min-height: 58svh !important;
  }

  .home-page .hero-content {
    width: min(100% - 36px, 680px) !important;
    padding: 112px 0 40px !important;
  }

  .home-page .hero-title,
  .home-page .hero-title span,
  .home-page .hero-title .hero-word {
    font-size: clamp(42px, 13vw, 64px) !important;
  }

  .home-page #projets {
    padding-top: 34px !important;
  }

  .home-page #projets .section-title {
    font-size: clamp(34px, 11vw, 54px) !important;
  }

  .contact-layout {
    grid-template-columns: 1fr !important;
  }

  .presentation-page .listing-hero,
  .contact-page .listing-hero {
    min-height: 46svh !important;
    padding: 112px 0 54px !important;
  }
}

/* Reprise accueil + pages info - 08/07 */
body {
  --cream-page: #f6f0e2;
  --gold-line: #d99b39;
  --dark-forest: #07140f;
  --deep-green: #04110c;
}

.site-header {
  background: linear-gradient(180deg, rgba(2, 7, 5, .62), rgba(2, 7, 5, .14)) !important;
  backdrop-filter: blur(8px) !important;
}

.header-row {
  width: min(1500px, calc(100% - 68px)) !important;
  min-height: 76px !important;
}

.brand-text,
.home-page .brand-text,
.presentation-page .brand-text,
.contact-page .brand-text,
.project-page .brand-text,
.project-girls .brand-text {
  width: auto !important;
  min-width: 0 !important;
  max-width: 230px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff6e4 !important;
  font-family: var(--font-title) !important;
  font-size: clamp(25px, 2vw, 34px) !important;
  font-style: normal !important;
  font-weight: 900 !important;
  letter-spacing: -.045em !important;
  line-height: .78 !important;
  text-shadow: 0 3px 0 rgba(0, 0, 0, .58), 0 8px 22px rgba(0, 0, 0, .36) !important;
}

.brand-text span,
.home-page .brand-text span,
.presentation-page .brand-text span,
.contact-page .brand-text span,
.project-page .brand-text span,
.project-girls .brand-text span {
  display: block !important;
  margin-top: 2px !important;
  color: #f0a13f !important;
  font-family: var(--font-title) !important;
  font-size: .55em !important;
  font-style: normal !important;
  font-weight: 900 !important;
  letter-spacing: .18em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .55) !important;
}

.site-nav a,
.home-page .site-nav a,
.presentation-page .site-nav a,
.contact-page .site-nav a,
.project-page .site-nav a,
.project-girls .site-nav a {
  font-family: var(--font-clean) !important;
  font-size: clamp(10px, .72vw, 13px) !important;
  font-weight: 800 !important;
  letter-spacing: .34em !important;
}

.home-page {
  overflow-x: hidden !important;
  background: var(--cream-page) !important;
}

.home-page main {
  min-height: 100svh !important;
  background: var(--cream-page) !important;
}

.home-page .hero {
  height: 60svh !important;
  min-height: 420px !important;
  max-height: 620px !important;
  overflow: hidden !important;
}

.home-page .hero-video {
  object-position: center 40% !important;
  filter: saturate(1.08) contrast(1.04) brightness(1.12) !important;
}

.home-page .hero-overlay {
  background:
    radial-gradient(circle at 74% 28%, rgba(255, 232, 184, .12), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .33) 42%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .04) 44%, rgba(0, 0, 0, .22) 100%) !important;
}

.home-page .hero::after {
  display: none !important;
}

.home-page .hero-content {
  width: min(1450px, calc(100% - 96px)) !important;
  padding: clamp(92px, 12vh, 132px) 0 clamp(112px, 15vh, 154px) !important;
}

.home-page .hero-title {
  max-width: 760px !important;
  font-size: clamp(58px, 5.35vw, 102px) !important;
  line-height: .88 !important;
}

.home-page .hero-lead {
  max-width: 650px !important;
  margin-top: 18px !important;
  font-size: clamp(16px, 1.15vw, 21px) !important;
  font-weight: 500 !important;
}

.home-page #projets {
  position: relative !important;
  z-index: 2 !important;
  min-height: 45svh !important;
  margin-top: -46px !important;
  padding: clamp(54px, 7vh, 76px) 0 clamp(28px, 4vh, 52px) !important;
  color: #1c160f !important;
  border-top: 0 !important;
  border-radius: 50% 50% 0 0 / 42px 42px 0 0 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(246, 240, 226, .98)),
    radial-gradient(circle at 88% 20%, rgba(217, 155, 57, .16), transparent 24%),
    url("../images/paper-texture-generated.jpg") !important;
  background-size: auto, auto, 780px auto !important;
  box-shadow: 0 -18px 45px rgba(0, 0, 0, .2) !important;
}

.home-page #projets::before {
  content: "" !important;
  position: absolute !important;
  left: -4vw !important;
  right: -4vw !important;
  top: 0 !important;
  height: 58px !important;
  border-top: 2px solid var(--gold-line) !important;
  border-radius: 50% 50% 0 0 / 58px 58px 0 0 !important;
  background: transparent !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  pointer-events: none !important;
}

.home-page #projets::after {
  content: "" !important;
  position: absolute !important;
  right: 5vw !important;
  top: 34px !important;
  width: clamp(160px, 18vw, 280px) !important;
  height: clamp(110px, 13vw, 200px) !important;
  background: url("../images/detour_logo.png") center / contain no-repeat !important;
  opacity: .055 !important;
  pointer-events: none !important;
}

.home-page #projets .container {
  width: min(1500px, calc(100% - 80px)) !important;
}

.home-page #projets .section-head {
  align-items: end !important;
  justify-content: flex-start !important;
  margin-bottom: clamp(18px, 2.2vh, 28px) !important;
}

.home-page #projets .section-head > div {
  display: flex !important;
  align-items: baseline !important;
  gap: clamp(18px, 2.2vw, 34px) !important;
  flex-wrap: wrap !important;
}

.home-page #projets .section-title {
  position: relative !important;
  margin: 0 !important;
  color: #b9852e !important;
  font-family: var(--font-title) !important;
  font-size: clamp(37px, 4.05vw, 70px) !important;
  font-weight: 900 !important;
  letter-spacing: .025em !important;
  line-height: .9 !important;
  text-shadow: 0 2px 0 rgba(255, 255, 255, .65) !important;
}

.home-page #projets .section-title::after {
  content: "" !important;
  display: inline-block !important;
  width: 42px !important;
  height: 2px !important;
  margin: 0 0 .18em 18px !important;
  background: #1f1710 !important;
  vertical-align: middle !important;
}

.home-page #projets .section-intro {
  margin: 0 !important;
  color: rgba(31, 23, 16, .78) !important;
  font-size: clamp(14px, 1vw, 18px) !important;
  font-weight: 500 !important;
}

.home-page #projets .projects-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2vw, 30px) !important;
}

.home-page #projets .project-card,
.home-page #projets .project-card:nth-child(even) {
  height: clamp(172px, 17.2vh, 230px) !important;
  min-height: clamp(172px, 17.2vh, 230px) !important;
  border: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #050605 !important;
  box-shadow: 0 22px 42px rgba(23, 16, 8, .24) !important;
  transform: none !important;
}

.home-page #projets .project-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: inherit !important;
  background: transparent !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

.home-page #projets .project-card::after {
  height: 100% !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .18) 55%, rgba(0, 0, 0, .3)),
    linear-gradient(0deg, rgba(0, 0, 0, .62), transparent 56%) !important;
}

.home-page #projets .project-card img,
.home-page #projets .project-card--girls img,
.home-page #projets .project-card--hiero img,
.home-page #projets .project-card--songe img,
.home-page #projets .project-card--premier img {
  height: 100% !important;
  object-fit: cover !important;
  filter: saturate(1.02) contrast(1.04) brightness(.9) !important;
}

.home-page #projets .project-card--girls img { object-position: 43% 34% !important; }
.home-page #projets .project-card--songe img { object-position: 50% 34% !important; }
.home-page #projets .project-card--premier img { object-position: 50% 42% !important; }
.home-page #projets .project-card--hiero img { object-position: 50% 46% !important; }

.home-page #projets .project-card:hover,
.home-page #projets .project-card:focus-visible {
  transform: translateY(-4px) !important;
  box-shadow: 0 26px 54px rgba(23, 16, 8, .34) !important;
}

.home-page #projets .project-card:hover img,
.home-page #projets .project-card:focus-visible img {
  transform: scale(1.04) !important;
  filter: saturate(1.1) contrast(1.08) brightness(.72) !important;
}

.home-page #projets .project-card-body,
.home-page #projets .project-card--girls .project-card-body,
.home-page #projets .project-card--hiero .project-card-body,
.home-page #projets .project-card--songe .project-card-body,
.home-page #projets .project-card--premier .project-card-body {
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: clamp(18px, 2vw, 30px) !important;
  background: transparent !important;
}

.home-page #projets .project-card .project-type {
  display: none !important;
}

.home-page #projets .project-card h3,
.home-page #projets .project-card--hiero h3,
.home-page #projets .project-card--songe h3,
.home-page #projets .project-card--premier h3 {
  max-width: 88% !important;
  margin: 0 !important;
  padding-top: clamp(8px, 1vh, 16px) !important;
  color: #fff8e8 !important;
  font-family: var(--font-title) !important;
  font-size: clamp(25px, 2.05vw, 42px) !important;
  font-weight: 900 !important;
  line-height: .98 !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .68) !important;
}

.home-page #projets .project-card p {
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 18px !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 13px 14px !important;
  overflow: visible !important;
  border: 1px solid color-mix(in srgb, var(--project-color), white 30%) !important;
  border-radius: 14px !important;
  background: color-mix(in srgb, var(--project-color), #050605 72%) !important;
  color: #fff8e8 !important;
  font-size: clamp(12px, .82vw, 15px) !important;
  line-height: 1.38 !important;
  opacity: 0 !important;
  transform: translateY(10px) !important;
  transition: opacity .25s ease, transform .25s ease !important;
}

.home-page #projets .project-card:hover p,
.home-page #projets .project-card:focus-visible p {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.home-page #projets .project-card-body::after,
.home-page #projets .project-card-body::before,
.listing-projects .project-card-body::after,
.listing-projects .project-card-body::before {
  content: none !important;
  display: none !important;
}

.presentation-page,
.contact-page {
  background:
    linear-gradient(180deg, #06100c 0, #06100c 52svh, var(--cream-page) 52svh),
    url("../images/paper-texture-generated.jpg") !important;
}

.presentation-page .listing-hero,
.contact-page .listing-hero {
  min-height: clamp(310px, 42svh, 470px) !important;
  padding: 126px 0 54px !important;
  border-bottom: 2px solid var(--gold-line) !important;
}

.presentation-page .listing-hero h1,
.contact-page .listing-hero h1 {
  font-size: clamp(54px, 7.4vw, 118px) !important;
  letter-spacing: .01em !important;
}

.presentation-page .listing-hero p,
.contact-page .listing-hero p {
  font-size: clamp(16px, 1.15vw, 21px) !important;
  font-weight: 500 !important;
}

.presentation-page #presentation {
  padding: clamp(54px, 7vw, 90px) 0 !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(246, 240, 226, .98)),
    radial-gradient(circle at 90% 16%, rgba(217, 155, 57, .14), transparent 28%),
    url("../images/paper-texture-generated.jpg") !important;
  background-size: auto, auto, 800px auto !important;
}

.presentation-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .72fr) !important;
  gap: clamp(30px, 4vw, 72px) !important;
  align-items: start !important;
}

.presentation-copy {
  display: grid !important;
  gap: 22px !important;
}

.presentation-panel,
.presentation-panel--actions,
.orane-bio,
.contact-intro,
.contact-form {
  border: 0 !important;
  border-radius: 22px !important;
  background:
    linear-gradient(145deg, rgba(255, 252, 241, .96), rgba(239, 227, 201, .9)),
    url("../images/paper-texture-generated.jpg") !important;
  box-shadow: 0 24px 60px rgba(28, 22, 15, .12) !important;
}

.presentation-panel,
.presentation-panel--actions {
  padding: clamp(28px, 4vw, 56px) !important;
}

.presentation-panel h2,
.presentation-panel h3,
.presentation-panel--actions h2,
.orane-bio h2,
.contact-intro h2 {
  margin-bottom: 18px !important;
  color: #163427 !important;
  font-size: clamp(32px, 3.15vw, 58px) !important;
  letter-spacing: .01em !important;
  text-shadow: 0 2px 0 rgba(217, 155, 57, .22) !important;
}

.presentation-panel h2::after,
.presentation-panel--actions h2::after,
.orane-bio h2::after,
.contact-intro h2::after {
  content: "" !important;
  display: block !important;
  width: 54px !important;
  height: 2px !important;
  margin-top: 14px !important;
  background: var(--gold-line) !important;
}

.presentation-panel--actions {
  background:
    linear-gradient(145deg, rgba(12, 42, 30, .94), rgba(5, 20, 14, .96)),
    url("../images/paper-texture-generated.jpg") !important;
}

.presentation-panel--actions h2,
.presentation-panel--actions p {
  color: #fff6e5 !important;
}

.portrait-card--photo {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.portrait-card--photo img {
  width: 100% !important;
  max-height: 560px !important;
  object-fit: cover !important;
  border-radius: 22px !important;
  box-shadow: 0 24px 55px rgba(28, 22, 15, .18) !important;
}

.orane-bio {
  width: calc(100% - 28px) !important;
  margin: -42px auto 0 !important;
  padding: clamp(22px, 2.5vw, 34px) !important;
  position: relative !important;
  z-index: 2 !important;
}

.contact-section {
  padding: clamp(38px, 5vw, 70px) 0 clamp(58px, 7vw, 96px) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(246, 240, 226, .98)),
    url("../images/paper-texture-generated.jpg") !important;
  background-size: auto, 780px auto !important;
}

.contact-layout {
  width: min(1280px, calc(100% - 72px)) !important;
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.28fr) !important;
  gap: clamp(26px, 4vw, 72px) !important;
}

.contact-intro,
.contact-form {
  padding: clamp(30px, 4vw, 58px) !important;
}

.contact-mail {
  display: block !important;
  margin: 8px 0 24px !important;
  padding: 16px 18px !important;
  border-radius: 16px !important;
  background: #071b13 !important;
  color: #fff6e5 !important;
  font-size: clamp(18px, 1.75vw, 30px) !important;
  line-height: 1.12 !important;
  text-decoration: none !important;
  overflow-wrap: anywhere !important;
}

.contact-form {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  justify-self: stretch !important;
  gap: 20px !important;
}

.contact-form input,
.contact-form textarea {
  border-radius: 16px !important;
  padding: 17px 18px !important;
  background: #fffaf0 !important;
  font-size: 17px !important;
}

.contact-form textarea {
  min-height: 190px !important;
}

.contact-form .button {
  padding: 16px 26px !important;
}

@media (min-width: 1050px) {
  .home-page {
    overflow-y: hidden !important;
  }
}

@media (max-width: 1180px) {
  .home-page .hero {
    height: 58svh !important;
    min-height: 390px !important;
  }

  .home-page #projets {
    min-height: 46svh !important;
    margin-top: -38px !important;
  }

  .home-page #projets .project-card,
  .home-page #projets .project-card:nth-child(even) {
    height: clamp(165px, 19vh, 205px) !important;
    min-height: clamp(165px, 19vh, 205px) !important;
  }
}

@media (max-width: 920px) {
  .home-page {
    overflow-y: auto !important;
  }

  .home-page #projets .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .presentation-layout,
  .contact-layout {
    grid-template-columns: 1fr !important;
    width: min(100% - 40px, 760px) !important;
  }
}

@media (max-width: 780px) {
  .header-row {
    width: min(100% - 34px, 680px) !important;
    min-height: 68px !important;
  }

  .brand-text {
    font-size: 24px !important;
  }

  .home-page .hero {
    min-height: 54svh !important;
    height: auto !important;
  }

  .home-page .hero-content {
    width: min(100% - 36px, 680px) !important;
    padding: 102px 0 104px !important;
  }

  .home-page #projets {
    margin-top: -34px !important;
    border-radius: 50% 50% 0 0 / 30px 30px 0 0 !important;
  }

  .home-page #projets .section-head > div {
    display: block !important;
  }

  .home-page #projets .projects-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
  }

  .home-page #projets .project-card,
  .home-page #projets .project-card:nth-child(even) {
    flex: 0 0 min(78vw, 330px) !important;
    height: 215px !important;
    min-height: 215px !important;
  }
}

/* Accueil 08/07 : fond adouci, titrage resserre et hover integre aux cartes. */
.home-page {
  background: #eee4d1 !important;
}

.home-page #projets {
  background:
    linear-gradient(180deg, rgba(245, 238, 222, .98), rgba(233, 221, 197, .99)),
    radial-gradient(circle at 84% 14%, rgba(196, 139, 47, .10), transparent 26%),
    url("../images/paper-texture-generated.jpg") !important;
  box-shadow:
    0 -16px 42px rgba(0, 0, 0, .16),
    inset 0 1px 0 rgba(255, 248, 232, .55) !important;
}

.home-page #projets::before {
  border-top-color: rgba(196, 139, 47, .82) !important;
}

.home-page #projets .section-title {
  color: #ad7f2e !important;
  letter-spacing: -.018em !important;
  word-spacing: -.06em !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .45) !important;
}

.home-page #projets .section-title::after {
  width: 34px !important;
  margin-left: 12px !important;
  background: rgba(31, 23, 16, .65) !important;
}

.home-page #projets .section-intro {
  max-width: 560px !important;
  color: rgba(31, 23, 16, .66) !important;
  line-height: 1.35 !important;
}

.home-page #projets .project-card,
.home-page #projets .project-card:nth-child(even) {
  border: 2px solid transparent !important;
  box-shadow: 0 18px 38px rgba(23, 16, 8, .20) !important;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease !important;
}

.home-page #projets .project-card::before {
  inset: 8px !important;
  border: 1px solid rgba(255, 248, 232, .14) !important;
  transition: border-color .26s ease, inset .26s ease !important;
}

.home-page #projets .project-card:hover,
.home-page #projets .project-card:focus-visible {
  border-color: var(--project-color) !important;
  transform: translateY(-3px) !important;
  box-shadow:
    0 24px 48px rgba(23, 16, 8, .25),
    0 0 0 5px color-mix(in srgb, var(--project-color), transparent 74%) !important;
}

.home-page #projets .project-card:hover::before,
.home-page #projets .project-card:focus-visible::before {
  inset: 12px !important;
  border-color: color-mix(in srgb, var(--project-color), white 42%) !important;
}

.home-page #projets .project-card::after {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .38) 46%, rgba(0, 0, 0, .08) 74%),
    linear-gradient(90deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .10) 58%, rgba(0, 0, 0, .24)) !important;
}

.home-page #projets .project-card h3,
.home-page #projets .project-card--hiero h3,
.home-page #projets .project-card--songe h3,
.home-page #projets .project-card--premier h3 {
  max-width: 92% !important;
  padding-top: clamp(4px, .75vh, 10px) !important;
  font-size: clamp(21px, 1.58vw, 31px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.025em !important;
}

.home-page #projets .project-card p {
  left: clamp(18px, 1.7vw, 26px) !important;
  right: clamp(18px, 1.7vw, 26px) !important;
  bottom: clamp(16px, 1.7vw, 24px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 248, 232, .93) !important;
  font-size: clamp(11.5px, .78vw, 14px) !important;
  line-height: 1.34 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .62) !important;
  opacity: 0 !important;
  transform: translateY(8px) !important;
}

.home-page #projets .project-card:hover p,
.home-page #projets .project-card:focus-visible p {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.home-page #projets .project-card-body::before,
.home-page #projets .project-card-body::after {
  content: none !important;
  display: none !important;
}

/* Harmonisation 08/07 : accueil, pages projets, contact, entete allege. */
.site-header {
  background: linear-gradient(180deg, rgba(2, 7, 5, .42), rgba(2, 7, 5, .08) 78%, transparent) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.header-row {
  min-height: 66px !important;
}

.site-nav a {
  color: rgba(255, 248, 232, .92) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45) !important;
}

.home-page #projets .project-card,
.home-page #projets .project-card:nth-child(even) {
  height: clamp(186px, 18.7vh, 252px) !important;
  min-height: clamp(186px, 18.7vh, 252px) !important;
}

.home-page #projets .project-card h3 {
  transition: color .24s ease, text-shadow .24s ease, transform .24s ease !important;
}

.home-page #projets .project-card:hover h3,
.home-page #projets .project-card:focus-visible h3 {
  color: var(--project-color) !important;
  transform: translateY(-2px) !important;
  text-shadow:
    0 1px 0 rgba(255, 248, 232, .28),
    0 5px 20px rgba(0, 0, 0, .76) !important;
}

.project-girls {
  --project-color: #d84a35;
  --project-accent: #f06a4b;
  --project-soft: #f3d7cc;
  --project-dark: #210806;
  --project-deep: #110302;
}

.project-songe {
  --project-color: #477a50;
  --project-accent: #89b36a;
  --project-soft: #dbe8cd;
  --project-dark: #071a10;
  --project-deep: #03100a;
}

.project-premier {
  --project-color: #3f83b7;
  --project-accent: #7db4d6;
  --project-soft: #d5e8f2;
  --project-dark: #071826;
  --project-deep: #030b13;
}

.project-hiero {
  --project-color: #8a58a6;
  --project-accent: #c28ee0;
  --project-soft: #ead8f2;
  --project-dark: #16071f;
  --project-deep: #09030f;
}

.project-page .girls-hero,
.project-girls .girls-hero,
.project-songe .girls-hero,
.project-premier .girls-hero,
.project-hiero .girls-hero {
  position: relative !important;
  min-height: clamp(430px, 58svh, 660px) !important;
  padding: clamp(98px, 12vh, 132px) 0 clamp(54px, 7vh, 86px) !important;
  overflow: hidden !important;
  border-bottom: 2px solid var(--project-color) !important;
  color: #fff8e8 !important;
  background-color: var(--project-dark) !important;
  background-size: cover !important;
  background-position: 72% center !important;
}

.project-girls .girls-hero {
  background-image:
    linear-gradient(90deg, rgba(33, 8, 6, .96) 0%, rgba(33, 8, 6, .74) 38%, rgba(33, 8, 6, .14) 72%, rgba(33, 8, 6, .36) 100%),
    url("../images/girls-boys/girls-boys-hero-wide.jpg") !important;
}

.project-songe .girls-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 26, 16, .96) 0%, rgba(7, 26, 16, .72) 38%, rgba(7, 26, 16, .12) 72%, rgba(7, 26, 16, .34) 100%),
    url("../images/songe/songe-foret-1-crop.jpg") !important;
}

.project-premier .girls-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 38, .96) 0%, rgba(7, 24, 38, .74) 38%, rgba(7, 24, 38, .10) 72%, rgba(7, 24, 38, .40) 100%),
    url("../images/projet-premier-moi-affiche.jpg") !important;
}

.project-hiero .girls-hero {
  background-image:
    linear-gradient(90deg, rgba(22, 7, 31, .97) 0%, rgba(22, 7, 31, .76) 38%, rgba(22, 7, 31, .12) 72%, rgba(22, 7, 31, .42) 100%),
    url("../images/hierophanie/hierophanie-dark-1.jpg") !important;
}

.project-page .girls-hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 1px !important;
  background: color-mix(in srgb, var(--project-color), white 28%) !important;
  box-shadow: 0 -1px 20px color-mix(in srgb, var(--project-color), transparent 48%) !important;
}

.project-page .girls-hero-layout {
  display: block !important;
}

.project-page .girls-hero-content {
  width: min(58vw, 760px) !important;
  padding: 0 !important;
}

.project-page .girls-back-link {
  margin-bottom: clamp(26px, 4vh, 48px) !important;
  padding: 11px 15px !important;
  border: 1px solid color-mix(in srgb, var(--project-color), white 35%) !important;
  border-radius: 999px !important;
  color: rgba(255, 248, 232, .86) !important;
  background: rgba(0, 0, 0, .22) !important;
  font-family: var(--font-clean) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .24em !important;
  text-decoration: none !important;
}

.project-page .girls-back-link:hover {
  color: #fff8e8 !important;
  background: color-mix(in srgb, var(--project-color), transparent 62%) !important;
}

.project-page .girls-hero .project-type {
  display: inline-block !important;
  margin-bottom: 18px !important;
  color: var(--project-accent) !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(11px, .75vw, 13px) !important;
  font-weight: 900 !important;
  letter-spacing: .28em !important;
  text-transform: uppercase !important;
}

.project-page .girls-hero h1 {
  max-width: 820px !important;
  margin: 0 0 18px !important;
  color: #fff8e8 !important;
  font-family: var(--font-title) !important;
  font-size: clamp(56px, 8.2vw, 134px) !important;
  font-style: normal !important;
  line-height: .86 !important;
  letter-spacing: -.035em !important;
  text-shadow:
    0 2px 0 color-mix(in srgb, var(--project-color), black 25%),
    0 18px 44px rgba(0, 0, 0, .52) !important;
}

.project-hiero .girls-hero h1,
.project-premier .girls-hero h1 {
  font-size: clamp(52px, 7.3vw, 116px) !important;
}

.project-page .girls-hero p {
  max-width: 660px !important;
  color: rgba(255, 248, 232, .86) !important;
  font-size: clamp(17px, 1.3vw, 23px) !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}

.project-page .girls-intro-section,
.project-page .project-gallery-section {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--project-soft), #fffaf0 70%), #f1e7d4),
    url("../images/paper-texture-generated.jpg") !important;
  background-size: auto, 760px auto !important;
}

.project-page .girls-intro-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .82fr) !important;
  gap: clamp(26px, 4vw, 64px) !important;
  align-items: start !important;
}

.project-page .girls-summary,
.project-page .girls-tech-card,
.project-page .girls-hero-photo {
  border-radius: 20px !important;
  border: 1px solid color-mix(in srgb, var(--project-color), #1c160f 34%) !important;
  background:
    linear-gradient(145deg, rgba(255, 250, 238, .94), color-mix(in srgb, var(--project-soft), #fffaf0 58%)),
    url("../images/paper-texture-generated.jpg") !important;
  box-shadow: 0 22px 55px rgba(28, 22, 15, .14) !important;
}

.project-page .girls-summary {
  padding: clamp(28px, 4vw, 54px) !important;
  border-left-width: 6px !important;
}

.project-page .girls-summary h2,
.project-page .girls-summary h3 {
  color: var(--project-dark) !important;
  font-family: var(--font-title) !important;
  font-style: normal !important;
  letter-spacing: -.018em !important;
  text-shadow: 0 2px 0 color-mix(in srgb, var(--project-color), white 55%) !important;
}

.project-page .girls-summary h2 {
  font-size: clamp(34px, 4.4vw, 70px) !important;
}

.project-page .girls-summary h3 {
  margin-top: 26px !important;
  font-size: clamp(26px, 2.7vw, 42px) !important;
}

.project-page .girls-summary p {
  color: rgba(31, 23, 16, .82) !important;
  font-size: clamp(16px, 1.05vw, 18px) !important;
  line-height: 1.64 !important;
}

.project-page .girls-hero-photo {
  padding: 10px !important;
  overflow: hidden !important;
}

.project-page .girls-hero-photo img {
  border-radius: 14px !important;
  aspect-ratio: 4 / 3 !important;
  object-position: center right !important;
}

.project-page .girls-tech-card {
  padding: clamp(24px, 3vw, 36px) !important;
  background:
    linear-gradient(145deg, var(--project-dark), var(--project-deep)),
    url("../images/paper-texture-generated.jpg") !important;
  color: #fff8e8 !important;
}

.project-page .girls-tech-card .section-kicker,
.project-page .girls-tech-card dt {
  color: var(--project-accent) !important;
}

.project-page .girls-tech-card dd,
.project-page .girls-tech-card a {
  color: rgba(255, 248, 232, .9) !important;
}

.project-page .girls-tech-card div {
  border-top-color: color-mix(in srgb, var(--project-color), transparent 54%) !important;
}

.presentation-page .listing-hero,
.contact-page .listing-hero {
  background:
    linear-gradient(90deg, rgba(5, 17, 12, .92), rgba(5, 17, 12, .56), rgba(5, 17, 12, .76)),
    url("../images/foret-projets.png") center right / cover no-repeat !important;
}

.presentation-page .listing-hero h1,
.contact-page .listing-hero h1 {
  font-family: var(--font-title) !important;
  letter-spacing: -.035em !important;
}

.presentation-page .presentation-panel,
.presentation-page .presentation-panel--actions,
.presentation-page .orane-bio {
  border-left: 5px solid var(--gold-line) !important;
}

.contact-page {
  background: #06120d !important;
}

.contact-page .contact-section {
  background:
    radial-gradient(circle at 80% 14%, rgba(137, 179, 106, .16), transparent 28%),
    linear-gradient(180deg, #092018, #06120d) !important;
}

.contact-page .contact-layout {
  width: min(1360px, calc(100% - 72px)) !important;
  grid-template-columns: minmax(280px, .75fr) minmax(520px, 1.25fr) !important;
}

.contact-page .contact-intro,
.contact-page .contact-form {
  border: 1px solid rgba(217, 155, 57, .35) !important;
  background:
    linear-gradient(145deg, rgba(255, 250, 238, .96), rgba(238, 228, 209, .92)),
    url("../images/paper-texture-generated.jpg") !important;
}

.contact-page .contact-form {
  min-height: 500px !important;
}

.contact-page .contact-mail {
  background: #0c2a1e !important;
  border: 1px solid rgba(217, 155, 57, .38) !important;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
  outline: 2px solid rgba(217, 155, 57, .72) !important;
  border-color: rgba(217, 155, 57, .72) !important;
}

@media (max-width: 920px) {
  .project-page .girls-hero {
    min-height: auto !important;
    background-position: center right !important;
  }

  .project-page .girls-hero-content {
    width: min(100%, 720px) !important;
  }

  .project-page .girls-intro-grid,
  .contact-page .contact-layout {
    grid-template-columns: 1fr !important;
  }
}

/* Retouches 08/07 apres retour : accueil, nav, projets et contact. */
.home-page .hero-lead {
  display: none !important;
}

.site-header,
.home-page .site-header,
.presentation-page .site-header,
.contact-page .site-header,
.project-girls .site-header,
.project-songe .site-header,
.project-premier .site-header,
.project-hiero .site-header {
  background: linear-gradient(180deg, rgba(2, 7, 5, .34), rgba(2, 7, 5, .055) 74%, transparent) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.header-row,
.home-page .header-row,
.presentation-page .header-row,
.contact-page .header-row,
.project-girls .header-row,
.project-songe .header-row,
.project-premier .header-row,
.project-hiero .header-row {
  width: min(1500px, calc(100% - 68px)) !important;
  min-height: 66px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.site-nav a,
.home-page .site-nav a,
.presentation-page .site-nav a,
.contact-page .site-nav a,
.project-page .site-nav a,
.project-girls .site-nav a,
.project-songe .site-nav a,
.project-premier .site-nav a,
.project-hiero .site-nav a {
  color: rgba(255, 248, 232, .92) !important;
  border: 0 !important;
  text-decoration: none !important;
  transform: none !important;
  transition: color .2s ease !important;
}

.site-nav a::after,
.home-page .site-nav a::after,
.presentation-page .site-nav a::after,
.contact-page .site-nav a::after,
.project-page .site-nav a::after {
  content: none !important;
  display: none !important;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible,
.presentation-page .site-nav a:hover,
.presentation-page .site-nav a:focus-visible,
.contact-page .site-nav a:hover,
.contact-page .site-nav a:focus-visible,
.project-page .site-nav a:hover,
.project-page .site-nav a:focus-visible {
  color: #f2b13f !important;
  border: 0 !important;
  text-decoration: none !important;
  transform: none !important;
  background: transparent !important;
}

.home-page #projets .section-head > div {
  display: flex !important;
  align-items: center !important;
  gap: clamp(14px, 1.6vw, 26px) !important;
}

.home-page #projets .section-title {
  letter-spacing: -.028em !important;
  word-spacing: -.08em !important;
}

.home-page #projets .section-title::after {
  width: clamp(30px, 3.6vw, 54px) !important;
  margin: 0 0 .08em clamp(10px, 1.1vw, 16px) !important;
}

.home-page #projets .section-intro {
  align-self: center !important;
  max-width: 650px !important;
  margin: 0 !important;
  color: rgba(31, 23, 16, .72) !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(14px, .98vw, 18px) !important;
  font-weight: 600 !important;
  letter-spacing: .01em !important;
  line-height: 1.3 !important;
}

.home-page #projets .project-card--girls { --project-color: #d84a35 !important; }
.home-page #projets .project-card--songe { --project-color: #477a50 !important; }
.home-page #projets .project-card--premier { --project-color: #3f83b7 !important; }
.home-page #projets .project-card--hiero { --project-color: #8a58a6 !important; }

.home-page #projets .project-card,
.home-page #projets .project-card:nth-child(even) {
  border: 2px solid color-mix(in srgb, var(--project-color), white 22%) !important;
  box-shadow:
    0 20px 42px rgba(23, 16, 8, .22),
    0 0 0 1px rgba(255, 248, 232, .10) inset !important;
}

.home-page #projets .project-card::before {
  inset: 7px !important;
  border: 1px solid color-mix(in srgb, var(--project-color), transparent 24%) !important;
}

.home-page #projets .project-card:hover,
.home-page #projets .project-card:focus-visible {
  border-color: color-mix(in srgb, var(--project-color), white 8%) !important;
  box-shadow:
    0 26px 54px rgba(23, 16, 8, .28),
    0 0 0 5px color-mix(in srgb, var(--project-color), transparent 78%),
    0 0 34px color-mix(in srgb, var(--project-color), transparent 70%) !important;
}

.home-page #projets .project-card:hover::before,
.home-page #projets .project-card:focus-visible::before {
  inset: 8px !important;
  border-color: color-mix(in srgb, var(--project-color), white 20%) !important;
}

.project-page .girls-back-link {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255, 248, 232, .72) !important;
}

.project-page .girls-back-link:hover,
.project-page .girls-back-link:focus-visible {
  color: var(--project-accent) !important;
  background: transparent !important;
}

.project-page .girls-hero .project-type {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.project-page .girls-hero,
.project-girls .girls-hero,
.project-songe .girls-hero,
.project-premier .girls-hero,
.project-hiero .girls-hero {
  min-height: clamp(440px, 58svh, 660px) !important;
  padding: clamp(100px, 12vh, 132px) 0 clamp(58px, 7vh, 86px) !important;
  border-bottom-color: var(--project-color) !important;
  background-position: 84% center !important;
}

.project-page .girls-hero-content {
  width: min(55vw, 760px) !important;
}

.project-page .girls-hero h1,
.project-hiero .girls-hero h1,
.project-premier .girls-hero h1,
.project-songe .girls-hero h1,
.project-girls .girls-hero h1 {
  max-width: 820px !important;
  font-size: clamp(56px, 7.6vw, 122px) !important;
  line-height: .88 !important;
}

.project-songe .girls-hero {
  background-position: 96% center !important;
  background-image:
    linear-gradient(90deg, rgba(7, 26, 16, .98) 0%, rgba(7, 26, 16, .84) 48%, rgba(7, 26, 16, .32) 68%, rgba(7, 26, 16, .06) 82%, rgba(7, 26, 16, .24) 100%),
    url("../images/songe/songe-foret-1-crop.jpg") !important;
}

.project-callout {
  margin: clamp(24px, 3vw, 36px) 0 !important;
  padding: clamp(22px, 2.8vw, 34px) !important;
  border: 1px solid color-mix(in srgb, var(--project-color), white 34%) !important;
  border-left: 5px solid var(--project-color) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--project-color), white 84%), rgba(255, 250, 238, .62)),
    url("../images/paper-texture-generated.jpg") !important;
  box-shadow:
    0 20px 46px color-mix(in srgb, var(--project-color), transparent 82%),
    inset 0 1px 0 rgba(255, 255, 255, .58) !important;
}

.project-callout p {
  max-width: none !important;
  margin-bottom: 12px !important;
  color: color-mix(in srgb, var(--project-dark), #1f1710 28%) !important;
  font-size: clamp(15px, .98vw, 17px) !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
}

.project-callout p:last-child {
  margin-bottom: 0 !important;
}

.project-page .girls-tech-card {
  padding: clamp(22px, 2.5vw, 32px) !important;
  border: 1px solid color-mix(in srgb, var(--project-color), white 22%) !important;
  border-top: 6px solid var(--project-color) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(255, 250, 238, .96), color-mix(in srgb, var(--project-soft), #fffaf0 68%)),
    url("../images/paper-texture-generated.jpg") !important;
  color: #1f1710 !important;
  box-shadow: 0 18px 44px rgba(28, 22, 15, .12) !important;
}

.project-page .girls-tech-card .section-kicker {
  display: block !important;
  margin-bottom: 12px !important;
  color: var(--project-color) !important;
  font-family: var(--font-clean) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .18em !important;
}

.project-page .girls-tech-card div {
  grid-template-columns: 118px 1fr !important;
  gap: 16px !important;
  padding: 10px 0 !important;
  border-top: 1px solid color-mix(in srgb, var(--project-color), transparent 74%) !important;
}

.project-page .girls-tech-card dt {
  color: var(--project-color) !important;
  font-family: var(--font-clean) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .13em !important;
}

.project-page .girls-tech-card dd,
.project-page .girls-tech-card a {
  color: rgba(31, 23, 16, .82) !important;
}

.contact-page .contact-mail {
  font-size: clamp(15px, 1.15vw, 21px) !important;
  padding: 13px 15px !important;
}

@media (max-width: 780px) {
  .home-page #projets .section-head > div {
    align-items: flex-start !important;
  }

  .project-page .girls-hero-content {
    width: min(100%, 720px) !important;
  }
}

/* Retouches media 16/07 : video hero Songe et teaser Premier Moi. */
.project-page .girls-hero {
  overflow: hidden !important;
  isolation: isolate !important;
}

.project-hero-video,
.project-hero-video-overlay {
  position: absolute !important;
  inset: 0 !important;
}

.project-hero-video {
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.project-hero-video-overlay {
  z-index: 1 !important;
  pointer-events: none !important;
}

.project-page .girls-hero-layout {
  position: relative !important;
  z-index: 2 !important;
}

.project-songe .girls-hero {
  background-image: none !important;
  background-color: #06170e !important;
}

.project-songe .songe-hero-video {
  object-position: 72% center !important;
  filter: saturate(1.08) contrast(1.06) brightness(.92) !important;
}

.project-songe .project-hero-video-overlay {
  background:
    linear-gradient(90deg, rgba(5, 18, 11, .96) 0%, rgba(5, 18, 11, .78) 42%, rgba(5, 18, 11, .24) 68%, rgba(5, 18, 11, .18) 100%),
    linear-gradient(0deg, rgba(5, 18, 11, .55) 0%, rgba(5, 18, 11, .08) 58%, rgba(5, 18, 11, .35) 100%) !important;
}

.project-teaser--premier {
  display: grid !important;
  grid-template-columns: minmax(180px, .45fr) minmax(280px, 1fr) !important;
  align-items: center !important;
  gap: clamp(22px, 4vw, 58px) !important;
  margin: 0 0 clamp(34px, 5vw, 68px) !important;
}

.project-teaser--premier h2 {
  max-width: 360px !important;
  margin: 0 !important;
  color: var(--project-color) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(34px, 4.4vw, 74px) !important;
  font-weight: 900 !important;
  line-height: .92 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.premier-teaser-video {
  display: block !important;
  width: min(100%, 760px) !important;
  margin: 0 auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  border: 1px solid color-mix(in srgb, var(--project-color), white 24%) !important;
  border-radius: 18px !important;
  background: #07121c !important;
  box-shadow: 0 24px 52px color-mix(in srgb, var(--project-color), transparent 76%) !important;
}

.project-premier .project-gallery--premier figure,
.project-premier .project-gallery--premier figure.is-wide {
  background: color-mix(in srgb, var(--project-soft), #fffaf0 68%) !important;
}

.project-premier .project-gallery--premier img,
.project-premier .project-gallery--premier figure.is-wide img {
  object-fit: cover !important;
  object-position: center !important;
}

.project-songe .project-gallery--songe figure:nth-child(4) img {
  object-position: center 45% !important;
}

@media (max-width: 780px) {
  .project-teaser--premier {
    grid-template-columns: 1fr !important;
  }

  .project-teaser--premier h2 {
    max-width: 620px !important;
  }
}

/* Ajustements 16/07 : galeries harmonisees et teasers projets. */
.project-page .project-teaser,
.project-page .project-teaser--premier {
  display: block !important;
  width: min(1180px, 100%) !important;
  max-width: 1180px !important;
  margin: 0 auto clamp(26px, 4vw, 52px) !important;
  text-align: left !important;
}

.project-page .project-teaser h2,
.project-page .project-teaser--premier h2 {
  width: min(980px, 100%) !important;
  max-width: 980px !important;
  margin: 0 auto clamp(18px, 2.4vw, 30px) !important;
  color: var(--project-dark) !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(30px, 3.8vw, 56px) !important;
  font-weight: 700 !important;
  line-height: .94 !important;
  letter-spacing: -.018em !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

.project-page .songe-teaser-video,
.project-page .premier-teaser-video {
  display: block !important;
  width: min(980px, 100%) !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 auto !important;
  object-fit: cover !important;
}

.project-page .project-gallery--scroll figure,
.project-page .project-gallery--scroll figure.is-wide {
  flex: 0 0 min(560px, 82vw) !important;
  width: min(560px, 82vw) !important;
  min-height: 0 !important;
  padding: 6px !important;
}

.project-page .project-gallery--scroll img,
.project-page .project-gallery--scroll figure.is-wide img {
  width: 100% !important;
  height: clamp(230px, 28vw, 380px) !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
}

.project-page .project-gallery--scroll figure.is-drawing {
  flex: 0 0 min(360px, 72vw) !important;
  width: min(360px, 72vw) !important;
}

.project-page .project-gallery--scroll figure.is-drawing img {
  height: clamp(230px, 28vw, 380px) !important;
  object-fit: contain !important;
}

.project-songe .girls-side-column {
  margin-left: clamp(10px, 2.6vw, 42px) !important;
}

.project-songe .girls-intro-photo img {
  object-position: 78% center !important;
}

.project-premier .project-teaser--premier h2 {
  color: #286f9f !important;
}

.project-premier .premier-teaser-video {
  box-shadow: 0 20px 46px rgba(42, 118, 171, .18) !important;
}

@media (max-width: 920px) {
  .project-songe .girls-side-column {
    margin-left: 0 !important;
  }
}

/* Ajustement 16/07 : les galeries projet reprennent le gabarit Girls & Boys. */
.project-page .project-gallery--scroll figure,
.project-page .project-gallery--scroll figure.is-wide {
  flex-basis: min(430px, 78vw) !important;
  width: min(430px, 78vw) !important;
  padding: 5px !important;
}

.project-page .project-gallery--scroll img,
.project-page .project-gallery--scroll figure.is-wide img {
  height: clamp(220px, 22vw, 330px) !important;
}

.project-page .project-gallery--scroll figure.is-drawing {
  flex-basis: min(330px, 70vw) !important;
  width: min(330px, 70vw) !important;
}

.project-page .project-gallery--scroll figure.is-drawing img {
  height: clamp(220px, 22vw, 330px) !important;
}

/* Proposition DA Songe 16/07 : plus moderne, plus scenographique. */
.project-songe .girls-intro-section {
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(72px, 8vw, 128px) 0 clamp(76px, 9vw, 140px) !important;
  border-top: 1px solid rgba(220, 155, 62, .52) !important;
  background:
    radial-gradient(circle at 86% 12%, rgba(174, 211, 132, .18), transparent 26%),
    radial-gradient(circle at 6% 88%, rgba(220, 155, 62, .16), transparent 24%),
    linear-gradient(155deg, #06120d 0%, #0a2117 48%, #123522 100%) !important;
}

.project-songe .girls-intro-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  opacity: .16 !important;
  background:
    linear-gradient(90deg, rgba(255, 246, 218, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 246, 218, .06) 1px, transparent 1px),
    url("../images/paper-texture-generated.jpg") !important;
  background-size: 34px 34px, 34px 34px, 760px auto !important;
  mix-blend-mode: screen !important;
}

.project-songe .girls-intro-grid {
  position: relative !important;
  z-index: 1 !important;
  width: min(1500px, calc(100% - 72px)) !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .54fr) !important;
  gap: clamp(34px, 5.4vw, 92px) !important;
  align-items: start !important;
}

.project-songe .girls-summary,
.project-songe .girls-tech-card,
.project-songe .girls-hero-photo {
  border: 0 !important;
  box-shadow: none !important;
}

.project-songe .girls-summary {
  position: relative !important;
  padding: clamp(34px, 5vw, 72px) 0 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff4dd !important;
}

.project-songe .girls-summary::before {
  content: "LE SONGE" !important;
  position: absolute !important;
  top: -22px !important;
  left: -8px !important;
  z-index: -1 !important;
  color: rgba(255, 244, 221, .055) !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(96px, 14vw, 220px) !important;
  font-weight: 800 !important;
  line-height: .8 !important;
  letter-spacing: -.06em !important;
  white-space: nowrap !important;
}

.project-songe .girls-summary .section-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 clamp(16px, 2vw, 26px) !important;
  color: #d99b3e !important;
  font-family: var(--font-clean) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .24em !important;
}

.project-songe .girls-summary .section-kicker::before {
  content: "" !important;
  width: 46px !important;
  height: 2px !important;
  background: currentColor !important;
}

.project-songe .girls-summary h2 {
  max-width: 900px !important;
  margin: 0 0 clamp(22px, 2.8vw, 38px) !important;
  color: #fff4dd !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(48px, 5.8vw, 104px) !important;
  font-weight: 750 !important;
  line-height: .88 !important;
  letter-spacing: -.052em !important;
  text-shadow: 0 18px 46px rgba(0, 0, 0, .32) !important;
}

.project-songe .girls-summary h3 {
  margin: clamp(30px, 4vw, 58px) 0 12px !important;
  color: #f1b24f !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(18px, 1.7vw, 28px) !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}

.project-songe .girls-summary p {
  max-width: 880px !important;
  color: rgba(255, 244, 221, .78) !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(16px, 1.04vw, 19px) !important;
  font-weight: 500 !important;
  line-height: 1.72 !important;
}

.project-songe .project-callout {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1px !important;
  margin: clamp(34px, 4.8vw, 64px) 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(241, 178, 79, .34) !important;
  border-radius: 18px !important;
  background: rgba(255, 244, 221, .12) !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22) !important;
}

.project-songe .project-callout p {
  margin: 0 !important;
  padding: clamp(20px, 2.2vw, 32px) !important;
  background: rgba(255, 244, 221, .92) !important;
  color: #173722 !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(14px, .92vw, 16px) !important;
  font-weight: 750 !important;
  line-height: 1.55 !important;
}

.project-songe .girls-side-column {
  display: grid !important;
  gap: clamp(22px, 3vw, 40px) !important;
  margin-left: 0 !important;
}

.project-songe .girls-intro-photo {
  padding: 0 !important;
  overflow: visible !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.project-songe .girls-intro-photo img {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  min-height: clamp(520px, 48vw, 780px) !important;
  border-radius: 30px !important;
  object-fit: cover !important;
  object-position: 76% center !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .36),
    0 0 0 1px rgba(255, 244, 221, .16) inset !important;
}

.project-songe .girls-intro-photo figcaption {
  width: max-content !important;
  max-width: calc(100% - 32px) !important;
  margin: -38px 0 0 22px !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  background: rgba(6, 18, 13, .82) !important;
  color: rgba(255, 244, 221, .88) !important;
  font-family: var(--font-clean) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .18em !important;
}

.project-songe .girls-tech-card {
  padding: clamp(22px, 2.8vw, 38px) !important;
  border-radius: 24px !important;
  background: rgba(255, 244, 221, .94) !important;
  color: #173722 !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .25) !important;
}

.project-songe .girls-tech-card .section-kicker {
  margin-bottom: 18px !important;
  color: #0a4d32 !important;
  font-family: var(--font-clean) !important;
  letter-spacing: .18em !important;
}

.project-songe .girls-tech-card div {
  display: grid !important;
  grid-template-columns: 112px minmax(0, 1fr) !important;
  gap: 18px !important;
  padding: 12px 0 !important;
  border-top: 1px solid rgba(10, 77, 50, .16) !important;
}

.project-songe .girls-tech-card dt {
  color: #0a4d32 !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .16em !important;
}

.project-songe .girls-tech-card dd,
.project-songe .girls-tech-card a {
  color: rgba(23, 55, 34, .82) !important;
  font-size: clamp(14px, .95vw, 17px) !important;
}

.project-songe .songe-media-section {
  border-top: 1px solid rgba(241, 178, 79, .42) !important;
  background:
    linear-gradient(180deg, #102f20 0%, #07140e 100%) !important;
}

.project-songe .songe-media-section .project-teaser h2 {
  color: #fff4dd !important;
}

@media (max-width: 980px) {
  .project-songe .girls-intro-grid,
  .project-songe .project-callout {
    grid-template-columns: 1fr !important;
  }

  .project-songe .girls-intro-photo img {
    min-height: 0 !important;
    aspect-ratio: 16 / 11 !important;
  }
}

/* Ajustement Songe 16/07 : cadrage photo et texte fantome. */
.project-songe .girls-summary::before {
  content: "LE SONGE\A D'UNE NUIT D'ETE" !important;
  top: -16px !important;
  left: -8px !important;
  font-size: clamp(64px, 9vw, 148px) !important;
  line-height: .78 !important;
  letter-spacing: -.045em !important;
  white-space: pre-line !important;
}

.project-songe .girls-intro-photo {
  overflow: hidden !important;
  border-radius: 30px !important;
}

.project-songe .girls-intro-photo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 11 !important;
  object-fit: cover !important;
  object-position: 70% center !important;
  background: transparent !important;
}

/* Harmonisation 16/07 : DA intro sur projets + presentation. */
.project-girls .girls-intro-section,
.project-songe .girls-intro-section,
.project-premier .girls-intro-section,
.project-hiero .girls-intro-section {
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(72px, 8vw, 128px) 0 clamp(76px, 9vw, 140px) !important;
  border-top: 1px solid color-mix(in srgb, var(--project-color), white 18%) !important;
  background:
    radial-gradient(circle at 84% 10%, color-mix(in srgb, var(--project-accent), transparent 78%), transparent 27%),
    radial-gradient(circle at 6% 90%, color-mix(in srgb, var(--project-color), transparent 82%), transparent 25%),
    linear-gradient(155deg, var(--project-deep) 0%, var(--project-dark) 52%, color-mix(in srgb, var(--project-dark), var(--project-color) 28%) 100%) !important;
}

.project-girls .girls-intro-section::before,
.project-songe .girls-intro-section::before,
.project-premier .girls-intro-section::before,
.project-hiero .girls-intro-section::before,
.presentation-page #presentation::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  opacity: .14 !important;
  background:
    linear-gradient(90deg, rgba(255, 246, 218, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 246, 218, .055) 1px, transparent 1px),
    url("../images/paper-texture-generated.jpg") !important;
  background-size: 34px 34px, 34px 34px, 760px auto !important;
  mix-blend-mode: screen !important;
}

.project-girls .girls-intro-grid,
.project-songe .girls-intro-grid,
.project-premier .girls-intro-grid,
.project-hiero .girls-intro-grid {
  position: relative !important;
  z-index: 1 !important;
  width: min(1500px, calc(100% - 72px)) !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .54fr) !important;
  gap: clamp(34px, 5.4vw, 92px) !important;
  align-items: start !important;
}

.project-girls .girls-summary,
.project-songe .girls-summary,
.project-premier .girls-summary,
.project-hiero .girls-summary,
.project-girls .girls-tech-card,
.project-songe .girls-tech-card,
.project-premier .girls-tech-card,
.project-hiero .girls-tech-card,
.project-girls .girls-hero-photo,
.project-songe .girls-hero-photo,
.project-premier .girls-hero-photo,
.project-hiero .girls-hero-photo {
  border: 0 !important;
  box-shadow: none !important;
}

.project-girls .girls-summary,
.project-songe .girls-summary,
.project-premier .girls-summary,
.project-hiero .girls-summary {
  position: relative !important;
  z-index: 1 !important;
  padding: clamp(34px, 5vw, 72px) 0 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff4dd !important;
}

.project-girls .girls-summary::before,
.project-songe .girls-summary::before,
.project-premier .girls-summary::before,
.project-hiero .girls-summary::before {
  position: absolute !important;
  top: -16px !important;
  left: -8px !important;
  z-index: -1 !important;
  color: rgba(255, 244, 221, .052) !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(64px, 9vw, 148px) !important;
  font-weight: 800 !important;
  line-height: .78 !important;
  letter-spacing: -.045em !important;
  white-space: pre-line !important;
}

.project-girls .girls-summary::before { content: "GIRLS\A & BOYS" !important; }
.project-songe .girls-summary::before { content: "LE SONGE\A D'UNE NUIT D'ETE" !important; }
.project-premier .girls-summary::before { content: "LE PREMIER\A MOI" !important; }
.project-hiero .girls-summary::before { content: "HIEROPHANIE" !important; }

.project-girls .girls-summary .section-kicker,
.project-songe .girls-summary .section-kicker,
.project-premier .girls-summary .section-kicker,
.project-hiero .girls-summary .section-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 clamp(16px, 2vw, 26px) !important;
  color: var(--project-accent) !important;
  font-family: var(--font-clean) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .24em !important;
}

.project-girls .girls-summary .section-kicker::before,
.project-songe .girls-summary .section-kicker::before,
.project-premier .girls-summary .section-kicker::before,
.project-hiero .girls-summary .section-kicker::before {
  content: "" !important;
  width: 46px !important;
  height: 2px !important;
  background: currentColor !important;
}

.project-girls .girls-summary h2,
.project-songe .girls-summary h2,
.project-premier .girls-summary h2,
.project-hiero .girls-summary h2 {
  max-width: 920px !important;
  margin: 0 0 clamp(22px, 2.8vw, 38px) !important;
  color: #fff4dd !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(46px, 5.6vw, 100px) !important;
  font-weight: 750 !important;
  line-height: .9 !important;
  letter-spacing: -.048em !important;
  text-shadow: 0 18px 46px rgba(0, 0, 0, .32) !important;
}

.project-girls .girls-summary h3,
.project-songe .girls-summary h3,
.project-premier .girls-summary h3,
.project-hiero .girls-summary h3 {
  margin: clamp(30px, 4vw, 58px) 0 12px !important;
  color: var(--project-accent) !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(18px, 1.7vw, 28px) !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}

.project-girls .girls-summary p,
.project-songe .girls-summary p,
.project-premier .girls-summary p,
.project-hiero .girls-summary p {
  max-width: 880px !important;
  color: rgba(255, 244, 221, .8) !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(16px, 1.04vw, 19px) !important;
  font-weight: 500 !important;
  line-height: 1.72 !important;
}

.project-girls .project-callout,
.project-songe .project-callout,
.project-premier .project-callout,
.project-hiero .project-callout {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1px !important;
  margin: clamp(34px, 4.8vw, 64px) 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid color-mix(in srgb, var(--project-accent), transparent 54%) !important;
  border-left: 0 !important;
  border-radius: 18px !important;
  background: color-mix(in srgb, var(--project-accent), transparent 86%) !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22) !important;
}

.project-girls .project-callout p,
.project-songe .project-callout p,
.project-premier .project-callout p,
.project-hiero .project-callout p {
  margin: 0 !important;
  padding: clamp(20px, 2.2vw, 32px) !important;
  background: rgba(255, 244, 221, .92) !important;
  color: color-mix(in srgb, var(--project-dark), #173722 18%) !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(14px, .92vw, 16px) !important;
  font-weight: 750 !important;
  line-height: 1.55 !important;
}

.project-girls .girls-side-column,
.project-songe .girls-side-column,
.project-premier .girls-side-column,
.project-hiero .girls-side-column {
  display: grid !important;
  gap: clamp(22px, 3vw, 40px) !important;
  margin-left: 0 !important;
}

.project-girls .girls-intro-photo,
.project-songe .girls-intro-photo,
.project-premier .girls-intro-photo,
.project-hiero .girls-intro-photo {
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 30px !important;
  background: transparent !important;
}

.project-girls .girls-intro-photo img,
.project-songe .girls-intro-photo img,
.project-premier .girls-intro-photo img,
.project-hiero .girls-intro-photo img {
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 11 !important;
  border-radius: 30px !important;
  object-fit: cover !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .36),
    0 0 0 1px rgba(255, 244, 221, .16) inset !important;
}

.project-songe .girls-intro-photo img {
  transform: scale(1.1) !important;
  transform-origin: 72% center !important;
  object-position: 72% center !important;
}

.project-girls .girls-intro-photo img { object-position: 56% center !important; }
.project-premier .girls-intro-photo img { object-position: 50% center !important; }
.project-hiero .girls-intro-photo img { object-position: 58% center !important; }

.project-girls .girls-intro-photo figcaption,
.project-songe .girls-intro-photo figcaption,
.project-premier .girls-intro-photo figcaption,
.project-hiero .girls-intro-photo figcaption {
  width: max-content !important;
  max-width: calc(100% - 32px) !important;
  margin: -38px 0 0 22px !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--project-deep), transparent 14%) !important;
  color: rgba(255, 244, 221, .88) !important;
  font-family: var(--font-clean) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .18em !important;
}

.project-girls .girls-tech-card,
.project-songe .girls-tech-card,
.project-premier .girls-tech-card,
.project-hiero .girls-tech-card {
  padding: clamp(22px, 2.8vw, 38px) !important;
  border-radius: 24px !important;
  background: rgba(255, 244, 221, .94) !important;
  color: color-mix(in srgb, var(--project-dark), #173722 18%) !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .25) !important;
}

.project-girls .girls-tech-card .section-kicker,
.project-songe .girls-tech-card .section-kicker,
.project-premier .girls-tech-card .section-kicker,
.project-hiero .girls-tech-card .section-kicker {
  margin-bottom: 18px !important;
  color: var(--project-color) !important;
  font-family: var(--font-clean) !important;
  letter-spacing: .18em !important;
}

.project-girls .girls-tech-card div,
.project-songe .girls-tech-card div,
.project-premier .girls-tech-card div,
.project-hiero .girls-tech-card div {
  display: grid !important;
  grid-template-columns: 112px minmax(0, 1fr) !important;
  gap: 18px !important;
  padding: 12px 0 !important;
  border-top: 1px solid color-mix(in srgb, var(--project-color), transparent 82%) !important;
}

.project-girls .girls-tech-card dt,
.project-songe .girls-tech-card dt,
.project-premier .girls-tech-card dt,
.project-hiero .girls-tech-card dt {
  color: var(--project-color) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .16em !important;
}

.project-girls .girls-tech-card dd,
.project-songe .girls-tech-card dd,
.project-premier .girls-tech-card dd,
.project-hiero .girls-tech-card dd,
.project-girls .girls-tech-card a,
.project-songe .girls-tech-card a,
.project-premier .girls-tech-card a,
.project-hiero .girls-tech-card a {
  color: rgba(23, 34, 28, .82) !important;
  font-size: clamp(14px, .95vw, 17px) !important;
}

.presentation-page #presentation {
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(72px, 8vw, 128px) 0 clamp(76px, 9vw, 140px) !important;
  background:
    radial-gradient(circle at 82% 10%, rgba(217, 155, 62, .2), transparent 26%),
    linear-gradient(155deg, #06120d 0%, #0a2117 52%, #123522 100%) !important;
}

.presentation-page .presentation-layout {
  position: relative !important;
  z-index: 1 !important;
  width: min(1500px, calc(100% - 72px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .54fr) !important;
  gap: clamp(34px, 5.4vw, 92px) !important;
  align-items: start !important;
}

.presentation-page .presentation-copy {
  display: grid !important;
  gap: clamp(26px, 3vw, 40px) !important;
}

.presentation-page .presentation-panel,
.presentation-page .presentation-panel--actions,
.presentation-page .orane-bio {
  border: 0 !important;
  border-radius: 24px !important;
  background: rgba(255, 244, 221, .94) !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .25) !important;
}

.presentation-page .presentation-panel {
  position: relative !important;
  padding: clamp(30px, 4.2vw, 58px) !important;
}

.presentation-page .presentation-panel::before {
  content: "MOROSPHINX\A PRODUCTION" !important;
  position: absolute !important;
  top: -18px !important;
  left: 18px !important;
  z-index: 0 !important;
  color: rgba(10, 33, 23, .055) !important;
  font-family: var(--serif-cinema) !important;
  font-size: clamp(56px, 7.5vw, 132px) !important;
  font-weight: 800 !important;
  line-height: .78 !important;
  letter-spacing: -.045em !important;
  white-space: pre-line !important;
}

.presentation-page .presentation-panel > * {
  position: relative !important;
  z-index: 1 !important;
}

.presentation-page .presentation-panel h2,
.presentation-page .presentation-panel h3,
.presentation-page .presentation-panel--actions h2,
.presentation-page .orane-bio h2 {
  color: #082018 !important;
  font-family: var(--serif-cinema) !important;
  font-weight: 750 !important;
  line-height: .92 !important;
  letter-spacing: -.04em !important;
  text-shadow: none !important;
}

.presentation-page .presentation-panel h2 {
  font-size: clamp(42px, 4.8vw, 86px) !important;
}

.presentation-page .presentation-panel p,
.presentation-page .presentation-panel--actions p,
.presentation-page .orane-bio p {
  color: rgba(31, 23, 16, .82) !important;
  font-family: var(--font-clean) !important;
  font-size: clamp(16px, 1.04vw, 19px) !important;
  line-height: 1.68 !important;
}

.presentation-page .portrait-card {
  border: 0 !important;
  border-radius: 30px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.presentation-page .portrait-card img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 11 !important;
  border-radius: 30px !important;
  object-fit: cover !important;
  object-position: 62% center !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .36),
    0 0 0 1px rgba(255, 244, 221, .16) inset !important;
}

.presentation-page .orane-bio {
  margin-top: clamp(22px, 3vw, 40px) !important;
  padding: clamp(24px, 3vw, 38px) !important;
}

@media (max-width: 980px) {
  .project-girls .girls-intro-grid,
  .project-songe .girls-intro-grid,
  .project-premier .girls-intro-grid,
  .project-hiero .girls-intro-grid,
  .project-girls .project-callout,
  .project-songe .project-callout,
  .project-premier .project-callout,
  .project-hiero .project-callout,
  .presentation-page .presentation-layout {
    grid-template-columns: 1fr !important;
  }

  .project-songe .girls-intro-photo img {
    transform: scale(1.06) !important;
  }
}

/* Retouches 16/07 : titres miroir, galeries couleur, affiche et accueil. */
.project-girls .girls-summary::before,
.project-songe .girls-summary::before,
.project-premier .girls-summary::before,
.project-hiero .girls-summary::before,
.presentation-page .presentation-panel::before {
  transform: scaleX(-1) !important;
  transform-origin: center !important;
  opacity: .9 !important;
}

.project-girls .girls-summary h3,
.project-songe .girls-summary h3,
.project-premier .girls-summary h3,
.project-hiero .girls-summary h3 {
  color: #f2b13f !important;
}

.project-girls .project-gallery-section,
.project-songe .project-gallery-section,
.project-premier .project-gallery-section,
.project-hiero .project-gallery-section {
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid color-mix(in srgb, var(--project-color), white 18%) !important;
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--project-accent), transparent 82%), transparent 28%),
    radial-gradient(circle at 82% 82%, color-mix(in srgb, var(--project-color), transparent 78%), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--project-dark), #000 10%) 0%, var(--project-deep) 100%) !important;
}

.project-girls .project-gallery-section::before,
.project-songe .project-gallery-section::before,
.project-premier .project-gallery-section::before,
.project-hiero .project-gallery-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  opacity: .15 !important;
  background:
    linear-gradient(90deg, rgba(255, 246, 218, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 246, 218, .05) 1px, transparent 1px),
    url("../images/paper-texture-generated.jpg") !important;
  background-size: 34px 34px, 34px 34px, 760px auto !important;
  mix-blend-mode: screen !important;
}

.project-gallery-section .container {
  position: relative !important;
  z-index: 1 !important;
}

.project-gallery-head .section-kicker,
.project-gallery-head h2,
.project-gallery-head p,
.project-teaser h2,
.project-teaser--premier h2 {
  color: #fff4dd !important;
}

.project-gallery--scroll figure,
.project-gallery--scroll figure.is-wide,
.project-gallery--scroll figure.is-drawing {
  border: 1px solid color-mix(in srgb, var(--project-accent), transparent 56%) !important;
  background: color-mix(in srgb, var(--project-dark), white 7%) !important;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .34) !important;
}

.project-premier .girls-intro-grid {
  grid-template-columns: minmax(0, .95fr) minmax(360px, .48fr) !important;
}

.project-premier .girls-intro-photo {
  width: min(100%, 520px) !important;
  justify-self: center !important;
  padding: clamp(10px, 1.4vw, 18px) !important;
  background:
    linear-gradient(145deg, rgba(4, 12, 22, .96), rgba(7, 24, 38, .9)) !important;
}

.project-premier .girls-intro-photo img {
  aspect-ratio: 2 / 3 !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  background: transparent !important;
}

.project-premier .premier-teaser-video {
  filter: saturate(1.04) contrast(1.02) !important;
}

.presentation-page .presentation-layout {
  grid-template-columns: minmax(0, .9fr) minmax(430px, .66fr) !important;
}

.presentation-page .portrait-card {
  align-self: start !important;
}

.presentation-page .portrait-card img {
  aspect-ratio: 4 / 5 !important;
  min-height: clamp(560px, 50vw, 760px) !important;
  object-position: 58% center !important;
}

.presentation-page .orane-bio {
  border-top: 5px solid #f2b13f !important;
}

.home-page #projets .project-card-body {
  opacity: 0 !important;
  transform: translateY(14px) !important;
  transition: opacity .28s ease, transform .28s ease !important;
}

.home-page #projets .project-card h3,
.home-page #projets .project-card p,
.home-page #projets .project-card .project-type {
  opacity: 0 !important;
  transition: opacity .25s ease, color .25s ease, transform .25s ease !important;
}

.home-page #projets .project-card:hover .project-card-body,
.home-page #projets .project-card:focus-visible .project-card-body,
.home-page #projets .project-card:hover h3,
.home-page #projets .project-card:focus-visible h3,
.home-page #projets .project-card:hover p,
.home-page #projets .project-card:focus-visible p,
.home-page #projets .project-card:hover .project-type,
.home-page #projets .project-card:focus-visible .project-type {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.home-page #projets .project-card:hover h3,
.home-page #projets .project-card:focus-visible h3 {
  color: var(--project-color) !important;
}

@media (max-width: 980px) {
  .project-premier .girls-intro-grid,
  .presentation-page .presentation-layout {
    grid-template-columns: 1fr !important;
  }

  .presentation-page .portrait-card img {
    min-height: 0 !important;
    aspect-ratio: 16 / 11 !important;
  }
}
