/* ============================================================
   LOUIS FRIMAUDEAU — Cinematic site (dark editorial premium)
   ============================================================ */

:root {
  /* ---- Backgrounds (charte validée) ---- */
  --bg:          #0A0C10;
  --bg-2:        #12161D;
  --bg-3:        #1A1F28;
  --ink:         #06080B;

  /* ---- Text ---- */
  --fg:          #ECE7DF;
  --fg-soft:     #C7C2BA;
  --muted:       #7E7B75;

  /* ---- Accent + lines ---- */
  --accent:      #4FC3E8;
  --line:        rgba(236, 231, 223, 0.12);

  /* ---- Layout ---- */
  --maxw:        1280px;
  --pad:         clamp(22px, 5vw, 80px);

  /* ---- Motion + type ---- */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --serif:       "Fraunces", "Times New Roman", serif;
  --sans:        "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* ---- Scrim ink (rgba versions of --ink) ---- */
  --scrim-1:     rgba(6, 8, 11, 0.92);
  --scrim-2:     rgba(6, 8, 11, 0.60);
  --scrim-3:     rgba(6, 8, 11, 0.20);
}

/* ============================================================
   I18N — show only active language, hide the other
   ============================================================ */
html[lang="fr"] [lang="en"] { display: none !important; }
html[lang="en"] [lang="fr"] { display: none !important; }

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.018em;
}
em { font-style: italic; font-weight: inherit; }

p { margin: 0; }
strong { font-weight: 500; color: var(--fg); }

/* ============================================================
   SHARED ATOMS
   ============================================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
}
.eyebrow--light { color: var(--fg-soft); }
.eyebrow--center { text-align: center; }

.lede {
  font-size: clamp(15.5px, 1.25vw, 18px);
  color: var(--fg-soft);
  max-width: 52ch;
  margin: 26px 0 0;
  line-height: 1.75;
  font-weight: 300;
}
.meta { font-size: 13px; color: var(--muted); letter-spacing: 0.02em; margin: 20px 0 0; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
  cursor: pointer;
}
.btn--light { color: var(--fg); border: 1px solid rgba(236,231,223,0.38); background: transparent; }
.btn--light:hover { background: var(--fg); color: var(--ink); transform: translateY(-2px); }
.btn--solid { color: var(--ink); background: var(--fg); margin-top: 8px; border: none; }
.btn--solid:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--accent); z-index: 200; transition: width .1s linear;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 150;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: background .5s var(--ease), padding .5s var(--ease),
              backdrop-filter .5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(6, 8, 11, 0.75);
  backdrop-filter: blur(14px) saturate(120%);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: var(--serif); font-weight: 700;
  font-size: 18px; letter-spacing: 0.04em;
  color: var(--fg);
}
.nav__right { display: flex; align-items: center; gap: 22px; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--muted);
}
.lang-switch__btn {
  background: none; border: 0; padding: 4px 0; margin: 0;
  font: inherit; letter-spacing: inherit; color: inherit;
  cursor: pointer; transition: color .3s var(--ease);
}
.lang-switch__btn:hover { color: var(--fg-soft); }
.lang-switch__btn.is-active { color: var(--fg); }
.lang-switch__sep { color: var(--muted); opacity: 0.6; }

.nav__cta {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg); border: 1px solid rgba(236,231,223,0.35);
  padding: 11px 22px; border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.nav__cta:hover { background: var(--fg); color: var(--ink); transform: translateY(-1px); }

/* ============================================================
   SCRUB HERO — height calibrated for 121 frames (~× 4.6)
   ============================================================ */
.scrub { position: relative; height: 560vh; background: var(--bg); }
.scrub__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.scrub__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.scrub__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(6,8,11,0.78) 0%, rgba(6,8,11,0.12) 42%, rgba(6,8,11,0) 65%),
    linear-gradient(to bottom, rgba(6,8,11,0.5) 0%, rgba(6,8,11,0) 28%);
}

/* Loader */
.loader {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background: var(--bg); transition: opacity .8s var(--ease), visibility .8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__brand {
  font-family: var(--serif); font-weight: 700; font-size: 16px;
  letter-spacing: 0.04em; color: var(--fg);
}
.loader__track { width: 180px; height: 1px; background: var(--line); overflow: hidden; }
.loader__bar { display: block; height: 100%; width: 0; background: var(--accent); transition: width .25s var(--ease); }
.loader__pct { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); }

