/* ============================================================
   THEUNBEKNOWN — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');

/* ── VARIABLES ── */
:root {
  --red:   #CC0000;
  --black: #07070b;
  --white: #EFEFEF;
  --dim:   rgba(239,239,239,0.42);
  --ease:  cubic-bezier(0.76, 0, 0.24, 1);
  --eout:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color:inherit; }
button { background:none; border:none; font-family:inherit; }
img { display:block; }

/* ── STARS CANVAS ── */
#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── GRAIN ── */
.grain {
  position: fixed;
  inset: -60%;
  width: 220%; height: 220%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 1;
  animation: grainAnim 0.35s steps(1) infinite;
}
@keyframes grainAnim {
  0%,100%{transform:translate(0,0)}10%{transform:translate(-2%,-3%)}
  20%{transform:translate(3%,1%)}30%{transform:translate(-1%,4%)}
  40%{transform:translate(4%,-2%)}50%{transform:translate(-3%,2%)}
  60%{transform:translate(1%,-4%)}70%{transform:translate(-4%,2%)}
  80%{transform:translate(2%,-1%)}90%{transform:translate(-1%,3%)}
}


/* ── PAGE TRANSITION OVERLAY ── */
.pg-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  transition: opacity .55s var(--ease);
}
.pg-overlay.gone { opacity: 0; pointer-events: none; }

/* ── MOBILE NAV ── */
.mob-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 8999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-nav a {
  font-weight: 800;
  font-size: clamp(2rem, 8vw, 3.8rem);
  letter-spacing: .06em;
  color: var(--white);
  transition: color .3s;
}
.mob-nav a:hover { color: var(--red); }
.mob-nav-slogan {
  font-size: .88rem;
  color: rgba(239,239,239,.28);
  letter-spacing: .22em;
  margin-top: 16px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s var(--ease), background .4s, backdrop-filter .4s;
}
nav.stuck {
  background: rgba(7,7,11,.88);
  backdrop-filter: blur(14px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.nav-logo {
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: .04em;
  line-height: 1;
  z-index: 9001;
}
.nav-logo .t { color: var(--red); }
.nav-logo .u { color: var(--white); }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(239,239,239,.48);
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .35s var(--ease);
}
.nav-links a:hover,
.nav-links a.on { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.on::after { width: 100%; }
.nav-cta {
  padding: 8px 20px !important;
  border: 1px solid rgba(204,0,0,.45) !important;
  color: var(--red) !important;
  transition: background .3s, color .3s !important;
}
.nav-cta:hover { background: var(--red) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 9001;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: all .35s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── FOOTER ── */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 36px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.05);
  gap: 20px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-tu {
  width: 38px;
  height: auto;
  opacity: 0.55;
  filter: brightness(0.9);
}
.footer-brand {
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em;
}
.footer-brand .t {
  color: var(--red);
  transition: text-shadow .4s ease;
}
.footer-brand .u {
  color: rgba(239,239,239,.32);
  transition: color .4s ease;
}
.footer-brand:hover .t { text-shadow: 0 0 16px rgba(204,0,0,.55); }
.footer-brand:hover .u { color: rgba(239,239,239,.88); }
.footer-center {
  font-size: .58rem;
  letter-spacing: .12em;
  color: rgba(239,239,239,.18);
  text-align: center;
}
.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}
.footer-right a {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(239,239,239,.28);
  transition: color .3s;
}
.footer-right a:hover { color: var(--red); }

/* ── SCROLL REVEAL ── */
[data-r] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s var(--eout);
}
[data-r].in { opacity: 1; transform: none; }
[data-r][data-d="1"] { transition-delay: .1s; }
[data-r][data-d="2"] { transition-delay: .2s; }
[data-r][data-d="3"] { transition-delay: .3s; }
[data-r][data-d="4"] { transition-delay: .45s; }
[data-r][data-d="5"] { transition-delay: .6s; }

/* ── BUTTONS ── */
.btn-r {
  display: inline-block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 13px 32px;
  background: var(--red);
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--eout);
}
.btn-r::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #a00000;
  transform: translateX(-101%);
  transition: transform .45s var(--ease);
}
.btn-r span { position: relative; z-index: 1; }
.btn-r:hover { transform: translateY(-2px); }
.btn-r:hover::before { transform: none; }

.btn-o {
  display: inline-block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1px solid rgba(239,239,239,.28);
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--eout);
}
.btn-o::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(239,239,239,.06);
  transform: translateX(-101%);
  transition: transform .45s var(--ease);
}
.btn-o span { position: relative; z-index: 1; }
.btn-o:hover { border-color: rgba(239,239,239,.6); transform: translateY(-2px); }
.btn-o:hover::before { transform: none; }

