* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navbar-top: 14px;
  --navbar-height: 150px;
  --navbar-gap: 30px;
  --navbar-actual-height: var(--navbar-height);

  --bg-deep: #04050a;
  --bg-base: #06070e;
  --bg-surface: #0a0b13;
  --bg-panel: #0e1018;
  --bg-panel-alt: #11131c;
  --bg-card: #151722;
  --bg-card-hover: #1b1e2b;
  --bg-elevated: #202433;
  --bg-footer: #080910;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(
    var(--navbar-top) + var(--navbar-actual-height) + var(--navbar-gap) + env(safe-area-inset-top, 0px)
  );
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-deep);
  color: #f4f0e8;
  font-family: Arial, sans-serif;
  padding-top: calc(
    var(--navbar-top) + var(--navbar-actual-height) + var(--navbar-gap) + env(safe-area-inset-top, 0px)
  );
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: var(--navbar-top);
  left: 24px;
  right: 24px;
  width: auto;
  max-width: none;
  height: var(--navbar-height);
  padding: 0 clamp(28px, 3.5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 90px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(16, 17, 26, 0.35) 45%,
    rgba(16, 17, 26, 0.42) 100%
  );
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 1000;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.navbar__bar {
  display: contents;
}

.navbar__menu {
  display: flex;
  align-items: center;
  flex: 1;
  gap: clamp(16px, 2.5vw, 32px);
  min-width: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.menu-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #f4f0e8;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar.is-open .menu-toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar.is-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.navbar.is-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar.is-scrolled {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(16, 17, 26, 0.28) 45%,
    rgba(16, 17, 26, 0.38) 100%
  );
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.05) 45%,
    rgba(5, 6, 12, 0.55) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 28px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 50% 35%,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 1;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 24px rgba(5, 6, 12, 0.45);
  pointer-events: none;
  z-index: 2;
}

.brand-logo {
  width: 128%;
  height: 128%;
  object-fit: cover;
  object-position: center;
  display: block;
  mix-blend-mode: screen;
  filter: contrast(1.08) brightness(1.04);
  -webkit-mask-image: radial-gradient(
    ellipse 72% 72% at 50% 50%,
    #000 52%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 72% 72% at 50% 50%,
    #000 52%,
    transparent 100%
  );
}

.brand-name {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #f4f0e8;
  line-height: 1.1;
}

.brand-desc {
  margin: 0;
  font-size: clamp(12px, 1.15vw, 14px);
  line-height: 1.35;
  color: #aaa5b8;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}

nav a {
  color: #aaa5b8;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(14px, 1.35vw, 17px);
  white-space: nowrap;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

nav a:hover {
  color: #f4f0e8;
}

nav a.active {
  color: #f4f0e8;
  border-bottom-color: #e8ddc8;
  padding-bottom: 10px;
}

.btn {
  background: #e8ddc8;
  color: #05060c;
  text-decoration: none;
  padding: clamp(14px, 1.5vw, 20px) clamp(20px, 2vw, 32px);
  border-radius: 40px;
  font-weight: 800;
  font-size: clamp(14px, 1.35vw, 16px);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  transform: translateY(-2px);
  background: #f4f0e8;
}

.hero-video {
  position: relative;
  width: calc(100% - 48px);
  margin: 0 auto 40px;
  height: min(72vh, 640px);
  min-height: 320px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  filter: brightness(0.5) contrast(1.12) saturate(1.2);
  transform: scale(1.04);
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 176, 0, 0.12) 0%, transparent 45%),
    linear-gradient(
      180deg,
      rgba(5, 6, 12, 0.25) 0%,
      rgba(5, 6, 12, 0.45) 45%,
      rgba(5, 6, 12, 0.88) 100%
    );
  pointer-events: none;
}

.hero-video__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 56px);
  z-index: 2;
}

.hero-video__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.hero-video__copy {
  max-width: min(100%, 720px);
}

.hero-video__eyebrow {
  margin-bottom: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: #e8ddc8;
}

.hero-video__title {
  font-family: Georgia, serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  max-width: 12ch;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

.hero-video__title--wide {
  max-width: 16ch;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.08;
}

.agency-hero .hero-video__media {
  filter: brightness(0.48) contrast(1.14) saturate(1);
}

.agency-hero .hero-video__overlay {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 176, 0, 0.1) 0%, transparent 42%),
    linear-gradient(
      180deg,
      rgba(5, 6, 12, 0.3) 0%,
      rgba(5, 6, 12, 0.5) 45%,
      rgba(5, 6, 12, 0.88) 100%
    );
}

