/* ============================================================
   muci — concept stylesheet
   monochrome brand: #000 / #fff / #d9d9d9 / #f5f5f5 / #797979
   type: Poppins only (weight + hollow contrast is the play)
   ============================================================ */

:root {
  --black: #0a0a0a;
  --ink: #111111;
  --white: #ffffff;
  --paper: #f5f5f4;
  --grey: #d9d9d9;
  --mid: #6e6e6e;
  --gap: clamp(20px, 4vw, 64px);
  --font: 'Poppins', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.65, .05, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
em { font-style: italic; }

::selection { background: var(--black); color: var(--white); }

/* hollow display treatment — the typographic signature */
.hollow {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  text-stroke: 1.5px var(--ink);
}

/* ============ preloader ============ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--black);
  display: grid; place-content: center; gap: 28px;
}
.preloader__word { display: flex; overflow: hidden; }
.pl-letter {
  font-size: clamp(64px, 14vw, 160px);
  font-weight: 500; color: var(--white); line-height: 1;
  letter-spacing: -0.03em;
  transform: translateY(110%);
}
.preloader__bar { width: min(280px, 50vw); height: 1px; background: rgba(255,255,255,.2); justify-self: center; }
.preloader__bar span { display: block; width: 0%; height: 100%; background: var(--white); }

/* ============ grain ============ */
.grain {
  position: fixed; inset: -100%; z-index: 120; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .035;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) } 10% { transform: translate(-5%,-8%) }
  30% { transform: translate(3%,-12%) } 50% { transform: translate(9%,4%) }
  70% { transform: translate(-7%,8%) } 90% { transform: translate(5%,10%) }
}

