@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Mono:wght@300;400&display=swap');

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --black: #080810;
  --white: #f0eaff;
  --cream: #d8ccff;
  --red: #e060ff;
  --gold: #b06aff;
  --grey: #6a5a8a;
  --light-grey: #c8b8ff;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-mono: 'DM Mono', monospace;

  --nav-h: 72px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  cursor: none;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor.expanded {
  width: 48px; height: 48px;
  background: var(--white);
}
@media (hover: none) and (pointer: coarse) {
  .cursor { display: none !important; }
}
@media (max-width: 768px) {
  .cursor { display: none !important; }
}

/* ─── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 9000;
  background: rgba(8,8,16,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(180,100,255,0.12);
}
nav::after { display: none; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--white);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  align-items: center;
}
.nav-links > li > a {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,234,255,0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  height: var(--nav-h);
}
.nav-links > li > a:hover { color: var(--white); }
.nav-links > li > a.active { color: var(--red); }

/* ─── NAV DROPDOWN ──────────────────────────────────────── */
.nav-item { position: relative; }
.has-dropdown > a::after {
  content: '▾';
  font-size: 0.42rem;
  opacity: 0.45;
}
.nav-dropdown {
  position: absolute;
  top: var(--nav-h);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 9999;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-inner {
  background: rgba(10,8,22,0.99);
  border: 1px solid rgba(180,100,255,0.22);
  box-shadow: 0 24px 64px rgba(0,0,0,0.85);
  min-width: 190px;
  max-height: 65vh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(176,106,255,0.25) transparent;
  list-style: none;
  padding: 4px 0;
}
.nav-dropdown-inner::-webkit-scrollbar { width: 3px; }
.nav-dropdown-inner::-webkit-scrollbar-track { background: transparent; }
.nav-dropdown-inner::-webkit-scrollbar-thumb { background: rgba(176,106,255,0.25); border-radius: 2px; }
.nav-dropdown-inner li a {
  display: block;
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200,180,255,0.5);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-inner li a:hover {
  color: var(--white);
  background: rgba(176,106,255,0.1);
}
.nav-dropdown-inner .dropdown-label {
  font-family: var(--font-mono);
  font-size: 0.42rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 14px 2px;
  pointer-events: none;
  border-top: 1px solid rgba(180,100,255,0.08);
  margin-top: 2px;
}
.nav-dropdown-inner .dropdown-label:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 4px;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--nav-h) 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  overflow: hidden;
  z-index: 0;
}
.hero-eyebrow,
.hero-name,
.hero-tagline,
.hero-scroll {
  position: relative;
  z-index: 1;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 70vw; height: 70vw;
  background: radial-gradient(ellipse, rgba(176,60,255,0.1) 0%, transparent 70%);
  animation: breathe 8s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 10%; left: -5%;
  width: 40vw; height: 40vw;
  background: radial-gradient(ellipse, rgba(60,100,255,0.08) 0%, transparent 70%);
  animation: breathe 10s ease-in-out infinite reverse;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.hero-name span { color: var(--gold); }
.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--light-grey);
  max-width: 520px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.hero-scroll {
  position: absolute;
  right: 48px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  writing-mode: vertical-rl;
  z-index: 1;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--grey), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── INTRO BLOCK ───────────────────────────────────────── */
.intro-block {
  padding: 100px 48px;
  background: var(--black);
  border-bottom: 1px solid rgba(180,100,255,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-headline {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.25;
  color: var(--white);
}
.intro-headline em {
  font-style: italic;
  color: var(--gold);
}
.intro-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(200,180,255,0.65);
  margin-bottom: 18px;
}
.intro-body p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .intro-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 24px;
  }
}
@media (max-width: 560px) {
  .intro-block { padding: 48px 20px; }
}

/* ─── SECTION SHARED ────────────────────────────────────── */
.section {
  padding: 120px 48px;
  position: relative;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  margin-bottom: 64px;
}
.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(180,100,255,0.12);
  margin-bottom: 80px;
}

