/* ═══════════════════════════════════════════════
   ALIZÉS — STYLESHEET
   Font: Taxon-Light (fallback: Raleway)
   Layout: 1728px · 9536px
═══════════════════════════════════════════════ */

@font-face {
  font-family: 'Taxon';
  src: url('../fonts/taxon-light.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1d2d5c;
  --navydk: #14204a;
  --white:  #ffffff;
  --cream:  #f2ebe0;
  --cream2: #ede4d6;
  --cyan:   #00b4e0;
  --mid:    #3a4a72;
  --f:      'Taxon', 'Raleway', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--f);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.22,.68,0,1.2),
              transform .9s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 28px 56px;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: var(--navy);
  padding: 16px 56px;
  box-shadow: 0 4px 28px rgba(0,0,0,.22);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-burger { background: none; border: none; cursor: pointer; padding: 4px; display: flex; align-items: center; }
.nav-right  { display: flex; align-items: center; gap: 32px; }
.nav-lang   { display: flex; align-items: center; gap: 4px; cursor: pointer; user-select: none; }
.l-on  { font-weight: 600; font-size: .82rem; letter-spacing: .12em; color: #fff; }
.l-bar { color: rgba(255,255,255,.4); margin: 0 2px; }
.l-off { font-weight: 300; font-size: .82rem; letter-spacing: .12em; color: rgba(255,255,255,.6); }
.nav-a {
  font-weight: 400; font-size: .84rem; letter-spacing: .1em;
  color: #fff; position: relative; padding-bottom: 2px;
}
.nav-a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: #fff; transition: width .3s;
}
.nav-a:hover::after { width: 100%; }


/* ══════════════════════════════════════════
   MENU OVERLAY
══════════════════════════════════════════ */
.menu-ov {
  position: fixed; inset: 0; z-index: 300;
  background: var(--cream);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transform: translateX(-100%);
  transition: opacity .45s cubic-bezier(.4,0,.2,1), transform .45s cubic-bezier(.4,0,.2,1);
}
.menu-ov.open { opacity: 1; pointer-events: auto; transform: translateX(0); }
.menu-ov-inner { display: flex; flex-direction: column; height: 100%; padding: 28px 56px 40px; }
.menu-ov-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.menu-close-btn { background: none; border: none; cursor: pointer; padding: 4px; }
.menu-ov-body { display: flex; flex: 1; gap: 60px; align-items: center; }
.menu-ov-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mlink {
  font-weight: 800; font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  letter-spacing: .04em; text-transform: uppercase; color: var(--navy);
  display: block; padding: 7px 0;
  opacity: 0; transform: translateX(-28px);
  transition: opacity .4s, transform .4s, color .2s;
}
.menu-ov.open .mlink { opacity: 1; transform: translateX(0); }
.mlink[data-i="0"] { transition-delay: .07s; }
.mlink[data-i="1"] { transition-delay: .12s; }
.mlink[data-i="2"] { transition-delay: .17s; }
.mlink[data-i="3"] { transition-delay: .22s; }
.mlink[data-i="4"] { transition-delay: .27s; }
.mlink[data-i="5"] { transition-delay: .32s; }
.mlink[data-i="6"] { transition-delay: .37s; }
.mlink:hover { color: rgba(29,45,92,.38); }
.menu-ov-img {
  flex: 1; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: rotate(5deg) scale(.9);
  transition: opacity .55s .2s, transform .55s .2s;
}
.menu-ov.open .menu-ov-img { opacity: 1; transform: rotate(4deg) scale(1); }
.menu-ov-img img {
  width: min(380px, 38vw); border-radius: 18px;
  object-fit: cover; max-height: 62vh;
  box-shadow: 14px 14px 55px rgba(0,0,0,.18);
}
.menu-ov-social {
  display: flex; justify-content: flex-end; gap: 12px; padding-top: 24px;
  opacity: 0; transition: opacity .4s .4s;
}
.menu-ov.open .menu-ov-social { opacity: 1; }
.soc-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
}
.soc-icon svg { width: 18px; height: 18px; }
.soc-icon:hover { background: var(--navydk); transform: scale(1.1); }


