/* ═══════════════════════════════════════════════════════
   OMAR SHINDY — Portfolio
   Palette: Acid Neon · Fonts: Syne + Outfit
═══════════════════════════════════════════════════════ */

:root {
  --lime:       #CCFF00;
  --pink:       #FF3CAC;
  --purple:     #7B2FBE;
  --purple-lt:  #9B4FDE;
  --void:       #0A0A0F;
  --deep:       #141420;
  --surface:    #1A1A2E;
  --surface2:   #22223A;
  --white:      #FAFAFA;
  --muted:      rgba(250,250,250,0.5);
  --muted2:     rgba(250,250,250,0.12);

  --grad-neon:   linear-gradient(135deg, #CCFF00, #FF3CAC);
  --grad-violet: linear-gradient(135deg, #7B2FBE, #FF3CAC);
  --grad-full:   linear-gradient(135deg, #CCFF00 0%, #7B2FBE 50%, #FF3CAC 100%);

  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:  cubic-bezier(0.0, 0, 0.2, 1);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Outfit', sans-serif;
}

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

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s var(--ease-snap), width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(204,255,0,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.2s var(--ease-snap), opacity 0.2s, border-color 0.3s;
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor,
button:hover ~ .cursor { transform: translate(-50%,-50%) scale(2.5); background: var(--pink); }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  transition: background 0.4s, border-color 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--muted2);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
}
.nav-logo span {
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--lime); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--void);
  background: var(--lime);
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-noise {
  position: absolute; 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='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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(204,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,255,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,47,190,0.35) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,60,172,0.25) 0%, transparent 70%);
  bottom: 0; left: -80px;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(204,255,0,0.15) 0%, transparent 70%);
  top: 40%; left: 40%;
}
.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(204,255,0,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(204,255,0,0.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title .line {
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(250,250,250,0.25);
  background: none;
}
.hero-sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 36px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--muted2);
}
.hero-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero-tools span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--muted2);
  border: 1px solid rgba(250,250,250,0.08);
  padding: 6px 14px;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.hero-tools span:hover { border-color: var(--lime); color: var(--lime); }
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Section Shared ── */
.work, .about, .contact {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 48px;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 72px;
}
.section-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--lime);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--muted2), transparent);
}

/* ── Featured Projects ── */
.project-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  cursor: pointer;
}
.project-featured-reverse { direction: rtl; }
.project-featured-reverse > * { direction: ltr; }
.project-featured-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--muted2);
}
.project-featured-img img {
  transition: transform 0.6s var(--ease-snap);
}
.project-featured:hover .project-featured-img img { transform: scale(1.04); }
.project-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,15,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.project-featured:hover .project-overlay,
.project-card:hover .project-overlay { opacity: 1; }
.view-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid var(--lime);
  padding: 10px 24px;
  border-radius: 4px;
}
.project-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--void);
  background: var(--lime);
  padding: 4px 12px;
  border-radius: 100px;
}
.project-badge-pink {
  background: var(--pink);
  color: var(--white);
}
.project-featured-info { padding: 20px 0; }
.project-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.project-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
  transition: color 0.2s;
}
.project-featured:hover .project-title,
.project-card:hover .project-title { color: var(--lime); }
.project-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.project-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.project-meta span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(250,250,250,0.35);
}
.project-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--lime);
  border-bottom: 1px solid rgba(204,255,0,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.project-link:hover { border-color: var(--lime); }

/* ── Projects Grid ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.project-card {
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  background: var(--deep);
  border: 1px solid var(--muted2);
  transition: border-color 0.3s, transform 0.3s var(--ease-snap);
}
.project-card:hover {
  border-color: rgba(204,255,0,0.3);
  transform: translateY(-6px);
}
.project-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-card-img img { transition: transform 0.5s var(--ease-snap); }
.project-card:hover .project-card-img img { transform: scale(1.06); }
.project-card .view-label {
  font-size: 20px;
  padding: 0;
  border: none;
  background: none;
}
.project-card-info { padding: 20px; }
.project-card-info .project-title { font-size: 16px; margin-bottom: 8px; }
.project-card-info .project-desc { font-size: 13px; margin-bottom: 12px; }
.project-card-info .project-meta { margin-bottom: 0; }

/* ── About ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--muted2);
}
.about-img { width: 100%; height: 100%; object-fit: cover; }
.about-img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(123,47,190,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.about-lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 24px;
}
.about-lead em {
  font-style: normal;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-exp {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--muted2);
  padding-left: 24px;
}
.exp-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--muted2);
  position: relative;
}
.exp-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 22px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}
.exp-role {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.exp-company {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.exp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-lt);
  margin-top: 6px;
  flex-shrink: 0;
}
.about-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-tools span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid var(--muted2);
  color: var(--muted);
  transition: all 0.2s;
}
.about-tools span:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* ── Contact ── */
.contact { text-align: center; }
.contact-lead {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 700px;
  margin: 0 auto;
}
.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-radius: 8px;
  border: 1px solid var(--muted2);
  background: var(--deep);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-snap);
}
.contact-link:hover {
  border-color: rgba(204,255,0,0.4);
  background: rgba(204,255,0,0.04);
  transform: translateX(6px);
}
.contact-platform {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  min-width: 90px;
  text-align: left;
}
.contact-handle {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
  text-align: center;
}
.contact-arrow {
  font-size: 18px;
  color: var(--muted2);
  transition: color 0.2s, transform 0.2s;
}
.contact-link:hover .contact-arrow {
  color: var(--lime);
  transform: translate(3px, -3px);
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--muted2);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-copy {
  font-size: 12px;
  color: rgba(250,250,250,0.25);
  letter-spacing: 1px;
}
.footer-beh {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-beh:hover { color: var(--lime); }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-snap), transform 0.7s var(--ease-snap);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-featured { grid-template-columns: 1fr; gap: 32px; }
  .project-featured-reverse { direction: ltr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { aspect-ratio: 16/9; max-height: 400px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 80px; }
  .work, .about, .contact { padding: 80px 24px; }
  .projects-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .contact-link { flex-direction: column; gap: 6px; text-align: center; }
  .contact-platform { min-width: auto; text-align: center; }
  .contact-handle { text-align: center; }
}