/* ── MARQUEE ── */
.marquee {
  position: relative;
  z-index: 2;
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: mq 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mq-w {
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .2em;
  color: var(--black);
  padding: 0 22px;
}
.mq-dot {
  display: inline-block;
  width: 3px; height: 3px;
  background: rgba(7,7,11,.35);
  border-radius: 50%;
  vertical-align: middle;
}

/* ────────────────────────────────────────────
   HOME PAGE
   ──────────────────────────────────────────── */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  z-index: 2;
}
.home-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 60px 60px;
  position: relative;
}
.home-hero-eyebrow {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .8s var(--eout) .4s forwards;
}
.home-hero-title {
  line-height: .88;
  overflow: hidden;
}
.hero-the {
  display: block;
  font-weight: 800;
  font-size: clamp(6rem, 14vw, 14rem);
  color: var(--red);
  letter-spacing: -.01em;
  text-shadow: 0 0 100px rgba(204,0,0,.2);
  transform: translateY(110%);
  animation: slideUp 1s var(--eout) .55s forwards;
}
.hero-unk {
  display: block;
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 4.5rem);
  color: var(--white);
  letter-spacing: .22em;
  transform: translateY(110%);
  animation: slideUp 1s var(--eout) .75s forwards;
}
.home-hero-slogan {
  font-weight: 400;
  font-size: clamp(.95rem, 2vw, 1.25rem);
  color: rgba(239,239,239,.45);
  letter-spacing: .25em;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp .8s var(--eout) 1.2s forwards;
}
.home-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp .8s var(--eout) 1.45s forwards;
}
.home-hero-right {
  position: relative;
  overflow: hidden;
}
.home-hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.06);
  filter: brightness(.65);
  animation: kenBurns 12s ease-in-out infinite alternate;
}
.home-hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 25%),
              linear-gradient(to top, var(--black) 0%, transparent 25%);
  z-index: 1;
}
@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
@keyframes slideUp {
  to { transform: translateY(0); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.home-scroll-cue {
  position: absolute;
  bottom: 36px; left: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  opacity: 0;
  animation: fadeUp .8s var(--eout) 2s forwards;
}
.home-scroll-line {
  width: 44px; height: 1px;
  background: var(--red);
  transform-origin: left;
  animation: pulseLine 1.8s ease-in-out infinite alternate;
}
@keyframes pulseLine {
  from { transform: scaleX(.3); opacity: .5; }
  to   { transform: scaleX(1);  opacity: 1;  }
}
.home-scroll-cue span {
  font-size: .55rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(239,239,239,.3);
}

/* Featured works */
.feat {
  position: relative;
  z-index: 2;
  padding: 120px 60px;
}
.feat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px;
}
.feat-label {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
}
.feat-all {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(239,239,239,.38);
  border-bottom: 1px solid rgba(239,239,239,.15);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.feat-all:hover { color: var(--red); border-color: var(--red); }
.feat-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 3px;
}
.feat-item {
  position: relative;
  overflow: hidden;
}
.feat-item.tall { grid-row: span 2; }
.feat-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: brightness(.78);
  transition: transform .85s var(--ease), filter .5s ease;
}
.feat-item:hover img { transform: scale(1); filter: brightness(1); }
.feat-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--red);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  z-index: 2;
}
.feat-item:hover::after { opacity: 1; }

/* Services strip */
.home-svcs {
  position: relative;
  z-index: 2;
  padding: 0 60px 130px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-svcs-text .feat-label { margin-bottom: 20px; }
.home-svcs-heading {
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  letter-spacing: -.01em;
  line-height: .92;
  margin-bottom: 44px;
}
.home-svcs-heading span { color: var(--red); }
.svc-list { list-style: none; }
.svc-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  font-size: clamp(.95rem, 2vw, 1.25rem);
  font-weight: 600;
  color: rgba(239,239,239,.55);
  transition: color .35s;
  letter-spacing: .01em;
}
.svc-list li:hover { color: var(--white); }
.svc-n {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--red);
  opacity: .7;
}
.svc-arrow { font-size: .75rem; opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s; }
.svc-list li:hover .svc-arrow { opacity: 1; transform: none; }
.home-svcs-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.home-svcs-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.82);
  transition: filter .6s, transform .8s var(--ease);
  transform: scale(1.03);
}
.home-svcs-img:hover img { filter: brightness(1); transform: scale(1); }

/* ────────────────────────────────────────────
   WORK PAGE
   ──────────────────────────────────────────── */
.work-header {
  position: relative;
  z-index: 2;
  padding: 170px 60px 70px;
}
.work-h1 {
  font-weight: 800;
  font-size: clamp(2.8rem, 10vw, 11rem);
  letter-spacing: -.02em;
  line-height: .85;
}
.work-h1 .r { color: var(--red); }
.work-sub {
  font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--dim);
  margin-top: 28px;
  letter-spacing: .04em;
}
.work-grid {
  position: relative;
  z-index: 2;
  padding: 0 60px 130px;
  columns: 3 280px;
  column-gap: 4px;
}
.wg-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;

}
.wg-item img {
  width: 100%;
  display: block;
  transform: scale(1.04);
  filter: brightness(.8);
  transition: transform .8s var(--ease), filter .5s ease;
}
.wg-item:hover img { transform: scale(1); filter: brightness(1); }
.wg-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--red);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.wg-item:hover::after { opacity: 1; }

/* ────────────────────────────────────────────
   PRE-MADE PAGE
   ──────────────────────────────────────────── */
