:root {
  --navy: #0f2a45;
  --navy-2: #183a59;
  --ivory: #f7f8f5;
  --white: #ffffff;
  --mint: #3caf86;
  --green: #2b7a60;
  --blue-grey: #476071;
  --pale-mint: #dff2ea;
  --line: #dce3df;
  --ink: #132d45;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  border-bottom: 1px solid rgba(15, 42, 69, 0.09);
  background: rgba(247, 248, 245, 0.94);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
}
.brand-symbol img {
  width: 58px;
  height: 58px;
  max-width: none;
  object-fit: cover;
}
.brand-name {
  display: grid;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.13em;
}
.brand-name strong { font-size: 17px; font-weight: 800; }
.brand-name span { margin-top: 5px; font-size: 8px; font-weight: 700; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
}
.desktop-nav a {
  position: relative;
  padding: 9px 0;
  color: var(--blue-grey);
  font-size: 14px;
  font-weight: 650;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--mint);
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after { transform: scaleX(1); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(60, 175, 134, 0.45);
  outline-offset: 3px;
}
.button-small { min-height: 42px; padding: 10px 17px; font-size: 13px; }
.button-outline {
  border-color: rgba(15, 42, 69, 0.22);
  color: var(--navy);
  background: transparent;
}
.button-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(15, 42, 69, 0.2);
}
.button-primary:hover { background: var(--navy-2); }

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #f1f2ee;
}
.hero-photo, .hero-wash { position: absolute; inset: 0; }
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-wash {
  background:
    linear-gradient(90deg, rgba(247,248,245,1) 0%, rgba(247,248,245,.96) 30%, rgba(247,248,245,.56) 51%, rgba(247,248,245,0) 72%),
    linear-gradient(180deg, rgba(247,248,245,.2) 60%, rgba(247,248,245,.7) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 82px 92px;
}
.hero-copy { width: min(635px, 58%); }
.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.35;
  text-transform: uppercase;
}
.hero h1, .section h2, .contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.042em;
  line-height: 1.04;
}
.hero h1 {
  max-width: 630px;
  color: var(--navy);
  font-size: clamp(46px, 5.3vw, 74px);
}
.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--blue-grey);
  font-size: 18px;
  line-height: 1.72;
}
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 37px; }
.text-link, .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}
.text-link svg, .card-link svg { transition: transform 180ms ease; }
.text-link:hover svg { transform: translate(2px, 2px); }
.card-link:hover svg { transform: translate(3px, -3px); }
.hero-note {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  max-width: 282px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 16px 45px rgba(15,42,69,.12);
  backdrop-filter: blur(13px);
}
.hero-note svg { flex: none; margin-top: 2px; color: var(--green); }
.hero-note p { display: grid; gap: 2px; margin: 0; line-height: 1.35; }
.hero-note strong { color: var(--navy); font-size: 13px; }
.hero-note span { color: var(--blue-grey); font-size: 12px; }

.signature-strip {
  border-top: 1px solid rgba(15,42,69,.08);
  border-bottom: 1px solid rgba(15,42,69,.08);
  background: var(--white);
}
.signature-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.signature-inner > p {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
}
.signature-services {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--blue-grey);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.signature-services i { width: 4px; height: 4px; border-radius: 50%; background: var(--mint); }

.section { padding-block: 120px; }
.intro-section, .paths-section { background: var(--ivory); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,.75fr);
  gap: 12%;
  align-items: start;
}
.section h2, .contact-section h2 {
  color: var(--navy);
  font-size: clamp(38px, 4vw, 57px);
}
.intro-copy { padding-top: 33px; border-top: 1px solid rgba(15,42,69,.17); }
.intro-copy p {
  margin: 0;
  color: var(--blue-grey);
  font-size: 17px;
  line-height: 1.8;
}
.intro-copy p + p { margin-top: 22px; }
.paths-section { padding-top: 0; }
.section-heading { max-width: 700px; margin-bottom: 50px; }
.path-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.path-card {
  min-height: 565px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 40px 42px;
  border-radius: 28px;
  overflow: hidden;
}
.path-card-brand {
  color: var(--white);
  background: radial-gradient(circle at 88% 10%,rgba(60,175,134,.2),transparent 30%), var(--navy);
}
.path-card-creator {
  color: var(--navy);
  background: radial-gradient(circle at 82% 11%,rgba(255,255,255,.66),transparent 29%), var(--pale-mint);
}
.card-number {
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  opacity: .55;
}
.card-kicker {
  margin: 0 0 17px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .75;
}
.path-card h3 {
  max-width: 470px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px,3.1vw,47px);
  font-weight: 500;
  letter-spacing: -.036em;
  line-height: 1.08;
}
.card-copy { max-width: 480px; margin: 21px 0 0; font-size: 16px; line-height: 1.7; opacity: .8; }
.clean-list { display: grid; gap: 10px; margin: 27px 0 32px; padding: 0; list-style: none; }
.clean-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 650; }
.clean-list svg { flex: none; color: var(--mint); }
.path-card-creator .clean-list svg { color: var(--green); }
.path-card-brand .card-link { color: var(--white); }

