:root {
  --project-primary: #a855f7;
  --project-secondary: #ec4899;
  --project-accent: #3b82f6;
  --project-dark: #0f172a;
  --project-light: #f8fafc;
}

body.project-detail-page {
  background: var(--bg-color, #020617);
  color: var(--text-primary, #ffffff);
  overflow-x: hidden;
}

html[data-theme="light"] body.project-detail-page {
  background: #e2e2e2;
  color: #111827;
}

.project-detail-page #project-detail-content {
  width: 100%;
  min-height: 100vh;
}

/* ==============================================
   LAYOUT 1: CINEMATIC PARALLAX (Arjuna)
   ============================================== */

.layout-cinematic .project-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-cinematic .project-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 0.3s ease-out;
  z-index: 0;
}

.layout-cinematic .project-hero:hover::before {
  transform: scale(1.15);
}

.layout-cinematic .project-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.4) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(168, 85, 247, 0.3) 100%
  );
  z-index: 1;
  backdrop-filter: blur(2px);
}

.layout-cinematic .project-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  padding: 0 80px;
}

.layout-cinematic .intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0 0 24px 0;
  background: linear-gradient(135deg, #ffffff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

.layout-cinematic .intro-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-bottom: 48px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.layout-cinematic .intro-meta {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.layout-cinematic .meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.layout-cinematic .meta-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(168, 85, 247, 0.9);
  text-transform: uppercase;
}

.layout-cinematic .meta-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.layout-cinematic .intro-live-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 100px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.layout-cinematic .intro-live-link:hover {
  background: rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3);
}

/* Light mode overrides for Cinematic */
html[data-theme="light"] .layout-cinematic .project-hero::after {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(168, 85, 247, 0.15) 100%
  );
}

html[data-theme="light"] .layout-cinematic .intro-title {
  background: linear-gradient(135deg, #1e293b, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html[data-theme="light"] .layout-cinematic .intro-subtitle {
  color: rgba(30, 41, 59, 0.85);
}

html[data-theme="light"] .layout-cinematic .meta-label {
  color: #a855f7;
}

html[data-theme="light"] .layout-cinematic .meta-value {
  color: #0f172a;
}

html[data-theme="light"] .layout-cinematic .intro-live-link {
  color: #0f172a;
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
}

html[data-theme="light"] .layout-cinematic .intro-live-link:hover {
  color: #ffffff;
  background: rgba(168, 85, 247, 0.8);
  border-color: #a855f7;
}

/* ==============================================
   LAYOUT 2: MAGAZINE EDITORIAL (Bima)
   ============================================== */

.layout-magazine .project-hero {
  background: #ffffff;
  padding: 120px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

html[data-theme="dark"] .layout-magazine .project-hero {
  background: #0f172a;
}

.layout-magazine .project-hero__overlay {
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.layout-magazine .intro-left {
  position: relative;
}

.layout-magazine .intro-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(100px, 15vw, 220px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.06em;
  margin: 0;
  color: #000000;
  text-transform: uppercase;
  position: relative;
}

html[data-theme="dark"] .layout-magazine .intro-title {
  color: #ffffff;
}

.layout-magazine .intro-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border: 3px solid #a855f7;
  border-radius: 50%;
  z-index: -1;
}

.layout-magazine .intro-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  margin-top: 40px;
  max-width: 500px;
}

.layout-magazine .intro-right {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.layout-magazine .intro-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.layout-magazine .project-hero:hover .intro-right::before {
  transform: scale(1.05);
}

.layout-magazine .intro-meta {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 24px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .layout-magazine .intro-meta {
  background: rgba(15, 23, 42, 0.95);
}

.layout-magazine .meta-label {
  font-size: 10px;
  color: #a855f7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.layout-magazine .meta-value {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
  margin-top: 4px;
}

html[data-theme="dark"] .layout-magazine .meta-value {
  color: #ffffff;
}

/* ==============================================
   LAYOUT 3: SPLIT SCREEN DYNAMIC (Mandala)
   ============================================== */

.layout-split .project-hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 45% 55%;
  position: relative;
  overflow: hidden;
}

.layout-split .hero-left {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.layout-split .hero-left::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.layout-split .hero-right {
  background-image: inherit;
  background-size: cover;
  background-position: center;
  position: relative;
}

.layout-split .hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(102, 126, 234, 0.3), transparent 50%);
}

.layout-split .intro-content {
  position: relative;
  z-index: 2;
}

.layout-split .intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(70px, 10vw, 140px);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 24px 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.layout-split .intro-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 40px;
}

