/* ==============================
   FORM Studio — Premium CSS
   Dark Luxury Editorial Design
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500&display=swap');

/* ==============================
   TOKENS
   ============================== */
:root {
  --bg:          #080808;
  --bg-2:        #0d0d0d;
  --bg-3:        #111111;
  --fg:          #f0ece4;
  --fg-muted:    rgba(240,236,228,0.45);
  --fg-subtle:   rgba(240,236,228,0.2);
  --accent:      #c8b89a;
  --accent-dim:  rgba(200,184,154,0.15);
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur:         0.8s;
}

/* ==============================
   RESET
   ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; cursor: none; }
img, video { display: block; width: 100%; }
button { background: none; border: none; cursor: none; font: inherit; color: inherit; }

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

/* ==============================
   CURSOR
   ============================== */
.cursor {
  width: 6px; height: 6px;
  background: var(--fg);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 40px; height: 40px;
  border: 1px solid rgba(240,236,228,0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.cursor-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  color: var(--bg);
}
body.cursor-hover .cursor { width: 0; height: 0; opacity: 0; }
body.cursor-hover .cursor-follower {
  width: 80px; height: 80px;
  background: var(--fg);
  border-color: var(--fg);
}
body.cursor-hover .cursor-label { opacity: 1; }

/* ==============================
   TRANSITIONS
   ============================== */
.transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.tp {
  flex: 1;
  background: var(--fg);
  transform: scaleY(0);
  transform-origin: bottom;
}

/* ==============================
   NAV
   ============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: padding 0.4s var(--ease), background 0.4s;
}
.nav.scrolled {
  padding: 16px 48px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--fg-subtle);
}
.nav__logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nav__links { display: flex; gap: 40px; }
.nav__link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover,
.nav__link.is-active { opacity: 1; }
.nav__link.is-active::after,
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--fg-subtle);
  padding: 10px 22px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav__cta:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ==============================
   UTILITY CLASSES
   ============================== */
.section-tag {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.italic { font-family: var(--serif); font-style: italic; font-weight: 400; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fg);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--fg-subtle);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--fg); border-color: var(--fg); }
.btn-large {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-style: italic;
  color: var(--fg);
  border-bottom: 1px solid var(--fg-subtle);
  padding-bottom: 8px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-large:hover { color: var(--accent); border-color: var(--accent); }
.section-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--fg-subtle);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.section-link:hover { color: var(--fg); }

/* ==============================
   ANIMATION SETUP
   ============================== */
.reveal-line { overflow: hidden; }
.reveal-line > * { display: block; }
.reveal-word { display: inline-block; overflow: hidden; }
.reveal-word > * { display: block; }

/* ==============================
   PROJECT IMAGE VISUALS (CSS Art)
   ============================== */
.wcard__img--1 {
  background: linear-gradient(135deg, #050510 0%, #0d0d2b 40%, #1a1535 70%, #0a0815 100%);
  position: relative; overflow: hidden;
}
.wcard__img--1::before {
  content: 'NEXUS';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: clamp(24px, 5vw, 60px); font-weight: 900;
  letter-spacing: 0.3em; color: rgba(255,255,255,0.07);
}
.wcard__img--1::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(100,80,180,0.4) 0%, transparent 70%);
}

.wcard__img--2 {
  background: linear-gradient(160deg, #0e0415 0%, #1a0825 50%, #0a0210 100%);
  position: relative; overflow: hidden;
}
.wcard__img--2::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(180,120,200,0.6), transparent);
}
.wcard__img--2::after {
  content: 'VELLA';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: clamp(20px, 4vw, 52px); font-weight: 400;
  font-style: italic; letter-spacing: 0.2em; color: rgba(200,150,220,0.2);
}

.wcard__img--3 {
  background: linear-gradient(135deg, #010d18 0%, #042030 50%, #010b15 100%);
  position: relative; overflow: hidden;
}
.wcard__img--3::before {
  content: '';
  position: absolute;
  top: -20%; left: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(0,180,255,0.15) 0%, transparent 60%);
}
.wcard__img--3::after {
  content: 'KŌDO';
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 20px 24px;
  font-family: var(--serif); font-size: clamp(16px, 3vw, 40px); font-weight: 700;
  letter-spacing: 0.15em; color: rgba(0,200,255,0.2);
}