/* ============ cursor ============ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 150;
  opacity: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--black);
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .35s var(--ease), height .35s var(--ease), background-color .35s;
  display: grid; place-content: center;
  mix-blend-mode: exclusion; background: #fff;
}
.cursor__label {
  font-size: 11px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
  color: var(--black); opacity: 0; transition: opacity .25s;
  white-space: nowrap;
}
.cursor.is-big { width: 84px; height: 84px; mix-blend-mode: normal; background: var(--white); box-shadow: 0 2px 24px rgba(0,0,0,.14); }
.cursor.is-big .cursor__label { opacity: 1; }
body.cursor-on .cursor { opacity: 1; }
@media (hover: none) { .cursor { display: none; } }

/* ============ header ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gap);
  transition: transform .5s var(--ease);
  mix-blend-mode: normal;
}
.header.is-hidden { transform: translateY(-110%); }
body.menu-open .header { z-index: 110; transform: none; }
.header__logo { position: relative; display: block; width: 92px; opacity: 1; transition: opacity .5s; }
body.in-hero .header__logo { opacity: 0; pointer-events: none; }
body.in-hero .header__nav { text-shadow: 0 0 14px rgba(245,245,244,.95), 0 0 30px rgba(245,245,244,.85); }
body.in-hero .nav-link--cta { background: rgba(245,245,244,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); text-shadow: none; }
.logo-img { width: 100%; height: auto; }
.logo-img--light { position: absolute; inset: 0; opacity: 0; transition: opacity .4s; }
body.on-dark .logo-img--light { opacity: 1; }
body.on-dark .logo-img--dark { opacity: 0; }

.header__nav { display: flex; gap: 34px; align-items: center; }
.nav-link {
  font-size: 14px; font-weight: 400; letter-spacing: .02em;
  position: relative; padding: 4px 0;
  transition: color .4s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-link:hover::after, .nav-link:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-link--cta {
  border: 1px solid currentColor; border-radius: 100px;
  padding: 9px 20px;
  transition: background .4s, color .4s, border-color .4s;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover, .nav-link--cta:focus-visible { background: var(--black); color: var(--white); border-color: var(--black); }
body.on-dark .header__nav { color: var(--white); }
body.on-dark .nav-link--cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.menu-btn { display: none; width: 44px; height: 44px; position: relative; z-index: 111; }
.menu-btn span {
  position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--ink);
  transition: transform .4s var(--ease), top .4s var(--ease), background-color .4s;
}
.menu-btn span:nth-child(1) { top: 18px; }
.menu-btn span:nth-child(2) { top: 26px; }
.menu-btn.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { top: 22px; transform: rotate(-45deg); }
body.on-dark .menu-btn span { background: var(--white); }
.menu-btn.is-open span { background: var(--white) !important; }

.mmenu {
  position: fixed; inset: 0; z-index: 105;
  background: var(--black); color: var(--white);
  display: flex; flex-direction: column; justify-content: center; gap: 8vh;
  padding: 0 var(--gap);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease);
  visibility: hidden;
}
.mmenu.is-open { clip-path: inset(0 0 0% 0); visibility: visible; }
.mmenu nav { display: flex; flex-direction: column; gap: 6px; }
.mmenu__link {
  font-size: clamp(40px, 10vw, 72px); font-weight: 300; line-height: 1.15;
  letter-spacing: -0.02em;
  transform: translateY(40px); opacity: 0;
  transition: transform .6s var(--ease), opacity .6s;
}
.mmenu.is-open .mmenu__link { transform: none; opacity: 1; }
.mmenu.is-open .mmenu__link:nth-child(1) { transition-delay: .15s }
.mmenu.is-open .mmenu__link:nth-child(2) { transition-delay: .22s }
.mmenu.is-open .mmenu__link:nth-child(3) { transition-delay: .29s }
.mmenu.is-open .mmenu__link:nth-child(4) { transition-delay: .36s }
.mmenu__meta { display: flex; gap: 48px; font-size: 13px; color: var(--grey); }

/* ============ hero ============ */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  overflow: clip;
}
.hero__media { position: absolute; inset: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 34% at 50% 62%, rgba(245,245,244,.5) 0%, rgba(245,245,244,0) 70%),
    linear-gradient(180deg, rgba(245,245,244,.32) 0%, rgba(245,245,244,.06) 38%, rgba(245,245,244,.5) 82%, rgba(245,245,244,.8) 100%);
}
.hero__canvas-wrap { position: absolute; inset: 0; }
#heroCanvas { width: 100%; height: 100%; display: block; }
.hero__wash {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 46%, rgba(245,245,244,.92) 0%, rgba(245,245,244,.55) 45%, rgba(245,245,244,0) 78%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; text-align: center; padding: 0 16px; }
.hero__word {
  font-size: clamp(110px, 24vw, 340px);
  font-weight: 500; line-height: .95; letter-spacing: -0.035em;
  display: flex; justify-content: center;
  user-select: none;
  overflow: clip;
  text-shadow: 0 0 60px rgba(245,245,244,.55), 0 0 140px rgba(245,245,244,.4);
}
.hero-letter { display: inline-block; will-change: transform; }
.hero__tag {
  margin-top: clamp(18px, 3vh, 34px); font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 400; letter-spacing: .01em; color: var(--ink);
  text-shadow: 0 0 18px rgba(245,245,244,.9), 0 0 40px rgba(245,245,244,.8);
}
.tag-line { display: block; overflow: hidden; line-height: 1.55; }
.tag-line em { font-weight: 400; }
.joy { position: relative; display: inline-block; font-weight: 500; }
.joy::after {
  content: ""; position: absolute; left: -4%; right: -4%; bottom: 2px; height: 8px;
  background: var(--grey); z-index: -1;
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s var(--ease) 1.6s;
}
body.is-loaded .joy::after { transform: scaleX(1); }

.hero__foot {
  position: absolute; left: var(--gap); right: var(--gap); bottom: 26px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #4a4a4a;
}
.hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll-line { width: 1px; height: 42px; background: var(--mid); overflow: hidden; position: relative; display: block; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--black);
  animation: scrollhint 2s var(--ease) infinite;
}
@keyframes scrollhint { 0% { transform: translateY(-100%) } 55% { transform: translateY(0) } 100% { transform: translateY(100%) } }

/* ============ shared section bits ============ */
section { position: relative; }
.reveal-label {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mid); font-weight: 400;
  display: inline-flex; align-items: center; gap: 12px;
}
.reveal-label::before { content: ""; width: 36px; height: 1px; background: var(--mid); display: inline-block; }
.split-words .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split-words .wi { display: inline-block; will-change: transform; }