.agency-hero .hero-video__content {
  justify-content: flex-end;
}

.projet-hero {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 40px;
  height: auto;
  min-height: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  background: var(--bg-base);
  overflow: hidden;
}

.projet-hero .hero-video__media {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  display: block;
  object-fit: initial;
  object-position: center;
  transform: none;
  filter: brightness(0.55) contrast(1.1) saturate(1.15);
}

.projet-hero .hero-video__overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 176, 0, 0.06) 0%, transparent 42%),
    linear-gradient(
      180deg,
      rgba(5, 6, 12, 0.08) 0%,
      rgba(5, 6, 12, 0.2) 55%,
      rgba(5, 6, 12, 0.35) 100%
    );
  pointer-events: none;
}

/* ——— Page Projet ——— */

.projet-page__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.projet-page__eyebrow {
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: #e8ddc8;
  margin-bottom: 12px;
}

.projet-page__head h1 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  color: #f4f0e8;
  margin-bottom: 14px;
}

.projet-page__lead {
  color: #aaa5b8;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  font-weight: 500;
}

.pilatfest {
  padding: clamp(32px, 5vw, 48px);
  border-radius: 30px;
  border: 1px solid rgba(0, 98, 57, 0.35);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 98, 57, 0.12) 0%, transparent 42%),
    linear-gradient(180deg, rgba(22, 24, 36, 0.98), var(--bg-surface));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.pilatfest__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(28px, 4vw, 36px);
  margin-bottom: clamp(28px, 4vw, 36px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pilatfest__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(140px, 18vw, 200px);
  height: clamp(140px, 18vw, 200px);
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(0, 98, 57, 0.4);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pilatfest__brand:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 98, 57, 0.2);
}

.pilatfest__logo {
  width: 100%;
  height: auto;
  max-width: 120px;
  display: block;
}

.pilatfest__label {
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: #5cb88a;
  margin-bottom: 10px;
}

.pilatfest__title {
  font-family: Georgia, serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 500;
  color: #f4f0e8;
  line-height: 1.1;
  margin-bottom: 12px;
}

.pilatfest__tagline {
  color: #d8d2c8;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  font-weight: 500;
  max-width: 36ch;
  margin-bottom: 18px;
}

.pilatfest__link {
  display: inline-block;
  color: #e8ddc8;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(232, 221, 200, 0.35);
  background: rgba(232, 221, 200, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pilatfest__link:hover {
  color: #05060c;
  background: #e8ddc8;
  border-color: #e8ddc8;
}

.pilatfest__body {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 36px);
}

.pilatfest__block {
  padding-bottom: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pilatfest__block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.pilatfest__block-title {
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: #f4f0e8;
  margin-bottom: 14px;
}

.pilatfest__block p {
  color: #aaa5b8;
  font-size: 17px;
  line-height: 1.78;
  font-weight: 500;
  max-width: 72ch;
}

.pilatfest__block p + p {
  margin-top: 14px;
}

.pilatfest__block strong {
  color: #e8ddc8;
  font-weight: 800;
}

.pilatfest__highlight {
  padding-left: 18px;
  border-left: 2px solid rgba(92, 184, 138, 0.65);
  color: #d8d2c8 !important;
  font-style: italic;
}

.pilatfest__scope {
  padding: clamp(22px, 3vw, 28px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: none !important;
  background: rgba(0, 0, 0, 0.22);
  padding-bottom: clamp(22px, 3vw, 28px) !important;
}

.pilatfest__scope .pilatfest__block-title {
  margin-bottom: 10px;
}

.pilatfest__tags {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pilatfest__tags li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 98, 57, 0.45);
  background: rgba(0, 98, 57, 0.12);
  color: #c8e6d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pilatfest__quote {
  margin: 0;
  padding: clamp(22px, 3vw, 28px) clamp(24px, 3vw, 32px);
  border-radius: 22px;
  border: 1px solid rgba(232, 221, 200, 0.15);
  background: rgba(232, 221, 200, 0.05);
}

.pilatfest__quote p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: #e8ddc8;
  font-weight: 500;
  font-style: italic;
}

.projet-page__cta {
  margin-top: clamp(40px, 5vw, 56px);
  text-align: center;
  font-size: 18px;
  color: #aaa5b8;
}

.projet-page__cta a {
  color: #e8ddc8;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.projet-page__cta a:hover {
  color: #f4f0e8;
}

/* ——— Page Accompagnement ——— */

.accompagnement-page__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.accompagnement-page__eyebrow {
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: #e8ddc8;
  margin-bottom: 12px;
}

.accompagnement-page__head h1 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  color: #f4f0e8;
  margin-bottom: 14px;
}