.pm-header {
  position: relative;
  z-index: 2;
  padding: 170px 60px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.pm-h1 {
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 9rem);
  letter-spacing: -.01em;
  line-height: .88;
}
.pm-h1 span { color: var(--red); }
.pm-sub {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--dim);
  max-width: 320px;
  text-align: right;
  line-height: 1.65;
}
.pm-grid {
  position: relative;
  z-index: 2;
  padding: 0 60px 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.pm-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;

}
.pm-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: brightness(.72);
  transition: transform .7s var(--ease), filter .45s;
}
.pm-item:hover img { transform: scale(1); filter: brightness(1); }
.pm-ov {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: rgba(7,7,11,0);
  transition: background .4s;
}
.pm-item:hover .pm-ov { background: rgba(7,7,11,.62); }
.pm-view {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  padding: 9px 18px;
  border: 1px solid rgba(239,239,239,.5);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s .08s, transform .3s .08s, background .3s, border-color .3s;
}
.pm-item:hover .pm-view { opacity: 1; transform: none; }
.pm-view:hover { background: var(--red); border-color: var(--red); }

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(7,7,11,.96);
  backdrop-filter: blur(18px);
  z-index: 99995;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s;
}
.lb.open { opacity: 1; pointer-events: all; }
.lb-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 880px;
  width: 92%;
  gap: 60px;
  align-items: center;
}
.lb-img { aspect-ratio: 1; overflow: hidden; }
.lb-img img { width: 100%; height: 100%; object-fit: cover; }
.lb-tag {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.lb-name {
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: .01em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 18px;
}
.lb-desc {
  font-weight: 400;
  font-size: 1rem;
  color: var(--dim);
  line-height: 1.75;
  margin-bottom: 12px;
}
.lb-note {
  font-size: .66rem;
  color: rgba(239,239,239,.22);
  letter-spacing: .06em;
  margin-bottom: 30px;
}
.lb-close {
  position: absolute;
  top: 28px; right: 36px;
  font-size: 1.15rem;
  color: rgba(239,239,239,.35);
  transition: color .3s;
}
.lb-close:hover { color: var(--red); }

/* ────────────────────────────────────────────
   LICENSE PAGE
   ──────────────────────────────────────────── */
.lic-hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 60px;
  overflow: hidden;
}
.lic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lic-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.28);
  transform: scale(1.04);
}
.lic-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(7,7,11,.15) 0%,
    rgba(7,7,11,.88) 100%);
}
.lic-content { position: relative; z-index: 2; }
.ag-logo {
  width: 200px;
  margin: 0 auto 44px;
  filter: grayscale(1) contrast(6) invert(1);
  opacity: .78;
  mix-blend-mode: screen;
}
.lic-h1 {
  font-weight: 800;
  font-size: clamp(2.8rem, 8.5vw, 9rem);
  letter-spacing: -.01em;
  line-height: .88;
  margin-bottom: 22px;
}
.lic-h1 span { color: var(--red); }
.lic-sub {
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  color: var(--dim);
  margin: 0 auto 50px;
  line-height: 1.7;
  max-width: 540px;
}
.lic-works {
  position: relative;
  z-index: 2;
  padding: 80px 60px 130px;
}
.lic-works-label {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 40px;
  text-align: center;
}
.lic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-bottom: 60px;
}
.lic-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.lic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.75);
  transition: filter .5s, transform .7s var(--ease);
  transform: scale(1.04);
}
.lic-item:hover img { filter: brightness(1); transform: scale(1); }

/* ────────────────────────────────────────────
   SERVICES PAGE
   ──────────────────────────────────────────── */
.sv-hero {
  position: relative;
  z-index: 2;
  padding: 170px 60px 100px;
}
.sv-h1 {
  font-weight: 800;
  font-size: clamp(4rem, 13vw, 13rem);
  letter-spacing: -.015em;
  line-height: .86;
}
.sv-h1 .r { color: var(--red); }
.sv-intro {
  font-weight: 400;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: var(--dim);
  max-width: 580px;
  margin-top: 36px;
  line-height: 1.75;
}
.sv-list {
  position: relative;
  z-index: 2;
  padding: 0 60px;
}
.sv-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 40px;
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,.055);
  align-items: start;
  transition: padding-left .3s var(--eout);
}
.sv-row:last-child { border-bottom: 1px solid rgba(255,255,255,.055); }
.sv-row:hover { padding-left: 12px; }
.sv-num {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--red);
  padding-top: 8px;
}
.sv-name {
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: .01em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.sv-desc {
  font-weight: 400;
  font-size: 1rem;
  color: var(--dim);
  line-height: 1.75;
  max-width: 380px;
}
.sv-lnk {
  padding-top: 8px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(239,239,239,.3);
  white-space: nowrap;
  transition: color .3s;
}
.sv-row:hover .sv-lnk { color: var(--red); }

.sv-cta {
  position: relative;
  z-index: 2;
  padding: 100px 60px 130px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.sv-cta-text {
  flex: 1;
}
.sv-cta-head {
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: -.01em;
  line-height: .9;
  margin-bottom: 20px;
}
.sv-cta-head span { color: var(--red); }
.sv-cta-sub {
  font-size: 1.1rem;
  color: var(--dim);
  line-height: 1.6;
}
.sv-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ────────────────────────────────────────────
   STORE PAGE
   ──────────────────────────────────────────── */
.store-hero {
  position: relative;
  z-index: 2;
  padding: 170px 60px 80px;
}
.store-h1 {
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 12rem);
  letter-spacing: -.015em;
  line-height: .86;
}
.store-h1 span { color: var(--red); }
.store-sub {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--dim);
  margin-top: 24px;
  line-height: 1.6;
}
.store-embed {
  position: relative;
  z-index: 2;
  padding: 0 60px 130px;
}
.store-frame {
  border: 1px solid rgba(255,255,255,.05);
  background: #0b0b0f;
  overflow: hidden;
}