/* ══════════════════════════════════════════
   S1 — HERO
══════════════════════════════════════════ */
.s-hero {
  position: relative; width: 100%; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transform: scale(1.04); transition: transform 8s ease-out; z-index: 0;
}
.s-hero.loaded .hero-bg-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(14,20,46,.18) 0%, rgba(14,20,46,.04) 38%, rgba(14,20,46,.52) 100%);
}
.hero-cnt {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 18px;
}
.hero-logo {
  width: clamp(200px, 24vw, 390px);
  opacity: 0; transform: translateY(18px);
  animation: up 1.1s cubic-bezier(.22,.68,0,1.2) .3s forwards;
}
.hero-sub {
  font-weight: 300; font-size: clamp(.88rem, 1.4vw, 1.15rem);
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  opacity: 0; animation: up 1.1s cubic-bezier(.22,.68,0,1.2) .55s forwards;
}
.hero-cta {
  display: inline-block; margin-top: 10px; padding: 15px 54px;
  border-radius: 50px; background: var(--navy); border: 2px solid transparent;
  font-weight: 600; font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: #fff; cursor: pointer; transition: background .3s, border-color .3s, transform .2s;
  opacity: 0; animation: up 1.1s cubic-bezier(.22,.68,0,1.2) .8s forwards;
}
.hero-cta:hover { background: transparent; border-color: #fff; transform: translateY(-2px); }
.hero-line { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-line span {
  display: block; width: 1px; height: 52px;
  background: rgba(255,255,255,.45);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes up    { to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: .25; transform: scaleY(1); } 50% { opacity: .9; transform: scaleY(1.25); } }


/* ══════════════════════════════════════════
   S2 — OUR ECOSYSTEM
══════════════════════════════════════════ */
.s-eco {
  background: var(--cream);
  padding: 100px 0 0;
  overflow: hidden;   /* clips horizontal card overflow */
}

/* Row 1 : OUR ECOSYSTEM + intro */
.eco-r1 {
  display: grid; grid-template-columns: 46% 1fr;
  gap: 0 60px; align-items: center;
  padding: 0 60px; margin-bottom: 80px;
}
.eco-r1-heading h2 {
  font-weight: 800; font-size: clamp(3.5rem, 7.5vw, 9rem);
  line-height: .88; letter-spacing: .01em;
  color: var(--navy); text-transform: uppercase;
}
.eco-r1-text p {
  font-weight: 300; font-size: 1.02rem; line-height: 1.9; color: var(--mid);
}

/* Row 2 : A DMC + cards */
.eco-r2 {
  display: grid; grid-template-columns: 260px 1fr;
  padding-left: 60px; align-items: start;
}
.eco-r2-left {
  display: flex; flex-direction: column; gap: 22px; padding-right: 16px;
}
.admc-img { width: 110px; height: auto; }
.admc-txt { font-weight: 300; font-size: .9rem; line-height: 1.85; color: var(--navy); }
.btn-explore {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--cyan); border: none;
  color: #fff; font-family: var(--f); font-weight: 400; font-size: .8rem;
  line-height: 1.4; text-align: center; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .3s, transform .25s;
}
.btn-explore:hover { background: #009cc5; transform: scale(1.07); }

/* Cards */
.eco-r2-cards {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 70px;
}
.ecard { flex: 0 0 auto; position: relative; overflow: hidden; border-radius: 4px; }
.ecard img { display: block; object-fit: cover; transition: transform .5s; }
.ecard:hover img { transform: scale(1.04); }

.ecard-cyan { border: 3px solid var(--cyan); }
.ecard-cyan img { width: 300px; height: 400px; }

.ecard-mice { border: 3px solid #c0222a; margin-top: 55px; }
.ecard-mice img { width: 220px; height: 320px; filter: brightness(.4) saturate(.5); }
.mice-ov {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 16px; pointer-events: none;
}
.mice-title {
  font-weight: 800; font-size: 2rem; letter-spacing: .06em;
  color: #e03040; line-height: 1; margin-bottom: 8px; display: block;
}
.mice-ov p { font-weight: 300; font-size: .72rem; line-height: 1.5; color: rgba(255,255,255,.78); }

.ecard-plain { margin-top: 28px; }
.ecard-plain img { width: 200px; height: 355px; }

/* Cyan separator bottom */
.eco-cyan-line { width: 100%; height: 2px; background: var(--cyan); }


/* ══════════════════════════════════════════
   S3 — SMALL DETAILS MAKES BIG DIFFERENCES
══════════════════════════════════════════ */
.s-big { background: var(--cream); overflow: hidden; }

.big-txt { padding: 70px 60px 0; }
.big-l1 {
  font-size: clamp(1.6rem, 3.4vw, 4rem);
  letter-spacing: .06em; text-transform: uppercase; color: var(--navy); line-height: 1.1;
}
.big-l1 em     { font-style: italic; font-weight: 200; }
.big-l1 strong { font-weight: 800; }

.big-l2 {
  font-size: clamp(4.5rem, 12.5vw, 14rem); font-weight: 900;
  letter-spacing: -.03em; text-transform: uppercase; color: var(--navy);
  line-height: .85; display: flex; align-items: baseline; gap: .2em;
}
.big-l2 strong { font-weight: 900; }
.big-l2 span   { font-weight: 300; font-size: .44em; letter-spacing: .08em; }

/* Desert full-width, croped to show only dunes (no black sky) */
.big-desert {
  position: relative;
  margin-top: -10px;
  line-height: 0;
  height: clamp(260px, 36vw, 500px);
  overflow: hidden;
}
.big-desert img {
  width: 100%; height: 100%;
  display: block; object-fit: cover; object-position: bottom center;
}
.big-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  width: 100%; height: clamp(55px, 8vw, 110px); display: block;
}


/* ══════════════════════════════════════════
   S4 — FROM THE BRIEF TO DELIVERY
   2 blocs côte à côte, tous les deux sur fond NAVY
══════════════════════════════════════════ */
.s-brief {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}

/* ─── Bloc commun ─── */
.brief-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 90px 80px;
  gap: 60px;
}

/* ─── Bloc 1 : texte gauche + titre droit ─── */
.brief-block--1 {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bb1-text p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,.72);
  max-width: 460px;
}
.bb1-title h2 {
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 7rem);
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
}

