/* ============================================================
   BRIGHTER® — Brand & Digital Studio
   Design system · PP Eiko (display) + Topaz (text) only
   ============================================================ */

/* ---------- fonts ---------- */
@font-face { font-family: 'PP Eiko'; src: url('../fonts/PPEiko-Thin.woff2') format('woff2');   font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'PP Eiko'; src: url('../fonts/PPEiko-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'PP Eiko'; src: url('../fonts/PPEiko-Heavy.woff2') format('woff2');  font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Topaz'; src: url('../fonts/Topaz-Regular.woff2') format('woff2');  font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Topaz'; src: url('../fonts/Topaz-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Topaz'; src: url('../fonts/Topaz-Bold.woff2') format('woff2');     font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Topaz'; src: url('../fonts/Topaz-Black.woff2') format('woff2');    font-weight: 900; font-style: normal; font-display: swap; }

/* ---------- tokens ---------- */
:root {
  --cream: #F4EDE3;
  --cream-2: #EDE2D0;
  --night: #070C1A;
  --ink: #131A2E;
  --ink-60: rgba(19, 26, 46, .6);
  --ink-40: rgba(19, 26, 46, .4);
  --flame: #FF4D0A;
  --ember: #E63E0B;
  --gold: #FFAE3D;
  --peach: #FFD9A0;
  --maya: #8FC1EC;
  --sapphire: #2E4BFF;
  --line: rgba(19, 26, 46, .14);
  --cream-60: rgba(244, 237, 227, .6);
  --cream-25: rgba(244, 237, 227, .25);

  --bg: #F4EDE3;               /* animated cream → golden hour → cream */

  --serif: 'PP Eiko', Georgia, 'Times New Roman', serif;
  --sans: 'Topaz', 'Helvetica Neue', Arial, sans-serif;

  --pad: clamp(20px, 4.2vw, 72px);
  --radius: clamp(16px, 1.6vw, 26px);
  --ease-exp: cubic-bezier(.16, 1, .3, 1);
  --sect: clamp(110px, 13vw, 210px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; background: var(--night); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
sup { font-size: .45em; vertical-align: super; }
::selection { background: var(--flame); color: var(--cream); }
:focus-visible { outline: 2px solid var(--flame); outline-offset: 4px; border-radius: 4px; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(19,26,46,.28); border-radius: 6px; }
html.has-cursor * { cursor: none !important; }

.container { width: 100%; max-width: 1760px; margin-inline: auto; padding-inline: var(--pad); }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -120px; z-index: 70; pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.1s steps(5) infinite;
}
@keyframes grainShift {
  0% { transform: translate3d(0,0,0); }
  20% { transform: translate3d(-38px,22px,0); }
  40% { transform: translate3d(24px,-42px,0); }
  60% { transform: translate3d(-50px,-14px,0); }
  80% { transform: translate3d(36px,40px,0); }
  100% { transform: translate3d(0,0,0); }
}

/* ---------- custom cursor ---------- */
.cursor { position: fixed; inset: 0; z-index: 96; pointer-events: none; display: none; }
html.has-cursor .cursor { display: block; }
.cursor__dot {
  position: absolute; top: -3px; left: -3px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cream); mix-blend-mode: difference;
}
.cursor__ring {
  position: absolute; top: -21px; left: -21px; width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--cream); mix-blend-mode: difference;
  display: grid; place-items: center;
  transition: width .4s var(--ease-exp), height .4s var(--ease-exp), top .4s var(--ease-exp),
              left .4s var(--ease-exp), background-color .3s, border-color .3s;
}
.cursor__label {
  font: 600 .66rem/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  color: var(--night); opacity: 0; transition: opacity .25s; white-space: nowrap;
}
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; top: -32px; left: -32px; }
.cursor.is-label { mix-blend-mode: normal; }
.cursor.is-label .cursor__dot { opacity: 0; }
.cursor.is-label .cursor__ring {
  width: 96px; height: 96px; top: -48px; left: -48px;
  background: var(--cream); border-color: transparent; mix-blend-mode: normal;
}
.cursor.is-label .cursor__label { opacity: 1; }
.cursor.is-down .cursor__ring { transform: scale(.86); }

