/* ============================================================
   WAFROZO — section & component styles
   ============================================================ */

/* ---------- header ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding-block: 18px;
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-head.solid {
  background: rgba(18, 13, 9, .82);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--hair);
  padding-block: 12px;
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 34px;
  width: auto;
  transition: height .5s var(--ease);
}

.site-head.solid .brand img {
  height: 30px;
}

.nav-links a {
  white-space: nowrap;
}

.brand-icon {
  display: none;
}

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

  .brand-icon {
    display: block;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12.5px;
  color: var(--cream-2);
  position: relative;
  padding-block: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--accent);
  transition: width .35s var(--ease);
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.burger {
  display: none;
}

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

@media (max-width:560px) {
  .nav .btn span.lbl {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero .media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0f0b07 url("../assets/thumbs/ehKIOxA82B4.jpg") center/cover no-repeat;
}

.hero image-slot {
  height: 100%;
  --slot-bg: #0f0b07;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112vw;
  height: 63vw;
  min-width: 198vh;
  min-height: 112vh;
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}

body.hero-video-playing .hero-video-bg {
  opacity: 1;
}

body.hero-video-fallback .hero-video-bg {
  opacity: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18, 13, 9, .55) 0%, rgba(18, 13, 9, .05) 26%, rgba(18, 13, 9, .15) 55%, rgba(18, 13, 9, .92) 100%),
    radial-gradient(120% 90% at 15% 100%, rgba(18, 13, 9, .7), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  min-height: calc(100svh - 80px);
  padding-bottom: clamp(54px, 8vh, 110px);
  padding-top: clamp(100px, 14vh, 160px);
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-desc {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: clamp(11px, 1vw, 14px);
  color: var(--dim);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* hero sound toggle */
.hero-sound {
  position: absolute;
  bottom: clamp(54px, 8vh, 110px);
  right: var(--gutter);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--hair);
  background: rgba(18, 13, 9, .45);
  backdrop-filter: blur(10px);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.hero-sound:hover {
  border-color: rgba(245, 239, 228, .5);
  background: rgba(18, 13, 9, .65);
}

.hero-sound .icon-live {
  display: none;
}

.hero-sound.is-live .icon-muted {
  display: none;
}

.hero-sound.is-live .icon-live {
  display: block;
}

body.hero-video-fallback .hero-sound {
  display: none;
}

@keyframes arw-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

.hero-bottom .btn .arw {
  transition: none;
}

.hero-bottom .btn:hover .arw {
  animation: arw-bounce .7s ease-in-out infinite;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-bg {
    display: none;
  }
}

/* ---------- marquee strip ---------- */
.marquee {
  border-block: 1px solid var(--hair);
  background: var(--ink-1);
  overflow: hidden;
  padding-block: 18px;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: slide 34s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee span {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--cream-2);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.marquee span::after {
  content: "✺";
  color: var(--accent);
  font-size: .8em;
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- experience (manifesto) ---------- */
.exp-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
}

.exp-lead {
  font-family: var(--display);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -.01em;
  line-height: 1.06;
  font-size: clamp(30px, 3.6vw, 52px);
}

.exp-lead em {
  font-style: normal;
  color: var(--accent);
}

.exp-copy {
  margin-top: 26px;
  max-width: 46ch;
}

.exp-copy p+p {
  margin-top: 18px;
}

.exp-media {
  aspect-ratio: 4/5;
  border-radius: 6px;
}

.exp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 6px;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.tag {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  color: var(--cream-2);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 9px 16px;
}

@media (max-width:860px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .exp-media {
    aspect-ratio: 16/11;
  }
}

/* ---------- section heading block ---------- */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(40px, 5vw, 72px);
  flex-wrap: wrap;
}

.sec-head .titles {
  max-width: 760px;
}

.sec-head h2 {
  margin-top: 18px;
}

.sec-head .aside {
  max-width: 330px;
  padding-bottom: 6px;
}

/* ---------- partners ---------- */
.partners {
  background: radial-gradient(110% 90% at 50% 0%, rgba(14, 130, 166, .14), transparent 55%), radial-gradient(110% 70% at 50% 100%, rgba(14, 130, 166, .10), transparent 50%), var(--ink);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: 8px;
  overflow: hidden;
}

.pcard {
  background: var(--ink);
  padding: clamp(28px, 3vw, 44px);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: background .45s var(--ease);
  position: relative;
}