.wcard__img--4 {
  background: linear-gradient(150deg, #0a0800 0%, #1e1800 50%, #0d0a00 100%);
  position: relative; overflow: hidden;
}
.wcard__img--4::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,180,0,0.12) 0%, transparent 60%);
}
.wcard__img--4::after {
  content: 'SOLARIS';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: clamp(20px, 4vw, 52px); font-weight: 900;
  letter-spacing: 0.4em; color: rgba(255,200,50,0.08);
}

.wcard__img--5 {
  background: linear-gradient(160deg, #080010 0%, #120022 60%, #060010 100%);
  position: relative; overflow: hidden;
}
.wcard__img--5::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(160,80,255,0.5), transparent);
}
.wcard__img--5::after {
  content: 'ARCH';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: clamp(22px, 5vw, 64px); font-weight: 900;
  letter-spacing: 0.25em; color: rgba(160,80,255,0.1);
}

.wcard__img--6 {
  background: linear-gradient(135deg, #0a0505 0%, #1a0808 50%, #0a0505 100%);
  position: relative; overflow: hidden;
}
.wcard__img--6::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
  width: 30%; height: 30%;
  border: 1px solid rgba(200,150,100,0.15);
}
.wcard__img--6::after {
  content: 'LUMIÈRE';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: clamp(14px, 2.5vw, 34px); font-weight: 400;
  font-style: italic; letter-spacing: 0.3em; color: rgba(200,150,100,0.2);
}

.wcard__img--7 {
  background: linear-gradient(160deg, #0a0a12 0%, #141420 50%, #08080f 100%);
  position: relative; overflow: hidden;
}
.wcard__img--7::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 100%);
}
.wcard__img--7::after {
  content: 'DUSK';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: clamp(24px, 5vw, 64px); font-weight: 900;
  letter-spacing: 0.4em; color: rgba(150,130,200,0.1);
}

.wcard__img--8 {
  background: linear-gradient(135deg, #080c08 0%, #0f180f 50%, #080c08 100%);
  position: relative; overflow: hidden;
}
.wcard__img--8::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(100,180,100,0.2), transparent);
}
.wcard__img--8::after {
  content: 'FORMA';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: clamp(18px, 3.5vw, 48px); font-weight: 400;
  letter-spacing: 0.3em; color: rgba(100,180,100,0.1);
}

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 48px 80px;
  gap: 60px;
  position: relative;
}
.hero__counter {
  position: absolute;
  top: 140px; right: 48px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}
.hero__content { max-width: 700px; }
.hero__eyebrow { margin-bottom: 36px; }
.hero__eyebrow .reveal-line {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.hero__title .italic {
  font-size: clamp(44px, 6.5vw, 90px);
}
.hero__sub { display: flex; flex-direction: column; gap: 28px; }
.hero__sub p { font-size: 16px; line-height: 1.7; color: var(--fg-muted); max-width: 440px; }
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
  padding: 0;
}
.hero__img-wrap { flex: 1; overflow: hidden; }
.hero__img-wrap--sm { flex: 0 0 35%; }
.hero__img {
  width: 100%; height: 100%;
  min-height: 300px;
  transition: transform 0.8s var(--ease-out);
}
.hero__img-wrap:hover .hero__img { transform: scale(1.05); }
.hero__img { background-size: cover; }
.hero__img.wcard__img--1 { min-height: 100%; }
.hero__scroll {
  position: absolute;
  bottom: 40px; left: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero__scroll-line {
  width: 40px; height: 1px;
  background: var(--fg-muted);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { width: 40px; opacity: 1; }
  50% { width: 20px; opacity: 0.3; }
}

/* ==============================
   MARQUEE
   ============================== */
.marquee-wrap {
  border-top: 1px solid var(--fg-subtle);
  border-bottom: 1px solid var(--fg-subtle);
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.marquee-inner span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 0 28px;
  transition: color 0.3s;
}
.marquee-inner span:hover { color: var(--fg); }
.marquee-inner em {
  color: var(--accent);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==============================
   INTRO
   ============================== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 48px;
  border-bottom: 1px solid var(--fg-subtle);
}
.intro__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.stat {}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__num sup { font-size: 0.5em; }
.stat__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.intro__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}
.intro__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 480px;
}

