/* ============================================================
   Alex Murillo — Personal Site
   ============================================================ */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

:root {
  --ink: #1a1611;
  --ink-soft: #4b4239;
  --muted: #857868;
  --line: rgba(26, 22, 17, 0.22);
  --line-soft: rgba(26, 22, 17, 0.12);
  --cream: #efe7d9;
  --taupe: #c9bdad;
  --sand: #d8c9b6;
  --cognac: #a9673b;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: radial-gradient(135% 130% at 62% 36%, #d8ccbc 0%, #c9bdad 56%, #cdbfab 100%);
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

img, video, picture { display: block; max-width: 100%; }

::selection { background: var(--ink); color: var(--cream); }

/* ---------- WebGL bg + grain ---------- */
#bg-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.4;
}
.grain {
  position: fixed; inset: -50%; z-index: 1; pointer-events: none;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0,0)} 20%{transform:translate(-4%,3%)}
  40%{transform:translate(3%,-5%)} 60%{transform:translate(-3%,4%)} 80%{transform:translate(5%,-2%)}
}

body > *:not(#bg-canvas):not(.grain):not(.cursor):not(.loader) { position: relative; z-index: 2; }

/* ---------- custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ink); mix-blend-mode: normal;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), background .3s, opacity .3s;
  display: grid; place-items: center;
}
.cursor.is-hover { width: 68px; height: 68px; background: rgba(26,22,17,.14); backdrop-filter: blur(2px); }
.cursor.is-media { width: 92px; height: 92px; background: rgba(26,22,17,.9); }
.cursor__label {
  font-family: var(--sans); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cream); opacity: 0; transition: opacity .25s; white-space: nowrap; font-weight: 500;
}
.cursor.is-media .cursor__label { opacity: 1; }
.cursor.is-hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } body { cursor: auto; } }

/* ---------- preloader (only shown when intro animation is active) ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9000; background: #cabeae;
  display: none; place-items: center; gap: 0;
}
html.js-anim .loader { display: grid; }
.loader__mark { font-family: var(--serif); font-weight: 600; font-size: clamp(3rem,10vw,7rem); letter-spacing: -.02em; color: var(--ink); overflow: hidden; }
.loader__mark span { display: inline-block; transform: translateY(110%); }
.loader__bar { position: absolute; bottom: 0; left: 0; height: 2px; width: 100%; background: transparent; }
.loader__bar i { display: block; height: 100%; width: 0; background: var(--ink); }
.loaded .loader { pointer-events: none; }

/* ---------- shared ---------- */
.eyebrow {
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.arw { display: inline-block; transition: transform .4s var(--ease); }
a:hover .arw { transform: translateX(4px); }

.pill {
  --pv: .62em; --ph: 1.25em;
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-weight: 500; font-size: clamp(.92rem, 1vw, 1.05rem);
  padding: var(--pv) var(--ph); border-radius: 999px;
  text-decoration: none; color: var(--ink); white-space: nowrap;
  border: 1.5px solid var(--line); background: transparent;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease);
  will-change: transform;
}
.pill--outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pill--solid { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pill--solid:hover { background: #000; }
.pill--lg { --pv: .85em; --ph: 1.7em; font-size: clamp(1rem, 1.3vw, 1.25rem); }

.link-underline {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--ink); text-decoration: none; display: inline-flex; gap: .4em; align-items: baseline;
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .5s var(--ease); padding-bottom: .1em;
}
.link-underline:hover { background-size: 100% 1px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 1.15rem var(--gutter);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(206,194,178,.55), rgba(206,194,178,0));
}
.nav__mark {
  font-family: var(--sans); font-weight: 700; font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  letter-spacing: -.01em; text-decoration: none; color: var(--ink); justify-self: start;
}
.nav__links {
  justify-self: center; display: flex; align-items: center; gap: .9rem;
  font-size: clamp(1rem, 1.2vw, 1.2rem); color: var(--ink);
}
.nav__links a { color: inherit; text-decoration: none; position: relative; }
.nav__links a::after {
  content:""; position:absolute; left:0; bottom:-3px; width:100%; height:1.5px; background:var(--ink);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links span { color: var(--muted); }
.nav__cta { justify-self: end; }
@media (max-width: 720px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  display: grid;
  grid-template-columns: 39% 61%;
  align-items: end;
  padding: 0 var(--gutter) 0;
  isolation: isolate;
}
.hero__photo {
  grid-column: 1; align-self: end; justify-self: start;
  width: 100%; max-width: 520px; margin-bottom: 4.2rem;
}
html.js-anim .hero__photo { clip-path: inset(0 0 100% 0); }
.hero__photo img { width: 100%; height: auto; }
/* feather the empty studio area above his head so the photo melts into the bg */
@media (min-width: 901px) {
  .hero__photo {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 11%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 11%);
  }
}
.hero__copy {
  grid-column: 2; align-self: center; padding-bottom: 2rem; padding-left: clamp(.5rem, 1.4vw, 1.5rem);
}
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.1rem, 5.3vw, 5rem); line-height: .93; letter-spacing: -.025em;
  text-transform: uppercase; color: var(--ink); white-space: nowrap;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line__in { display: block; }