.accompagnement-page__lead {
  color: #aaa5b8;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  font-weight: 500;
}

.accompagnement-page__intro {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.accompagnement-steps {
  list-style: none;
  margin: clamp(40px, 5vw, 56px) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.accompagnement-steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(232, 221, 200, 0.45) 0%,
    rgba(232, 221, 200, 0.12) 100%
  );
  pointer-events: none;
}

.accompagnement-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(24px, 3vw, 32px) 0;
  position: relative;
}

.accompagnement-step:first-child {
  padding-top: 0;
}

.accompagnement-step__marker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.accompagnement-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(232, 221, 200, 0.35);
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-card));
  color: #e8ddc8;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.accompagnement-step__content {
  padding: clamp(22px, 3vw, 28px) clamp(24px, 3vw, 32px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-panel-alt));
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.accompagnement-step__content:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 221, 200, 0.2);
}

.accompagnement-step__title {
  font-family: Georgia, serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  color: #f4f0e8;
  margin-bottom: 12px;
}

.accompagnement-step__content p {
  color: #aaa5b8;
  font-size: 17px;
  line-height: 1.78;
  font-weight: 500;
  max-width: 68ch;
}

.accompagnement-step__content strong {
  color: #e8ddc8;
  font-weight: 800;
}

.accompagnement-step--final .accompagnement-step__num {
  border-color: rgba(232, 221, 200, 0.55);
  background: linear-gradient(180deg, rgba(232, 221, 200, 0.2), rgba(18, 19, 29, 0.95));
  color: #f4f0e8;
}

.accompagnement-step--final .accompagnement-step__content {
  border-color: rgba(232, 221, 200, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 221, 200, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(28, 29, 42, 0.98), rgba(18, 19, 29, 0.92));
}

.accompagnement-cta {
  margin-top: clamp(48px, 6vw, 64px);
  padding: clamp(36px, 5vw, 48px);
  border-radius: 30px;
  border: 1px solid rgba(232, 221, 200, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 221, 200, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-panel-alt), var(--bg-base));
  text-align: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.accompagnement-cta__eyebrow {
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: #e8ddc8;
  margin-bottom: 12px;
}

.accompagnement-cta__title {
  font-family: Georgia, serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 500;
  color: #f4f0e8;
  margin-bottom: 14px;
}

.accompagnement-cta__text {
  color: #aaa5b8;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
  max-width: 520px;
  margin: 0 auto 28px;
}

.accompagnement-cta__btn {
  display: inline-block;
  text-decoration: none;
  color: #05060c;
  background: #e8ddc8;
  padding: 18px 36px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}

.accompagnement-cta__btn:hover {
  transform: translateY(-2px);
  background: #f4f0e8;
}

.hero-video__cta {
  flex-shrink: 0;
  align-self: flex-end;
  text-decoration: none;
  color: #05060c;
  background: #e8ddc8;
  padding: 20px 34px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 17px;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-video__cta:hover {
  transform: translateY(-2px);
  background: #f4f0e8;
}

.home-intro {
  position: relative;
  width: calc(100% - 48px);
  margin: 0 auto 52px;
  isolation: isolate;
}

.home-intro__glow {
  position: absolute;
  inset: 8% 4% -6%;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 176, 0, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(232, 221, 200, 0.1) 0%, transparent 40%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.home-intro__panel {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 5vw, 56px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06) 0%,
    var(--bg-panel-alt) 38%,
    var(--bg-panel) 100%
  );
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.home-intro__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.home-intro__eyebrow {
  margin-bottom: 14px;
  letter-spacing: 7px;
  text-transform: uppercase;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  color: #e8ddc8;
}

.home-intro__title {
  font-family: Georgia, serif;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  color: #f4f0e8;
}

.home-intro__lead {
  max-width: 980px;
  margin: 0 auto 40px;
  text-align: center;
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.65;
  font-style: italic;
  color: #d8d2c8;
}

.home-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-intro__card {
  padding: 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-panel-alt));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.home-intro__card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 221, 200, 0.22);
  background: linear-gradient(180deg, var(--bg-card-hover), var(--bg-card));
}

.home-intro__card--wide {
  grid-column: 1 / -1;
}