.pcard:hover {
  background: var(--ink-2);
}

.pcard .pnum {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .1em;
}

.pcard h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.02;
  margin: auto 0 14px;
}

.pcard p {
  color: var(--dim);
  font-size: 16px;
}

.pcard .pmark {
  position: absolute;
  top: clamp(28px, 3vw, 44px);
  right: clamp(28px, 3vw, 44px);
  width: 34px;
  height: 34px;
  opacity: .5;
}

@media (max-width:900px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

/* value props row */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(48px, 6vw, 88px);
}

.value h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
}

.value p {
  margin-top: 12px;
  color: var(--dim);
  font-size: 15.5px;
}

.value .vl {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: 13px;
  color: var(--cream);
  margin-top: 2px;
}

@media (max-width:760px) {
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- formats ---------- */
.format {
  display: grid;
  grid-template-columns: 88px 1.1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  padding-block: clamp(28px, 3.5vw, 46px);
  border-top: 1px solid var(--hair);
}

.format:last-child {
  border-bottom: 1px solid var(--hair);
}

.format .fnum {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--faint);
  letter-spacing: .1em;
  padding-top: 6px;
}

.format .ftext h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
}

.format .ftext p {
  color: var(--dim);
  margin-top: 14px;
  max-width: 46ch;
}

.format .fmeta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.format .fmedia {
  aspect-ratio: 5/4;
  border-radius: 6px;
  transition: transform .6s var(--ease);
}

.format:hover .fmedia {
  transform: scale(1.015);
}

@media (max-width:860px) {
  .format {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .format .fnum {
    padding-top: 0;
  }

  .format .fmedia {
    aspect-ratio: 16/10;
    order: -1;
  }
}

/* format-text variant: single-column, full-width text */
.format.format-text {
  display: block;
}

.format.format-text .ftext p {
  max-width: none;
}

/* format-video variant: stacked layout with full-width strip */
.format.format-video {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
}

.format.format-video .format-top {
  display: flex;
  gap: clamp(20px, 4vw, 60px);
  align-items: flex-start;
}

.format.format-video .format-top .fnum {
  flex: none;
  width: 88px;
  padding-top: 6px;
}

@media (max-width:860px) {
  .format.format-video .format-top {
    flex-wrap: wrap;
    gap: 12px;
  }

  .format.format-video .format-top .fnum {
    width: auto;
    padding-top: 0;
  }
}

/* thumbnail strip */
.fmt-strip-wrap {
  overflow: hidden;
  border-radius: 6px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 48px, black calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 48px, black calc(100% - 48px), transparent 100%);
}

.fmt-strip-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: fmt-scroll 56s linear infinite;
}

.fmt-strip-wrap:hover .fmt-strip-track {
  animation-play-state: paused;
}

.fmt-thumb {
  flex: none;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}

.fmt-thumb-img {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, rgba(241, 142, 33, .05) 0 14px, transparent 14px 28px), var(--ink-2);
  border: 1px solid var(--hair);
  transition: transform .45s var(--ease);
}

.fmt-thumb:hover .fmt-thumb-img {
  transform: scale(1.04);
  border-color: rgba(244, 239, 230, .24);
}

.fmt-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fmt-thumb-n {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 26px;
  letter-spacing: .06em;
  color: var(--hair);
  pointer-events: none;
  user-select: none;
}

.fmt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background .3s var(--ease);
}

.fmt-thumb:hover .fmt-play {
  background: rgba(0, 0, 0, .22);
}

.fmt-play svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .5));
  transition: transform .3s var(--ease);
}

.fmt-thumb:hover .fmt-play svg {
  transform: scale(1.1);
}

.fmt-thumb-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s var(--ease);
}

.fmt-thumb:hover .fmt-thumb-label {
  color: var(--cream-2);
}

@keyframes fmt-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion:reduce) {
  .fmt-strip-track {
    animation: none;
  }
}

body.no-motion .fmt-strip-track {
  animation: none;
}

/* 2×2 grid for 4-video formats */
.fmt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fmt-grid .fmt-thumb {
  width: auto;
}

@media (max-width:560px) {
  .fmt-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- founder ---------- */
.founder {
  background: var(--ink-1);
}

.founder-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}

.founder-media {
  aspect-ratio: 4/5;
  border-radius: 6px;
  background: var(--cream-2);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
  display: block;
}