html.js-anim .hero__title .line__in { transform: translateY(110%); }
.hero__title em { font-style: normal; color: var(--ink); font-weight: 400; }
.hero__sub {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(1.15rem, 1.9vw, 1.75rem); line-height: 1.2; color: var(--ink-soft);
  margin-top: clamp(1.2rem, 2.5vw, 2rem); max-width: 22ch;
}
.hero__pills { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: clamp(1.4rem, 2.6vw, 2.2rem); }

.hero__byline {
  position: absolute; left: var(--gutter); bottom: 4.4rem;
  font-family: var(--sans); font-size: clamp(1rem, 1.3vw, 1.25rem); color: var(--ink-soft);
}
.hero__meta {
  position: absolute; left: 0; bottom: 0; width: 100%;
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1rem var(--gutter); border-top: 1px solid var(--line-soft);
  font-size: clamp(.82rem, 1vw, 1rem); letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.hero__meta a { color: inherit; text-decoration: none; }
.hero__meta a:hover { color: var(--ink); }

.scroll-hint {
  position: absolute; left: 50%; bottom: 3.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.scroll-hint i { width: 1px; height: 34px; background: var(--muted); transform-origin: top; animation: scrolly 2s var(--ease) infinite; }
@keyframes scrolly { 0%{transform:scaleY(0);opacity:0} 40%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(0);opacity:0;transform-origin:bottom} }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr; align-items: start;
    padding-top: 6.5rem; gap: 1.5rem; min-height: auto;
  }
  .hero__photo {
    grid-column: 1; grid-row: 1; margin: 0 auto; max-width: 82%;
    border-radius: 18px; overflow: hidden;
  }
  .hero__copy { grid-column: 1; grid-row: 2; padding: 0; max-width: none; }
  .hero__title { font-size: clamp(1.8rem, 9.2vw, 3.3rem); letter-spacing: -.03em; }
  .hero__sub { max-width: none; }
  .hero__byline { position: static; margin: 1.5rem 0 5.5rem; }
  .scroll-hint { display: none; }
}

/* ============ WORK ============ */
.work { padding: clamp(6rem, 12vw, 11rem) var(--gutter) clamp(3rem, 6vw, 5rem); }
.section-head { display: flex; flex-direction: column; gap: 1rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-title {
  font-family: var(--serif); font-weight: 500; text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 6rem); line-height: .95; letter-spacing: -.02em; color: var(--ink);
}
.index { list-style: none; border-top: 1px solid var(--line); }
.index__row {
  position: relative; display: grid;
  grid-template-columns: auto 1fr auto; align-items: baseline; gap: 1.5rem;
  padding: clamp(1.6rem, 3.2vw, 2.8rem) 0; border-bottom: 1px solid var(--line);
  cursor: none; transition: padding-left .5s var(--ease), color .5s var(--ease);
}
.index__row::before {
  content:""; position:absolute; inset:0; background: var(--accent, var(--cognac));
  transform: scaleY(0); transform-origin: bottom; z-index:-1;
  transition: transform .55s var(--ease); border-radius: 4px;
}
.index__no { font-family: var(--sans); font-weight: 500; font-size: .95rem; color: var(--muted); letter-spacing: .05em; transition: color .5s; }
.index__title {
  font-family: var(--serif); font-weight: 500; text-transform: uppercase;
  font-size: clamp(1.9rem, 5vw, 4rem); line-height: 1; letter-spacing: -.01em; color: var(--ink); transition: color .5s;
}
.index__tag { font-family: var(--sans); font-size: clamp(.82rem,1vw,1rem); color: var(--muted); text-align: right; letter-spacing: .04em; transition: color .5s; }
.index__desc {
  grid-column: 2 / 3; max-width: 52ch; color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.45;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .55s var(--ease), opacity .45s var(--ease), margin-top .55s var(--ease), color .5s;
}
@media (hover: hover) {
  .index__row:hover { padding-left: clamp(1rem, 2.5vw, 2.5rem); }
  .index__row:hover::before { transform: scaleY(1); transform-origin: top; }
  .index__row:hover .index__no,
  .index__row:hover .index__title,
  .index__row:hover .index__tag { color: var(--cream); }
  .index__row:hover .index__desc { max-height: 8rem; opacity: 1; margin-top: 1.1rem; color: rgba(239,231,217,.85); }
  .index__row:hover .index__no { padding-left: .6rem; }
}
/* touch: always show desc */
@media (hover: none) {
  .index__desc { max-height: none; opacity: 1; margin-top: 1rem; }
}
@media (max-width: 640px) {
  .index__row { grid-template-columns: auto 1fr; }
  .index__tag { grid-column: 2; text-align: left; margin-top: .3rem; }
  .index__desc { grid-column: 1 / -1; }
}