/* Beats */
.scrub__beat {
  position: absolute; left: var(--pad); bottom: clamp(64px, 13vh, 140px); z-index: 10;
  max-width: 780px; opacity: 0; will-change: opacity, transform;
}
.scrub__eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px;
}
.scrub__title {
  font-size: clamp(38px, 5.2vw, 80px); line-height: 1.02; color: var(--fg);
  font-weight: 900; letter-spacing: -0.022em;
  text-shadow: 0 2px 50px rgba(0,0,0,0.55);
  max-width: 22ch;
}
.scrub__title em { color: var(--accent); font-weight: 400; }
.scrub__beat-title em { color: var(--accent); font-weight: 400; }
.scrub__tagline {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--fg-soft); margin: 26px 0 0; max-width: 50ch;
  line-height: 1.6;
}
.scrub__beat-title {
  font-family: var(--serif); font-weight: 900; line-height: 1.04; letter-spacing: -0.02em;
  font-size: clamp(46px, 7vw, 108px); color: var(--fg);
  text-shadow: 0 2px 50px rgba(0,0,0,0.55);
  max-width: 16ch;
}
.scrub__beat .btn { margin-top: 30px; }

.scrub__cue {
  position: absolute; right: var(--pad); bottom: clamp(48px, 10vh, 96px); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--fg-soft);
}
.scrub__cue-line {
  width: 1px; height: 54px;
  background: linear-gradient(var(--fg-soft), transparent);
  animation: cuePulse 2.4s var(--ease) infinite;
}
@keyframes cuePulse { 0%,100% { opacity: .35; transform: scaleY(.7); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================================
   EDITORIAL (text + image)
   ============================================================ */
.editorial { padding: clamp(90px, 13vh, 180px) var(--pad); background: var(--bg); }
.editorial--reverse { background: var(--bg-2); }
.editorial__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 6vw, 100px); align-items: center;
}
.editorial--reverse .editorial__media { order: 2; }
.editorial--reverse .editorial__text { order: 1; }
.editorial__text { max-width: 540px; }
.editorial__text .lede + .lede { margin-top: 22px; }
.editorial__title { font-size: clamp(38px, 5vw, 76px); }
.editorial__title em { color: var(--accent); font-weight: 400; }

.frame {
  margin: 0; overflow: hidden; border-radius: 6px;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8);
  position: relative; aspect-ratio: 16 / 9; background: var(--bg-3);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.editorial__media:hover .frame img { transform: scale(1.04); }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--ink); padding: clamp(70px, 11vh, 130px) var(--pad); }
.stats__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 60px);
}
.stat { text-align: left; border-left: 1px solid var(--line); padding-left: 26px; }
.stat__num {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(54px, 6vw, 86px); line-height: 1; color: var(--fg);
}
.stat__unit { font-size: 0.5em; color: var(--accent); letter-spacing: 0.02em; }
.stat__label {
  display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-top: 16px;
}

/* ============================================================
   AMENITIES — capacités numérotées
   ============================================================ */
.amenities { background: var(--bg-2); padding: clamp(90px, 14vh, 180px) var(--pad); }
.amenities__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
.amenities__head { position: sticky; top: 120px; }
.amenities__title { font-size: clamp(36px, 4.6vw, 68px); color: var(--fg); }
.amenities__title em { color: var(--accent); font-weight: 400; }
.amenities__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 4vw, 56px);
}
.amenity {
  display: flex; gap: 20px; align-items: baseline;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.amenity__index {
  font-family: var(--serif); font-weight: 700;
  font-size: 14px; color: var(--accent); letter-spacing: 0.04em;
  flex: 0 0 auto; min-width: 28px;
}
.amenity__text {
  font-size: clamp(14.5px, 1.05vw, 16.5px); color: var(--fg-soft);
  line-height: 1.6; font-weight: 300;
}
.amenity__text strong { color: var(--fg); font-weight: 500; }

/* ============================================================
   WORK — portfolio grid (7 cards, last spans full width)
   ============================================================ */
.work { background: var(--bg); padding: clamp(90px, 14vh, 180px) var(--pad); }
.work__inner { max-width: var(--maxw); margin: 0 auto; }
.work__head { max-width: 720px; margin: 0 0 clamp(50px, 7vh, 90px); }
.work__title { font-size: clamp(36px, 4.6vw, 68px); color: var(--fg); }
.work__title em { color: var(--accent); font-weight: 400; }

.work__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.work__card { margin: 0; }
.work__card--wide { grid-column: 1 / -1; max-width: 100%; }
.work__card--wide .work__thumb { aspect-ratio: 21 / 9; }

.work__link {
  display: block; color: inherit;
  transition: transform .5s var(--ease);
}
.work__link:hover { transform: translateY(-4px); }

.work__thumb {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 16 / 9; background: var(--bg-3); border-radius: 4px;
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.85);
}
.work__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .5s var(--ease);
  filter: saturate(0.92);
}
.work__link:hover .work__thumb img { transform: scale(1.06); filter: saturate(1.05); }