/* ─── AI STRIP ──────────────────────────────────────────── */
.ai-strip {
  display: block;
  padding: 48px;
  background: linear-gradient(135deg, #120820 0%, #08081a 100%);
  border-top: 1px solid rgba(224,96,255,0.15);
  border-bottom: 1px solid rgba(224,96,255,0.15);
  text-decoration: none;
  transition: background 0.4s;
}
.ai-strip:hover { background: linear-gradient(135deg, #1a0a2e 0%, #0a0a22 100%); }
.ai-strip-inner { max-width: 800px; }
.ai-strip-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.ai-strip-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
}
.ai-strip-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(200,180,255,0.5);
  max-width: 560px;
  line-height: 1.7;
}
@media (max-width: 900px) { .ai-strip { padding: 40px 24px; } }
@media (max-width: 560px) { .ai-strip { padding: 32px 20px; } }

/* ─── HAMBURGER ─────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  z-index: 10000;
  position: relative;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: rgba(8,8,16,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(180,100,255,0.15);
  z-index: 9998;
  padding: 80px 32px 40px;
  overflow-y: auto;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease, visibility 0.3s ease;
}
.nav-mobile-drawer.open {
  visibility: visible;
  transform: translateX(0);
}
.nav-mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-drawer ul li a {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200,180,255,0.6);
  padding: 12px 0;
  border-bottom: 1px solid rgba(180,100,255,0.08);
  transition: color 0.2s;
}
.nav-mobile-drawer ul li a:hover { color: var(--white); }
.nav-mobile-drawer .drawer-label {
  font-family: var(--font-mono);
  font-size: 0.45rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  padding: 16px 0 4px;
  border-bottom: none;
}
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none !important; }
}
@media (min-width: 769px) {
  .nav-hamburger { display: none !important; }
  .nav-mobile-drawer { visibility: hidden !important; transform: translateX(100%) !important; }
  .nav-mobile-overlay { opacity: 0 !important; pointer-events: none !important; }
}
.site-credit-strip {
  padding: 28px 48px;
  background: rgba(16,8,32,0.6);
  border-top: 1px solid rgba(180,100,255,0.12);
  border-bottom: 1px solid rgba(180,100,255,0.12);
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-credit-strip-inner {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  border-left: 2px solid rgba(176,106,255,0.35);
  padding-left: 20px;
}
.site-credit-text {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  color: rgba(200,180,255,0.55);
  line-height: 1.9;
  max-width: 820px;
  margin: 0;
}
.site-credit-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.site-credit-link:hover { color: var(--white); }
.site-credit-date {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: rgba(176,106,255,0.4);
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .site-credit-strip { padding: 20px 24px; gap: 16px; }
  .site-credit-strip-inner { flex-direction: column; gap: 8px; }
}

.early-work-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: rgba(200,180,255,0.4);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

/* ─── UX/UI GRID ────────────────────────────────────────── */
#uxui { background: var(--black); }
.uxui-grid {
  columns: 3;
  column-gap: 4px;
  max-width: 1100px;
  margin: 0 auto;
}
.project-card {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
  cursor: none;
  background: #0e0a1a;
  display: block;
}
.project-card-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--transition), filter 0.4s ease;
  filter: grayscale(10%);
}
.project-card:hover .project-card-img {
  transform: scale(1.03);
  filter: grayscale(0%);
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,0.92) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card[onclick] { cursor: none; }
.project-card[onclick]:hover .cursor { transform: scale(2); }
.project-card-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #110d1e;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--grey);
  letter-spacing: 0.1em;
}
.project-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--red);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.project-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.project-role {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--light-grey);
}

/* ─── COLLEGE WORK ──────────────────────────────────────── */
#early-work { background: #09090f; }
.early-work-categories {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.cat-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(180,100,255,0.2);
  background: transparent;
  color: var(--grey);
  cursor: none;
  transition: all 0.3s ease;
}
.cat-btn:hover, .cat-btn.active {
  background: linear-gradient(90deg, #b03aff, #6040ff);
  border-color: transparent;
  color: var(--white);
}
.early-work-grid {
  columns: 3;
  column-gap: 4px;
}
.early-work-item {
  break-inside: avoid;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  background: #0e0a1a;
  cursor: none;
  display: block;
}
.early-work-item[data-cat] { transition: opacity 0.4s; }
.early-work-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--transition), filter 0.4s ease;
  filter: grayscale(20%);
}
.early-work-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.early-work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,16,0.75);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.early-work-item:hover .early-work-overlay { opacity: 1; }
.early-work-overlay-text .cat-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7ab0ff;
  margin-bottom: 4px;
}
.early-work-overlay-text .item-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

/* ─── FINE ART ──────────────────────────────────────────── */
#fineart { background: var(--black); }
.fineart-intro {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(200,180,255,0.55);
  max-width: 560px;
  margin-bottom: 64px;
  line-height: 1.8;
}
.fineart-masonry {
  columns: 3;
  column-gap: 4px;
}
.fineart-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
  cursor: none;
}
.fineart-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--transition), filter 0.4s ease;
  filter: grayscale(15%);
}
.fineart-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.fineart-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(10,10,10,0.85));
  opacity: 0;
  transition: opacity var(--transition);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--cream);
}
.fineart-item:hover .fineart-caption { opacity: 1; }
.fineart-loading {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--grey);
  text-align: center;
  padding: 80px 0;
}