.process-section {
  color: var(--white);
  background: radial-gradient(circle at 8% 100%,rgba(60,175,134,.13),transparent 28%), var(--navy);
}
.process-layout {
  display: grid;
  grid-template-columns: minmax(0,.83fr) minmax(0,.9fr);
  gap: 13%;
  align-items: start;
}
.process-intro { position: sticky; top: 125px; }
.process-intro h2 { color: var(--white); }
.process-intro > p:last-child {
  max-width: 480px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.75;
}
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.15);
}
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.process-list > li > span {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}
.process-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}
.process-list p { margin: 5px 0 0; color: rgba(255,255,255,.66); font-size: 14px; }

.discretion-section { background: var(--white); }
.discretion-card {
  display: grid;
  grid-template-columns: 60px minmax(0,1fr) minmax(280px,.7fr);
  gap: 45px;
  align-items: start;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--ivory);
}
.discretion-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--pale-mint);
}
.discretion-card h2 { max-width: 600px; font-size: clamp(34px,3.5vw,50px); }
.discretion-card > p {
  margin: 39px 0 0;
  color: var(--blue-grey);
  font-size: 15px;
  line-height: 1.8;
}
.contact-section { padding-block: 88px; color: var(--white); background: var(--green); }
.contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.contact-section .eyebrow { margin-bottom: 13px; color: var(--pale-mint); }
.contact-section h2 { color: var(--white); }
.contact-actions { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 12px; flex: none; }
.button-light { flex: none; color: var(--navy); background: var(--white); }
.button-whatsapp { flex: none; border-color: rgba(255,255,255,.58); color: var(--white); background: rgba(255,255,255,.08); }
.button-whatsapp:hover { border-color: var(--white); background: rgba(255,255,255,.16); }

.site-footer { color: rgba(255,255,255,.7); background: #0a2137; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto minmax(310px,auto);
  gap: 60px;
  align-items: start;
  padding-block: 64px 55px;
}
.brand-footer .brand-name { color: var(--white); }
.footer-links { display: grid; gap: 11px; font-size: 13px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact { justify-self: end; }
.footer-contact p {
  margin: 0 0 7px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer-contact a { color: var(--white); font-size: 14px; }
.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
}

.footer-contact-secondary { margin-top: 22px !important; }

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex: none;
  border: 1px solid rgba(15,42,69,.18);
  border-radius: 50%;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}
.mobile-menu-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  padding: 16px 24px 22px;
  border-bottom: 1px solid rgba(15,42,69,.1);
  background: rgba(247,248,245,.98);
  box-shadow: 0 18px 35px rgba(15,42,69,.1);
}
.mobile-menu-panel.is-open { display: grid; }
.mobile-menu-panel a {
  padding: 13px 4px;
  border-bottom: 1px solid rgba(15,42,69,.08);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}
.mobile-menu-panel .mobile-menu-contact {
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  text-align: center;
  background: var(--navy);
}

.button-mint { color: var(--navy); background: var(--mint); }
.button-mint:hover { background: #51c69d; }

/* Marques */
.brand-page-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 25%,rgba(60,175,134,.12),transparent 28%),
    var(--navy);
}
.brand-orbit {
  position: absolute;
  border: 1px solid rgba(223,242,234,.12);
  border-radius: 50%;
  pointer-events: none;
}
.brand-orbit-one { width: 620px; height: 620px; right: -250px; top: -260px; }
.brand-orbit-two { width: 420px; height: 420px; right: 4%; bottom: -300px; }
.brand-page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(380px,.72fr);
  gap: 9%;
  align-items: center;
  padding-block: 80px;
}
.brand-page-copy h1,
.creator-page-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(49px,5.4vw,75px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
}
.brand-page-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px 0 34px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.75;
}
.casting-panel {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  color: var(--navy);
  background: rgba(247,248,245,.96);
  box-shadow: 0 30px 70px rgba(3,17,31,.25);
}
.casting-panel-top,
.casting-panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.casting-panel-top span:last-child { color: var(--green); }
.casting-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-block: 28px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.casting-route i { height: 1px; background: rgba(15,42,69,.16); }
.casting-result {
  padding: 25px;
  border-radius: 18px;
  background: var(--pale-mint);
}
.casting-result > p {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.2;
}
.casting-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.casting-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(15,42,69,.12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
  background: rgba(255,255,255,.62);
}
.casting-panel-bottom {
  justify-content: flex-start;
  margin-top: 22px;
  color: var(--blue-grey);
  font-size: 9px;
}
.casting-panel-bottom svg { flex: none; color: var(--green); }

