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

:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gold:    #c9a96e;
  --gold-lt: #e8c98a;
}

/* DARK THEME (default) */
body.theme-dark {
  --black:   #0a0a0a;
  --dark:    #111111;
  --mid:     #1a1a1a;
  --border:  #2a2a2a;
  --muted:   #555555;
  --silver:  #888888;
  --light:   #cccccc;
  --white:   #f5f5f0;
  --gold:    #c9a96e;
  --gold-lt: #e8c98a;
}

/* LIGHT THEME */
body.theme-light {
  --black:   #f4f3ee;
  --dark:    #eae9e2;
  --mid:     #e0ded7;
  --border:  #cccbc2;
  --muted:   #999891;
  --silver:  #666560;
  --light:   #333230;
  --white:   #111110;
  --gold:    #9a6f2a;
  --gold-lt: #b8882e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================
   NAVBAR
   ============================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 3rem;
  transition: background 0.4s var(--ease), padding 0.3s;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
}

/* Light theme: scrolled navbar stays light */
body.theme-light #navbar.scrolled {
  background: rgba(244,243,238,0.97);
}

/* Light theme: unscrolled nav links need to be readable */
body.theme-light .nav-link {
  color: #777570;
}

body.theme-light .nav-link:hover {
  color: var(--white);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.75; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

/* Nav controls: lang + theme + hamburger */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  color: var(--light);
  width: 36px; height: 36px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: border-color 0.3s, color 0.3s;
}

.ctrl-btn svg { width: 15px; height: 15px; }
.ctrl-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Show/hide sun-moon icons based on theme */
body.theme-dark  .icon-sun  { display: none; }
body.theme-dark  .icon-moon { display: block; }
body.theme-light .icon-sun  { display: block; }
body.theme-light .icon-moon { display: none; }

.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: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================
   HERO
   ============================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10,10,10,0.6) 70%,
    var(--black) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: fade-up 1.2s var(--ease-out) 0.3s both;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.title-first {
  display: block;
  color: var(--white);
}

.title-last {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--light);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
  animation: fade-up 1s var(--ease-out) 1.5s both;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================
   ABOUT
   ============================ */
#about {
  padding: 8rem 0;
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.about-image-wrap {
  position: sticky;
  top: 8rem;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  right: 10px; bottom: 10px;
  border: 1px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}

.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
  filter: grayscale(20%);
  transition: filter 0.5s;
}