/* ─── Bloc 2 : chiffre 1 + titre + texte | photo ─── */
.brief-block--2 {
  position: relative;
  gap: 70px;
}
.bb2-content {
  position: relative;
  padding-left: 80px;        /* laisse de la place pour le "1" en filigrane */
}
.bb2-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: clamp(14rem, 22vw, 26rem);
  line-height: 1;
  color: rgba(255,255,255,.08);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}
.bb2-inner { position: relative; z-index: 2; }
.bb2-inner h3 {
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.bb2-inner p {
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(255,255,255,.7);
  max-width: 420px;
}
.bb2-photo {
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  border-radius: 6px;
}
.bb2-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform .8s;
}
.bb2-photo:hover img { transform: scale(1.04); }


/* ══════════════════════════════════════════
   S6 — GALLERY (carousel 3 par 3)
══════════════════════════════════════════ */
.s-gallery {
  background: var(--cream);
  padding: 100px 60px 90px;
}
.gal-intro { max-width: 620px; margin: 0 auto 70px; text-align: center; }
.gal-intro p { font-weight: 300; font-size: 1rem; line-height: 1.9; color: var(--navy); }

/* ─── Carousel ─── */
.gal-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0 50px;   /* espace vertical pour les rotations + ombres */
}
.gal-track {
  display: flex;
  width: 100%;
  transition: transform .85s cubic-bezier(.5,.02,.18,1);
  will-change: transform;
}
.gal-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: end;
  padding: 0 20px;
}

/* ─── Polaroïds dans chaque slide ─── */
.gpic { transition: transform .4s ease; }
.gpic img {
  width: 100%; object-fit: cover;
  transition: transform .4s, box-shadow .4s, opacity .4s;
}

/* IMAGE GAUCHE — inclinée, bords adoucis par masque
   → pas de bordure carrée visible, fondu naturel */
.gpic-l {
  transform: rotate(-4deg);
  margin-top: 20px;
}
.gpic-l img {
  height: 320px;
  box-shadow: none;
  /* fondu progressif sur les bords pour casser le rectangle */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 18%,
    #000 100%
  );
          mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 18%,
    #000 100%
  );
}

/* IMAGE CENTRALE — droite, parfaitement alignée, mise en avant */
.gpic-c {
  transform: rotate(0deg);
  z-index: 2;
}
.gpic-c img {
  height: 360px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  border-radius: 2px;
}