.home-intro__card--highlight {
  border-color: rgba(255, 176, 0, 0.28);
  background: linear-gradient(
    145deg,
    rgba(255, 176, 0, 0.1) 0%,
    rgba(25, 26, 37, 0.96) 38%,
    rgba(18, 19, 29, 0.92) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 176, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-intro__tag--gold {
  border-color: rgba(255, 176, 0, 0.35);
  background: rgba(255, 176, 0, 0.14);
  color: #ffb000;
}

.scope-band {
  width: calc(100% - 48px);
  margin: 0 auto 52px;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 40px);
  border-radius: 28px;
  border: 1px solid rgba(255, 176, 0, 0.28);
  background: linear-gradient(
    135deg,
    rgba(255, 176, 0, 0.14) 0%,
    var(--bg-panel-alt) 42%,
    var(--bg-surface) 100%
  );
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
}

.scope-band__inner {
  max-width: 820px;
  margin: 0 auto;
}

.scope-band__eyebrow {
  margin-bottom: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 800;
  color: #ffb000;
}

.scope-band__title {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  color: #f4f0e8;
  margin-bottom: 16px;
}

.scope-band__text {
  color: #d8d2c8;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.72;
  font-weight: 500;
}

.scope-band__text strong {
  color: #f4f0e8;
  font-weight: 800;
}

.scope-band__text--large {
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.55;
  font-style: italic;
}

.scope-band--compact {
  margin-bottom: 44px;
  padding: clamp(22px, 3vw, 32px) clamp(20px, 3vw, 32px);
}

.scope-band--inline {
  width: 100%;
  margin: 28px 0 36px;
  text-align: left;
}

.scope-band--inline .scope-band__inner {
  max-width: none;
}

.home-intro__tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232, 221, 200, 0.22);
  background: rgba(232, 221, 200, 0.08);
  color: #e8ddc8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-intro__card p {
  color: #aaa5b8;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
  text-align: left;
}

.section {
  width: 72%;
  margin: 0 auto 48px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--bg-panel-alt), var(--bg-surface));
}

.intro {
  display: flex;
  align-items: center;
  gap: 35px;
}

h1,
.intro h2 {
  font-family: Georgia, serif;
  font-size: 66px;
  font-weight: 500;
}

.intro-lead {
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  color: #aaa5b8;
}

.description {
  margin-top: 10px;
  color: #aaa5b8;
  line-height: 1.7;
  font-size: 21px;
  font-weight: 600;
}

.contact-page__intro {
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 720px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8ddc8;
}

.contact-form__label span {
  color: #ffb000;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 13, 20, 0.85);
  color: #f4f0e8;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #6f6a7a;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: rgba(232, 221, 200, 0.45);
  box-shadow: 0 0 0 3px rgba(232, 221, 200, 0.12);
}

.contact-form__input:invalid:not(:placeholder-shown),
.contact-form__select:invalid:not(:placeholder-shown),
.contact-form__textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 100, 100, 0.45);
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e8ddc8' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.contact-form__select option {
  background: var(--bg-panel);
  color: #f4f0e8;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #aaa5b8;
  font-size: 15px;
  line-height: 1.65;
  cursor: pointer;
}

.contact-form__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #e8ddc8;
  cursor: pointer;
}

.contact-form__consent a {
  color: #e8ddc8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form__consent a:hover {
  color: #fff;
}

.contact-form__error {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 100, 100, 0.35);
  background: rgba(255, 80, 80, 0.1);
  color: #ffb4b4;
  font-size: 15px;
  line-height: 1.5;
}

.contact-form__submit {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  background: #e8ddc8;
  color: #05060c;
  padding: 18px 34px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 17px;
  font-family: Arial, sans-serif;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  background: #f4f0e8;
}

.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-form__success {
  max-width: 560px;
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 176, 0, 0.28);
  background: linear-gradient(
    135deg,
    rgba(255, 176, 0, 0.12) 0%,
    rgba(18, 19, 29, 0.96) 100%
  );
  text-align: center;
}

.contact-form__success-title {
  font-family: Georgia, serif;
  font-size: clamp(26px, 4vw, 34px);
  color: #f4f0e8;
  margin-bottom: 12px;
}

.contact-form__success-text {
  color: #aaa5b8;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-form__success-link {
  display: inline-block;
  text-decoration: none;
  color: #05060c;
  background: #e8ddc8;
  padding: 14px 26px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 15px;
  transition: background 0.2s ease;
}

.contact-form__success-link:hover {
  background: #f4f0e8;
}

.grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  min-height: 315px;
  padding: 55px 35px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
}

.icon {
  font-size: 42px;
  margin-bottom: 22px;
}

.gold {
  color: #ffb000;
}