/* ---------- preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100; background: var(--night); color: var(--cream);
  clip-path: inset(0 0 0 0);
}
.loader__inner { position: absolute; inset: 0; }
.loader__mark {
  position: absolute; top: 50%; left: 50%; width: clamp(44px, 5vw, 64px); height: auto;
  transform: translate(-50%, -50%); color: var(--flame);
  animation: markPulse 2.2s var(--ease-exp) infinite;
}
@keyframes markPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  50% { transform: translate(-50%, -50%) scale(1.12) rotate(90deg); }
}
.loader__count {
  position: absolute; right: var(--pad); bottom: calc(var(--pad) * .6);
  overflow: hidden; line-height: 1;
}
.loader__num {
  display: inline-block; font: 100 clamp(5rem, 14vw, 12rem)/1 var(--serif);
  letter-spacing: -.02em; min-width: 2.2ch; text-align: right;
}
.loader__tag {
  position: absolute; left: var(--pad); bottom: calc(var(--pad) * .78);
  font: 600 .78rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-60);
}

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 22px var(--pad);
  color: var(--cream);
  transition: color .45s;
}
.header.on-light { color: var(--ink); }
.header.menu-open { color: var(--cream); }
.header__brand { display: inline-flex; align-items: center; gap: .6rem; }
.header__mark { width: 21px; height: 21px; color: var(--flame); transition: transform .6s var(--ease-exp); }
.header__brand:hover .header__mark { transform: rotate(90deg); }
.header__word { font: 500 1.28rem/1 var(--serif); letter-spacing: -.01em; }
.header__nav { display: flex; gap: clamp(1.4rem, 2.4vw, 2.6rem); }
.nav-link { position: relative; font: 600 .84rem/1 var(--sans); letter-spacing: .04em; padding: .4rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-exp);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.header__right { display: flex; align-items: center; gap: 1.4rem; }
.header__clock { font: 600 .74rem/1 var(--sans); letter-spacing: .12em; opacity: .62; font-variant-numeric: tabular-nums; }

/* menu button (mobile) */
.menu-btn { display: none; position: relative; width: 42px; height: 42px; }
.menu-btn span {
  position: absolute; left: 9px; right: 9px; height: 2px; background: currentColor;
  transition: transform .4s var(--ease-exp), top .4s var(--ease-exp);
}
.menu-btn span:nth-child(1) { top: 16px; }
.menu-btn span:nth-child(2) { top: 24px; }
.menu-btn.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

/* ---------- mobile menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 80; background: var(--night); color: var(--cream);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--pad) + 60px) var(--pad) var(--pad);
  clip-path: inset(0 0 100% 0); visibility: hidden;
}
.menu__links { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 14vh; }
.menu__link {
  display: flex; align-items: baseline; gap: 1rem;
  font: 100 clamp(2.8rem, 11vw, 4.6rem)/1.12 var(--serif); letter-spacing: -.02em;
}
.menu__link small { font: 600 .8rem/1 var(--sans); color: var(--flame); letter-spacing: .1em; }
.menu__foot { display: flex; flex-direction: column; gap: .5rem; font: 600 .8rem/1.5 var(--sans); color: var(--cream-60); }
.menu__foot a { color: var(--cream); }

/* ---------- buttons ---------- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; gap: .55em;
  border: 1px solid currentColor; border-radius: 999px;
  padding: .8em 1.6em;
  font: 600 .84rem/1 var(--sans); letter-spacing: .05em;
  transition: color .35s, border-color .35s;
  white-space: nowrap;
}
.btn::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: var(--flame); transform: translateY(102%);
  transition: transform .5s var(--ease-exp);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--cream); border-color: var(--flame); }
.btn__arrow { transition: transform .4s var(--ease-exp); }
.btn:hover .btn__arrow { transform: translate(3px, -3px); }
.btn--pill { padding: .72em 1.35em; }
.btn--ghost { border-color: var(--ink); }
.btn--big {
  background: var(--flame); border-color: var(--flame); color: #14100C;
  font: 600 clamp(1rem, 1.6vw, 1.35rem)/1 var(--sans); letter-spacing: .02em;
  padding: 1.25em 2.4em;
}
.btn--big::before { background: var(--cream); }
.btn--big:hover { color: var(--night); border-color: var(--cream); }

/* ---------- shared type ---------- */
.label {
  display: inline-flex; align-items: center; gap: .6rem;
  font: 600 .76rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-60);
}
.label i { font-style: normal; color: var(--flame); font-size: .9em; }
.label--center { display: flex; justify-content: center; }
.label--light { color: var(--cream-60); }
.h2 {
  font: 100 clamp(2.5rem, 5.1vw, 4.9rem)/1.04 var(--serif);
  letter-spacing: -.015em; font-weight: 100; max-width: 22ch;
  margin-top: 1.6rem;
}
.section-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 1rem 4rem; margin-bottom: clamp(3.5rem, 6vw, 6.5rem); }
.section-head .label { grid-column: 1 / -1; }
.section-head__aside { font: 400 .95rem/1.6 var(--sans); color: var(--ink-60); max-width: 30ch; padding-bottom: .6rem; }