/* ============ manifesto ============ */
.manifesto { padding: clamp(120px, 18vh, 220px) var(--gap) clamp(90px, 14vh, 180px); max-width: 1500px; margin: 0 auto; }
.manifesto__text {
  margin-top: 34px;
  font-size: clamp(30px, 4.6vw, 72px);
  font-weight: 300; line-height: 1.18; letter-spacing: -0.015em;
  max-width: 24ch;
}
.manifesto__foot { display: flex; justify-content: flex-end; margin-top: clamp(40px, 6vh, 80px); }
.manifesto__note { max-width: 34ch; color: var(--mid); font-size: clamp(14px, 1.2vw, 17px); }

/* ============ marquee ============ */
.marquee { overflow: clip; border-top: 1px solid var(--grey); border-bottom: 1px solid var(--grey); padding: 18px 0; background: var(--paper); }
.marquee__track { display: flex; gap: 42px; align-items: center; white-space: nowrap; width: max-content; will-change: transform; }
.marquee__track span {
  font-size: clamp(20px, 2.6vw, 34px); font-weight: 200; letter-spacing: .01em;
  text-transform: lowercase;
}
.marquee__track i { font-style: normal; font-size: 8px; color: var(--mid); }

/* ============ film ============ */
.film { padding: clamp(90px, 14vh, 180px) 0; background: var(--paper); }
.film__frame {
  position: relative; width: min(94vw, 1600px); margin: 0 auto;
  aspect-ratio: 16/9; overflow: clip; border-radius: 2px;
  transform-origin: center;
}
.film__video, .film__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.film__overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.45) 100%);
  color: var(--white);
}
.film__label { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; opacity: .8; }
.film__title { font-size: clamp(44px, 7vw, 110px); font-weight: 400; line-height: 1; letter-spacing: -0.02em; margin-top: 10px; }
.film__title span { display: inline-block; }
.film__sub { margin-top: 12px; font-size: clamp(13px, 1.2vw, 16px); opacity: .85; }

/* ============ work / horizontal ============ */
.work { background: var(--black); color: var(--white); }
.work__head {
  padding: clamp(90px, 14vh, 170px) var(--gap) clamp(30px, 5vh, 60px);
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 24px;
}
.work__head .reveal-label { color: var(--grey); }
.work__head .reveal-label::before { background: var(--grey); }
.work__title {
  font-size: clamp(36px, 5.4vw, 84px); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em;
  flex: 1 1 auto; max-width: 16ch;
}
.work .hollow { -webkit-text-stroke-color: var(--white); }
.work__count { font-size: 13px; letter-spacing: .2em; color: var(--mid); margin-left: auto; }

.work__pin { position: relative; overflow: clip; }
.work__track {
  display: flex; gap: clamp(20px, 3vw, 48px);
  padding: 0 var(--gap) clamp(90px, 14vh, 170px);
  width: max-content; will-change: transform;
}
.wcard { position: relative; width: clamp(300px, 38vw, 620px); flex-shrink: 0; }
.wcard--tall { width: clamp(260px, 30vw, 480px); margin-top: clamp(30px, 6vh, 90px); }
.wcard__img { overflow: clip; aspect-ratio: 4/3; background: #1a1a1a; }
.wcard--tall .wcard__img { aspect-ratio: 3/4; }
.wcard__img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
  filter: grayscale(28%);
  will-change: transform;
}
.wcard:hover .wcard__img img { transform: scale(1.02); filter: grayscale(0%); }
.wcard__meta { display: flex; align-items: baseline; gap: 16px; margin-top: 16px; }
.wcard__num { font-size: 12px; color: var(--mid); letter-spacing: .15em; }
.wcard__name { font-size: clamp(20px, 2vw, 30px); font-weight: 400; letter-spacing: -0.01em; }
.wcard__loc { margin-left: auto; font-size: 12.5px; color: var(--mid); letter-spacing: .06em; text-align: right; }