/* Instagram fallback card (no thumbnail available) */
.work__thumb--ig {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  background:
    radial-gradient(circle at 30% 20%, rgba(79,195,232,0.16), transparent 60%),
    linear-gradient(140deg, #0F141C 0%, #1B232E 100%);
}
.work__thumb-label {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px); color: var(--fg);
  letter-spacing: -0.01em;
}
.work__thumb-sub {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent);
}

.work__meta {
  display: block; padding: 20px 4px 0;
}
.work__name {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px); color: var(--fg);
  letter-spacing: -0.005em;
}
.work__tag {
  display: block; margin-top: 6px;
  font-size: 12px; font-weight: 300; color: var(--muted);
  letter-spacing: 0.04em;
}

/* Bouton "Autres projets" sous le portfolio */
.work__more-wrap {
  display: flex; justify-content: center;
  margin-top: clamp(40px, 6vh, 80px);
}

/* ============================================================
   BLEED (full-bleed image + scrim)
   ============================================================ */
.bleed { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.bleed--tall { min-height: 100vh; }
.bleed__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bleed__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--scrim-1) 0%, var(--scrim-2) 38%, transparent 65%),
    linear-gradient(to right, var(--scrim-2) 0%, var(--scrim-3) 50%, transparent 80%);
}
.bleed__content { position: relative; z-index: 2; max-width: 720px; padding: 0 var(--pad); }
.bleed__content--low { align-self: flex-end; padding-bottom: clamp(60px, 12vh, 120px); }
.bleed__title {
  font-family: var(--serif); font-weight: 900; line-height: 1.04; letter-spacing: -0.02em;
  font-size: clamp(40px, 5.8vw, 88px); color: var(--fg);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.bleed__title em { color: var(--accent); font-weight: 400; }
.bleed__copy {
  font-size: clamp(15.5px, 1.3vw, 19px); color: var(--fg);
  max-width: 52ch; margin: 26px 0 0; line-height: 1.7;
  text-shadow: 0 1px 24px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.6);
  font-weight: 300;
}

/* ============================================================
   MANIFESTE-BLEED (variant of bleed for manifesto)
   ============================================================ */
.manifesto-bleed { align-items: center; }
.manifesto-bleed__scrim {
  background:
    linear-gradient(to bottom, var(--scrim-1) 0%, var(--scrim-2) 30%, var(--scrim-2) 70%, var(--scrim-1) 100%);
}
.manifesto-bleed__content {
  max-width: 880px; margin: 0 auto; text-align: center; padding: 0 var(--pad);
  align-self: center;
}
.manifesto-bleed__title {
  font-size: clamp(38px, 5.6vw, 86px); margin: 0;
}
.manifesto-bleed__body {
  margin: 40px auto 0; max-width: 60ch;
  display: flex; flex-direction: column; gap: 20px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.7vw, 24px);
  color: var(--fg-soft); line-height: 1.55;
  text-shadow: 0 1px 24px rgba(0,0,0,0.6);
}

/* ============================================================
   CALENDLY
   ============================================================ */
.calendly { background: var(--bg-2); padding: clamp(90px, 14vh, 180px) var(--pad); }
.calendly__inner {
  max-width: 980px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: clamp(40px, 6vh, 70px);
}
.calendly__head { text-align: center; max-width: 680px; }
.calendly__title {
  font-size: clamp(36px, 5.2vw, 76px); color: var(--fg);
}
.calendly__title em { color: var(--accent); font-weight: 400; }
.calendly__copy { margin: 28px auto 0; max-width: 56ch; }
.calendly__widget {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.7);
}
.calendly-inline-widget { width: 100%; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); padding: clamp(90px, 14vh, 180px) var(--pad); }
.contact__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 110px); align-items: center;
}
.contact__title { font-size: clamp(34px, 4.6vw, 64px); color: var(--fg); margin-top: 8px; }
.contact__title em { color: var(--accent); font-weight: 400; }
.contact__copy { color: var(--fg-soft); max-width: 42ch; margin: 26px 0 0; font-weight: 300; }
.contact__details { display: flex; flex-direction: column; gap: 4px; }
.contact__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  transition: padding-left .35s var(--ease);
}
.contact__row:hover { padding-left: 10px; }
.contact__label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.contact__value { font-family: var(--serif); font-weight: 400; font-size: clamp(17px, 1.5vw, 22px); color: var(--fg); }