/* word-mask splitting */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .12em; margin-bottom: -.12em; }
.wi { display: inline-block; will-change: transform; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; min-block-size: 640px;
  color: var(--cream); background: var(--night);
  display: flex; overflow: clip;
}
.hero__gl { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero.gl-fallback .hero__gl { display: none; }
.hero.gl-fallback::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, #060B18 0%, #14224C 42%, #C2461F 76%, #FFAE3D 100%);
}
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,12,26,.55), transparent 26%),
              linear-gradient(0deg, rgba(7,12,26,.28), transparent 30%);
}
.hero__inner {
  position: relative; z-index: 2; display: flex; flex-direction: column;
  justify-content: space-between; padding-top: 108px; padding-bottom: clamp(24px, 4vh, 48px);
}
.hero__eyebrow { display: flex; justify-content: space-between; gap: 1rem; padding-top: clamp(.5rem, 2vh, 2rem); }
.tag { display: inline-flex; align-items: center; gap: .55rem; font: 600 .76rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; }
.tag--muted { color: var(--cream-60); }
.tag__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--flame); animation: dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .55; } }

.hero__title {
  font: 100 clamp(3.1rem, 10.4vw, 10.8rem)/0.99 var(--serif);
  letter-spacing: -.022em; font-weight: 100;
  margin-block: auto;
}
.hline { display: block; overflow: hidden; padding: .03em .06em .13em; margin: -.03em -.06em -.13em; }
.hline__txt { display: inline-block; will-change: transform; }
.hline:nth-child(2) { margin-left: clamp(0px, 8vw, 160px); }
.hero__title em {
  font-style: normal; font-weight: 900; letter-spacing: -.01em;
  background: linear-gradient(94deg, var(--gold) 4%, var(--flame) 52%, #FF2E63 108%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.hero__foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; }
.hero__sub { font: 400 clamp(.98rem, 1.3vw, 1.18rem)/1.6 var(--sans); max-width: 36ch; color: rgba(244,237,227,.86); }
.hero__scroll {
  display: inline-flex; align-items: center; gap: .9rem;
  font: 600 .72rem/1 var(--sans); letter-spacing: .17em; text-transform: uppercase; color: var(--cream-60);
}
.hero__scroll-line { position: relative; width: 64px; height: 1px; background: var(--cream-25); overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; width: 22px; background: var(--flame);
  animation: scanline 2.2s var(--ease-exp) infinite;
}
@keyframes scanline { 0% { transform: translateX(-24px); } 100% { transform: translateX(66px); } }

/* ---------- ticker ---------- */
.ticker { background: var(--flame); color: #171008; overflow: clip; padding-block: .95rem; }
.ticker__track { display: flex; width: max-content; will-change: transform; }
.ticker__set { display: flex; align-items: center; gap: 2.6rem; padding-right: 2.6rem; white-space: nowrap; }
.ticker__set span { font: 500 clamp(1.15rem, 1.7vw, 1.5rem)/1 var(--serif); letter-spacing: .01em; }
.ticker__set i { font-style: normal; font-size: .95rem; }

/* ---------- work ---------- */
.work { padding-block: var(--sect); }
.work__grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.4vw, 40px);
  row-gap: clamp(64px, 8vw, 130px);
}
.work-card { position: relative; }
.wc-1 { grid-column: 1 / span 7; }
.wc-2 { grid-column: 9 / span 4; margin-top: clamp(90px, 15vw, 260px); }
.wc-3 { grid-column: 1 / span 4; }
.wc-4 { grid-column: 6 / span 7; margin-top: clamp(60px, 8vw, 150px); }
.wc-5 { grid-column: 4 / span 6; }
.work-card__media {
  display: block; position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--cream-2); aspect-ratio: 4 / 5;
  transform: translateZ(0);
}
.wc-1 .work-card__media, .wc-4 .work-card__media { aspect-ratio: 8 / 7; }
.wc-5 .work-card__media { aspect-ratio: 5 / 4; }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.work-card__meta {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  column-gap: 1rem; margin-top: 1.15rem; padding-top: .9rem; border-top: 1px solid var(--line);
}
.work-card__name { font: 500 clamp(1.4rem, 2vw, 1.95rem)/1.1 var(--serif); letter-spacing: -.01em; }
.work-card__tags { grid-column: 1; font: 400 .84rem/1.5 var(--sans); color: var(--ink-60); margin-top: .3rem; }
.work-card__year { grid-column: 2; grid-row: 1; font: 600 .78rem/1 var(--sans); letter-spacing: .1em; color: var(--ink-40); }
.work__more { display: flex; justify-content: center; margin-top: clamp(4rem, 7vw, 7rem); }

