
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #0a0a0a;
    --surface: #111111;
    --surface2: #1a1a1a;
    --accent: #d4ff47;
    --accent2: #ff4747;
    --text: #f0ece3;
    --muted: #6b6b6b;
    --border: rgba(255,255,255,0.07);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  #cursor {
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
  }
  #cursor-follower {
    width: 40px; height: 40px;
    border: 1px solid rgba(212, 255, 71, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s, width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
  }
  body.hovering #cursor { transform: translate(-50%, -50%) scale(2.5); }
  body.hovering #cursor-follower { width: 60px; height: 60px; border-color: rgba(212,255,71,0.7); }

  /* Noise overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: 0.5;
  }
  
  
  
  
  
  
  
  
  


  /* Header */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
    backdrop-filter: blur(0px);
  }

  .logo {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 6px;

    color: var(--text);
    text-decoration: none;
    opacity: 0;
  }
  .logo span { color: var(--accent); font-weight:700; }

.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-links a:hover {
  color: var(--accent);
}

.social-links i {
  font-size: 1rem;
  line-height: 1;
}

  /* Page intro */
  .intro-section {
    padding: 180px 48px 60px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .intro-line {
    overflow: hidden;
    margin-bottom: 6px;
  }
  
  
  
  .intro-text {
    font-weight: 500;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    display: block;
    transform: translateY(110%);
	
	text-transform:uppercase;
  }
  
  .intro-text-small {
    font-size: clamp(2rem, 1vw, 20px);
	font-weight:300;
	opacity:0.5;
	text-transform:uppercase;
  }
  
  .intro-sub {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 28px;
    opacity: 0;
  }
  .intro-sub span {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--muted);
    vertical-align: middle;
    margin-right: 12px;
  }

  /* Marquee */
  .marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    margin: 40px 0;
    opacity: 0;
  }
  .marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
  }
  .marquee-item {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 36px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .marquee-item .dot { color: var(--accent); margin-right: 12px; }






.intro-header {
  display: flex;
  align-items: top;
  justify-content: space-between;
  gap: 60px;
}

.intro-content {
  flex: 1;
}

.intro-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
}

.intro-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top left,
      rgba(212,255,71,0.2),
      transparent 40%),
    linear-gradient(135deg,
      #1a1a1a 0%,
      #242424 100%);
}

.intro-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow:
    inset 0 0 40px rgba(255,255,255,0.03);
  pointer-events: none;
}

@media (max-width: 768px) {

  .intro-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .intro-avatar {
    width: 110px;
    height: 110px;
  }

}








  /* Grid */
  .grid-section {
    padding: 20px 48px 100px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  @media (max-width: 992px) { .works-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 576px) { .works-grid { grid-template-columns: 1fr; } }

  /* Thumbnail card */
  .work-item {
    position: relative;
    aspect-ratio: 12 / 7.5;
    overflow: hidden;
    display: block;
    text-decoration: none;
    opacity: 0;
    transform: translateY(40px);
    background: var(--surface);
    cursor: none;
  }

  .work-thumb {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease), filter 0.5s;
    filter: saturate(0.7) brightness(0.85);
  }

  .work-item:hover .work-thumb {
    transform: scale(1.07);
    filter: saturate(1) brightness(0.6);
  }

  /* Placeholder thumbnails using CSS */
  .thumb-placeholder {
    width: 100%; height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.8s var(--ease), filter 0.5s;
    filter: saturate(0.7) brightness(0.85);
  }
  
  .thumb-placeholder img {
	object-fit:cover;
	height:100%;
	width:100%;
  }
  .work-item:hover .thumb-placeholder {
    transform: scale(1.07);
    filter: saturate(1) brightness(0.6);
  }

  .work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, transparent 70%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  }

  .work-item:hover .work-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .work-num {
    position: absolute;
    top: 20px; right: 22px;
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
  }
  .work-item:hover .work-num { color: var(--accent); }

  .work-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease) 0.05s;
  }
  .work-item:hover .work-title { transform: translateY(0); }

  .work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease) 0.1s;
  }
  .work-item:hover .work-tags { transform: translateY(0); }

  .tag {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.5);
    border-radius: 20px;
  }

  /* Arrow icon on hover */
  .work-arrow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 52px; height: 52px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s, transform 0.4s var(--ease);
  }
  .work-arrow svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }
  .work-item:hover .work-arrow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  /* Footer */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
  }
  footer p {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.08em;
  }
  footer a {
    font-size: 0.75rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.3s;
  }
  footer a:hover { color: var(--accent); }

  /* Count label */
  .grid-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 24px;
    opacity: 0;
  }
  .grid-label span {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .grid-label strong {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.1em;
  }

  /* Scan line on hover global */
  .work-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.14) 3px,
      rgba(0,0,0,0.14) 4px
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .work-item:hover::after { opacity: 1; }
  
  
  
  
  
  
  
  
  
  
/* =========================
   ARCHIVE SECTION
========================= */

.archive-section {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.archive-head {
  margin-bottom: 48px;
  max-width: 700px;
}

.archive-head h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 18px;
}

.archive-head p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 350px;
}

/* MASONRY */
.archive-grid {
  column-count: 4;
  column-gap: 10px;
}

.archive-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  break-inside: avoid;
  background: var(--surface);
  cursor: none;
  
  opacity: 0;
  transform: translateY(60px) scale(0.96);
}

/* IMAGE */
.archive-item img {
  width: 100%;
  display: block;
  transition:
    transform 0.8s var(--ease),
    filter 0.5s;

  filter: saturate(0.75) brightness(0.9);
}

/* HOVER IMAGE */
.archive-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) brightness(0.55);
}

/* OVERLAY */
.archive-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 22px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 10%,
    rgba(0,0,0,0.45) 45%,
    transparent 75%
  );

  opacity: 0;
  transition: opacity 0.35s ease;
}

.archive-item:hover .archive-overlay {
  opacity: 1;
}

/* TITLE */
.archive-overlay h3 {
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 500;
}

/* META */
.archive-overlay span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* SCANLINE */
.archive-item::after {
  content: '';
  position: absolute;
  inset: 0;

  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.12) 3px,
    rgba(0,0,0,0.12) 4px
  );

  pointer-events: none;

  opacity: 0;
  transition: opacity 0.4s;
}

.archive-item:hover::after {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .archive-grid {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .archive-grid {
    column-count: 2;
  }

  .archive-section {
    padding: 90px 24px;
  }
  .intro-section {
    padding: 142px 24px 0px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-avatar {
        width: 150px;
        height: 150px;
        display: flex;
        align-content: center;
        align-self: center;
    
}


header {
    padding: 28px 24px;
}
  
  .grid-section {
        padding: 90px 24px;
    }
  
   header .social-links {
   gap:10px;
   }
  
  header .social-links a span {
	display:none;
  }
  
  .intro-content {
	text-align:center;
  }
}

@media (max-width: 576px) {
  .archive-grid {
    column-count: 1;
  }
  
  .logo {
   
    font-size: 0.9rem;
  }
}
  