/* ────────────────────────────────────────────
   ABOUT PAGE
   ──────────────────────────────────────────── */

/* -- ab- prefix classes (v2 about.html) -- */
.ab-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  overflow: hidden;
}
.ab-img {
  position: relative;
  overflow: hidden;
}
.ab-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.72);
  transform: scale(1.04);
  transition: transform 1.2s var(--ease), filter .8s;
}
.ab-img:hover img { transform: scale(1); filter: brightness(.88); }
.ab-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black) 100%);
}
.ab-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 60px 80px 40px;
  position: relative;
  z-index: 2;
}
.ab-eyebrow {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.ab-h1 {
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 6rem);
  letter-spacing: -.015em;
  line-height: .88;
}
.ab-h1 .t { color: var(--red); }
.ab-h1 .u { color: var(--white); }

.ab-bio {
  position: relative;
  z-index: 2;
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.04);
}
.ab-quote {
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: var(--white);
  line-height: 1.5;
  letter-spacing: .01em;
  position: sticky;
  top: 120px;
}
.ab-p {
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--dim);
  line-height: 1.9;
  margin-bottom: 28px;
}
.ab-p:last-child { margin-bottom: 0; }

.ab-strip {
  position: relative;
  z-index: 2;
  display: flex;
  overflow-x: auto;
  gap: 3px;
  scrollbar-width: none;
}
.ab-strip::-webkit-scrollbar { display: none; }
.ab-strip img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(.7);
  transition: filter .5s, transform .6s var(--ease);
  transform: scale(1.03);
}
.ab-strip img:hover { filter: brightness(1); transform: scale(1); }

.ab-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin: 80px 0;
}
.ab-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  gap: 12px;
  border-right: 1px solid rgba(255,255,255,.05);
  text-align: center;
}
.ab-stat:last-child { border-right: none; }
.ab-num {
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--white);
}
.ab-num .r { color: var(--red); }
.ab-label {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(239,239,239,.32);
}

.ab-contact {
  position: relative;
  z-index: 2;
  padding: 100px 60px 130px;
  background: linear-gradient(to bottom, transparent, rgba(7,7,11,.6));
}
.ab-contact-inner { max-width: 900px; margin: 0 auto; }
.ab-contact-eyebrow {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.ab-contact-h {
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  letter-spacing: -.015em;
  line-height: .88;
  margin-bottom: 20px;
}
.ab-contact-sub {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 56px;
}
.ab-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  margin-bottom: 56px;
}
.ab-card {
  background: var(--black);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.04);
  transition: border-color .3s, background .3s;
  position: relative;
}
.ab-card svg {
  width: 18px; height: 18px;
  color: rgba(239,239,239,.2);
  transition: color .3s, transform .3s var(--eout);
  margin-top: auto;
}
.ab-card:hover {
  border-color: rgba(204,0,0,.3);
  background: rgba(204,0,0,.04);
}
.ab-card:hover svg { color: var(--red); transform: translate(4px, -4px); }
.ab-card-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
}
.ab-card-action {
  font-weight: 600;
  font-size: clamp(.8rem, 1.5vw, 1rem);
  color: rgba(239,239,239,.7);
  letter-spacing: .01em;
  transition: color .3s;
}
.ab-card:hover .ab-card-action { color: var(--white); }
.ab-cta-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* old .about-hero etc kept for any legacy reference */
.about-hero {
  position: relative;
  z-index: 2;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 140px 60px 80px;
}
.about-txt .feat-label { margin-bottom: 22px; }
.about-h1 {
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  letter-spacing: -.01em;
  line-height: .88;
  margin-bottom: 36px;
}
.about-h1 span { color: var(--red); }
.about-bio {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--dim);
  margin-bottom: 36px;
}
.about-bio strong {
  color: var(--white);
  font-style: italic;
  font-weight: 400;
}
.about-links { display: flex; gap: 22px; flex-wrap: wrap; }
.about-link {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(239,239,239,.35);
  position: relative;
  padding-bottom: 2px;
  transition: color .3s;
}
.about-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .35s;
}
.about-link:hover { color: var(--red); }
.about-link:hover::after { width: 100%; }

.about-img-wrap { position: relative; }
.about-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.8);
  transform: scale(1.03);
  transition: transform .8s var(--ease), filter .5s;
}
.about-img:hover img { transform: scale(1); filter: brightness(.95); }
.about-frame {
  position: absolute;
  top: -10px; left: -10px;
  right: 10px; bottom: 10px;
  border: 1px solid rgba(204,0,0,.28);
  pointer-events: none;
}