/* work progress */
.work__progress { position: absolute; left: var(--gap); right: var(--gap); bottom: 44px; height: 1px; background: #2c2c2c; }
.work__progress span { display: block; height: 100%; width: 0%; background: var(--white); }

/* film badge */
.film { position: relative; }
.film__badge {
  position: absolute; z-index: 3;
  top: clamp(40px, 8vh, 90px); right: clamp(4vw, 8vw, 12vw);
  width: 120px; height: 120px;
  animation: spin 18s linear infinite;
  pointer-events: none;
}
.film__badge text { font-size: 11.5px; letter-spacing: .28em; text-transform: uppercase; fill: var(--ink); font-weight: 400; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 700px) { .film__badge { display: none; } }

/* quotes glyph */
.quotes__glyph {
  position: absolute; top: clamp(-30px, -2vh, -10px); left: 50%; transform: translateX(-50%);
  font-size: clamp(360px, 46vw, 680px); line-height: 1; font-weight: 500;
  color: transparent; -webkit-text-stroke: 1.5px #333333;
  pointer-events: none; user-select: none;
}

/* ============ story ============ */
.story { background: var(--paper); padding: clamp(110px, 16vh, 210px) var(--gap); }
.story__grid {
  display: grid; max-width: 1500px; margin: 0 auto;
  grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 32px);
  align-items: start;
}
.story__img { overflow: clip; border-radius: 2px; }
.story__img img { width: 100%; height: 100%; object-fit: cover; will-change: transform; transform: scale(1.15); }
.story__img--a { grid-column: 1 / span 5; grid-row: 1 / span 2; align-self: stretch; min-height: 480px; }
.story__img--b { grid-column: 7 / span 3; grid-row: 2; aspect-ratio: 3/4; margin-top: clamp(36px, 7vh, 80px); }
.story__img--c { grid-column: 10 / span 3; grid-row: 2; aspect-ratio: 3/4; margin-top: clamp(96px, 16vh, 170px); }
.story__text { grid-column: 7 / span 6; grid-row: 1; padding-top: 0; }
.story__text h2 {
  font-size: clamp(28px, 3.6vw, 54px); font-weight: 300; line-height: 1.2; letter-spacing: -0.015em;
  margin-top: 30px; max-width: 22ch;
}
.story__body { margin-top: 26px; max-width: 46ch; color: #3d3d3d; font-size: clamp(14.5px, 1.25vw, 17px); }

/* ============ services ============ */
.services { background: var(--white); padding: clamp(110px, 16vh, 210px) var(--gap); }
.services__head { max-width: 1500px; margin: 0 auto clamp(40px, 8vh, 90px); }
.services__head h2 {
  font-size: clamp(32px, 4.4vw, 66px); font-weight: 300; line-height: 1.14; letter-spacing: -0.018em;
  margin-top: 30px; max-width: 18ch;
}
.services__intro { margin-top: 18px; color: var(--mid); max-width: 44ch; }

.svc { list-style: none; max-width: 1500px; margin: 0 auto; border-top: 1px solid var(--grey); }
.svc__row { border-bottom: 1px solid var(--grey); }
.svc__btn {
  display: grid; grid-template-columns: 70px 1fr 44px; align-items: center;
  width: 100%; text-align: left;
  padding: clamp(22px, 3.4vh, 38px) 4px;
  transition: padding-left .5s var(--ease);
}
.svc__row { position: relative; }
.svc__row::before {
  content: ""; position: absolute; inset: 0; background: var(--black);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .45s var(--ease);
  z-index: 0; pointer-events: none;
}
.svc__row:not(.is-open):hover::before { transform: scaleY(1); }
.svc__btn, .svc__panel { position: relative; z-index: 1; }
.svc__row:not(.is-open):hover .svc__btn { color: var(--white); }
.svc__row:not(.is-open):hover .svc__plus::before,
.svc__row:not(.is-open):hover .svc__plus::after { background: var(--white); }
.svc__row:not(.is-open):hover .svc__num { color: var(--grey); }
.svc__row:hover .svc__btn, .svc__btn:focus-visible { padding-left: 22px; }
.svc__num { font-size: 13px; letter-spacing: .18em; color: var(--mid); }
.svc__name {
  font-size: clamp(26px, 3.6vw, 56px); font-weight: 300; letter-spacing: -0.02em; line-height: 1.1;
  transition: font-weight .2s;
}
.svc__row.is-open .svc__name { font-weight: 400; }
.svc__plus { position: relative; width: 20px; height: 20px; justify-self: end; }
.svc__plus::before, .svc__plus::after {
  content: ""; position: absolute; background: var(--ink); inset: 0; margin: auto;
  transition: transform .5s var(--ease);
}
.svc__plus::before { width: 100%; height: 1.5px; }
.svc__plus::after { width: 1.5px; height: 100%; }
.svc__row.is-open .svc__plus::after { transform: rotate(90deg) scaleY(0); }
.svc__panel { overflow: clip; height: 0; }
.svc__panel p { max-width: 56ch; padding: 0 4px 34px 70px; color: #3d3d3d; font-size: clamp(14.5px, 1.2vw, 17px); }

.svc__preview {
  position: fixed; z-index: 90; width: 300px; aspect-ratio: 4/3;
  pointer-events: none; overflow: clip; border-radius: 2px;
  opacity: 0; transform: scale(.9) rotate(2deg);
  transition: opacity .35s, transform .5s var(--ease);
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
}
.svc__preview.is-on { opacity: 1; transform: scale(1) rotate(0deg); }
.svc__preview img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: none), (max-width: 900px) { .svc__preview { display: none; } }

/* ============ studio ============ */
.studio { background: var(--paper); padding: clamp(110px, 16vh, 210px) var(--gap); }
.studio__inner {
  max-width: 1500px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 6vw, 100px); align-items: center;
}
.studio__img { overflow: clip; border-radius: 2px; aspect-ratio: 4/5; }
.studio__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
.studio__text h2 {
  font-size: clamp(30px, 3.8vw, 56px); font-weight: 300; line-height: 1.18; letter-spacing: -0.016em;
  margin-top: 30px;
}
.studio__body { margin-top: 24px; max-width: 52ch; color: #3d3d3d; font-size: clamp(14.5px, 1.25vw, 17px); }

.btn-line {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 38px; padding-bottom: 6px;
  font-size: 15px; font-weight: 400; letter-spacing: .04em;
  border-bottom: 1px solid var(--ink);
  transition: gap .4s var(--ease);
}
.btn-line:hover, .btn-line:focus-visible { gap: 22px; }
.btn-line__arrow { transition: transform .4s var(--ease); }

/* ============ quotes ============ */
.quotes {
  background: var(--black); color: var(--white);
  padding: clamp(120px, 18vh, 220px) var(--gap);
  text-align: center;
}
.quotes__kicker { color: var(--grey); justify-content: center; }
.quotes__kicker::before { background: var(--grey); }
.quotes__stack { position: relative; max-width: 980px; margin: clamp(40px, 7vh, 70px) auto 0; min-height: 260px; }
.quote {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events: none;
}
.quote.is-active { opacity: 1; transform: none; pointer-events: auto; }
.quote p {
  font-size: clamp(21px, 2.8vw, 38px); font-weight: 200; line-height: 1.42; letter-spacing: .002em;
}
.quote cite { display: block; margin-top: 26px; font-style: normal; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--mid); }
.quotes__nav { display: flex; gap: 14px; justify-content: center; margin-top: 40px; }
.qdot { width: 30px; height: 30px; position: relative; }
.qdot::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mid); transition: background .3s, transform .3s;
}
.qdot.is-active::after { background: var(--white); transform: scale(1.5); }