.layout-split .intro-meta {
  display: grid;
  gap: 24px;
}

.layout-split .meta-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.layout-split .meta-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 100px;
}

.layout-split .meta-value {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

/* Light mode overrides for Split */
html[data-theme="light"] .layout-split .hero-left {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

html[data-theme="light"] .layout-split .intro-title,
html[data-theme="light"] .layout-split .intro-subtitle,
html[data-theme="light"] .layout-split .meta-label,
html[data-theme="light"] .layout-split .meta-value {
  color: #ffffff;
}

/* ==============================================
   LAYOUT 4: MINIMAL BRUTALIST (Lumina)
   ============================================== */

.layout-brutalist .project-hero {
  background: #000000;
  color: #ffffff;
  padding: 160px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.layout-brutalist .project-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: grayscale(100%);
}

.layout-brutalist .project-hero__overlay {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.layout-brutalist .intro-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(80px, 12vw, 200px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  border-left: 12px solid #3b82f6;
  padding-left: 40px;
  margin-bottom: 60px;
}

.layout-brutalist .intro-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  line-height: 1.6;
  padding-left: 52px;
  margin-bottom: 80px;
}

.layout-brutalist .intro-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-left: 52px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 40px;
}

.layout-brutalist .meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.layout-brutalist .meta-label {
  font-size: 11px;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.layout-brutalist .meta-value {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}

/* Light mode overrides for Brutalist */
html[data-theme="light"] .layout-brutalist .project-hero {
  background: #ffffff;
}

html[data-theme="light"] .layout-brutalist .project-hero::before {
  opacity: 0.08;
}

html[data-theme="light"] .layout-brutalist .intro-title {
  color: #0f172a;
  border-left-color: #3b82f6;
}

html[data-theme="light"] .layout-brutalist .intro-subtitle {
  color: rgba(15, 23, 42, 0.75);
}

html[data-theme="light"] .layout-brutalist .intro-meta {
  border-left-color: rgba(15, 23, 42, 0.2);
}

html[data-theme="light"] .layout-brutalist .meta-label {
  color: #3b82f6;
}

html[data-theme="light"] .layout-brutalist .meta-value {
  color: #0f172a;
}

/* ==============================================
   LAYOUT 5: GLASSMORPHISM FLOAT (Apex)
   ============================================== */

.layout-glass .project-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
  min-height: 100vh;
  padding: 120px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.layout-glass .project-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  animation: float 8s ease-in-out infinite;
}

.layout-glass .project-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  animation: float 10s ease-in-out infinite reverse;
}

.layout-glass .project-hero__overlay {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  padding: 80px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.layout-glass .intro-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 24px 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.layout-glass .intro-subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 60px;
}

.layout-glass .intro-meta {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.layout-glass .meta-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.layout-glass .meta-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.layout-glass .meta-value {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
}

/* Light mode overrides for Glass */
html[data-theme="light"] .layout-glass .project-hero {
  background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 50%, #fae8ff 100%);
}

html[data-theme="light"] .layout-glass .project-hero::before {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent);
}

html[data-theme="light"] .layout-glass .project-hero::after {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
}

html[data-theme="light"] .layout-glass .project-hero__overlay {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(168, 85, 247, 0.2);
}

html[data-theme="light"] .layout-glass .intro-title {
  color: #1e293b;
  text-shadow: 0 2px 10px rgba(168, 85, 247, 0.2);
}

html[data-theme="light"] .layout-glass .intro-subtitle {
  color: rgba(30, 41, 59, 0.8);
}

html[data-theme="light"] .layout-glass .meta-item {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(168, 85, 247, 0.2);
}