/* Contact */
.contact {
  position: relative;
  z-index: 2;
  padding: 120px 60px 130px;
  text-align: center;
}
.contact-h2 {
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 8.5rem);
  letter-spacing: -.01em;
  line-height: .88;
  margin-bottom: 22px;
}
.contact-h2 span { color: var(--red); }
.contact-sub {
  font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 44px;
}
.contact-divider {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  margin: 0 auto 44px;
}
.contact-email {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(1rem, 2.8vw, 1.8rem);
  letter-spacing: .08em;
  color: var(--white);
  border-bottom: 1px solid rgba(204,0,0,.3);
  padding-bottom: 4px;
  margin-bottom: 60px;
  transition: color .3s, border-color .3s;
}
.contact-email:hover { color: var(--red); border-color: var(--red); }
.contact-socials {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.contact-socials a {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(239,239,239,.3);
  transition: color .3s;
}
.contact-socials a:hover { color: var(--red); }

/* ────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 24px 40px; }
  nav.stuck { padding: 16px 40px; }
  .home-hero-left { padding: 130px 40px 60px; }
  .feat, .home-svcs { padding-left: 40px; padding-right: 40px; }
  .home-svcs { gap: 50px; }
  .work-header, .pm-header, .sv-hero, .store-hero, .about-hero { padding-left: 40px; padding-right: 40px; }
  .work-grid, .pm-grid, .sv-list, .sv-cta, .store-embed, .contact, .lic-hero, .lic-works { padding-left: 40px; padding-right: 40px; }
  .ab-bio, .ab-contact { padding-left: 40px; padding-right: 40px; }
  .ab-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-grid { grid-template-columns: repeat(4, 1fr); }
  .lic-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer { padding: 28px 40px; }
}
@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; }
  .home-hero-right { display: none; }
  .home-hero-left { padding: 130px 30px 60px; }
  .feat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .feat-item.tall { grid-row: auto; }
  .home-svcs { grid-template-columns: 1fr; padding-bottom: 80px; }
  .home-svcs-img { display: none; }
  .about-hero { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .ab-hero { grid-template-columns: 1fr; min-height: auto; }
  .ab-img { height: 60vw; }
  .ab-img::after { background: linear-gradient(to bottom, transparent 60%, var(--black) 100%); }
  .ab-text { padding: 40px 30px 60px; }
  .ab-h1 { font-size: clamp(1.6rem, 7vw, 3.5rem); }
  .ab-bio { grid-template-columns: 1fr; gap: 40px; padding: 70px 30px; }
  .ab-quote { position: static; font-size: 1.2rem; }
  .ab-stats { grid-template-columns: repeat(3, 1fr); }
  .ab-contact-grid { grid-template-columns: 1fr 1fr; }
  .ab-contact { padding-left: 30px; padding-right: 30px; }
  .lb-wrap { grid-template-columns: 1fr; max-width: 400px; gap: 30px; }
  .sv-row { grid-template-columns: 44px 1fr; }
  .sv-lnk { display: none; }
  .lic-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  nav.stuck { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .work-header, .pm-header, .sv-hero, .store-hero, .about-hero { padding-left: 24px; padding-right: 24px; padding-top: 120px; }
  .work-grid { columns: 2; padding: 0 24px 80px; }
  .pm-grid { grid-template-columns: 1fr 1fr; padding: 0 24px 60px; }
  .feat { padding: 80px 24px; }
  .feat-grid { grid-template-columns: 1fr; }
  .home-svcs, .sv-list, .sv-cta, .store-embed, .contact, .lic-hero, .lic-works { padding-left: 24px; padding-right: 24px; }
  .ab-bio, .ab-contact { padding-left: 24px; padding-right: 24px; }
  .ab-text { padding: 30px 24px 50px; }
  .ab-stats { grid-template-columns: 1fr; }
  .ab-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); padding: 40px 24px; }
  .ab-stat:last-child { border-bottom: none; }
  .ab-contact-grid { grid-template-columns: 1fr; }
  .ab-cta-wrap { flex-direction: column; }
  .home-scroll-cue { left: 24px; }
  .site-footer { padding: 24px; grid-template-columns: 1fr; text-align: center; }
  .footer-left { justify-content: center; }
  .footer-right { justify-content: center; }
  .lic-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .home-hero-left { padding: 110px 20px 50px; }
  .feat { padding: 60px 20px; }
  .pm-grid { grid-template-columns: 1fr 1fr; }
  .ab-hero { min-height: auto; }
  .ab-img { height: 75vw; }
  .ab-strip img { width: 160px; height: 210px; }
}

/* ============================================================
   TOP NAV v2 (inner pages — replaces old nav)
   ============================================================ */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 28px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s var(--ease), background .4s, backdrop-filter .4s;
}
.top-nav.stuck {
  background: rgba(7,7,11,.92);
  backdrop-filter: blur(18px);
  padding: 16px 52px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.top-nav-logo {
  display: flex;
  align-items: center;
}
.top-nav-tu {
  height: 36px;
  width: auto;
  display: block;
  opacity: .88;
  transition: opacity .2s;
}
.top-nav-logo:hover .top-nav-tu { opacity: 1; }

/* ── MENU TRIGGER ── */
.menu-trigger {
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: none;

  font-family: inherit;
  padding: 0;
}
.mt-text {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(239,239,239,.32);
  transition: color .3s;
}
.mt-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mt-lines span {
  display: block;
  height: 1px;
  background: rgba(239,239,239,.32);
  transition: width .35s var(--ease), background .3s, transform .35s var(--ease), opacity .25s;
}
.mt-lines span:nth-child(1) { width: 22px; }
.mt-lines span:nth-child(2) { width: 14px; }
.menu-trigger:hover .mt-text { color: rgba(239,239,239,.85); }
.menu-trigger:hover .mt-lines span { background: var(--red); }
.menu-trigger:hover .mt-lines span:nth-child(2) { width: 22px; }
/* open state */
.menu-trigger.open .mt-text { color: rgba(239,239,239,.5); }
.menu-trigger.open .mt-lines span:nth-child(1) { transform: translateY(3px) rotate(45deg); width: 18px; background: rgba(239,239,239,.5); }
.menu-trigger.open .mt-lines span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); width: 18px; background: rgba(239,239,239,.5); }