.card h2 {
  font-family: Georgia, serif;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}

.card p {
  color: #aaa5b8;
  font-size: 17px;
  line-height: 1.5;
}

.home-pillars {
  width: calc(100% - 48px);
}

.home-pillars .grid {
  margin-top: 0;
}

.home-pillars .card h2 {
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 22px;
}

.card--pillar {
  min-height: 280px;
  padding: 55px 35px 40px;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.card--pillar:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232, 221, 200, 0.18);
  transform: translateY(-6px);
}

.card__front {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card__front h2 {
  margin-bottom: 0;
}

.card__detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    padding 0.35s ease,
    margin 0.35s ease;
}

.card--pillar:hover .card__detail {
  max-height: 420px;
  opacity: 1;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card__detail p {
  color: #aaa5b8;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

@media (hover: hover) {
  .card--pillar .card__detail {
    pointer-events: none;
  }
}

@media (hover: none) {
  .card--pillar .card__detail {
    max-height: none;
    opacity: 1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.partners-band {
  width: calc(100% - 48px);
  margin: 0 auto 56px;
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(18, 19, 29, 0.95) 40%,
    rgba(14, 15, 23, 0.98) 100%
  );
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  text-align: center;
}

.partners-band__title {
  margin: 0 auto 28px;
  font-family: Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f4f0e8;
}

.partners-band__viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.partners-band__track {
  display: flex;
  align-items: center;
  gap: clamp(56px, 10vw, 120px);
  width: max-content;
  padding: 12px clamp(40px, 8vw, 80px);
  animation: partners-scroll 32s linear infinite;
  will-change: transform;
}

.partners-band__track:hover {
  animation-play-state: paused;
}

.partners-band__track img {
  height: clamp(48px, 8vw, 72px);
  width: auto;
  min-width: 90px;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  opacity: 0.88;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.partners-band__link {
  flex-shrink: 0;
  display: block;
  line-height: 0;
  text-decoration: none;
}

.partners-band__logo {
  height: clamp(56px, 9vw, 84px);
  max-width: 120px;
  filter: none;
  opacity: 0.95;
}

.partners-band__logo--pilatfest {
  height: clamp(52px, 8vw, 80px);
  max-width: 115px;
}

.partners-band__track img:hover,
.partners-band__link:hover img {
  opacity: 1;
  transform: scale(1.04);
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-band__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 32px 48px;
  }
}

/* ——— Page L'agence ——— */

.agency-intro .home-intro__panel {
  text-align: center;
}

.agency-location {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.agency-location__pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(232, 221, 200, 0.28);
  background: rgba(232, 221, 200, 0.1);
  color: #e8ddc8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.agency-location__pill--muted {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #aaa5b8;
}

.agency-intro__text {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  color: #aaa5b8;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
  font-weight: 500;
}

.agency-block,
.agency-expertise,
.agency-founder,
.agency-vision {
  width: calc(100% - 48px);
  margin: 0 auto 52px;
}

.agency-block__inner,
.agency-founder__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.agency-block__inner {
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  align-items: start;
}

.agency-block__media {
  max-width: 340px;
  width: 100%;
}

.agency-vision__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.agency-showcase {
  position: relative;
  isolation: isolate;
  max-width: 340px;
  width: 100%;
}

.agency-showcase__glow {
  position: absolute;
  inset: 10% -8% -10% 12%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 176, 0, 0.16) 0%, transparent 52%),
    radial-gradient(circle at 80% 70%, rgba(232, 221, 200, 0.1) 0%, transparent 48%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

.agency-showcase__frame {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 5;
  min-height: 0;
  max-height: 400px;
}

.agency-showcase__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  pointer-events: none;
  filter: brightness(0.38) contrast(1.16) saturate(0.9);
  transform: scale(1.08);
}

.agency-showcase__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 176, 0, 0.12) 0%, transparent 46%),
    linear-gradient(180deg, rgba(5, 6, 12, 0.08) 0%, rgba(5, 6, 12, 0.45) 52%, rgba(5, 6, 12, 0.96) 100%),
    linear-gradient(90deg, rgba(5, 6, 12, 0.55) 0%, transparent 42%);
  pointer-events: none;
}

.agency-showcase__chips {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agency-showcase__chip {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 6, 12, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #f4f0e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.agency-showcase__chip--gold {
  border-color: rgba(255, 176, 0, 0.35);
  background: rgba(255, 176, 0, 0.12);
  color: #e8ddc8;
}

.agency-showcase__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: #e8ddc8;
}

