/* ============================================
   PORTFOLIO — DAVID LEE
   style.css
   Sections:
   1. CSS Variables / Root
   2. Reset & Base
   3. Custom Cursor
   4. Navigation
   5. Hero
   6. About
   7. Work / Projects
   8. Skills
   9. Contact
   10. Footer
   11. Animations & Utilities
   12. Responsive
============================================ */

/* ----- 1. CSS Variables ----- */
:root {
  --black: #050507;
  --deep: #0c0c10;
  --surface: #12121a;
  --border: #1e1e2e;
  --accent: #2dd4bf;
  --accent2: #5eead4;
  --dim: #4a4a60;
  --muted: #8888aa;
  --white: #f0ede8;
  --red: #c0392b;
}

/* ----- 2. Reset & Base ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9997;
  opacity: 0.4;
}

/* ----- 3. Custom Cursor ----- */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.15s ease;
}
body:hover .cursor-ring { opacity: 1; }

/* ----- 4. Navigation ----- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  background: linear-gradient(to bottom, rgba(5,5,7,0.95), transparent);
  transition: background-color 0.4s ease, padding 0.4s ease;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 4px;
  color: var(--accent);
  transition: opacity 0.4s ease;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  transition: opacity 0.4s ease;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

/* ----- 5. Hero ----- */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(192,57,43,0.04) 0%, transparent 50%),
    linear-gradient(135deg, #050507 0%, #0a0a12 50%, #080810 100%);
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-reel {
  position: absolute;
  top: 50%; right: 60px;
  transform: translateY(-50%);
  width: 520px; height: 320px;
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0.85;
}
.hero-reel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(5,5,7,0.8));
  z-index: 1;
}
.reel-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0c0c18, #181828);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.play-btn {
  width: 64px; height: 64px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  transition: all 0.3s;
  cursor: none;
}
.play-btn:hover {
  background: var(--accent);
  color: var(--black);
  transform: scale(1.1);
}
.reel-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
}
.hero-reel-tag {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 4px 10px;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 28px;
  animation: fadeUp 1s ease both;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 48px;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-cta {
  display: flex;
  gap: 20px;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  writing-mode: vertical-rl;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ----- 6. About ----- */
#about {
  background: var(--deep);
  border-top: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 500px;
}
.about-img-frame {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 80%;
  background: linear-gradient(135deg, #12121e, #1a1a2a);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200,169,110,0.15);
}
.about-accent-box {
  position: absolute;
  bottom: 0; right: 0;
  width: 45%; height: 45%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.about-accent-box .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--black);
  line-height: 1;
}
.about-accent-box .num-label {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}
.about-text p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.stat-item {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--white);
  letter-spacing: 2px;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
}

/* ----- 7. Work / Projects ----- */
#work { background: var(--black); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.work-item {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--surface);
  overflow: hidden;
  cursor: none;
}
.work-item:first-child {
  grid-column: span 2;
  aspect-ratio: unset;
}
.work-thumb {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}
.work-item:hover .work-thumb { transform: scale(1.04); }
.work-thumb-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0e0e18 0%, #1a1a28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.work-thumb-icon { font-size: 2rem; opacity: 0.2; }
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,7,0.95) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-cat {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.work-title-card {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.work-year { font-size: 0.7rem; color: var(--dim); }

/* ----- 8. Skills ----- */
#skills {
  background: var(--deep);
  border-top: 1px solid var(--border);
}
.skills-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.skills-intro {
  position: sticky;
  top: 120px;
}
.skills-intro p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 40px;
}
.skills-categories { display: flex; flex-direction: column; gap: 40px; }
.skill-cat-title {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.skill-bars { display: flex; flex-direction: column; gap: 16px; }
.skill-row { display: flex; flex-direction: column; gap: 8px; }
.skill-info { display: flex; justify-content: space-between; align-items: center; }
.skill-name { font-size: 0.8rem; color: var(--white); letter-spacing: 1px; }
.skill-pct { font-size: 0.7rem; color: var(--dim); font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; }
.skill-track {
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.skill-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.4,0,0.2,1);
}
.skill-fill.animate { transform: scaleX(1); }

/* ----- 9. Contact ----- */
#contact {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
  color: var(--white);
}
.contact-info p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.9rem;
  margin-bottom: 48px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.85rem;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  cursor: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ----- 10. Footer ----- */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: var(--accent);
}
.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--dim);
  text-transform: uppercase;
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--accent); }

/* ----- 11. Animations & Utilities ----- */
section { padding: 120px 60px; }