/* IMAGE DROITE — inclinée, bords adoucis par masque */
.gpic-r {
  transform: rotate(4deg);
  margin-top: 30px;
}
.gpic-r img {
  height: 310px;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(
    to left,
    transparent 0%,
    #000 18%,
    #000 100%
  );
          mask-image: linear-gradient(
    to left,
    transparent 0%,
    #000 18%,
    #000 100%
  );
}

/* Hover : seule l'image centrale réagit (élément principal) */
.gpic-c:hover { z-index: 3; }
.gpic-c:hover img {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 26px 60px rgba(0,0,0,.25);
}
.gpic-l:hover img,
.gpic-r:hover img { opacity: .95; }

/* ─── Dots ─── */
.gal-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 28px;
}
.gal-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(29,45,92,.25); border: none; cursor: pointer;
  padding: 0; transition: background .3s, transform .25s, width .35s;
}
.gal-dot.is-active {
  background: var(--navy);
  width: 28px; border-radius: 5px;
}
.gal-dot:hover { background: rgba(29,45,92,.55); }

/* ─── Bouton final ─── */
.gal-btn-wrap { display: flex; justify-content: center; margin-top: 30px; }
.gal-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .3s, transform .25s;
}
.gal-btn:hover { background: var(--navydk); transform: scale(1.1); }


/* ══════════════════════════════════════════
   PRÉ-FOOTER (citation + Rectangle.png)
══════════════════════════════════════════ */
.s-prefooter {
  background: var(--cream);   /* même fond que la galerie au-dessus */
  padding: 90px 60px 0;
}
.pf-inner {
  text-align: center;
  padding-bottom: 80px;
}
.pf-inner p {
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 6rem);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.01em;
}
/* Rectangle.png : full-width avec mix-blend-mode darken
   → blanc de l'image disparaît (cream reste), seule la vague navy reste visible
   → transition naturelle cream → navy footer */
.pf-rect {
  display: block;
  width: 100vw;
  height: auto;
  margin-bottom: -2px;
  background: var(--cream);   /* fallback si le blend ne s'applique pas */
  mix-blend-mode: darken;
}


/* ══════════════════════════════════════════
   S7 — FOOTER
══════════════════════════════════════════ */
.s-footer {
  background: var(--navy);
  overflow: hidden;
}

/* Grand logo (mix-blend-mode: multiply : fond blanc → invisible, logo crème visible) */
.ft-logo-band {
  padding: 0 56px 0;
}
.ft-logo-big {
  width: clamp(300px, 72vw, 960px);
  max-width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

/* 3 colonnes */
.ft-main {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 50px 56px 50px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ft-col { padding-right: 40px; }
.ft-col + .ft-col { border-left: 1px solid rgba(255,255,255,.1); padding-left: 40px; }

/* Col 1 — newsletter */
.ft-col-title {
  font-weight: 700; font-size: 1rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white); margin-bottom: 22px;
}
.ft-signup {
  display: flex; align-items: center;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50px; overflow: hidden; margin-bottom: 22px;
}
.ft-signup input {
  flex: 1; background: none; border: none; outline: none;
  padding: 12px 20px; font-family: var(--f);
  font-weight: 300; font-size: .88rem; color: var(--white);
}
.ft-signup input::placeholder { color: rgba(255,255,255,.45); }
.ft-signup button {
  background: none; border: none; cursor: pointer;
  padding: 12px 18px; color: var(--white);
  display: flex; align-items: center;
  border-left: 1.5px solid rgba(255,255,255,.25);
  transition: background .3s;
}
.ft-signup button:hover { background: rgba(255,255,255,.08); }
.ft-col-txt {
  font-weight: 300; font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.5);
}

/* Col 2 — liens */
.ft-nav { display: flex; flex-direction: column; gap: 8px; }
.ft-nav a {
  font-weight: 300; font-size: 1rem; line-height: 1.55;
  color: rgba(255,255,255,.8); transition: color .25s;
}
.ft-nav a:hover { color: var(--cyan); }

/* Col 3 — socials + contact */
.ft-socials { display: flex; gap: 10px; margin-bottom: 22px; }
.ft-soc {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .2s;
}
.ft-soc svg { width: 17px; height: 17px; }
.ft-soc:hover { background: rgba(255,255,255,.28); transform: scale(1.1); }
.ft-phone {
  font-weight: 300; font-size: .9rem;
  color: rgba(255,255,255,.75); margin-bottom: 6px;
}
.ft-email {
  font-weight: 300; font-size: .9rem;
  color: var(--cyan); display: block; margin-bottom: 14px;
  transition: opacity .2s;
}
.ft-email:hover { opacity: .75; }
.ft-addr {
  font-weight: 300; font-size: .84rem; line-height: 1.7;
  color: rgba(255,255,255,.5);
}