.agency-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  aspect-ratio: 4 / 5;
}

.agency-visual--tall {
  min-height: 420px;
}

.agency-visual__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  filter: brightness(0.34) contrast(1.14) saturate(0.92);
  transform: scale(1.06);
}

.agency-visual__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 176, 0, 0.08) 0%, transparent 42%),
    linear-gradient(180deg, rgba(5, 6, 12, 0.35) 0%, rgba(5, 6, 12, 0.72) 55%, rgba(5, 6, 12, 0.96) 100%);
  pointer-events: none;
}

.agency-visual__overlay--warm {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 176, 0, 0.1) 0%, transparent 48%),
    linear-gradient(135deg, rgba(5, 6, 12, 0.42) 0%, rgba(5, 6, 12, 0.94) 100%);
}

.agency-visual__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: #e8ddc8;
}

.agency-section-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.agency-section-head__title {
  font-family: Georgia, serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  color: #f4f0e8;
  letter-spacing: -0.5px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.agency-block__eyebrow,
.agency-expertise__eyebrow,
.agency-founder__eyebrow,
.agency-vision__eyebrow {
  margin-bottom: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: #e8ddc8;
}

.agency-block__title,
.agency-expertise__title,
.agency-founder__title,
.agency-vision__title {
  font-family: Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  color: #e8ddc8;
  margin-bottom: 22px;
}

.agency-block__text,
.agency-founder__text,
.agency-vision__text {
  color: #aaa5b8;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.78;
  font-weight: 500;
  margin-bottom: 18px;
}

.agency-block__text--highlight,
.agency-founder__text--closing {
  color: #d8d2c8;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 20px);
  margin-bottom: 0;
}

.agency-expertise {
  padding: clamp(36px, 5vw, 52px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(18, 19, 29, 0.95) 42%,
    rgba(14, 15, 23, 0.98) 100%
  );
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.agency-expertise__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.agency-expertise__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.agency-expertise__card {
  padding: 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-panel-alt));
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.agency-expertise__card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 221, 200, 0.22);
  background: linear-gradient(180deg, var(--bg-card-hover), var(--bg-card));
}

.agency-expertise__icon {
  display: block;
  font-size: 34px;
  margin-bottom: 16px;
}

.agency-expertise__icon--gold {
  color: #ffb000;
}

.agency-expertise__card h3 {
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 500;
  color: #f4f0e8;
  margin-bottom: 12px;
}

.agency-expertise__card p {
  color: #aaa5b8;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
}

/* Services page */
.services-page .scope-band--inline {
  margin-top: 28px;
  border-color: rgba(232, 221, 200, 0.22);
  background: linear-gradient(
    135deg,
    rgba(232, 221, 200, 0.07) 0%,
    rgba(18, 19, 29, 0.96) 42%,
    rgba(12, 13, 20, 0.98) 100%
  );
}

.services-page .scope-band__eyebrow {
  color: #e8ddc8;
}

.services-block {
  margin-top: clamp(48px, 6vw, 72px);
}

.services-block__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.services-block__eyebrow {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  color: #e8ddc8;
  margin-bottom: 10px;
  font-weight: 600;
}

.services-block__title {
  font-family: Georgia, serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  color: #f4f0e8;
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #aaa5b8;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.services-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

.services-list li:last-child {
  margin-bottom: 0;
}

.services-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #e8ddc8;
  font-weight: 700;
}

.services-page .agency-expertise__icon--gold {
  color: #e8ddc8;
}

.services-card--wide {
  grid-column: 1 / -1;
}

.services-page__cta {
  margin-top: clamp(48px, 6vw, 64px);
  text-align: center;
  font-size: 18px;
  color: #aaa5b8;
}

.services-page__cta a {
  color: #e8ddc8;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.services-page__cta a:hover {
  color: #f4f0e8;
}

@media (max-width: 640px) {
  .services-card--wide {
    grid-column: auto;
  }
}