.section-label {
  font-size: 0.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 64px;
}
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--black);
  padding: 14px 32px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--dim);
  color: var(--muted);
  padding: 14px 32px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-submit {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  align-self: flex-start;
  transition: all 0.3s;
  font-weight: 400;
}
.btn-submit:hover { background: var(--accent2); transform: translateY(-2px); }
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; } 50% { opacity: 1; }
}
/* ----- Downloads ----- */
#downloads { background: var(--deep); border-top: 1px solid var(--border); }
.downloads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.3s;
}
.download-card:hover { border-color: var(--accent); }
.download-icon { font-size: 2rem; }
.download-label {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.download-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.download-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--dim);
  color: var(--muted);
  padding: 12px 24px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.3s;
}
.download-btn:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 900px) {
  .downloads-grid { grid-template-columns: 1fr; }
}

/* ----- Downloads / PDF Viewer ----- */
#downloads { background: var(--deep); border-top: 1px solid var(--border); }
.pdf-viewer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pdf-panel { background: var(--surface); border: 1px solid var(--border); display: flex; flex-direction: column; transition: border-color 0.3s; overflow: hidden; }
.pdf-panel:hover { border-color: var(--accent); }
.pdf-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--border); gap: 16px; }
.pdf-panel-left { display: flex; align-items: center; gap: 16px; }
.pdf-panel-icon { font-size: 1.6rem; }
.pdf-panel-label { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.pdf-panel-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 2px; color: var(--white); }
.pdf-embed-wrap { width: 100%; height: 600px; background: var(--black); }
.pdf-embed { width: 100%; height: 100%; border: none; display: block; }
.download-btn { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--dim); color: var(--muted); padding: 10px 20px; font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; white-space: nowrap; transition: all 0.3s; flex-shrink: 0; }
.download-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ----- 12. Responsive ----- */
@media (max-width: 900px) {
  nav { padding: 24px 28px; }
  section { padding: 80px 28px; }
  .about-grid, .skills-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item:first-child { grid-column: span 1; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .hero-reel { display: none; }
  #hero { padding: 0 28px 80px; }
  .hero-title { font-size: 4.5rem; }
  .nav-links { display: none; }
  .hero-scroll { display: none; }
}
.work-crew {
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.6;
}

.work-soon {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 8px;
  vertical-align: middle;
  margin-left: 8px;
}
a.work-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ----- MOBILE FIXES / FULL RESPONSIVE ----- */
@media (max-width: 900px) {

  /* Hero Section */
  #hero {
    padding: 0 20px 60px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
  }
  .hero-sub {
    font-size: 0.85rem;
    max-width: 100%;
  }

  /* About Section */
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .about-visual {
    height: 300px;
  }
  .about-accent-box {
    width: 60%;
    height: 40%;
  }
  .about-text p {
    font-size: 0.9rem;
  }

  /* Work / Projects Section */
  .work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .work-item {
    aspect-ratio: auto;
  }
  .work-item:first-child {
    grid-column: span 1;
  }
  .work-thumb-inner {
    padding: 16px;
    gap: 8px;
  }
  .work-title-card {
    font-size: 1.2rem;
  }
  .work-year, .work-crew, .work-soon {
    font-size: 0.55rem;
  }

  /* Skills Section */
  .skills-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .skills-intro {
    position: relative;
    top: 0;
  }
  .skill-name { font-size: 0.75rem; }
  .skill-pct { font-size: 0.65rem; }

  /* Contact Section */
  .contact-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .contact-info h3 { font-size: 2.2rem; }
  .contact-info p { font-size: 0.85rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Downloads / PDF Viewer */
  .downloads-grid,
  .pdf-viewer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pdf-embed-wrap { height: 400px; }

  /* Footer */
  footer {
    padding: 32px 20px;
    gap: 16px;
  }

  /* Reduce section padding globally */
  section {
    padding: 60px 20px;
  }
}

/* ----- Mobile Nav Hamburger ----- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,7,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.4rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 1.4rem;
  color: var(--muted);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .hero-reel {
    display: block !important;
    position: relative;
    top: unset; right: unset;
    transform: none;
    width: 100%;
    height: 240px;
    margin-bottom: 32px;
    opacity: 1;
  }
  #hero {
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 28px 60px;
  }
  .about-img-frame {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .about-visual { height: 320px; }
  .about-accent-box { display: none; }
}

.contact-info {
  opacity: 1 !important;
  transform: none !important;
}