/* ==============================
   WORK PREVIEW (HOME)
   ============================== */
.work-preview { padding: 120px 48px; }
.work-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.work-grid-home {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.wcard { overflow: hidden; }
.wcard--large { grid-row: 1 / 3; }
.wcard__link { display: block; }
.wcard__media {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-3);
}
.wcard--large .wcard__media { aspect-ratio: 3/4; height: 100%; }
.wcard__img {
  width: 100%; height: 100%;
  transition: transform 0.8s var(--ease-out);
}
.wcard:hover .wcard__img { transform: scale(1.06); }
.wcard__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--fg-subtle);
}
.wcard__cat {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.wcard__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s;
}
.wcard:hover .wcard__title { color: var(--accent); }
.wcard__year {
  font-size: 11px;
  color: var(--fg-muted);
}

/* ==============================
   STATEMENT
   ============================== */
.statement {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-2);
}
.statement__bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(200,184,154,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(100,80,160,0.04) 0%, transparent 50%);
}
.statement__content {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 80px 48px;
}
.statement__text {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.statement__text em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.statement__line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 60px auto 0;
}

/* ==============================
   CTA BAND
   ============================== */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 48px;
  border-top: 1px solid var(--fg-subtle);
  border-bottom: 1px solid var(--fg-subtle);
}
.cta-band__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 16px;
}
.cta-band__title em { font-style: italic; font-weight: 400; color: var(--accent); }

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--fg-subtle);
}
.footer__inner { padding: 80px 48px 48px; }
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--fg-subtle);
}
.footer__logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
}
.footer__top p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }
.footer__mid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.footer__col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col nav a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.3s;
}
.footer__col nav a:hover { color: var(--fg); }
.footer__col p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ==============================
   PAGE HEADER (Work & About)
   ============================== */
.page-header {
  padding: 160px 48px 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--fg-subtle);
}
.page-header__inner { max-width: 800px; }
.page-header__title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.page-header__sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.page-header__count {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: var(--fg-subtle);
  align-self: flex-end;
}

/* ==============================
   FILTER BAR
   ============================== */
.filter-bar {
  display: flex;
  gap: 4px;
  padding: 40px 48px;
  border-bottom: 1px solid var(--fg-subtle);
}
.filter-btn {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid transparent;
  color: var(--fg-muted);
  transition: color 0.3s, border-color 0.3s;
}
.filter-btn:hover { color: var(--fg); }
.filter-btn.is-active { color: var(--fg); border-color: var(--fg-subtle); }

/* ==============================
   WORK GRID FULL (Work page)
   ============================== */
.work-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--fg-subtle);
  padding-bottom: 2px;
}
.grid-item { background: var(--bg); overflow: hidden; }
.grid-item--wide { grid-column: span 2; }
.grid-item__link { display: block; }
.grid-item__media {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-3);
}
.grid-item--wide .grid-item__media { aspect-ratio: 16/9; }
.grid-item__img {
  width: 100%; height: 100%;
  transition: transform 0.8s var(--ease-out);
}
.grid-item:hover .grid-item__img { transform: scale(1.05); }
.grid-item__info {
  padding: 20px 24px;
  border-top: 1px solid var(--fg-subtle);
}
.grid-item__meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.grid-item__info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  transition: color 0.3s;
}
.grid-item:hover .grid-item__info h3 { color: var(--accent); }
.grid-item.is-hidden {
  display: none;
}

/* ==============================
   ABOUT — MANIFESTO
   ============================== */
.manifesto { padding: 120px 48px; }
.manifesto__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto__text {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--fg-muted);
}
.manifesto__img { overflow: hidden; }
.manifesto__img-inner {
  aspect-ratio: 4/3;
  transition: transform 0.8s var(--ease-out);
}
.manifesto__img:hover .manifesto__img-inner { transform: scale(1.04); }

/* ==============================
   TIMELINE
   ============================== */