.casting-definition { background: var(--white); }
.definition-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,.77fr);
  gap: 12%;
  align-items: start;
}
.definition-copy { padding-top: 32px; border-top: 1px solid rgba(15,42,69,.16); }
.definition-copy p {
  margin: 0;
  color: var(--blue-grey);
  font-size: 17px;
  line-height: 1.8;
}
.definition-copy p + p { margin-top: 22px; }

.brand-services-section { background: var(--ivory); }
.brand-service-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}
.brand-service-card {
  min-height: 350px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--pale-mint);
}
.service-number {
  margin: 60px 0 14px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}
.brand-service-card h3,
.creator-benefit-grid h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.15;
}
.brand-service-card > p:last-child,
.creator-benefit-grid article > p {
  margin: 17px 0 0;
  color: var(--blue-grey);
  font-size: 14px;
  line-height: 1.75;
}

.brand-process-section { background: var(--pale-mint); }
.brand-process-heading {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,.55fr);
  gap: 12%;
  align-items: end;
  margin-bottom: 60px;
}
.brand-process-heading > p {
  margin: 0 0 6px;
  color: var(--blue-grey);
  font-size: 15px;
  line-height: 1.75;
}
.brand-process-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(15,42,69,.18);
  list-style: none;
}
.brand-process-grid li {
  padding: 28px 25px 10px 0;
  border-right: 1px solid rgba(15,42,69,.13);
}
.brand-process-grid li + li { padding-left: 25px; }
.brand-process-grid li:last-child { border-right: 0; }
.brand-process-grid span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}
.brand-process-grid h3 {
  margin: 47px 0 13px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}
.brand-process-grid p { margin: 0; color: var(--blue-grey); font-size: 13px; line-height: 1.7; }

.brand-selection-section { background: var(--white); }
.brand-selection-card {
  display: grid;
  grid-template-columns: 70px minmax(0,1fr) minmax(320px,.72fr);
  gap: 42px;
  align-items: start;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--ivory);
}
.brand-selection-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--pale-mint);
}
.brand-selection-card h2 { font-size: clamp(34px,3.5vw,49px); }
.brand-selection-card > div:last-child > p {
  margin: 39px 0 22px;
  color: var(--blue-grey);
  font-size: 14px;
  line-height: 1.75;
}
.brand-selection-card ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.brand-selection-card li { display: flex; gap: 9px; color: var(--navy); font-size: 12px; font-weight: 700; }
.brand-selection-card li svg { flex: none; color: var(--green); }
.brand-contact-section { background: var(--green); }

/* Créateurs */
.creator-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0,rgba(255,255,255,.7),transparent 32%),
    var(--pale-mint);
}
.creator-page-hero-inner {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(370px,.68fr);
  gap: 10%;
  align-items: center;
  padding-block: 80px;
}
.creator-page-copy h1 { max-width: 700px; color: var(--navy); }
.creator-page-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 34px;
  color: var(--blue-grey);
  font-size: 17px;
  line-height: 1.75;
}
.creator-support-panel {
  padding: 34px;
  border: 1px solid rgba(15,42,69,.1);
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0,rgba(60,175,134,.2),transparent 32%),
    var(--navy);
  box-shadow: 0 28px 70px rgba(15,42,69,.18);
}
.creator-panel-kicker {
  margin: 0 0 37px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.creator-support-panel h2 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.creator-support-panel ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}
.creator-support-panel li { display: flex; gap: 10px; font-size: 13px; font-weight: 650; }
.creator-support-panel li svg { flex: none; color: var(--mint); }
.creator-panel-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.68);
  font-size: 12px;
}
.creator-panel-note svg { flex: none; color: var(--mint); }