html[data-theme="light"] .layout-glass .meta-label {
  color: rgba(168, 85, 247, 0.8);
}

html[data-theme="light"] .layout-glass .meta-value {
  color: #1e293b;
}

/* ==============================================
   LAYOUT 6: NEON CYBERPUNK (Echo)
   ============================================== */

.layout-neon .project-hero {
  background: #000000;
  min-height: 100vh;
  padding: 120px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.layout-neon .project-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(236, 72, 153, 0.1) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(59, 130, 246, 0.1) 50%, transparent 100%);
  background-size: 200% 200%, 200% 200%;
  animation: neonPulse 4s ease-in-out infinite;
}

.layout-neon .project-hero__overlay {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
}

.layout-neon .intro-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(90px, 14vw, 220px);
  font-weight: 900;
  line-height: 0.9;
  margin: 0 0 40px 0;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 
    0 0 10px rgba(236, 72, 153, 0.8),
    0 0 20px rgba(236, 72, 153, 0.6),
    0 0 40px rgba(236, 72, 153, 0.4),
    0 0 80px rgba(236, 72, 153, 0.2);
  animation: neonFlicker 2s ease-in-out infinite alternate;
}

.layout-neon .intro-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 60px;
  border-left: 3px solid #ec4899;
  padding-left: 24px;
}

.layout-neon .intro-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 800px;
}

.layout-neon .meta-item {
  background: rgba(236, 72, 153, 0.05);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.layout-neon .meta-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ec4899, transparent);
  animation: neonScan 3s linear infinite;
}

.layout-neon .meta-label {
  font-size: 11px;
  color: #ec4899;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.layout-neon .meta-value {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  margin-top: 8px;
}

/* Light mode overrides for Neon */
html[data-theme="light"] .layout-neon .project-hero {
  background: linear-gradient(135deg, #fdf2f8 0%, #fae8ff 50%, #ede9fe 100%);
}

html[data-theme="light"] .layout-neon .project-hero::before {
  background: 
    linear-gradient(90deg, transparent 0%, rgba(236, 72, 153, 0.05) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(168, 85, 247, 0.05) 50%, transparent 100%);
}

html[data-theme="light"] .layout-neon .intro-title {
  color: #1e293b;
  text-shadow: 
    0 0 20px rgba(236, 72, 153, 0.3),
    0 0 40px rgba(236, 72, 153, 0.2),
    0 2px 10px rgba(236, 72, 153, 0.15);
}

html[data-theme="light"] .layout-neon .intro-subtitle {
  color: rgba(30, 41, 59, 0.8);
  border-left-color: #ec4899;
}

html[data-theme="light"] .layout-neon .meta-item {
  background: rgba(236, 72, 153, 0.05);
  border-color: rgba(236, 72, 153, 0.2);
}

html[data-theme="light"] .layout-neon .meta-label {
  color: #ec4899;
  text-shadow: 0 0 5px rgba(236, 72, 153, 0.3);
}

html[data-theme="light"] .layout-neon .meta-value {
  color: #1e293b;
}

/* ==============================================
   SHARED CONTENT SECTIONS
   ============================================== */

.checkerboard-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  min-height: 70vh;
  align-items: center;
}

.checkerboard-image {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  overflow: hidden;
  position: relative;
}

.checkerboard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.checkerboard-row:hover .checkerboard-image img {
  transform: scale(1.05);
}

.checkerboard-text {
  padding: 100px 80px;
  background: var(--bg-color, #020617);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
}

html[data-theme="light"] .checkerboard-text {
  background: #f8fafc;
}

html[data-theme="light"] .content-title {
  color: #0f172a;
}

html[data-theme="light"] .content-text {
  color: rgba(15, 23, 42, 0.8);
}

.content-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 32px 0;
  color: var(--text-primary, #ffffff);
}

.content-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.8;
  color: var(--text-secondary, rgba(255, 255, 255, 0.8));
  max-width: 600px;
}

.content-text ul {
  margin-top: 24px;
  padding-left: 24px;
}