/* ============================================================
   FULLSCREEN SITE MENU
   ============================================================ */
.site-menu {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  background: rgba(7,7,11,.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease);
  overflow: hidden;
}
.site-menu.open {
  opacity: 1;
  pointer-events: all;
}

/* artwork behind menu */
.sm-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.sm-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.09) saturate(.4);
  opacity: 0;
  transition: opacity .55s ease;
}
.sm-art img.sm-vis { opacity: 1; }

/* menu links list */
.sm-inner {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
}

.sm-link {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .55s var(--eout), transform .55s var(--eout),
              padding-left .38s var(--eout), border-color .3s;
}
.sm-link:first-child { border-top: 1px solid rgba(255,255,255,.04); }
.site-menu.open .sm-link { opacity: 1; transform: none; }
.site-menu.open .sm-link:nth-child(1) { transition-delay: .05s; }
.site-menu.open .sm-link:nth-child(2) { transition-delay: .1s;  }
.site-menu.open .sm-link:nth-child(3) { transition-delay: .15s; }
.site-menu.open .sm-link:nth-child(4) { transition-delay: .2s;  }
.site-menu.open .sm-link:nth-child(5) { transition-delay: .25s; }
.site-menu.open .sm-link:nth-child(6) { transition-delay: .3s;  }
.sm-link:hover {
  padding-left: 12px;
  border-bottom-color: rgba(204,0,0,.18);
}
.sm-num {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(204,0,0,.35);
  width: 26px;
  flex-shrink: 0;
  transition: color .3s;
  padding-top: 4px;
}
.sm-link:hover .sm-num { color: var(--red); }
.sm-text {
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 5.5rem);
  letter-spacing: -.01em;
  color: rgba(239,239,239,.13);
  line-height: 1;
  transition: color .35s;
}
.sm-link:hover .sm-text { color: var(--white); }
.sm-link.sm-active .sm-text { color: rgba(204,0,0,.6); }

.sm-close {
  position: absolute;
  top: 38px; right: 48px;
  font-size: 1rem;
  color: rgba(239,239,239,.2);
  z-index: 3;
  transition: color .3s, transform .4s var(--ease);
}
.sm-close:hover { color: var(--red); transform: rotate(90deg); }

.sm-meta {
  position: absolute;
  bottom: 36px; left: 80px; right: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transition: opacity .4s ease .35s;
}
.site-menu.open .sm-meta { opacity: 1; }
.sm-contact {
  font-size: .58rem;
  letter-spacing: .14em;
  color: rgba(239,239,239,.16);
}
.sm-socials { display: flex; gap: 22px; }
.sm-socials a {
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(239,239,239,.16);
  transition: color .3s;
}
.sm-socials a:hover { color: var(--red); }

/* Commission CTA in menu */
.sm-cta {
  position: absolute;
  top: 44px; left: 80px;
  z-index: 3;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(204,0,0,.45);
  border: 1px solid rgba(204,0,0,.2);
  padding: 7px 16px;
  transition: color .3s, border-color .3s, background .3s;
  opacity: 0;
  transition: opacity .4s ease .2s, color .3s, border-color .3s, background .3s;
}
.site-menu.open .sm-cta { opacity: 1; }
.sm-cta:hover { color: var(--white); border-color: var(--red); background: var(--red); }

/* ============================================================
   HOME v2 — SCATTERED SIGNAL
   ============================================================ */

/* artwork reveal layer */
.hw-art {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .75s ease;
}
.hw-art.hw-vis { opacity: 1; }
.hw-art-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(.2) saturate(.55);
}
.hw-art-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(7,7,11,.3) 0%, rgba(7,7,11,.85) 100%);
  z-index: 1;
}

/* homepage main */
.hw-main {
  position: relative;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* center logo block */
.hw-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  user-select: none;
  z-index: 3;
}
.hw-the {
  font-weight: 800;
  font-size: clamp(0.62rem, 1.4vw, 1.2rem);
  color: var(--red);
  letter-spacing: 0.58em;
  line-height: 1;
  opacity: 0;
  animation: hwUp 1.1s var(--eout) .15s forwards, hwGlow 5s ease-in-out 1.6s infinite;
  text-shadow: 0 0 40px rgba(204,0,0,.22);
  margin-bottom: 14px;
}
.hw-unk {
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 8rem);
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 0.88;
  opacity: 0;
  animation: hwUp 1.35s var(--eout) .28s forwards;
}
.hw-byline {
  font-weight: 400;
  font-size: clamp(.6rem, .9vw, .78rem);
  color: rgba(239,239,239,.2);
  letter-spacing: .22em;
  margin-top: 24px;
  opacity: 0;
  animation: hwFd 1s ease 1.1s forwards;
}
@keyframes hwUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hwUnk {
  from { opacity: 0; transform: translateY(14px); letter-spacing: .08em; }
  to   { opacity: 1; transform: none; letter-spacing: .32em; }
}
@keyframes hwGlow {
  0%, 100% { text-shadow: 0 0 60px rgba(204,0,0,.06); }
  50%       { text-shadow: 0 0 110px rgba(204,0,0,.2), 0 0 28px rgba(204,0,0,.08); }
}
@keyframes hwFd {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* scattered links */
.hw-nav { position: absolute; inset: 0; z-index: 4; }

.hw-link {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  opacity: 0;
  animation: hwFd 1.2s ease var(--dl, 1s) forwards;
}
.hw-n {
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(204,0,0,.18);
  transition: color .35s;
  line-height: 1;
}
.hw-t {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(239,239,239,.36);
  position: relative;
  line-height: 1;
  transition: color .4s, letter-spacing .4s var(--eout);
}
.hw-t::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .4s var(--eout);
}
.hw-link:hover .hw-n { color: var(--red); }
.hw-link:hover .hw-t {
  color: rgba(239,239,239,.88);
  letter-spacing: .36em;
}
.hw-link:hover .hw-t::after { width: 100%; }