.creator-benefits-section { background: var(--white); }
.creator-benefits-heading {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,.62fr);
  gap: 11%;
  align-items: end;
  margin-bottom: 60px;
}
.creator-benefits-heading > p {
  margin: 0 0 4px;
  color: var(--blue-grey);
  font-size: 15px;
  line-height: 1.8;
}
.creator-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}
.creator-benefit-grid article {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--ivory);
}
.creator-benefit-grid article > span {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 67px;
  border-radius: 50%;
  color: var(--green);
  background: var(--pale-mint);
}

.creator-steps-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 100%,rgba(60,175,134,.13),transparent 30%),
    var(--navy);
}
.creator-steps-layout {
  display: grid;
  grid-template-columns: minmax(0,.83fr) minmax(0,.9fr);
  gap: 13%;
}
.creator-steps-layout h2 { color: var(--white); }
.creator-steps-layout > div > p:last-child {
  max-width: 480px;
  margin: 27px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.75;
}
.creator-steps-layout ol { margin: 0; padding: 0; list-style: none; }
.creator-steps-layout li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-top: 1px solid rgba(255,255,255,.15);
}
.creator-steps-layout li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.creator-steps-layout li > span { color: var(--mint); font-family: Georgia,serif; font-size: 13px; }
.creator-steps-layout h3 { margin: 0; font-family: Georgia,serif; font-size: 24px; font-weight: 500; }
.creator-steps-layout li p { margin: 6px 0 0; color: rgba(255,255,255,.65); font-size: 13px; }

.application-section { scroll-margin-top: 80px; background: var(--ivory); }
.application-layout {
  display: grid;
  grid-template-columns: minmax(270px,.47fr) minmax(0,1fr);
  gap: 8%;
  align-items: start;
}
.application-intro { position: sticky; top: 125px; }
.application-intro h2 { font-size: clamp(38px,3.7vw,52px); }
.application-intro > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--blue-grey);
  font-size: 15px;
  line-height: 1.75;
}
.application-email {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(15,42,69,.14);
}
.application-email svg { flex: none; margin-top: 2px; color: var(--green); }
.application-email div { display: grid; gap: 3px; }
.application-email span { color: var(--blue-grey); font-size: 11px; }
.application-email a { color: var(--navy); font-size: 13px; font-weight: 700; }
.application-whatsapp { margin-top: 14px; padding-top: 0; border-top: 0; }

