/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c0: #0D0D0D;
  --c1: #1A1A1A;
  --c2: #262626;
  --c3: #3A3A3A;
  --c4: #4D4D4D;
  --white: #F5F5F0;
  --white-dim: rgba(245,245,240,0.55);
  --white-faint: rgba(245,245,240,0.12);
  --glow: rgba(200,200,190,0.18);
  --glow-strong: rgba(220,220,210,0.32);
  --serif-display: 'Playfair Display', Georgia, serif;
  --serif-body: 'EB Garamond', Georgia, serif;
  --serif-thin: 'Cormorant Garamond', Georgia, serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--c0);
  color: var(--white);
  font-family: var(--serif-body);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== GRAIN ===== */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.038;
  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='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grain-drift 8s steps(10) infinite;
}
@keyframes grain-drift {
  0%,100%{transform:translate(0,0)}
  10%{transform:translate(-2%,-3%)}
  20%{transform:translate(3%,1%)}
  30%{transform:translate(-1%,4%)}
  40%{transform:translate(4%,-2%)}
  50%{transform:translate(-3%,2%)}
  60%{transform:translate(2%,-4%)}
  70%{transform:translate(-4%,3%)}
  80%{transform:translate(1%,-1%)}
  90%{transform:translate(3%,4%)}
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 120px 0; }
.text-center { text-align: center; }

.section-label {
  font-family: var(--serif-body);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 24px;
  display: block;
}

.section-title {
  font-family: var(--serif-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--white-dim); }

.section-sub {
  font-family: var(--serif-body);
  font-size: 1.05rem;
  color: var(--white-dim);
  margin-bottom: 64px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-fade { opacity: 0; transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.revealed { opacity: 1 !important; transform: translateY(0) !important; }

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--white-faint);
}

.nav-logo {
  font-family: var(--serif-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  cursor: default;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: var(--serif-body);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 20px 0; }
.mobile-menu ul li a {
  font-family: var(--serif-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white-dim);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-menu ul li a:hover { color: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--serif-body);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 32px;
  display: block;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--serif-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--white-dim);
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}
.hero-title .line.revealed { animation: fadeInUp 0.9s ease forwards; }