.timeline-section {
  padding: 80px 0 120px;
  overflow: hidden;
  border-top: 1px solid var(--fg-subtle);
  border-bottom: 1px solid var(--fg-subtle);
}
.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px 60px;
}
.timeline-header p { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.08em; }
.timeline-scroll { overflow-x: hidden; cursor: grab; }
.timeline-scroll:active { cursor: grabbing; }
.timeline-track {
  display: flex;
  gap: 2px;
  padding: 0 48px;
  width: max-content;
}
.timeline-item {
  width: 360px;
  flex-shrink: 0;
}
.timeline-year {
  display: block;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 900;
  color: var(--fg-subtle);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.timeline-item:hover .timeline-year { color: var(--fg-muted); }
.timeline-card {
  border: 1px solid var(--fg-subtle);
  background: var(--bg-2);
  overflow: hidden;
}
.timeline-card__visual {
  aspect-ratio: 16/9;
  width: 100%;
}
.timeline-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  padding: 24px 24px 8px;
}
.timeline-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  padding: 0 24px 24px;
}

/* ==============================
   TEAM
   ============================== */
.team-section { padding: 120px 48px; }
.team-header { margin-bottom: 60px; }
.team-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 16px;
}
.team-header h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.team-member { overflow: hidden; }
.team-member__img {
  aspect-ratio: 3/4;
  background: var(--bg-3);
  transition: transform 0.6s var(--ease-out);
}
.team-member:hover .team-member__img { transform: scale(1.04); }
.team-member__img--1 { background: linear-gradient(160deg, #0a0810 0%, #14102a 100%); }
.team-member__img--2 { background: linear-gradient(160deg, #100808 0%, #2a1010 100%); }
.team-member__img--3 { background: linear-gradient(160deg, #080a10 0%, #10142a 100%); }
.team-member__img--4 { background: linear-gradient(160deg, #080a08 0%, #101a10 100%); }
.team-member__info { padding: 20px 0; }
.team-member__info h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.team-member__info span { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ==============================
   CONTACT SECTION
   ============================== */
.contact-section {
  padding: 160px 48px;
  border-top: 1px solid var(--fg-subtle);
  text-align: center;
}
.contact-inner { max-width: 700px; margin: 0 auto; }
.contact-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin: 20px 0 40px;
}
.contact-title em { font-style: italic; font-weight: 400; color: var(--accent); }
.contact-email {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 30px);
  font-style: italic;
  border-bottom: 1px solid var(--fg-subtle);
  padding-bottom: 8px;
  margin-bottom: 32px;
  transition: color 0.3s, border-color 0.3s;
}
.contact-email:hover { color: var(--accent); border-color: var(--accent); }
.contact-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ==============================
   ANIMATION — GSAP INITIAL STATES
   ============================== */
.reveal-word,
.reveal-line,
.reveal-up,
.reveal-card {
  will-change: transform, opacity;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 32px 80px; }
  .hero__visual { display: none; }
  .intro { grid-template-columns: 1fr; gap: 48px; padding: 80px 32px; }
  .work-grid-home { grid-template-columns: 1fr; }
  .wcard--large { grid-row: auto; }
  .wcard--large .wcard__media { aspect-ratio: 4/3; }
  .work-grid-full { grid-template-columns: 1fr 1fr; }
  .grid-item--wide { grid-column: span 2; }
  .cta-band { flex-direction: column; gap: 40px; padding: 80px 32px; }
  .manifesto__inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer__mid { grid-template-columns: 1fr 1fr; }
  .page-header { flex-direction: column; align-items: flex-start; gap: 32px; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav__links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero__title { font-size: clamp(40px, 12vw, 72px); }
  .intro { padding: 60px 24px; }
  .work-preview { padding: 60px 24px; }
  .work-preview__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .work-grid-full { grid-template-columns: 1fr; }
  .grid-item--wide { grid-column: span 1; }
  .grid-item--wide .grid-item__media { aspect-ratio: 4/3; }
  .statement__text { font-size: clamp(28px, 8vw, 52px); }
  .cta-band { padding: 60px 24px; }
  .footer__inner { padding: 60px 24px 40px; }
  .footer__mid { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; gap: 24px; }
  .page-header { padding: 120px 24px 60px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item { width: 280px; }
  .contact-section { padding: 100px 24px; }
  .manifesto { padding: 60px 24px; }
  .team-section { padding: 60px 24px; }
  .filter-bar { padding: 28px 24px; flex-wrap: wrap; }
}
