/* ============================================
   Banana Studio — Premium Design
   Clash Display + Satoshi | Dark + Banana Yellow
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --bg-card: #121212;
  --bg-card-hover: #1a1a1a;
  --text: #f5f5f5;
  --text-secondary: #c8c8c8;
  --text-muted: #808080;
  --accent: #FFD700;
  --accent-bright: #ffed4e;
  --accent-glow: rgba(255, 215, 0, 0.12);
  --border: #1e1e1e;
  --border-hover: #2a2a2a;
  --radius: 16px;
  --font-heading: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --max-width: 1280px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, #080808 0%, #0d0d0d 38%, #111111 100%);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.3px;
  cursor: url('../images/muzcan.png') 0 0, auto;
}

html {
  cursor: url('../images/muzcan.png') 0 0, auto;
}

button, a, input, textarea, select, .lang-btn, .mini-social-link, .contact-social-link, .nav-toggle {
  cursor: url('../images/muzcan.png') 10 10, pointer;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.12);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Ambient Background ─── */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: transparent;
}

.ambient-orb {
  display: none;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(100px, 80px); }
  66% { transform: translate(-60px, 120px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-80px, -50px); }
  66% { transform: translate(70px, -100px); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.4); }
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled { 
  padding: 14px 0;
  border-bottom-color: rgba(255, 215, 0, 0.08);
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img { height: 28px; width: auto; opacity: 0.95; }

.nav-links { display: flex; gap: 36px; }

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--t), transform var(--t);
  letter-spacing: 0.02em;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: none;
}

.nav-ticket:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  transform: none;
  box-shadow: none;
}

.brand-wordmark {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  margin-right: 2px;
}

.social-mini-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 6px;
}

.mini-social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
  backdrop-filter: none;
}

.mini-social-link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transform: none;
  box-shadow: none;
}

.mini-social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.lang-switcher,
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  border: 1.5px solid rgba(255, 215, 0, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(6px);
}

.lang-btn:hover,
.lang-btn.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.05));
  color: var(--accent);
  transform: scale(1.05);
}

.mobile-lang-switcher .lang-btn {
  width: auto;
  min-width: 70px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(32px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  flex-direction: column;
  padding: 20px 32px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  padding: 16px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu a:last-child { border-bottom: none; }

.mobile-lang-switcher {
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 32px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(64px, 14vw, 140px);
  font-weight: 800;
  line-height: 0.92;
  margin-bottom: 36px;
  letter-spacing: -0.06em;
  word-spacing: 9999px;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }

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

.title-accent {
  background: linear-gradient(135deg, #f6e8a0 0%, var(--accent) 42%, #e1b64d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.1));
  animation: gradientShift 3.2s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.1); }
}

.hero-subtitle {
  display: block;
  font-size: clamp(18px, 2.2vw, 25px);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 42px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #fff5b5 0%, #ffd84d 38%, #ffb000 100%);
  color: #0c0c0c;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(255, 194, 0, 0.14);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fff9d1 0%, #ffe566 38%, #ffc333 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(255, 194, 0, 0.18);
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border: 1px solid rgba(255, 215, 0, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.btn-ghost:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 215, 0, 0.08);
}

.btn-ghost:active {
  transform: translateY(-2px);
}

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

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: slideInUp 1.2s ease-out 0.6s forwards;
  opacity: 0;
}

.scroll-line {
  width: 2px;
  height: 56px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.4;
    transform: translateY(16px);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ─── Sections ─── */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease-out;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.08);
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 38%, #f7d76a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 8px 20px rgba(255, 215, 0, 0.04);
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ─── Portfolio Grid ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
  cursor: pointer;
}

.portfolio-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080808;
}

.card-media .poster {
  width: 102%;
  height: 102%;
  margin: -1%;
  object-fit: cover;
  transition: all var(--t);
}

.portfolio-card:hover .card-media .poster {
  transform: scale(1.04);
}

.card-media video {
  position: absolute;
  top: -1%; left: -1%;
  width: 102%;
  height: 102%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--t);
}

.card-media video.active {
  opacity: 1;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--t);
}

.portfolio-card:hover .play-overlay {
  opacity: 1;
}

.play-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  backdrop-filter: blur(12px);
  transition: all var(--t);
}

.portfolio-card:hover .play-icon {
  background: rgba(255, 215, 0, 0.25);
  transform: scale(1.1);
}

.card-meta {
  padding: 18px 20px;
}

.card-meta h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.reference-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: auto;
  padding: 28px 24px;
  margin: 0 -24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: rgba(14, 14, 14, 0.82);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  position: relative;
}

.reference-grid::before,
.reference-grid::after {
  content: none;
}

.reference-grid::-webkit-scrollbar {
  display: none;
}