.hero-sub {
  font-family: var(--serif-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.btn {
  font-family: var(--serif-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 2px;
  transition: all var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-primary {
  background: var(--white);
  color: var(--c0);
  border: 1px solid var(--white);
}
.btn-primary:hover {
  background: transparent;
  color: var(--white);
  box-shadow: 0 0 30px var(--glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--c3);
}
.btn-ghost:hover {
  border-color: var(--white);
  box-shadow: 0 0 20px var(--glow);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll-hint span {
  font-family: var(--serif-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--white-dim), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%,100%{ opacity: 0.3; transform: scaleY(0.8); }
  50%{ opacity: 1; transform: scaleY(1); }
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ===== ABOUT ===== */
.about { border-top: 1px solid var(--white-faint); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-intro {
  font-family: var(--serif-body);
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--white-dim);
  margin-bottom: 40px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.tag {
  font-family: var(--serif-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid var(--c3);
  padding: 8px 18px;
  border-radius: 1px;
  transition: all var(--transition);
}
.tag:hover {
  border-color: var(--white-dim);
  color: var(--white);
  background: var(--white-faint);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--white-faint);
  padding-top: 40px;
}
.stat-num {
  display: block;
  font-family: var(--serif-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--serif-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ===== SOFTWARES / ORBIT ===== */
.softwares { border-top: 1px solid var(--white-faint); overflow: hidden; }

.orbit-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 20px;
  position: relative;
}

.orbit-scene {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
}

/* Center */
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.center-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,200,190,0.22) 0%, transparent 70%);
  animation: pulse-glow 3s ease infinite;
}
.center-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 20px rgba(220,220,210,0.9), 0 0 60px rgba(200,200,190,0.4);
  position: relative;
}
.center-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  animation: ring-pulse 3s ease infinite;
}
.ring-1 { width: 40px; height: 40px; animation-delay: 0s; }
.ring-2 { width: 70px; height: 70px; animation-delay: 0.5s; border-style: dashed; }
.ring-3 { width: 100px; height: 100px; animation-delay: 1s; }

@keyframes pulse-glow {
  0%,100%{ opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%{ opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}
@keyframes ring-pulse {
  0%,100%{ opacity: 0.5; }
  50%{ opacity: 1; }
}

/* Orbit ring */
.orbit-ring {
  position: absolute;
  inset: 0;
}

.orbit-item {
  position: absolute;
  top: 50%; left: 50%;
  width: 86px; height: 86px;
  margin: -43px 0 0 -43px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Rounded app cards */
.orbit-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  border: 1px solid rgba(245,245,240,0.18);
  background: linear-gradient(145deg, rgba(38,38,38,0.98), rgba(18,18,18,0.98));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: all 0.4s ease;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
  /* Counter-rotate so cards stay upright */
}

.orbit-icon.app-icon {
  position: relative;
  overflow: hidden;
}

.orbit-icon.app-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 45%, rgba(0,0,0,0.12));
  pointer-events: none;
}

.after-effects-icon { background: linear-gradient(145deg, #2b123e, #170d25); color: #c98cff; }
.premiere-icon { background: linear-gradient(145deg, #21123d, #120c24); color: #d3a5ff; }
.davinci-icon { background: linear-gradient(145deg, #16334a, #0d1b29); color: #8dd7ff; }
.vn-icon { background: linear-gradient(145deg, #202020, #0d0d0d); color: #ffffff; }
.inshot-icon { background: linear-gradient(145deg, #3b2520, #1c1210); color: #ffb89c; }
.photoshop-icon { background: linear-gradient(145deg, #102f45, #0b1a27); color: #8fd8ff; }

.orbit-label {
  position: absolute;
  bottom: -22px;
  font-family: var(--serif-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.35);
  white-space: nowrap;
  transition: color 0.4s ease;
  pointer-events: none;
}

.orbit-item:hover .orbit-icon {
  border-color: var(--white-dim);
  color: var(--white);
  background: var(--c2);
  box-shadow: 0 0 20px var(--glow), 0 0 40px rgba(200,200,190,0.1);
  transform: scale(1.08);
}
.orbit-item:hover .orbit-label { color: var(--white-dim); }

/* HUD corners */
.hud-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: rgba(255,255,255,0.12);
  border-style: solid;
}
.hud-corner.tl { top: 20px; left: 20px; border-width: 1px 0 0 1px; }
.hud-corner.tr { top: 20px; right: 20px; border-width: 1px 1px 0 0; }
.hud-corner.bl { bottom: 20px; left: 20px; border-width: 0 0 1px 1px; }
.hud-corner.br { bottom: 20px; right: 20px; border-width: 0 1px 1px 0; }

/* Orbit track circle (decorative) */
.orbit-scene::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.06);
}
.orbit-scene::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

/* ===== WORK SAMPLES ===== */
.work {
  border-top: 1px solid var(--white-faint);
  background: linear-gradient(to bottom, var(--c0), var(--c1) 50%, var(--c0));
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  border: 1px solid var(--c2);
  border-radius: 4px;
  overflow: hidden;
  background: var(--c1);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.work-card:hover {
  border-color: var(--c3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px var(--glow);
}

.card-video-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card-video-placeholder {
  width: 100%; height: 100%;
  background: var(--c2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.6s ease;
  background-image:
    linear-gradient(135deg, var(--c2) 0%, var(--c3) 50%, var(--c2) 100%);
}
.card-video-placeholder.style-2 { background-image: linear-gradient(160deg, var(--c1) 0%, var(--c3) 100%); }
.card-video-placeholder.style-3 { background-image: linear-gradient(45deg, var(--c3) 0%, var(--c2) 60%, var(--c1) 100%); }
.card-video-placeholder.style-4 { background-image: linear-gradient(200deg, var(--c2) 0%, var(--c4) 100%); }
.card-video-placeholder.style-5 { background-image: linear-gradient(110deg, var(--c3) 0%, var(--c1) 100%); }
.card-video-placeholder.style-6 { background-image: linear-gradient(250deg, var(--c1) 0%, var(--c3) 100%); }

.work-card:hover .card-video-placeholder { transform: scale(1.04); }

.play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245,245,240,0.12);
  border: 1px solid rgba(245,245,240,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}
.play-btn span { font-size: 0.85rem; color: var(--white); margin-left: 3px; }
.work-card:hover .play-btn {
  background: rgba(245,245,240,0.25);
  transform: scale(1.15);
  box-shadow: 0 0 30px var(--glow);
}

.card-overlay-text {
  position: absolute;
  bottom: 14px; right: 16px;
  font-family: var(--serif-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.4);
}

.card-info {
  padding: 24px;
}
.card-category {
  font-family: var(--serif-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  display: block;
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--serif-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-desc {
  font-family: var(--serif-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--white-dim);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  border-top: 1px solid var(--white-faint);
  overflow: hidden;
}

.testi-track-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testi-card {
  flex: 0 0 100%;
  padding: 52px 56px;
  background: rgba(26,26,26,0.6);
  border: 1px solid var(--c2);
  border-radius: 6px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
}

.testi-quote {
  font-family: var(--serif-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--c3);
  margin-bottom: 20px;
  font-weight: 700;
}

.testi-text {
  font-family: var(--serif-thin);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.85;
  color: var(--white-dim);
  margin-bottom: 36px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c3);
  border: 1px solid var(--c4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-dim);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--serif-body);
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}
.testi-role {
  font-family: var(--serif-body);
  font-size: 0.8rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}
.testi-btn {
  background: none;
  border: 1px solid var(--c3);
  color: var(--white-dim);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-body);
}
.testi-btn:hover {
  border-color: var(--white-dim);
  color: var(--white);
  box-shadow: 0 0 20px var(--glow);
}

.testi-dots {
  display: flex;
  gap: 10px;
}
.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.testi-dot.active {
  background: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--glow);
}

/* ===== CONTACT ===== */
.contact { border-top: 1px solid var(--white-faint); }

.contact-sub {
  font-family: var(--serif-body);
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 64px;
}

.contact-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 40px;
  border: 1px solid var(--c2);
  border-radius: 4px;
  text-decoration: none;
  min-width: 200px;
  background: var(--c1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(200,200,190,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.contact-card:hover::before { opacity: 1; }
.contact-card:hover {
  border-color: var(--c4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px var(--glow);
}

.contact-icon {
  width: 52px; height: 52px;
  color: var(--white-dim);
  transition: color var(--transition), transform var(--transition);
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-card:hover .contact-icon {
  color: var(--white);
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(200,200,190,0.5));
}

.contact-platform {
  font-family: var(--serif-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--transition);
}
.contact-card:hover .contact-platform { color: var(--white); }

.contact-handle {
  font-family: var(--serif-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  word-break: break-all;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--white-faint);
  padding: 60px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  font-family: var(--serif-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white-dim);
}
.footer-tagline {
  font-family: var(--serif-thin);
  font-size: 1rem;
  font-style: italic;
  color: var(--c4);
}
.footer-copy {
  font-family: var(--serif-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--c4);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-left .section-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 80px 0; }
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 80px; }
  .hero-title { font-size: clamp(3rem, 10vw, 5rem); }
  .work-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .orbit-scene { width: 320px; height: 320px; }
  .orbit-scene::before { width: 260px; height: 260px; }
  .orbit-scene::after { width: 220px; height: 220px; }
  .testi-card { padding: 36px 28px; }
  .testi-text { font-size: 1rem; }
  .contact-links { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; max-width: 360px; flex-direction: row; padding: 28px 32px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .about-stats { grid-template-columns: 1fr; }
  .orbit-scene { width: 280px; height: 280px; }
}