.founder-quote {
  font-family: var(--display);
  font-weight: 700;
  text-transform: none;
  line-height: 1.08;
  letter-spacing: -.01em;
  font-size: clamp(26px, 3.1vw, 44px);
}

.founder-quote .mark {
  color: var(--accent);
}

.founder-copy {
  margin-top: 24px;
  max-width: 48ch;
}

.founder-copy p+p {
  margin-top: 16px;
}

.founder-sign {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-sign .nm {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 15px;
}

.founder-sign .rl {
  color: var(--faint);
  font-size: 14px;
}

.founder-sign .dash {
  width: 34px;
  height: 2px;
  background: var(--accent);
}

@media (max-width:860px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-media {
    aspect-ratio: 4/3;
  }
}

/* ---------- gallery mosaic ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 14px;
}

.mosaic .cell {
  border-radius: 6px;
  overflow: hidden;
}

.mosaic .cell image-slot {
  height: 100%;
}

.m-tall {
  grid-row: span 2;
}

.m-wide {
  grid-column: span 2;
}

.m-big {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic .cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}

.mosaic .cell:hover img {
  transform: scale(1.04);
}

.mosaic .cell img[src*="projector"] {
  object-position: center 15%;
}

.mosaic .cell img[src*="moment-5"] {
  object-position: center 40%;
}

.mosaic .cell .fmedia,
.mosaic .cell {
  transition: transform .6s var(--ease);
}

@media (max-width:900px) {
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .m-big {
    grid-column: span 2;
  }
}

/* ---------- music ---------- */
.spotify-embed {
  border-radius: 14px;
  overflow: hidden;
}

.spotify-embed iframe {
  display: block;
  border-radius: 14px;
}

.music {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 130% at 85% 0%, rgba(47, 141, 245, .22), transparent 55%),
    radial-gradient(90% 120% at 0% 100%, rgba(14, 130, 166, .18), transparent 55%),
    var(--ink);
}

.music-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.player {
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.player-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.player-cover {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  flex: none;
}

.player-cover image-slot {
  height: 100%;
  --slot-bg: #13100b;
}

.player-meta .pt {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .02em;
}

.player-meta .ps {
  color: var(--faint);
  font-size: 13px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: .04em;
}

.track {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 8px;
  border-top: 1px solid var(--hair-soft);
}

.track:first-of-type {
  border-top: none;
}

.track .ti {
  width: 18px;
  color: var(--faint);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
}

.track .tn {
  flex: 1;
  font-size: 15px;
  color: var(--cream-2);
}

.track .td {
  color: var(--faint);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
}

.track .eq {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 14px;
}

.track .eq i {
  width: 3px;
  background: var(--accent);
  height: 40%;
  border-radius: 2px;
  animation: eq 1s ease-in-out infinite;
}

.track .eq i:nth-child(2) {
  animation-delay: .2s;
  height: 90%;
}

.track .eq i:nth-child(3) {
  animation-delay: .4s;
  height: 60%;
}

@keyframes eq {

  0%,
  100% {
    height: 30%
  }

  50% {
    height: 100%
  }
}

@media (prefers-reduced-motion: reduce) {
  .track .eq i {
    animation: none;
  }
}

@media (max-width:860px) {
  .music-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- instagram ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.ig-cell {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: block;
}

.ig-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}

.ig-cell:hover img {
  transform: scale(1.04);
}

.ig-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background .3s var(--ease);
}

.ig-cell:hover::after {
  background: rgba(0, 0, 0, .18);
}

.ig-cell .ig-mark {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 18px;
  height: 18px;
  opacity: .65;
  pointer-events: none;
}

@media (max-width:900px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:520px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- closing CTA + footer ---------- */
.closing {
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18, 13, 9, .72) 0%, rgba(18, 13, 9, .60) 50%, rgba(18, 13, 9, .82) 100%),
    url("../assets/hero.jpg") center 30% / cover no-repeat;
}

.closing h2 {
  margin-inline: auto;
  max-width: 18ch;
}

.closing .lede {
  margin: 26px auto 40px;
  max-width: 54ch;
}

.closing .closing-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-line {
  margin-top: 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--dim);
}

.email-line a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
}

.email-line a:hover {
  border-bottom-color: var(--accent);
}