.about-image:hover { filter: grayscale(0%); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.stat {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-label.center { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title.center { text-align: center; }

.section-sub {
  font-size: 1rem;
  color: var(--silver);
  max-width: 500px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.about-body {
  color: var(--light);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-body strong { color: var(--white); font-weight: 500; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.3s;
}

.tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================
   VIDEO MODAL
   ============================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(10px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  transform: scale(0.95);
  transition: transform 0.35s var(--ease-out);
}

.modal-overlay.active .modal-inner {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: -3rem; right: 0;
  background: none;
  border: 1px solid var(--border);
  color: var(--light);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close svg { width: 18px; height: 18px; }
.modal-close:hover { border-color: var(--gold); color: var(--gold); }

.modal-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--black);
}

#yt-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#yt-player iframe {
  width: 100%;
  height: 100%;
}

/* Fallback when embedding is blocked */
.modal-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: var(--mid);
  text-align: center;
  padding: 2rem;
}

.modal-fallback svg:first-child {
  width: 36px; height: 36px;
  color: var(--muted);
}

.modal-fallback p {
  font-size: 0.9rem;
  color: var(--silver);
}

.modal-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 2rem;
  background: #ff0000;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.modal-yt-btn svg { width: 20px; height: 20px; }
.modal-yt-btn:hover { background: #cc0000; }

.modal-info {
  padding: 1rem 0 0;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
}

.modal-artist {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}

/* ============================
   WORKS
   ============================ */
#works {
  padding: 8rem 0;
  background: var(--black);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.work-card {
  background: var(--dark);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}

.work-card.featured {
  grid-column: span 2;
}

.work-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--mid);
  overflow: hidden;
}

.work-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.work-card:hover .work-thumb img {
  transform: scale(1.04);
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px; height: 60px;
  background: rgba(0,0,0,0.5);
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s var(--ease);
  z-index: 2;
  backdrop-filter: blur(4px);
}

.play-btn svg {
  width: 16px; height: 16px;
  margin-left: 3px;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.work-year {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.work-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.work-card:hover .work-overlay { opacity: 1; }

.work-info {
  padding: 1.5rem;
}

.work-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.work-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.work-cat {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--gold);
}

/* ============================
   PROJECT SECTIONS (MUTLUSON / SUFI SOUL)
   ============================ */

/* Scroll offset for fixed navbar */
section[id] {
  scroll-margin-top: 70px;
}

#mutluson, #sufisoul {
  padding: 0;
}

.project-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.project-split.reverse {
  direction: rtl;
}

.project-split.reverse > * {
  direction: ltr;
}

.project-content {
  padding: 6rem 4rem;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1;
}

.project-body {
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  max-width: 480px;
}

.project-body em { color: var(--gold); font-style: italic; }

.project-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

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

.project-link.soundcloud {
  background: var(--gold);
  color: var(--black);
}

.project-link.soundcloud:hover {
  background: var(--gold-lt);
}

.project-link.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.project-link.outline {
  border: 1px solid var(--border);
  color: var(--light);
}

.project-link.outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.project-link.spotify {
  background: #1DB954;
  color: #fff;
}

.project-link.spotify:hover { background: #1ed760; }

.project-link.youtube {
  background: #FF0000;
  color: #fff;
}

.project-link.youtube:hover { background: #cc0000; }

.project-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.project-link.instagram:hover { opacity: 0.88; }

.project-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mutluson-visual {
  background: linear-gradient(160deg, #1a0a3e 0%, #2d1060 50%, #0d0020 100%);
}

.sufisoul-visual {
  background: linear-gradient(160deg, #0a1a0a 0%, #0d2010 50%, #050a05 100%);
}

.mutluson-visual .vc-thumb,
.sufisoul-visual .vc-thumb {
  aspect-ratio: 16/4.5;
}

/* Video cards stack inside project sections */
.video-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 100%;
  height: 100%;
}

.vc-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: background 0.3s;
  flex: 1;
}

.vc-card:hover { background: rgba(0,0,0,0.6); }

.vc-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.vc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.vc-card:hover .vc-thumb img { transform: scale(1.05); }

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

.vc-play svg { width: 36px; height: 36px; }
.vc-card:hover .vc-play { opacity: 1; }

.vc-info {
  padding: 0.75rem 1rem;
  flex: 1;
}

.vc-artist {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.vc-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

/* ============================
   CONTACT
   ============================ */
#contact {
  padding: 8rem 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-intro {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 3rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--border);
  color: var(--light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: all 0.3s var(--ease);
}

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

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateX(4px);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: var(--mid);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  align-self: flex-start;
}

.submit-btn svg {
  width: 16px; height: 16px;
  transition: transform 0.3s;
}

.submit-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.submit-btn:hover svg {
  transform: translateX(4px);
}

/* ============================
   FOOTER
   ============================ */
#footer {
  padding: 2.5rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.footer-socials a {
  color: var(--muted);
  transition: color 0.3s;
}

.footer-socials a svg {
  width: 18px; height: 18px;
}

.footer-socials a:hover { color: var(--gold); }

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  #navbar { padding: 1.2rem 1.5rem; }
  #navbar.scrolled { padding: 0.8rem 1.5rem; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    bottom: 0;
    width: 280px;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s var(--ease);
    z-index: 999;
  }

  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-controls { gap: 0.4rem; }

  .nav-link { font-size: 0.9rem; }

  .hero-title { font-size: clamp(3rem, 15vw, 5rem); }

  .project-split,
  .project-split.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .project-visual { min-height: auto; }
  .project-content { padding: 4rem 2rem; }

  .video-cards-stack { flex-direction: column; }
  .vc-thumb { width: 120px; min-height: 70px; }

  .works-grid { grid-template-columns: 1fr; }
  .work-card.featured { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }

  .container { padding: 0 1.5rem; }
  #about, #works, #contact { padding: 5rem 0; }

  .modal-overlay { padding: 1rem; }
  .modal-close { top: -2.5rem; }
}

@media (max-width: 480px) {
  .hero-tagline { font-size: 1rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .stat-num { font-size: 2rem; }
}