/* ============ cta ============ */
.cta {
  background: var(--paper);
  padding: clamp(130px, 20vh, 240px) var(--gap) clamp(80px, 12vh, 140px);
  text-align: center; overflow: clip;
}
.cta__lattice {
  position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image:
    linear-gradient(var(--grey) 1px, transparent 1px),
    linear-gradient(90deg, var(--grey) 1px, transparent 1px);
  background-size: 72px 96px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, rgba(0,0,0,.5), transparent 70%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, rgba(0,0,0,.5), transparent 70%);
  animation: latticedrift 26s linear infinite;
}
@keyframes latticedrift { to { background-position: 72px 96px, 72px 96px; } }
@media (prefers-reduced-motion: reduce) { .cta__lattice { animation: none; } }
.cta__kicker { justify-content: center; }
.cta__title { margin-top: 34px; font-weight: 300; line-height: 1.08; letter-spacing: -0.02em; }
.cta__line { display: block; font-size: clamp(30px, 4.6vw, 68px); overflow: clip; }
.cta__line--big { font-size: clamp(44px, 8.4vw, 130px); font-weight: 400; margin-top: 6px; }
.cta__line--big em { font-style: italic; font-weight: 300; }
.cta__sub { margin: 30px auto 0; max-width: 52ch; color: var(--mid); font-size: clamp(14px, 1.2vw, 17px); position: relative; }
.cta__btn {
  display: inline-grid; place-content: center;
  margin-top: 48px; min-width: 200px; min-height: 64px; padding: 0 44px;
  border: 1px solid var(--ink); border-radius: 100px;
  font-size: 15px; font-weight: 400; letter-spacing: .05em;
  position: relative; overflow: clip; z-index: 1;
  transition: color .45s var(--ease);
}
.cta__btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--black); border-radius: 100px;
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.cta__btn:hover, .cta__btn:focus-visible { color: var(--white); }
.cta__btn:hover::before, .cta__btn:focus-visible::before { transform: translateY(0); }
.cta__details {
  display: flex; justify-content: center; gap: clamp(40px, 8vw, 120px);
  margin-top: clamp(70px, 12vh, 120px); flex-wrap: wrap;
  text-align: left; font-size: 14.5px; position: relative;
}
.cta__details h4 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--mid); font-weight: 400; margin-bottom: 12px; }
.cta__details a { border-bottom: 1px solid var(--grey); transition: border-color .3s; }
.cta__details a:hover { border-color: var(--ink); }