/* bottom signal pulse */
.hw-signal {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  z-index: 4;
  overflow: hidden;
}
.hw-signal::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg,
    transparent 0%, var(--red) 30%, var(--red) 70%, transparent 100%);
  animation: sigRun 5s ease-in-out infinite;
  opacity: .4;
}
@keyframes sigRun {
  0%   { left: -100%; opacity: 0; }
  15%  { opacity: .5; }
  50%  { left: 0%; opacity: .55; }
  85%  { opacity: .3; }
  100% { left: 100%; opacity: 0; }
}

/* homepage fixed menu trigger (top-right, delayed fade in) */
.hw-menu-btn {
  position: fixed;
  top: 30px; right: 44px;
  z-index: 9001;
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: none;

  font-family: inherit;
  opacity: 0;
  animation: hwFd .8s ease 1.7s forwards;
}
/* reuse .mt-text / .mt-lines styles from .menu-trigger */
.hw-menu-btn .mt-text {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(239,239,239,.22);
  transition: color .3s;
}
.hw-menu-btn .mt-lines {
  display: flex; flex-direction: column; gap: 5px;
}
.hw-menu-btn .mt-lines span {
  display: block; height: 1px;
  background: rgba(239,239,239,.22);
  transition: width .35s var(--ease), background .3s, transform .35s var(--ease);
}
.hw-menu-btn .mt-lines span:nth-child(1) { width: 22px; }
.hw-menu-btn .mt-lines span:nth-child(2) { width: 14px; }
.hw-menu-btn:hover .mt-text { color: rgba(239,239,239,.75); }
.hw-menu-btn:hover .mt-lines span { background: var(--red); }
.hw-menu-btn:hover .mt-lines span:nth-child(2) { width: 22px; }
.hw-menu-btn.open .mt-lines span:nth-child(1) { transform: translateY(3px) rotate(45deg); width: 18px; }
.hw-menu-btn.open .mt-lines span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); width: 18px; }

/* corner marks on homepage */
.hw-corner-tl {
  position: absolute;
  top: 32px; left: 40px;
  z-index: 5;
  opacity: 0;
  animation: hwFd .8s ease 1.8s forwards;
}
.hw-favicon {
  width: 30px; height: auto;
  opacity: .42;
  filter: brightness(.75);
}
.hw-corner-br {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: .5rem;
  letter-spacing: .18em;
  color: rgba(239,239,239,.1);
  z-index: 5;
  opacity: 0;
  animation: hwFd .8s ease 2s forwards;
}