/* ---------- manifesto ---------- */
.manifesto { padding-block: clamp(140px, 22vh, 300px); text-align: center; }
.manifesto__text {
  font: 100 clamp(1.9rem, 4.5vw, 4.2rem)/1.22 var(--serif); letter-spacing: -.015em;
  max-width: 24ch; margin-inline: auto;
}
.manifesto__text strong { font-weight: 500; color: var(--flame); }
.manifesto__sig {
  margin-top: clamp(2.4rem, 4vw, 4rem);
  font: 600 .8rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--flame);
}

/* ---------- services ---------- */
.services { padding-block: var(--sect); }
.services__list { position: relative; border-bottom: 1px solid var(--line); }
.service { border-top: 1px solid var(--line); }
.service__head {
  position: relative; width: 100%; display: grid;
  grid-template-columns: clamp(2.6rem, 5vw, 5rem) 1fr auto clamp(2.4rem, 3vw, 3rem);
  align-items: center; column-gap: 1.2rem;
  padding: clamp(1.6rem, 2.6vw, 2.6rem) .4rem;
  text-align: left; transition: padding-left .5s var(--ease-exp);
}
.service__head:hover { padding-left: 1.4rem; }
.service__num { font: 600 .78rem/1 var(--sans); letter-spacing: .12em; color: var(--flame); }
.service__title { font: 500 clamp(1.9rem, 3.4vw, 3.3rem)/1.05 var(--serif); letter-spacing: -.015em; }
.service__hint { font: 400 .82rem/1.4 var(--sans); color: var(--ink-60); text-align: right; }
.service__icon { position: relative; justify-self: end; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; transition: background .35s, border-color .35s, transform .5s var(--ease-exp); }
.service__icon::before, .service__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: currentColor;
  transition: transform .45s var(--ease-exp), background .3s;
}
.service__icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.service__icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.service__head:hover .service__icon { background: var(--flame); border-color: var(--flame); color: var(--cream); }
.service.is-open .service__icon { transform: rotate(135deg); }
.service__body { height: auto; overflow: clip; }
.service__body-in {
  display: grid; grid-template-columns: minmax(0, 56ch) 1fr; gap: 2rem;
  padding: 0 .4rem clamp(2rem, 3vw, 3rem) calc(clamp(2.6rem, 5vw, 5rem) + 1.2rem);
}
.service__body-in p { font: 400 1rem/1.7 var(--sans); color: var(--ink-60); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; align-content: start; justify-content: flex-end; }
.chips li {
  font: 600 .74rem/1 var(--sans); letter-spacing: .06em;
  border: 1px solid var(--line); border-radius: 999px; padding: .55em 1em;
}
.service-preview {
  position: absolute; top: 0; left: 0; width: clamp(200px, 19vw, 280px); aspect-ratio: 3 / 4;
  border-radius: 18px; pointer-events: none; z-index: 5;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(.85); will-change: transform;
  box-shadow: 0 30px 80px -20px rgba(19, 26, 46, .45);
}
.service-preview.art-a { background-image: url('../img/work-maya.svg'); }
.service-preview.art-b { background-image: url('../img/work-bradex.svg'); }
.service-preview.art-c { background-image: url('../img/work-banco.svg'); }
.service-preview.art-d { background-image: url('../img/work-solstice.svg'); }