.site-foot {
  border-top: 1px solid var(--hair);
  padding-block: 54px 38px;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.foot-brand img {
  height: 34px;
  margin-bottom: 18px;
}

.foot-brand p {
  color: var(--faint);
  max-width: 34ch;
  font-size: 14.5px;
}

.foot-cols {
  display: flex;
  gap: clamp(34px, 6vw, 90px);
  flex-wrap: wrap;
}

.foot-col h5 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--faint);
  margin-bottom: 16px;
}

.foot-col a {
  display: block;
  color: var(--cream-2);
  font-size: 14.5px;
  padding-block: 5px;
  transition: color .3s var(--ease);
}

.foot-col a:hover {
  color: var(--accent);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hair-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .03em;
  color: var(--faint);
}

/* ---------- mobile menu ---------- */
.burger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.burger i {
  width: 18px;
  height: 1.6px;
  background: var(--cream);
  display: block;
  transition: transform .3s var(--ease), opacity .3s;
}

.burger.is-open i:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.burger.is-open i:nth-child(2) {
  opacity: 0;
}

.burger.is-open i:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

@media (max-width:1120px) {
  .burger {
    display: flex;
  }
}

.m-menu {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(15, 11, 7, .97);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--gutter);
  padding-top: max(18px, env(safe-area-inset-top));
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .5s var(--ease), visibility 0s .5s;
}

.m-menu.open {
  transform: none;
  visibility: visible;
  transition: transform .5s var(--ease), visibility 0s 0s;
}

.m-menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: clamp(16px, 3vh, 40px);
  flex-shrink: 0;
}

.m-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s var(--ease);
}

.m-close:hover {
  border-color: rgba(245, 239, 228, .5);
}

.m-menu a {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(20px, 5.5vh, 44px);
  letter-spacing: -.01em;
  padding-block: clamp(2px, 0.6vh, 8px);
}

.m-menu a:hover {
  color: var(--accent);
}

.m-menu .btn {
  margin-top: 24px;
  align-self: flex-start;
}

/* ---------- motion off (tweak) ---------- */
body.no-motion .marquee-track {
  animation: none;
}

body.no-motion .track .eq i {
  animation: none;
  height: 60%;
}

body.no-motion .hero .media {
  transform: none !important;
}

body.no-motion [data-reveal] {
  transition-duration: .001s;
}

/* ---------- La méthode ---------- */
.methode {
  background: var(--ink-1);
}

.methode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(40px, 5vw, 64px);
}

.pillar {
  border-top: 2px solid var(--accent);
  padding-top: 24px;
}

.pillar h4 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: .04em;
  margin-bottom: 12px;
  color: var(--accent);
}

.methode-grid .pillar:nth-child(2) {
  --accent: var(--sky-3);
}

.methode-grid .pillar:nth-child(3) {
  --accent: var(--orange-2);
}

.methode-grid .pillar:nth-child(4) {
  --accent: var(--teal);
}

.pillar p {
  color: var(--dim);
  font-size: 15.5px;
  line-height: 1.55;
}

@media (max-width:760px) {
  .methode-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:480px) {
  .methode-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Ce que vivent les participants ---------- */
.participants-lead {
  max-width: 62ch;
}

.participants-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.participants-tags .tag {
  font-size: 14px;
  padding: 12px 20px;
}

/* ---------- Pourquoi choisir Wafrozo ---------- */
.pourquoi {
  background: var(--ink-1);
}

.pourquoi-list {
  list-style: none;
  margin-top: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px clamp(32px, 5vw, 80px);
}

.pourquoi-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--cream-2);
  line-height: 1.45;
}

.pourquoi-list .ck {
  color: var(--accent);
  font-size: 20px;
  line-height: 1.35;
  flex: none;
  font-weight: 700;
}

@media (max-width:640px) {
  .pourquoi-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact form ---------- */
.contact {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 130% at 50% 0%, rgba(252, 164, 76, .13), transparent 60%), var(--ink-1);
}

.contact h2 {
  margin-inline: auto;
  max-width: 22ch;
}

.contact .contact-lede {
  margin: 22px auto 0;
  max-width: 52ch;
  color: var(--dim);
  font-size: clamp(16px, 1.3vw, 19px);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: clamp(32px, 4vw, 52px);
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.contact-form label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 7px;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
}