/* ============ footer ============ */
.footer { background: var(--black); color: var(--white); padding: clamp(70px, 10vh, 110px) var(--gap) 34px; overflow: clip; }
.footer__country { max-width: 74ch; margin: 0 auto; text-align: center; font-size: 13.5px; line-height: 1.8; color: var(--grey); font-weight: 300; }
.footer__word {
  display: flex; justify-content: center; line-height: .8;
  font-size: clamp(120px, 24vw, 400px); font-weight: 500; letter-spacing: -0.04em;
  margin-top: clamp(50px, 8vh, 90px);
  transform: translateY(12%);
  user-select: none;
}
.footer__word span { display: inline-block; will-change: transform; }
.footer__meta {
  display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center;
  margin-top: clamp(40px, 6vh, 70px);
  font-size: 11.5px; letter-spacing: .1em; color: var(--mid); text-transform: uppercase;
}
.footer__concept { color: #4d4d4d; }

/* ============ responsive ============ */
@media (max-width: 1024px) {
  .story__img--a { grid-column: 1 / span 6; grid-row: auto; }
  .story__img--b { grid-column: 7 / span 6; grid-row: auto; margin-top: 0; }
  .story__img--c { grid-column: 4 / span 6; grid-row: auto; margin-top: 24px; }
  .story__text { grid-column: 1 / -1; grid-row: 1; padding-bottom: 24px; }
}
@media (max-width: 900px) {
  .header__nav { display: none; }
  .menu-btn { display: block; }
  .studio__inner { grid-template-columns: 1fr; }
  .studio__img { max-width: 520px; }
  .svc__btn { grid-template-columns: 44px 1fr 34px; }
  .svc__panel p { padding-left: 44px; }
}
@media (max-width: 760px) {
  .work__pin { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .work__pin::-webkit-scrollbar { display: none; }
}
@media (max-width: 640px) {
  .story__grid { display: flex; flex-direction: column; }
  .story__img--b, .story__img--c { margin-top: 0; }
  .story__img--c { display: none; }
  .wcard { width: 82vw; }
  .wcard--tall { width: 70vw; margin-top: 40px; }
  .hero__foot { font-size: 10px; }
  .hero__est { display: none; }
  .mmenu__meta { flex-direction: column; gap: 20px; }
  .cta__details { flex-direction: column; gap: 32px; text-align: center; }
}

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__scroll-line::after { animation: none; }
  .split-words .wi { transform: none !important; }
  .pl-letter { transform: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* focus visibility */
:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; border-radius: 2px; }