/* Barre légale */
.ft-legal {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px; gap: 20px; flex-wrap: wrap;
  background: rgba(0,0,0,.18);
}
.ft-legal span, .ft-legal-links a {
  font-weight: 300; font-size: .76rem;
  letter-spacing: .06em; color: rgba(255,255,255,.38);
}
.ft-legal-links { display: flex; gap: 24px; }
.ft-legal-links a:hover { color: rgba(255,255,255,.7); }


/* ══════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar { padding: 22px 36px; }
  .navbar.scrolled { padding: 14px 36px; }

  .eco-r1 { padding: 0 36px; gap: 0 40px; margin-bottom: 60px; }
  .eco-r2 { padding-left: 36px; }

  .big-txt { padding: 55px 36px 0; }

  .brief-block       { padding: 70px 40px; gap: 40px; }
  .bb2-content       { padding-left: 60px; }
  .bb2-number        { left: -20px; font-size: clamp(12rem, 22vw, 22rem); }

  .s-gallery { padding: 80px 36px 70px; }

  .s-prefooter { padding: 70px 36px 0; }

  .ft-logo-band { padding: 0 36px; }
  .ft-main   { padding: 44px 36px; }
  .ft-legal  { padding: 18px 36px; }
}


/* ══════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar { padding: 18px 24px; }
  .menu-ov-inner { padding: 20px 24px 32px; }
  .menu-ov-body { flex-direction: column; align-items: flex-start; }
  .menu-ov-img  { display: none; }

  /* Ecosystem */
  .eco-r1 { grid-template-columns: 1fr; gap: 22px 0; padding: 0 24px; }
  .eco-r2 { grid-template-columns: 1fr; padding-left: 24px; }
  .eco-r2-cards { overflow-x: auto; scrollbar-width: none; padding-bottom: 30px; }
  .eco-r2-cards::-webkit-scrollbar { display: none; }
  .ecard-cyan  img { width: 240px; height: 320px; }
  .ecard-mice  img { width: 190px; height: 265px; }
  .ecard-plain img { width: 175px; height: 285px; }

  /* Big stmt */
  .big-txt { padding: 50px 24px 0; }
  .big-l2  { font-size: clamp(3rem, 18vw, 8rem); }
  .big-desert { height: clamp(200px, 55vw, 380px); }

  /* Brief blocs */
  .brief-block       { grid-template-columns: 1fr; padding: 56px 24px; gap: 32px; }
  .brief-block--1    { padding-bottom: 50px; }
  .bb1-title h2      { font-size: clamp(2.4rem, 9vw, 4.5rem); }
  .bb2-content       { padding-left: 40px; }
  .bb2-number        { left: -16px; font-size: clamp(10rem, 30vw, 16rem); }
  .bb2-inner h3      { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .bb2-photo,
  .bb2-photo img     { min-height: 260px; }

  /* Gallery */
  .s-gallery { padding: 70px 24px 70px; }
  .gal-grid  { grid-template-columns: 1fr; gap: 24px; }
  .gpic-l, .gpic-c, .gpic-r { transform: none; margin-top: 0; }
  .gpic-l img, .gpic-c img, .gpic-r img { height: 260px; }

  /* Pre-footer */
  .s-prefooter { padding: 56px 24px 0; }
  .pf-inner p  { font-size: clamp(1.8rem, 7vw, 3rem); }
  .pf-inner    { padding-bottom: 56px; }

  /* Footer */
  .ft-logo-band  { padding: 0 24px; }
  .ft-main       { grid-template-columns: 1fr; padding: 36px 24px; gap: 32px; }
  .ft-col        { padding: 0 0 32px 0 !important; border-left: none !important; border-bottom: 1px solid rgba(255,255,255,.1); }
  .ft-col:last-child { border-bottom: none; padding-bottom: 0 !important; }
  .ft-legal      { padding: 16px 24px; flex-direction: column; align-items: flex-start; gap: 10px; }
}