.contact-form .field-full {
  grid-column: 1/-1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1.5px solid var(--hair);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(245,239,228,.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--ink-3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--faint);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .form-submit {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

@media (max-width:560px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

.form-feedback {
  display: none;
  max-width: 760px;
  margin-inline: auto;
  margin-top: 24px;
  padding: 18px 24px;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
}

[data-fs-success].fs-success-visible {
  display: block;
  background: rgba(149, 195, 166, .12);
  border: 1px solid rgba(149, 195, 166, .3);
  color: var(--sage);
}

.form-feedback--error.fs-error-visible {
  display: block;
  background: rgba(241, 142, 33, .08);
  border: 1px solid rgba(241, 142, 33, .25);
  color: var(--orange-2);
}

[data-fs-error]:not([data-fs-error=""]) {
  display: block;
  font-size: 12px;
  color: var(--orange-2);
  margin-top: 5px;
}

/* ---------- meta-line (replaces cheap tag pills) ---------- */
.meta-line {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
}

.meta-line span:not(:last-child)::after {
  content: "·";
  margin: 0 12px;
  color: var(--accent);
}

/* ---------- participants full-bleed band ---------- */
.participants-band {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 80vh, 820px);
  display: flex;
  align-items: center;
  padding-block: 0;
}

.participants-band .band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  object-fit: cover;
}

.participants-band .band-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(18, 13, 9, .5) 0%, rgba(18, 13, 9, .0) 100%),
    linear-gradient(180deg, rgba(18, 13, 9, .65), rgba(18, 13, 9, .62) 45%, rgba(18, 13, 9, .88));
}

.participants-band .band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  padding-block: clamp(80px, 12vh, 140px);
}

.participants-band .band-content .eyebrow {
  justify-content: center;
}

.participants-band h2 {
  margin-top: 18px;
}

.band-copy {
  margin-top: 24px;
  max-width: 54ch;
  margin-inline: auto;
}

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

/* ---------- deployed (Déjà vécu) ---------- */
.deployed {
  background: var(--ink-1);
}

.deployed-list {
  border-top: 1px solid var(--hair);
  margin-top: clamp(40px, 5vw, 72px);
}

.deployed-row {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: clamp(22px, 3vw, 38px);
  border-bottom: 1px solid var(--hair);
}

.row-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .45s var(--ease);
}

.row-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 13, 9, .62);
}

.deployed-row:hover .row-bg {
  opacity: 1;
}

.dl-place,
.dl-meta {
  position: relative;
  z-index: 1;
}

.dl-meta:not(:empty)::before {
  content: '· ';
}

.dl-place {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  transition: color .4s var(--ease);
}

.deployed-row:hover .dl-place {
  color: var(--accent);
}

.row-bg[style*="bg-singapore"] {
  background-position: center 40%;
}

.row-bg[style*="bg-australia"] {
  background-position: center 45%;
}

.row-bg[style*="bg-guyana"] {
  background-position: center 53%;
}

.dl-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: right;
  flex-shrink: 0;
}

/* ---------- partners proof layout ---------- */
.partners-proof {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.partners-proof .proof-media {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 6px;
  object-fit: cover;
}

.partners-proof .pourquoi-list {
  grid-template-columns: 1fr;
}

@media (max-width:860px) {
  .partners-proof {
    grid-template-columns: 1fr;
  }

  .partners-proof .proof-media {
    aspect-ratio: 16/11;
  }
}

/* ---------- format image (sur-mesure) ---------- */
.fmt-media {
  display: block;
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 6px;
  margin-top: 28px;
  object-fit: cover;
}

/* ---------- per-section accent colours ---------- */
#experience {
  --accent: var(--sky);
}

.methode {
  --accent: var(--lime-2);
}

#participants {
  --accent: var(--orange-2);
}

.deployed {
  --accent: var(--gold);
}

.partners {
  --accent: var(--teal);
}

.values .value:nth-child(1) h4 {
  color: var(--orange);
}

.values .value:nth-child(2) h4 {
  color: var(--sky);
}

.values .value:nth-child(3) h4 {
  color: var(--lime-2);
}

.values .value:nth-child(4) h4 {
  color: var(--lime-3);
}

#formats {
  --accent: var(--lime-2);
}

.founder {
  --accent: var(--gold);
}

.music {
  --accent: var(--sky-3);
}

#social {
  --accent: var(--sky-2);
}

.pourquoi {
  --accent: var(--lime-2);
}

.contact {
  --accent: var(--orange-2);
}