/* ---------- stats ---------- */
.stats { padding-block: clamp(90px, 10vw, 160px) 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding-bottom: clamp(80px, 9vw, 140px);
}
.stat { display: flex; flex-direction: column; gap: .8rem; }
.stat__num {
  font: 100 clamp(3.4rem, 6.6vw, 6.6rem)/1 var(--serif); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.stat__num::after { content: ""; display: block; width: 34px; height: 3px; background: var(--flame); margin-top: 1.1rem; }
.stat__lbl { font: 600 .78rem/1.5 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-60); }
.clients { border-block: 1px solid var(--line); padding-block: 1.6rem; overflow: clip; }
.ticker__track--clients .ticker__set span { font: 100 clamp(2rem, 4.4vw, 4rem)/1 var(--serif); color: var(--ink-40); }
.ticker__track--clients .ticker__set i { color: var(--flame); font-size: 1.1rem; }
.ticker__track--clients .ticker__set { gap: 3.4rem; padding-right: 3.4rem; }

/* ---------- studio ---------- */
.studio { padding-block: var(--sect); }
.studio__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(3rem, 6vw, 7rem); align-items: center; }
.studio__p { font: 400 1.02rem/1.75 var(--sans); color: var(--ink-60); max-width: 44ch; margin-top: 1.6rem; }
.studio__cta { margin-top: 2.6rem; }
.studio__collage { position: relative; min-height: clamp(480px, 46vw, 720px); }
.tile { position: absolute; border-radius: var(--radius); overflow: hidden; }
.tile--sun { top: 0; left: 0; width: 46%; aspect-ratio: 1; background: #111A33; padding: 7%; }
.tile--sun img { width: 100%; height: 100%; }
.tile--quote {
  top: 9%; right: 0; width: 56%; background: var(--cream-2); padding: clamp(1.4rem, 2.4vw, 2.4rem);
}
.tile--quote p { font: 500 clamp(1.05rem, 1.55vw, 1.5rem)/1.4 var(--serif); letter-spacing: -.01em; }
.tile--quote cite { display: block; margin-top: 1.2rem; font: 600 .72rem/1.4 var(--sans); letter-spacing: .12em; text-transform: uppercase; font-style: normal; color: var(--ink-60); }
.tile--arch { bottom: 4%; left: 7%; width: 44%; background: #FBF6EC; border: 1px solid var(--line); padding: 6% 7%; }
.tile--arch img { width: 100%; height: auto; }
.tile--grad {
  bottom: 0; right: 5%; width: 30%; aspect-ratio: 3 / 4.1;
  background: linear-gradient(180deg, #0F1B42 0%, #63306A 38%, #FF4D2A 62%, #FFB03D 82%, #FFE3B3 100%);
}

/* ---------- footer ---------- */
.footer {
  position: relative; background: var(--night); color: var(--cream); overflow: clip;
  border-radius: clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px) 0 0;
}
.footer__gl { position: absolute; inset: 0; width: 100%; height: 100%; }
.footer.gl-fallback .footer__gl { display: none; }
.footer.gl-fallback::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 50% 118%, #FF6A16 0%, #4A1A08 34%, #0A1128 68%, #05080F 100%);
}
.footer__inner {
  position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center;
  padding-top: clamp(120px, 18vh, 220px); text-align: center;
}
.footer__title {
  font: 100 clamp(3rem, 8.8vw, 9.4rem)/1.02 var(--serif); letter-spacing: -.02em; font-weight: 100;
  margin-top: 2rem;
}
.footer__title em {
  font-style: normal; font-weight: 900;
  background: linear-gradient(94deg, var(--gold) 0%, var(--flame) 55%, #FF2E63 115%);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
/* background-clip:text can't paint through the overflow-hidden word masks
   created by splitting — re-apply the gradient on the inner word spans */
.footer__title em .wi, .hero__title em .wi {
  background: linear-gradient(94deg, var(--gold) 0%, var(--flame) 55%, #FF2E63 115%);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.footer__lede { margin-top: 1.6rem; font: 400 1.05rem/1.6 var(--sans); color: var(--cream-60); }
.footer__cta { margin-top: clamp(2.4rem, 4vw, 4rem); }
.footer__cols {
  width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: clamp(110px, 16vh, 200px); text-align: left;
  padding-top: 3rem; border-top: 1px solid rgba(244, 237, 227, .16);
}
.footer__col h3 { font: 600 .72rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--cream-60); margin-bottom: 1.2rem; }
.footer__col a { display: block; font: 400 .98rem/2 var(--sans); color: var(--cream); width: fit-content; position: relative; }
.footer__col a::after { content: ""; position: absolute; left: 0; bottom: .35em; width: 100%; height: 1px; background: var(--flame); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-exp); }
.footer__col a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__col p { font: 400 .92rem/1.7 var(--sans); color: var(--cream-60); margin-bottom: 1rem; }
.footer__base {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font: 600 .74rem/1 var(--sans); letter-spacing: .1em; color: var(--cream-60);
  padding: 2.2rem 0 2rem; margin-top: 3rem;
}
.footer__clock { font-variant-numeric: tabular-nums; }
.to-top { position: relative; letter-spacing: .1em; color: var(--cream); }
.to-top::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: var(--flame); transform: scaleX(0); transition: transform .4s var(--ease-exp); }
.to-top:hover::after { transform: scaleX(1); }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .header__clock { display: none; }
}
@media (max-width: 900px) {
  .header__nav { display: none; }
  .header .btn--pill { display: none; }
  .menu-btn { display: block; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .section-head__aside { padding-bottom: 0; }
  .studio__grid { grid-template-columns: 1fr; }
  .service__hint { display: none; }
  .service__body-in { grid-template-columns: 1fr; padding-left: .4rem; }
  .chips { justify-content: flex-start; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .hero__scrim {
    background: linear-gradient(180deg, rgba(7,12,26,.62), rgba(7,12,26,.26) 34%, rgba(7,12,26,.14) 56%, rgba(7,12,26,.34) 100%);
  }
  .hero__title, .hero__sub { text-shadow: 0 1px 26px rgba(7, 12, 26, .38); }
  .work__grid { row-gap: 56px; }
  .wc-1, .wc-2, .wc-3, .wc-4, .wc-5 { grid-column: 1 / -1; margin-top: 0; }
  .wc-2 .work-card__media, .wc-3 .work-card__media { aspect-ratio: 4 / 5; }
  .wc-1 .work-card__media, .wc-4 .work-card__media, .wc-5 .work-card__media { aspect-ratio: 4 / 4.4; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 3rem 1.4rem; }
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .hero__eyebrow .tag--muted { display: none; }
  .studio__collage { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .tile { position: static; width: auto; }
  .tile--quote { grid-column: 1 / -1; order: -1; }
  .footer__cols { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer__base { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .loader__mark, .tag__dot, .hero__scroll-line::after { animation: none !important; }
  html.has-cursor * { cursor: auto !important; }
  .cursor { display: none !important; }
  *, *::before, *::after { transition-duration: .01s !important; }
}