.creator-form {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}
.form-section { padding: 36px 38px; border-bottom: 1px solid var(--line); }
.form-section-heading {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin-bottom: 27px;
}
.form-section-heading > span { color: var(--green); font-family: Georgia,serif; font-size: 13px; }
.form-section-heading h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia,serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.02em;
}
.form-section-heading p { margin: 4px 0 0; color: var(--blue-grey); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field > span,
.choice-field legend {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #ccd7d2;
  border-radius: 12px;
  color: var(--navy);
  background: var(--ivory);
  font: inherit;
  font-size: 14px;
  outline: none;
}
.field input, .field select { height: 48px; padding: 0 14px; }
.field textarea { min-height: 96px; padding: 12px 14px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(60,175,134,.15);
}
.field input::placeholder,
.field textarea::placeholder { color: #87959e; }
.form-grid-choices { align-items: start; }
.choice-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.choice-field legend { margin-bottom: 12px; }
.radio-row { display: flex; gap: 10px; }
.radio-row label {
  min-width: 86px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid #ccd7d2;
  border-radius: 11px;
  color: var(--blue-grey);
  font-size: 13px;
  font-weight: 650;
  background: var(--ivory);
  cursor: pointer;
}
.radio-row input { accent-color: var(--green); }
.conditional-fields {
  margin-top: 4px;
  padding: 20px;
  border-radius: 14px;
  background: var(--pale-mint);
}
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 38px;
  background: #f2f5f2;
}
.form-submit-row > p {
  max-width: 470px;
  margin: 0;
  color: var(--blue-grey);
  font-size: 11px;
  line-height: 1.6;
}
.form-submit-row button { border: 0; cursor: pointer; white-space: nowrap; }
.static-icon { color: var(--green); font-weight: 900; }
.hero-note > .static-icon { flex: none; margin-top: 1px; }
.form-alert {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding: 17px 19px;
  border-radius: 14px;
  font-size: 13px;
}
.form-alert[hidden] { display: none; }
.form-alert strong { color: var(--navy); }
.form-alert span { color: var(--blue-grey); }
.form-alert-success { border: 1px solid rgba(43,122,96,.25); background: var(--pale-mint); }
.form-alert-error { border: 1px solid rgba(164,68,68,.2); background: #faeeee; }

/* Mouvement Harbor : discret, premium et respectueux des préférences système */
@keyframes harbor-rise {
  from { opacity: 0; transform: translate3d(0,16px,0); }
  to { opacity: 1; transform: translate3d(0,0,0); }
}
@keyframes harbor-card-in {
  from { opacity: 0; transform: translate3d(0,14px,0) scale(.992); }
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}

.site-header {
  transition: height 260ms ease, background-color 260ms ease, box-shadow 260ms ease;
}
.site-header.is-scrolled {
  background: rgba(247,248,245,.985);
  box-shadow: 0 14px 36px rgba(15,42,69,.09);
}
.hero-copy > *,
.brand-page-copy > *,
.creator-page-copy > * {
  opacity: 1;
  animation: harbor-rise 600ms cubic-bezier(.22,1,.36,1) backwards;
}
.hero-copy > :nth-child(2),
.brand-page-copy > :nth-child(2),
.creator-page-copy > :nth-child(2) { animation-delay: 70ms; }
.hero-copy > :nth-child(3),
.brand-page-copy > :nth-child(3),
.creator-page-copy > :nth-child(3) { animation-delay: 140ms; }
.hero-copy > :nth-child(4),
.brand-page-copy > :nth-child(4),
.creator-page-copy > :nth-child(4) { animation-delay: 210ms; }
.hero-note,
.casting-panel,
.creator-support-panel {
  opacity: 1;
  animation: harbor-card-in 680ms 220ms cubic-bezier(.22,1,.36,1) backwards;
}

.button svg,
.button span[aria-hidden="true"] { transition: transform 220ms ease; }
.button:hover svg,
.button:hover span[aria-hidden="true"] { transform: translate3d(2px,-2px,0); }
.motion-enabled .reveal-target {
  opacity: 0;
  transform: translate3d(0,18px,0);
  transition:
    opacity 560ms cubic-bezier(.22,1,.36,1),
    transform 560ms cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.motion-enabled .reveal-target.is-visible {
  opacity: 1;
  transform: translate3d(0,0,0);
  will-change: auto;
}

.path-card,
.brand-service-card,
.creator-benefit-grid article {
  transition: transform 320ms cubic-bezier(.22,1,.36,1), box-shadow 320ms ease, border-color 320ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .path-card:hover,
  .brand-service-card:hover,
  .creator-benefit-grid article:hover {
    transform: translate3d(0,-4px,0);
    border-color: rgba(60,175,134,.4);
    box-shadow: 0 18px 42px rgba(15,42,69,.1);
  }
}

@media (max-width: 900px) {
  .site-header { height: 76px; }
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero, .hero-inner { min-height: 730px; }
  .hero-wash {
    background: linear-gradient(180deg,rgba(247,248,245,1) 0%,rgba(247,248,245,.96) 46%,rgba(247,248,245,.12) 73%,rgba(247,248,245,.35) 100%);
  }
  .hero-photo img { object-position: 66% center; }
  .hero-inner { align-items: flex-start; padding-top: 65px; }
  .hero-copy { width: 100%; max-width: 680px; }
  .hero h1 { max-width: 650px; font-size: clamp(44px,8vw,66px); }
  .hero-lead { max-width: 580px; }
  .hero-note { right: 24px; }
  .signature-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding-block: 24px;
  }
  .intro-grid, .process-layout { grid-template-columns: 1fr; gap: 50px; }
  .process-intro { position: static; }
  .discretion-card { grid-template-columns: 60px 1fr; }
  .discretion-card > p { grid-column: 2; margin-top: 0; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-contact { grid-column: 1 / -1; justify-self: start; }
  .brand-page-hero-inner,
  .creator-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 85px;
  }
  .casting-panel,
  .creator-support-panel { width: min(100%,560px); }
  .definition-layout { grid-template-columns: 1fr; gap: 42px; }
  .brand-service-grid { grid-template-columns: 1fr; }
  .brand-service-card { min-height: auto; }
  .service-number { margin-top: 35px; }
  .brand-process-heading,
  .creator-benefits-heading { grid-template-columns: 1fr; gap: 28px; }
  .brand-process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .brand-process-grid li:nth-child(2) { border-right: 0; }
  .brand-process-grid li:nth-child(n+3) { margin-top: 35px; }
  .brand-selection-card { grid-template-columns: 70px 1fr; }
  .brand-selection-card > div:last-child { grid-column: 2; }
  .brand-selection-card > div:last-child > p { margin-top: 0; }
  .creator-benefit-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .creator-benefit-grid article { padding: 25px; }
  .creator-steps-layout { grid-template-columns: 1fr; gap: 45px; }
  .application-layout { grid-template-columns: 1fr; gap: 45px; }
  .application-intro { position: static; max-width: 650px; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 32px,1180px); }
  .site-header .button { min-height: 39px; padding-inline: 14px; }
  .site-header .button svg { display: none; }
  .brand-symbol { width: 38px; height: 38px; }
  .brand-symbol img { width: 53px; height: 53px; }
  .brand-name strong { font-size: 14px; }
  .brand-name span { font-size: 7px; }
  .header-inner { gap: 10px; }
  .hero, .hero-inner { min-height: 760px; }
  .hero-inner { padding-top: 54px; }
  .hero-photo img { object-position: 65% bottom; }
  .hero-wash {
    background: linear-gradient(180deg,rgba(247,248,245,1) 0%,rgba(247,248,245,.98) 47%,rgba(247,248,245,.55) 60%,rgba(247,248,245,.05) 76%);
  }
  .hero h1 { font-size: clamp(39px,11.2vw,51px); line-height: 1.02; }
  .hero-lead { margin-top: 22px; font-size: 16px; line-height: 1.6; }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
  }
  .hero-note { right: 16px; bottom: 18px; left: 16px; max-width: none; }
  .signature-services { flex-wrap: wrap; row-gap: 8px; }
  .section { padding-block: 84px; }
  .intro-grid { gap: 35px; }
  .intro-copy { padding-top: 25px; }
  .paths-section { padding-top: 0; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 540px; padding: 30px 27px 34px; border-radius: 22px; }
  .path-card h3 { font-size: 37px; }
  .process-layout { gap: 35px; }
  .discretion-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 31px 26px;
    border-radius: 22px;
  }
  .discretion-card > p { grid-column: auto; }
  .contact-inner { align-items: flex-start; flex-direction: column; }
  .contact-actions { width: 100%; justify-content: flex-start; }
  .contact-actions .button { flex: 1 1 220px; }
  .contact-section { padding-block: 70px; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .footer-contact { grid-column: auto; }
  .footer-contact a { word-break: break-word; }
  .footer-bottom {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding-block: 20px;
  }
  .brand-page-hero-inner,
  .creator-page-hero-inner {
    min-height: auto;
    gap: 42px;
    padding-block: 66px;
  }
  .brand-page-copy h1,
  .creator-page-copy h1 { font-size: clamp(41px,12vw,53px); }
  .brand-page-copy > p:not(.eyebrow),
  .creator-page-copy > p:not(.eyebrow) { margin-top: 23px; font-size: 16px; line-height: 1.65; }
  .casting-panel,
  .creator-support-panel { padding: 24px; border-radius: 21px; }
  .casting-result { padding: 20px; }
  .definition-layout { gap: 32px; }
  .definition-copy { padding-top: 24px; }
  .brand-service-grid,
  .creator-benefit-grid { grid-template-columns: 1fr; }
  .brand-process-grid { grid-template-columns: 1fr; border-top: 0; }
  .brand-process-grid li,
  .brand-process-grid li + li {
    margin-top: 0 !important;
    padding: 26px 0;
    border-top: 1px solid rgba(15,42,69,.16);
    border-right: 0;
  }
  .brand-process-grid h3 { margin-top: 30px; }
  .brand-selection-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 26px;
    border-radius: 22px;
  }
  .brand-selection-card > div:last-child { grid-column: auto; }
  .brand-selection-card > div:last-child > p { margin-top: 0; }
  .creator-benefit-grid article { min-height: auto; }
  .creator-benefit-grid article > span { margin-bottom: 40px; }
  .creator-steps-layout { gap: 35px; }
  .application-section { scroll-margin-top: 76px; }
  .creator-form { border-radius: 22px; }
  .form-section { padding: 28px 23px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-grid-choices { gap: 30px; }
  .conditional-fields { padding: 17px; }
  .form-submit-row {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 23px;
  }
  .form-submit-row button { width: 100%; white-space: normal; }
}

@media (max-width: 480px) {
  .header-contact { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
  }
  .motion-enabled .reveal-target { opacity: 1; transform: none; }
}