/* Bulles réseaux (Instagram + LinkedIn avec logos SVG) */
.contact__socials {
  display: flex; gap: 14px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.contact__bubble {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(236, 231, 223, 0.18);
  border-radius: 999px;
  background: rgba(236, 231, 223, 0.02);
  color: var(--fg-soft);
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background .35s var(--ease), border-color .35s var(--ease),
              color .35s var(--ease), transform .35s var(--ease);
}
.contact__bubble:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}
.contact__bubble svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: block;
}
.contact__bubble-name { display: inline-block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); padding: clamp(60px, 9vh, 110px) var(--pad) 40px; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; text-align: center;
  padding-bottom: 50px; border-bottom: 1px solid var(--line);
}
.footer__brand { font-family: var(--serif); font-weight: 900; font-size: clamp(32px, 4vw, 52px); color: var(--fg); }
.footer__tagline { font-family: var(--sans); font-style: normal; font-weight: 300; font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin: 14px 0 0; }
.footer__base { max-width: var(--maxw); margin: 32px auto 0; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__legal { font-size: 12px; letter-spacing: 0.04em; color: var(--muted); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   MOTION LAYER (subtle, premium micro-interactions)
   ============================================================ */
.ml-reveal .ml-line { overflow: hidden; padding-bottom: 0.04em; margin-bottom: -0.04em; }
.ml-reveal .ml-line__inner {
  display: block; transform: translateY(110%);
  transition: transform 0.9s var(--ease);
  transition-delay: var(--ml-delay, 0s); will-change: transform;
}
.ml-reveal.is-shown .ml-line__inner { transform: translateY(0); }
.ml-eyebrow { clip-path: inset(0 0 100% 0); opacity: 0; transition: clip-path 0.7s var(--ease), opacity 0.7s var(--ease); }
.ml-eyebrow.is-shown { clip-path: inset(0 0 0 0); opacity: 1; }
.stat__num.is-counting { font-variant-numeric: tabular-nums; }
.bleed__img { will-change: transform; transform: translate3d(0, var(--py, 0px), 0) scale(1.12); }

.btn:active { transform: translateY(0) scale(0.98); transition-duration: 0.12s; }
.nav__cta:active { transform: translateY(0) scale(0.98); transition-duration: 0.12s; }

body.intro-ready .nav { opacity: 0; transform: translateY(-12px); }
body.intro-ready.is-loaded .nav {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .work__card--wide { grid-column: 1 / -1; }
  .work__card--wide .work__thumb { aspect-ratio: 16 / 9; }
}

@media (max-width: 980px) {
  .editorial__inner, .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .editorial--reverse .editorial__media { order: 1; }
  .editorial--reverse .editorial__text { order: 2; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .amenities__inner { grid-template-columns: 1fr; gap: 44px; }
  .amenities__head { position: static; }
  .amenities__list { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .scrub { height: 100vh; }
  .scrub__title { font-size: clamp(32px, 9vw, 50px); }
  .scrub__beat-title { font-size: clamp(36px, 11vw, 60px); }
  .nav__brand { font-size: 15px; }
  .nav__right { gap: 14px; }
  .work__grid { grid-template-columns: 1fr; }
  .work__card--wide .work__thumb { aspect-ratio: 16 / 9; }
}

@media (max-width: 560px) {
  .stats__inner { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; text-align: center; align-items: center; }
  .nav__cta { display: none; }
  .amenities__list { grid-template-columns: 1fr; }
  .bleed__title { font-size: clamp(34px, 9vw, 48px); }
  .manifesto-bleed__title { font-size: clamp(32px, 9vw, 46px); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ml-reveal .ml-line { overflow: visible; padding-bottom: 0; margin-bottom: 0; }
  .ml-reveal .ml-line__inner { transform: none !important; transition: none !important; }
  .ml-eyebrow { clip-path: none !important; opacity: 1 !important; transition: none !important; }
  .bleed__img { transform: none !important; will-change: auto; }
  .btn:active, .nav__cta:active { transform: none !important; }
  body.intro-ready .nav { opacity: 1 !important; transform: none !important; transition: none !important; }
}