/* ============ PROOF ============ */
.proof {
  text-align: center; padding: clamp(3rem, 8vw, 7rem) var(--gutter) clamp(2rem, 4vw, 3.5rem);
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
}
.proof__big { display: flex; align-items: flex-start; justify-content: center; line-height: .82; }
.proof__num { font-family: var(--serif); font-weight: 600; letter-spacing: -.03em; color: var(--ink);
  font-size: clamp(5rem, 20vw, 17rem); font-variant-numeric: tabular-nums; }
.proof__plus { font-family: var(--serif); font-weight: 500; color: var(--cognac);
  font-size: clamp(2.5rem, 9vw, 7rem); line-height: 1; margin-top: .12em; }
.proof__label { font-family: var(--sans); font-size: clamp(1.05rem, 1.7vw, 1.55rem); line-height: 1.35;
  color: var(--ink-soft); max-width: 30ch; }
.proof__stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 4rem); justify-content: center; margin-top: 1rem; }
.proof__stat { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.proof__stat b { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--ink); }
.proof__stat span { font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.proof__chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1rem; }
.proof__chips span { font-family: var(--sans); font-size: clamp(.8rem, 1vw, .95rem); font-weight: 500;
  letter-spacing: .04em; color: var(--ink-soft); border: 1.5px solid var(--line); border-radius: 999px; padding: .5em 1.1em; }

/* ============ SELECTED WORK (cards) ============ */
.workgrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(clamp(280px, 30vw, 400px), 1fr));
  gap: clamp(1rem, 1.8vw, 1.6rem); margin-top: clamp(2rem, 4vw, 3.5rem);
}
.wcard {
  position: relative; display: block; border-radius: 14px; overflow: hidden; text-decoration: none;
  aspect-ratio: 16 / 10; background: #cabeae; box-shadow: 0 20px 40px -30px rgba(26,22,17,.55);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); cursor: none; isolation: isolate;
}
.wcard:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -35px rgba(26,22,17,.6); }
.wcard__img { width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .7s var(--ease), filter .5s; }
.wcard:hover .wcard__img { transform: scale(1.04); }
.wcard__frame { position: absolute; inset: 0; border: 0; width: 100%; height: 100%; opacity: 0;
  transition: opacity .5s; pointer-events: none; background: #cabeae; z-index: 1; }
.wcard.is-live .wcard__frame { opacity: 1; }
.wcard__grad { position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(20,16,12,.82) 0%, rgba(20,16,12,.15) 42%, rgba(20,16,12,0) 70%);
  pointer-events: none; }
.wcard__meta { position: absolute; left: 0; bottom: 0; z-index: 3; padding: 1.15rem 1.25rem; width: 100%;
  display: flex; flex-direction: column; gap: .25rem; }
.wcard__client { font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sand); }
.wcard__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.2rem, 1.8vw, 1.6rem); line-height: 1.05; color: #fff; }
.wcard__tag { font-family: var(--sans); font-size: .85rem; color: rgba(255,255,255,.7); }
.wcard__live { position: absolute; top: .9rem; right: .9rem; z-index: 3;
  font-family: var(--sans); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); background: rgba(255,255,255,.9); border-radius: 999px; padding: .4em .85em;
  opacity: 0; transform: translateY(-6px); transition: opacity .4s, transform .4s; }
.wcard:hover .wcard__live { opacity: 1; transform: none; }