/* ── Campaign Reel ── */
.reel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.reel-track {
  position: absolute;
  inset: 0;
}
.reel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 6s cubic-bezier(0.4,0,0.2,1);
}
.reel-slide.active {
  opacity: 1;
  transform: scale(1);
}
.reel-slide.prev {
  opacity: 0;
  transform: scale(0.96);
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.3) 0%,
    rgba(10,10,15,0.1) 40%,
    rgba(10,10,15,0.6) 100%
  );
  z-index: 1;
}
.reel-content {
  position: absolute;
  bottom: 80px;
  left: 64px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reel-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--lime);
  text-transform: uppercase;
}
.reel-counter {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  opacity: 0.9;
}
.reel-counter span:first-child {
  color: var(--lime);
}
.reel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.reel-dot {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: all 0.4s var(--ease-snap);
  cursor: pointer;
}
.reel-dot.active {
  width: 48px;
  background: var(--lime);
}
.reel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 2;
}
.reel-progress-bar {
  height: 100%;
  background: var(--lime);
  width: 0%;
  transition: width linear;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-snap);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-snap);
}
.lightbox.open .lightbox-img-wrap img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  z-index: 10000;
}
.lightbox-close:hover { opacity: 1; color: var(--lime); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 36px;
  width: 56px; height: 56px;
  border-radius: 50%;
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease-snap);
  z-index: 10000;
}
.lightbox-prev { left: 32px; }
.lightbox-next { right: 32px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
}
.lightbox-info {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.lightbox-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.lightbox-client {
  font-size: 12px;
  color: var(--lime);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Visual Album ── */
.album {
  padding: 120px 64px;
  background: var(--void);
}
.album-sub {
  font-size: 16px;
  color: var(--muted);
  margin-top: -24px;
  margin-bottom: 56px;
  max-width: 600px;
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.album-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
  cursor: pointer;
}
.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-snap);
}
.album-item:hover img {
  transform: scale(1.06);
}
.album-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--ease-snap);
}
.album-item:hover .album-caption {
  transform: translateY(0);
  opacity: 1;
}
.album-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.album-client {
  font-size: 12px;
  color: var(--lime);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .album { padding: 80px 40px; }
  .album-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .album { padding: 80px 24px; }
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .album-caption { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   RS3 SHOWCASE
═══════════════════════════════════════ */
.rs3-showcase {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.rs3-bg {
  position: absolute;
  inset: 0;
  background-image: url('rs3.png');
  background-size: cover;
  background-position: center top;
  transform: scale(1.08);
  transition: transform 0.1s linear;
  will-change: transform;
}
.rs3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 45%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}
.rs3-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  max-width: 680px;
}
.rs3-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rs3-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--lime);
}
.rs3-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}
.rs3-title span {
  color: var(--lime);
  font-style: italic;
}
.rs3-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 520px;
}
.rs3-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
}
.rs3-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rs3-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  font-family: 'Playfair Display', serif;
}
.rs3-stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.rs3-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.rs3-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rs3-tags span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 2px;
  transition: all 0.3s;
}
.rs3-tags span:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.rs3-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rs3-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: rs3-scroll-pulse 2s ease-in-out infinite;
}
@keyframes rs3-scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
@media (max-width: 768px) {
  .rs3-content { padding: 0 24px; max-width: 100%; }
  .rs3-title { font-size: 48px; }
  .rs3-stats { gap: 20px; }
  .rs3-stat-num { font-size: 22px; }
}
}