/* ─── ABOUT ─────────────────────────────────────────────── */
#about { background: #09090f; }
.about-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid rgba(176,106,255,0.3);
  opacity: 0.6;
  pointer-events: none;
}
.about-img {
  aspect-ratio: 3/4;
  background: #0e0a1a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--grey);
}
.about-img img { object-position: top; }
.about-text { padding-top: 16px; }
.about-text h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--gold);
}
.about-text p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(200,180,255,0.65);
  margin-bottom: 20px;
}
.about-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 32px;
  align-items: center;
}
.discipline-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,180,255,0.45);
  padding: 0;
}
.discipline-tag::after {
  content: ' / ';
  color: rgba(180,100,255,0.2);
  padding: 0 8px;
}
.discipline-tag:last-child::after { display: none; }

.about-social {
  margin-top: 24px;
}
.about-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200,180,255,0.45);
  transition: color 0.2s;
  text-decoration: none;
}
.about-linkedin:hover { color: var(--white); }
.about-linkedin svg { flex-shrink: 0; }

/* ─── CONTACT BAR ───────────────────────────────────────── */
.contact-bar {
  padding: 80px 48px;
  background: linear-gradient(135deg, #2a0a4a 0%, #0a0a3a 100%);
  border-top: 1px solid rgba(180,100,255,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-bar h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}
.contact-email {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(200,170,255,0.65);
  border-bottom: 1px solid rgba(200,170,255,0.25);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
  cursor: none;
}
.contact-email:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  padding: 32px 48px;
  background: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(245,242,236,0.06);
}
footer p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--grey);
}

/* ─── LIGHTBOX ──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox-caption {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--light-grey);
  font-size: 1rem;
}
.lightbox-close {
  position: absolute;
  top: 32px; right: 48px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: none;
  transition: color 0.3s;
}
.lightbox-close:hover { color: var(--white); }

/* ─── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .hero { padding: 0 24px 60px; }
  .hero-scroll { display: none; }
  .hero-name { font-size: clamp(5rem, 18vw, 10rem); }
  .section { padding: 80px 24px; }
  .section-title { font-size: clamp(2.5rem, 8vw, 5rem); }
  .uxui-grid { columns: 2; max-width: 100%; }
  .early-work-grid { columns: 2; }
  .fineart-masonry { columns: 2; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 280px; }
  .contact-bar { flex-direction: column; gap: 24px; text-align: center; }
  .nav-links { gap: 12px; }
  .nav-links > li > a { font-size: 0.48rem; }
  .ai-strip { padding: 40px 24px; }
  .site-credit-strip { padding: 20px 24px; }
}

@media (max-width: 560px) {
  /* Nav — hide text links, show hamburger-style scroll */
  nav { padding: 0 20px; height: 56px; }
  .nav-links { display: none; }

  /* Hero */
  .hero { padding: calc(var(--nav-h) + 16px) 20px 48px; height: auto; min-height: 50vh; }
  .hero-name { font-size: clamp(4rem, 22vw, 6rem); line-height: 0.9; }
  .hero-eyebrow { font-size: 0.55rem; }
  .hero-tagline { font-size: 0.9rem; }

  /* Sections */
  .section { padding: 60px 20px; }
  .section-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .section-label { font-size: 0.6rem; }

  /* Intro block */
  .intro-headline { font-size: clamp(1.6rem, 6vw, 2.5rem); }

  /* Grids — single column on mobile */
  .uxui-grid { columns: 1; }
  .early-work-grid { columns: 1; }
  .fineart-masonry { columns: 2; }

  /* Cat filter buttons — wrap */
  .early-work-categories { gap: 6px; }
  .cat-btn { font-size: 0.5rem; padding: 6px 12px; }

  /* About */
  .about-image-wrap { max-width: 100%; }
  .about-text h3 { font-size: 1.4rem; }

  /* Contact / footer */
  .contact-bar { padding: 60px 20px; }
  .contact-bar h2 { font-size: clamp(2rem, 10vw, 3rem); }
  footer { padding: 24px 20px; }

  /* AI strip */
  .ai-strip { padding: 32px 20px; }
  .ai-strip-title { font-size: 1.4rem; }

  /* Site credit */
  .site-credit-strip { padding: 16px 20px; flex-direction: column; gap: 8px; }
  .site-credit-strip-inner { border-left: none; padding-left: 0; border-top: 1px solid rgba(180,100,255,0.15); padding-top: 12px; }
}