.reference-card {
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  flex: 0 0 min(100%, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: none;
}

.reference-card::before,
.reference-card::after {
  content: none;
}

.reference-card:hover {
  border-color: rgba(255, 215, 0, 0.16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.reference-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: none;
  animation: none;
  transition: transform 0.25s ease;
}

.reference-image::after {
  content: none;
}

.reference-card:hover .reference-image {
  transform: scale(1.01);
}

.reference-info {
  display: none;
  z-index: 3;
}

.reference-info h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reference-info p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ─── See More Button ─── */
.section-footer {
  margin-top: 32px;
  text-align: center;
}

.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--accent);
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: 0.01em;
}

.see-more-btn:hover {
  background: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.25);
}

.see-more-btn .arrow {
  transition: transform var(--t);
}

.see-more-btn:hover .arrow {
  transform: translateX(4px);
}

.more-grid {
  margin-top: 20px;
}

.hidden {
  display: none !important;
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 24px;
}

.about-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-main h2 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 32px;
  letter-spacing: -0.05em;
  max-width: 650px;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-lead {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.95;
  margin-bottom: 22px;
  max-width: 640px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.about-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.95;
  max-width: 640px;
  letter-spacing: 0.3px;
  margin-bottom: 48px;
}

.team-members {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  align-items: center;
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-member h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.team-member p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.team-leader h3 {
  font-size: 36px;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-highlight {
  padding: 32px 32px;
  border: 1.5px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
  box-shadow: 0 12px 48px rgba(255, 215, 0, 0.1), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-highlight:hover {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 16px 64px rgba(255, 215, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.highlight-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-weight: 800;
}

.about-highlight strong {
  display: block;
  font-size: 22px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.about-points {
  list-style: none;
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.about-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.3px;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.12);
}

/* ─── Contact ─── */
.contact-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 215, 0, 0.08);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.38) 0%, rgba(15, 15, 15, 0.8) 100%);
}

.contact-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.contact-section .section-title {
  font-size: clamp(48px, 8vw, 100px);
  margin: 0 0 24px;
}

.contact-section .section-desc {
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255,255,255,0.9);
  line-height: 1.85;
  max-width: 750px;
  margin: 0 auto 60px;
  font-weight: 600;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.contact-info-item {
  display: flex;
  justify-content: center;
}

.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-link:hover {
  transform: translateY(-4px);
}

.contact-link-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-link-value {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover .contact-link-value {
  color: var(--accent);
}

.contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-social-link {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.02));
  border: 1.5px solid rgba(255, 215, 0, 0.25);
  color: #f5f5f5;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.contact-social-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

.contact-social-link:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.contact-form-wrapper {
  text-align: left;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-info-link {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  word-break: break-all;
}

.contact-info-link:hover {
  color: var(--accent);
}

.contact-form {
  text-align: left;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.14);
  border-radius: 14px;
  outline: none;
  transition: all var(--t);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.02);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 215, 0, 0.7);
  background: rgba(255, 215, 0, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.08), 0 12px 30px rgba(255, 215, 0, 0.08);
}

.contact-form textarea {
  margin-bottom: 18px;
  resize: vertical;
  min-height: 120px;
}

.contact-form-wrap {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 28px;
  padding: 32px 34px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
  pointer-events: none;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
}

.contact-alt {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-alt a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--t);
}

.contact-alt a:hover {
  color: #ffed4e;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.06);
  border: 1.5px solid rgba(255, 215, 0, 0.15);
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all var(--t);
}

.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 215, 0, 0.12);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  background: linear-gradient(180deg, rgba(10,10,10,0.5), rgba(10,10,10,1));
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  transition: all 0.3s ease;
}

.footer-brand:hover {
  color: var(--accent);
}

.footer-logo-icon {
  height: 24px;
  width: auto;
  opacity: 0.9;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-copy:hover {
  color: var(--text-secondary);
}

/* ─── Video Modal ─── */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  z-index: 1;
}

.modal-content video {
  width: 100%;
  border-radius: 16px;
  background: #000;
  max-height: 85vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-hover);
  background: rgba(20, 20, 20, 0.9);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}

.modal-close:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-inner { padding: 0 24px; }
  .container { padding: 0 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 52px 0; }
  .section-header { margin-bottom: 36px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-members { grid-template-columns: 1fr; gap: 24px; }
  .reference-card { flex: 0 0 min(100%, 360px); }
}
}
  .contact-header-row { text-align: center; }
  .contact-desc { text-align: center; max-width: 100%; }
  .contact-inline-icons { justify-content: center; }
  .contact-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 42px; }
  .section-title { font-size: 28px; }
  .contact-title { font-size: 36px; }
  .nav-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
  .footer-inner { padding: 0 16px; }
  .hero-content { padding: 0 16px; }
  .hero-subtitle { font-size: 15px; }
  .about-highlight { padding: 20px 18px; }
  .contact-inline-icons { gap: 12px; }
  .contact-inline-icon { width: 48px; height: 48px; }
}