.content-text li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Result & Metrics */
.project-result-review {
  padding: 140px 80px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(59, 130, 246, 0.05));
  position: relative;
}

html[data-theme="light"] .project-result-review {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
}

.result-section {
  max-width: 1400px;
  margin: 0 auto;
}

.result-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  margin: 0 0 40px 0;
  color: var(--text-primary, #ffffff);
}

.result-summary {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  color: var(--text-secondary, rgba(255, 255, 255, 0.85));
  max-width: 900px;
  margin-bottom: 80px;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.result-metric {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.result-metric:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

html[data-theme="light"] .result-metric {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .result-metric:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
}

html[data-theme="light"] .result-title {
  color: #0f172a;
}

html[data-theme="light"] .result-summary {
  color: rgba(15, 23, 42, 0.8);
}

html[data-theme="light"] .result-metric-label {
  color: rgba(15, 23, 42, 0.7);
}

.result-metric-value {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: #a855f7;
  margin-bottom: 12px;
  line-height: 1;
}

.result-metric-label {
  font-size: 16px;
  color: var(--text-secondary, rgba(255, 255, 255, 0.7));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Gallery Row */
.project-gallery-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.project-gallery-row img {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  object-fit: cover;
  transition: all 0.6s ease;
}

.project-gallery-row img:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

/* Client Review */
.project-review {
  padding: 140px 80px;
  background: var(--bg-color, #020617);
}

html[data-theme="light"] .project-review {
  background: #ffffff;
}

html[data-theme="light"] .review-text {
  color: #0f172a;
}

html[data-theme="light"] .client-name {
  color: #0f172a;
}

html[data-theme="light"] .client-title {
  color: rgba(15, 23, 42, 0.6);
}

.review-section {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.review-quote-symbol {
  font-size: 200px;
  line-height: 1;
  color: rgba(168, 85, 247, 0.15);
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: -60px;
  left: -40px;
}

.review-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.6;
  font-weight: 600;
  color: var(--text-primary, #ffffff);
  margin-bottom: 48px;
  position: relative;
  padding-left: 80px;
}

.review-text span {
  color: #a855f7;
}

.review-client-profile {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 80px;
}

.client-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(168, 85, 247, 0.3);
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary, #ffffff);
}

.client-title {
  font-size: 14px;
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
}

/* ==============================================
   ANIMATIONS
   ============================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes neonPulse {
  0%, 100% {
    background-position: 0% 0%, 0% 0%;
  }
  50% {
    background-position: 100% 100%, 100% 100%;
  }
}

@keyframes neonFlicker {
  0%, 100% {
    text-shadow: 
      0 0 10px rgba(236, 72, 153, 0.8),
      0 0 20px rgba(236, 72, 153, 0.6),
      0 0 40px rgba(236, 72, 153, 0.4);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(236, 72, 153, 1),
      0 0 40px rgba(236, 72, 153, 0.8),
      0 0 80px rgba(236, 72, 153, 0.6);
  }
}

@keyframes neonScan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

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

@media (max-width: 1024px) {
  .layout-magazine .project-hero__overlay,
  .layout-split .project-hero,
  .checkerboard-row,
  .project-gallery-row {
    grid-template-columns: 1fr;
  }

  .layout-split .hero-left,
  .layout-split .hero-right {
    min-height: 50vh;
  }

  .intro-meta {
    gap: 30px !important;
  }

  .checkerboard-text {
    padding: 60px 40px;
  }

  .project-result-review,
  .project-review {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .layout-cinematic .project-hero__overlay,
  .layout-glass .project-hero__overlay,
  .layout-neon .project-hero__overlay,
  .layout-brutalist .project-hero__overlay {
    padding: 40px;
  }

  .intro-meta {
    flex-direction: column;
    gap: 20px !important;
  }

  .result-metrics {
    grid-template-columns: 1fr;
  }

  .review-text {
    padding-left: 0;
  }

  .review-client-profile {
    padding-left: 0;
  }

  .review-quote-symbol {
    font-size: 120px;
    top: -40px;
    left: -20px;
  }
}