/* ============ BUILD WALL ============ */
.wall { padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.wall__head { padding: 0 var(--gutter); display: flex; flex-direction: column; gap: .8rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.wall__title { font-family: var(--serif); font-weight: 500; text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 6rem); line-height: .92; letter-spacing: -.02em; color: var(--ink); }
.wall__sub { font-family: var(--sans); font-size: clamp(1rem, 1.3vw, 1.2rem); color: var(--ink-soft); max-width: 46ch; }
.wall__rows { display: flex; flex-direction: column; gap: clamp(.8rem, 1.4vw, 1.2rem); }
.wall__row { display: flex; width: max-content; gap: clamp(.8rem, 1.4vw, 1.2rem); will-change: transform; }
.wall__row.anim-l { animation: marq-l linear infinite; }
.wall__row.anim-r { animation: marq-r linear infinite; }
.wall:hover .wall__row { animation-play-state: paused; }
@keyframes marq-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marq-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.wtile { position: relative; flex: 0 0 auto; width: clamp(200px, 22vw, 280px); aspect-ratio: 16 / 10;
  border-radius: 10px; overflow: hidden; background: #cabeae; text-decoration: none; cursor: none;
  border: 1px solid rgba(26,22,17,.1);
  box-shadow: 0 12px 24px -18px rgba(26,22,17,.5); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.wtile::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); border-radius: 10px; }
.wtile img { width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .5s var(--ease); filter: saturate(.96); }
.wtile__cap { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  padding: .7rem .8rem; opacity: 0; transition: opacity .4s;
  background: linear-gradient(to top, rgba(20,16,12,.85), rgba(20,16,12,0) 65%); }
.wtile__cap b { font-family: var(--serif); font-weight: 500; font-size: .92rem; color: #fff; line-height: 1.1; }
.wtile__cap span { font-family: var(--sans); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sand); margin-top: .2rem; }
.wtile:hover { transform: scale(1.06); z-index: 5; box-shadow: 0 30px 50px -25px rgba(26,22,17,.6); }
.wtile:hover img { transform: scale(1.05); }
.wtile:hover .wtile__cap { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .wall__rows { flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 0 var(--gutter); }
  .wall__row { width: auto; flex-wrap: wrap; justify-content: center; animation: none !important; }
}
@media (max-width: 640px) {
  .wtile { width: 60vw; }
}

/* ============ REEL ============ */
.reel { padding: clamp(3rem, 6vw, 6rem) var(--gutter) clamp(5rem, 10vw, 9rem); }
.reel__label { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1.4rem; }
.reel__cta-text { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.reel__frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden;
  background: #1a1611; box-shadow: 0 40px 80px -40px rgba(26,22,17,.55); cursor: none;
}
.reel__video { width: 100%; height: 100%; object-fit: cover; }
.reel__sound {
  position: absolute; right: 1.1rem; bottom: 1.1rem; z-index: 3;
  font-family: var(--sans); font-weight: 500; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream); background: rgba(0,0,0,.35); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: .5em 1em; cursor: none;
}
.reel__sound-on { display: none; }
.reel.is-unmuted .reel__sound-off { display: none; }
.reel.is-unmuted .reel__sound-on { display: inline; }

/* ============ ABOUT ============ */
.about {
  display: grid; grid-template-columns: 42% 1fr; gap: clamp(2rem, 6vw, 6rem);
  align-items: center; padding: clamp(4rem, 9vw, 9rem) var(--gutter);
}
.about__media { border-radius: 16px; overflow: hidden; aspect-ratio: 3 / 4; }
.about__media picture { display: block; height: 100%; }
.about__media img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.about__copy { display: flex; flex-direction: column; gap: 1.4rem; align-items: flex-start; }
.about__lead {
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.08; letter-spacing: -.01em; color: var(--ink);
}
.about__body { font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.5; color: var(--ink-soft); max-width: 44ch; }
@media (max-width: 820px) {
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
}

/* ============ CONNECT ============ */
.connect {
  min-height: 92vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; gap: 1.6rem; padding: clamp(4rem, 10vw, 9rem) var(--gutter);
}
.connect__title {
  font-family: var(--serif); font-weight: 600; text-transform: uppercase;
  font-size: clamp(3.2rem, 14vw, 12rem); line-height: .9; letter-spacing: -.02em; color: var(--ink);
}
.connect__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1rem; }

/* ============ FOOT ============ */
.foot {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem var(--gutter); border-top: 1px solid var(--line-soft);
  font-size: clamp(.8rem, 1vw, .95rem); letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.foot a { color: inherit; text-decoration: none; }
.foot a:hover { color: var(--ink); }
.foot__top { justify-self: end; }

/* ---------- reveal defaults (JS-driven) ---------- */
[data-reveal], [data-reveal-lines] .rl-line span { will-change: transform, opacity; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__photo { clip-path: none !important; }
  .hero__title .line__in { transform: none !important; }
  .grain, #bg-canvas, .scroll-hint { display: none; }
  .loader { display: none; }
  body { cursor: auto; }
  .cursor { display: none; }
}

/* no-JS fallback: reveal everything */
.no-js .hero__photo { clip-path: none; }
.no-js .hero__title .line__in { transform: none; }
.no-js .loader { display: none; }
.no-js .cursor { display: none; }
.no-js body { cursor: auto; }