/* ── Mobile homepage ── */
@media (max-width: 768px) {
  .hw-main {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px 60px;
  }
  .hw-center {
    position: static;
    transform: none;
    text-align: center;
    margin-bottom: 54px;
  }
  .hw-nav {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  .hw-link {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: hwFd 1s ease var(--dl, 1s) forwards;
  }
  .hw-corner-tl { display: none; }
}
@media (max-width: 480px) {
  .hw-main { padding: 70px 20px 50px; }
  .hw-nav { gap: 20px; }
  .hw-unk { font-size: clamp(1.8rem, 7vw, 3.2rem); letter-spacing: .03em; }
  .hw-the { font-size: clamp(0.55rem, 1.2vw, 0.85rem); letter-spacing: .5em; }
}
@media (max-width: 900px) {
  .top-nav { padding: 22px 28px; }
  .top-nav.stuck { padding: 14px 28px; }
  .sm-inner { padding: 0 36px; }
  .sm-meta { left: 36px; right: 36px; }
  .sm-cta { left: 36px; }
  .sm-close { right: 28px; }
}
@media (max-width: 600px) {
  .sm-text { font-size: clamp(1.8rem, 10vw, 3.5rem); }
  .sm-inner { padding: 0 24px; }
  .sm-meta { left: 24px; right: 24px; flex-direction: column; gap: 10px; }
  .sm-cta { display: none; }
  .hw-menu-btn { right: 24px; top: 24px; }
}
@media (max-width: 480px) {
  .sm-link { padding: 8px 0; }
}

/* ============================================================
   LICENSE PAGE — PRE-MADE SECTION
   ============================================================ */
.lic-pm {
  position: relative;
  z-index: 2;
  padding: 80px 60px 130px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.lic-pm-hd {
  margin-bottom: 52px;
}
.lic-pm-hd-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.lic-pm-title {
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  letter-spacing: -.01em;
  line-height: .88;
}
.lic-pm-title .r { color: var(--red); }
.lic-pm-desc {
  font-weight: 400;
  font-size: 1rem;
  color: var(--dim);
  max-width: 300px;
  text-align: right;
  line-height: 1.75;
}
.lic-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 64px;
}
.lic-cta-note {
  font-size: 1rem;
  color: var(--dim);
  margin-top: 16px;
}

/* ============================================================
   RESPONSIVE POLISH
   ============================================================ */

/* ── 1100px ── */
@media (max-width: 1100px) {
  .lic-pm { padding-left: 40px; padding-right: 40px; }
  .pm-grid { padding-left: 40px; padding-right: 40px; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .pm-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── 768px ── */
@media (max-width: 768px) {
  /* license hero — ensure top padding clears nav */
  .lic-hero { padding-top: 110px; padding-bottom: 80px; }

  /* pre-made section in license */
  .lic-pm { padding: 60px 24px 80px; }
  .lic-pm-desc { text-align: left; max-width: 100%; }
  .lic-pm-hd-row { flex-direction: column; gap: 16px; align-items: flex-start; }

  /* lic-works tighter on mobile */
  .lic-works { padding-bottom: 80px; }

  /* services CTA — stack vertically on mobile */
  .sv-cta { flex-direction: column; align-items: flex-start; gap: 36px; }

  /* pm-sub left-aligned on mobile */
  .pm-sub { text-align: left; max-width: 100%; }
  .pm-header { flex-direction: column; align-items: flex-start; padding-top: 120px; }

  /* top-nav tighter on mobile */
  .top-nav { padding: 18px 24px; }
  .top-nav.stuck { padding: 12px 24px; }

  /* footer text slightly bigger on mobile for readability */
  .footer-center { font-size: .65rem; }
  .footer-right a { font-size: .65rem; }

  /* hide corner copyright on homepage mobile — overlaps content */
  .hw-corner-br { display: none; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  /* top-nav */
  .top-nav { padding: 16px 20px; }
  .top-nav.stuck { padding: 12px 20px; }

  /* work grid — single column on very small screens */
  .work-grid { columns: 1; padding: 0 20px 60px; }

  /* pm-grid in license */
  .pm-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .lic-pm { padding: 50px 20px 60px; }

  /* services list */
  .sv-row { gap: 16px; padding: 36px 0; }
  .sv-hero { padding-top: 100px; padding-bottom: 60px; }
  .sv-list { padding-left: 20px; padding-right: 20px; }
  .sv-cta { padding: 60px 20px 80px; }

  /* store */
  .store-hero { padding-top: 100px; padding-left: 20px; padding-right: 20px; }
  .store-embed { padding: 0 20px 80px; }

  /* about */
  .ab-text { padding: 24px 20px 40px; }
  .ab-bio { padding: 50px 20px; }
  .ab-contact { padding: 60px 20px 80px; }

  /* license */
  .lic-works { padding: 60px 20px 60px; }
  .lic-hero { padding-left: 20px; padding-right: 20px; }

  /* footer */
  .site-footer { padding: 20px; gap: 14px; }
  .footer-right { gap: 16px; flex-wrap: wrap; justify-content: center; }

}

/* ============================================================
   SERVICES — RECENT COMMISSIONS
   ============================================================ */
.sv-recent {
  position: relative;
  z-index: 2;
  padding: 100px 60px 0;
}
.sv-recent-label {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 40px;
}
.sv-recent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.sv-recent-item {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.sv-recent-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.8);
  transform: scale(1.04);
  transition: filter .5s, transform .8s var(--ease);
}
.sv-recent-item:hover img { filter: brightness(1); transform: scale(1); }
@media (max-width: 1100px) { .sv-recent { padding-left: 40px; padding-right: 40px; } }
@media (max-width: 768px) {
  .sv-recent { padding: 70px 24px 0; }
  .sv-recent-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .sv-recent { padding: 60px 20px 0; } }

/* ============================================================
   STORE — PRE-EMBED GALLERY
   ============================================================ */
.store-gallery {
  position: relative;
  z-index: 2;
  padding: 0 60px 60px;
}
.store-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.store-gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.store-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.75);
  transform: scale(1.04);
  transition: filter .5s, transform .8s var(--ease);
}
.store-gallery-item:hover img { filter: brightness(1); transform: scale(1); }
.store-gallery-note {
  font-weight: 400;
  font-size: .95rem;
  color: var(--dim);
  text-align: center;
  margin-top: 22px;
  letter-spacing: .04em;
}
@media (max-width: 1100px) { .store-gallery { padding-left: 40px; padding-right: 40px; } }
@media (max-width: 768px) {
  .store-gallery { padding-left: 24px; padding-right: 24px; padding-bottom: 40px; }
  .store-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .store-gallery { padding-left: 20px; padding-right: 20px; } }

/* ============================================================
   404 PAGE
   ============================================================ */
.err-main {
  position: relative;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.err-inner { padding: 24px; }
.err-code {
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: rgba(204,0,0,.1);
  line-height: 1;
  margin-bottom: -16px;
}
.err-h {
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 16px;
}
.err-sub {
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 44px;
}