.agency-founder {
  padding: clamp(32px, 5vw, 48px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, var(--bg-panel-alt), var(--bg-surface));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.agency-founder__figure {
  margin: 0;
}

.agency-founder__photo {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: block;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.agency-founder__caption {
  margin-top: 14px;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: #aaa5b8;
}

.agency-founder__content a {
  color: #e8ddc8;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.agency-founder__content a:hover {
  color: #fff;
}

.agency-vision {
  padding: clamp(32px, 5vw, 48px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(14, 15, 23, 0.98) 55%,
    rgba(8, 9, 14, 1) 100%
  );
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.agency-vision__cta {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  color: #05060c;
  background: #e8ddc8;
  padding: 18px 30px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}

.agency-vision__cta:hover {
  transform: translateY(-2px);
  background: #f4f0e8;
}

@media (max-width: 1100px) {
  .agency-block__inner,
  .agency-founder__inner {
    grid-template-columns: 1fr;
  }

  .agency-block__media {
    order: -1;
    max-width: min(100%, 420px);
    margin: 0 auto;
  }

  .agency-showcase {
    max-width: 100%;
  }

  .agency-showcase__frame {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .agency-visual {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .agency-visual--tall {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .agency-block,
  .agency-expertise,
  .agency-founder,
  .agency-vision {
    width: calc(100% - 24px);
    margin-bottom: 32px;
  }

  .agency-expertise {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .agency-expertise__grid {
    grid-template-columns: 1fr;
  }

  .agency-founder,
  .agency-vision {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .hero-video__title--wide {
    max-width: none;
    font-size: clamp(28px, 8vw, 40px);
  }

  .agency-section-head__title {
    font-size: clamp(38px, 11vw, 56px);
  }

  .agency-section-head {
    margin-bottom: 28px;
  }

  .agency-block__title,
  .agency-founder__title,
  .agency-vision__title {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .agency-block__text,
  .agency-founder__text,
  .agency-vision__text {
    font-size: 16px;
  }

  .agency-vision__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 22px;
    font-size: 15px;
  }

  .agency-showcase__chips {
    top: 14px;
    left: 14px;
    right: 14px;
    gap: 6px;
  }

  .agency-showcase__chip {
    padding: 7px 11px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .agency-showcase__caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    letter-spacing: 3px;
    font-size: 10px;
  }

  .agency-location__pill {
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1280px) {
  .navbar {
    padding: 0 36px;
  }
}

@media (max-width: 1120px) {
  .brand-desc {
    display: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --navbar-height: 120px;
    --navbar-gap: 24px;
  }

  .navbar {
    padding: 0 28px;
  }

  .brand-mark {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .brand-name {
    font-size: 18px;
    letter-spacing: 0.14em;
  }

  nav {
    gap: 10px;
    flex-wrap: nowrap;
  }

  nav a {
    font-size: 13px;
    padding: 8px 0;
  }

  nav a.active {
    padding-bottom: 8px;
  }

  .btn {
    padding: 12px 18px;
    font-size: 13px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 28px 22px;
  }

  .hero-video {
    width: calc(100% - 32px);
    height: min(52vh, 480px);
    margin-bottom: 28px;
  }

  .projet-hero {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: auto;
    min-height: 0;
    border-radius: 0;
  }

  .projet-hero .hero-video__media {
    width: 100%;
    height: auto;
  }

  .pilatfest__hero {
    flex-direction: column;
    text-align: center;
  }

  .pilatfest__tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .accompagnement-steps::before {
    left: 23px;
  }

  .accompagnement-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .accompagnement-step__num {
    width: 48px;
    height: 48px;
    font-size: 12px;
  }

  .hero-video__content {
    padding: 24px 20px;
  }

  .hero-video__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero-video__title {
    max-width: none;
    font-size: clamp(30px, 8vw, 48px);
  }

  .hero-video__cta {
    align-self: stretch;
    width: 100%;
    text-align: center;
    white-space: normal;
    padding: 16px 22px;
    font-size: 15px;
  }

  .home-intro {
    width: calc(100% - 32px);
    margin-bottom: 32px;
  }

  .home-pillars {
    width: calc(100% - 32px);
  }

  .partners-band {
    width: calc(100% - 32px);
    margin-bottom: 40px;
  }

  .scope-band {
    width: calc(100% - 32px);
    margin-bottom: 32px;
  }

  .scope-band--inline {
    width: 100%;
  }

  .agency-block,
  .agency-expertise,
  .agency-founder,
  .agency-vision {
    width: calc(100% - 32px);
  }

  .site-footer {
    width: calc(100% - 32px);
  }

  .home-intro__panel {
    padding: 28px 22px;
  }

  .home-intro__grid {
    grid-template-columns: 1fr;
  }

  .home-intro__card--wide {
    grid-column: auto;
  }

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

  .grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    min-height: auto;
    padding: 36px 24px;
  }

  .card--pillar {
    padding: 36px 24px 32px;
  }

  h1,
  .intro h2 {
    font-size: clamp(34px, 8vw, 44px);
  }

  .description {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  :root {
    --navbar-top: 10px;
    --navbar-height: 72px;
    --navbar-gap: 14px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .navbar {
    position: fixed;
    top: var(--navbar-top);
    left: 12px;
    right: 12px;
    height: auto;
    min-height: var(--navbar-height);
    padding: 10px 12px;
    border-radius: 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .navbar__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }

  .brand {
    flex: 1;
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .brand-name {
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .navbar__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    padding: 0 16px;
    border-radius: 26px;
    border: 1px solid transparent;
    background: linear-gradient(
      160deg,
      rgba(22, 23, 34, 0.98) 0%,
      rgba(12, 13, 20, 0.98) 100%
    );
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    backdrop-filter: blur(24px) saturate(160%);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
    transition:
      max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      transform 0.32s ease,
      padding 0.32s ease,
      border-color 0.32s ease;
  }

  .navbar.is-open .navbar__menu {
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 16px;
    border-color: rgba(255, 255, 255, 0.14);
  }

  nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    justify-content: flex-start;
  }

  nav a {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 16px;
  }

  nav a.active {
    border-bottom: none;
    padding-bottom: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: #f4f0e8;
  }

  .navbar__menu .btn {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
    white-space: normal;
  }

  @media (prefers-reduced-motion: reduce) {
    .navbar__menu {
      transition: none;
    }
  }

  .hero-video {
    width: calc(100% - 24px);
    border-radius: 22px;
    min-height: 240px;
    height: min(48vh, 420px);
  }

  .projet-hero {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: auto;
    min-height: 0;
    border-radius: 0;
  }

  .projet-hero .hero-video__media {
    width: 100%;
    height: auto;
  }

  .hero-video__eyebrow {
    letter-spacing: 3px;
    font-size: 10px;
  }

  .home-intro {
    width: calc(100% - 24px);
  }

  .home-pillars {
    width: calc(100% - 24px);
  }

  .partners-band {
    width: calc(100% - 24px);
    padding: 24px 16px;
    border-radius: 22px;
    margin-bottom: 32px;
  }

  .scope-band {
    width: calc(100% - 24px);
    margin-bottom: 28px;
    padding: 22px 16px;
    border-radius: 22px;
  }

  .scope-band__title {
    font-size: clamp(24px, 7vw, 34px);
  }

  .scope-band__text,
  .scope-band__text--large {
    font-size: 17px;
  }

  .partners-band__title {
    letter-spacing: 3px;
    margin-bottom: 22px;
  }

  .home-intro__panel {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .home-intro__head,
  .home-intro__lead {
    text-align: left;
    margin-bottom: 24px;
  }

  .home-intro__title {
    font-size: clamp(24px, 6vw, 30px);
  }

  .home-intro__lead {
    font-size: 18px;
  }

  .home-intro__card {
    padding: 20px 16px;
  }

  .home-intro__card p {
    font-size: 16px;
  }

  .section {
    width: calc(100% - 24px);
    padding: 22px 16px;
    border-radius: 22px;
    margin-bottom: 32px;
  }

  .intro-lead {
    font-size: 18px;
  }

  .description {
    font-size: 16px;
    line-height: 1.65;
  }

  .card h2 {
    font-size: 22px;
  }

  .card p {
    font-size: 16px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form__submit {
    width: 100%;
    text-align: center;
  }

  .contact-page__intro {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.site-footer {
  width: calc(100% - 48px);
  max-width: none;
  margin: auto auto 32px;
  padding: clamp(24px, 4vw, 32px) clamp(20px, 3vw, 36px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(14, 16, 24, 0.6) 0%,
    var(--bg-footer) 100%
  );
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.site-footer__copy,
.site-footer__credit {
  color: #aaa5b8;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
}

.site-footer__legal a {
  color: #e8ddc8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: #fff;
}

.site-footer__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

.legal-content section {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-content section:first-child {
  padding-top: 0;
  border-top: none;
}

.legal-content h2 {
  font-family: Georgia, serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  margin-bottom: 12px;
  color: #f4f0e8;
}

.legal-content p,
.legal-content li {
  color: #aaa5b8;
  font-size: 16px;
  line-height: 1.75;
}

.legal-content ul {
  margin: 12px 0 0 20px;
}

.legal-content a {
  color: #e8ddc8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .site-footer {
    width: calc(100% - 24px);
    margin-bottom: calc(24px + env(safe-area-inset-bottom));
    padding: 20px 16px;
    border-radius: 20px;
  }

  .site-footer__legal {
    flex-direction: column;
    gap: 10px;
  }

  .site-footer__sep {
    display: none;
  }
}
