/* ========================================
   DIRTY HANDS PRODUCTIONS - STYLESHEET
   Rugged Industrial Videography Theme
   ======================================== */

/* CSS Variables */
:root {
  --black: #0a0a0a;
  --black-light: #1a1a1a;
  --dark-orange: #c45d1e;
  --dark-orange-glow: #e07a2f;
  --beige: #d4c4a8;
  --beige-light: #e8dcc4;
  --white: #ffffff;
  --white-glow: rgba(255, 255, 255, 0.8);

  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 20px;

  --font-display: "Teko", sans-serif;
  --font-body: "Inter", sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--beige);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.015) 0%,
    transparent 85%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.accent {
  color: var(--dark-orange);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem 3rem;
  background: transparent;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: transparent;
  padding: 1rem 3rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
}

/* Desktop Nav – hidden, hamburger used instead */
.nav-links {
  display: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--beige-light);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dark-orange);
  transition: var(--transition-smooth);
}

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

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  border: 1px solid var(--dark-orange);
  padding: 0.5rem 1.5rem !important;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  background: var(--dark-orange);
  color: var(--white) !important;
}

.nav-cta:hover::after {
  display: none;
}

/* Hamburger Menu Button */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--beige);
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Overlay */
/* Overlay: always in DOM, toggled via opacity+visibility (not display) */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  list-style: none;
  padding-right: 3rem;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  text-align: right;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.mobile-nav-links a:hover {
  color: var(--dark-orange);
  transform: translateX(-8px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3rem;
}

.hero-text {
  position: relative;
  z-index: 10;
}

.company-name {
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 0.85;
  text-shadow:
    0 0 40px rgba(255, 255, 255, 0.1),
    0 0 80px rgba(255, 255, 255, 0.05);
  will-change: transform;
}

.line-1 {
  color: var(--beige-light);
}
.line-2 {
  color: var(--dark-orange);
  font-style: italic;
}

.hero-glass {
  position: absolute;
  bottom: 4rem;
  left: 3rem;
  padding: 1.5rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  max-width: 400px;
  transition: var(--transition-smooth);
}

.tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--beige);
  text-transform: uppercase;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.scroll-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--beige-light);
  text-transform: uppercase;
}

.scroll-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--dark-orange), transparent);
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects {
  padding: 0rem 0 0;
  background: var(--black);
}

.projects-header {
  margin-bottom: 3rem;
  padding: 0 3rem;
}

/* ── Vollbreite Projekt-Liste ── */
.projects-list {
  display: flex;
  flex-direction: column;
}

.project-card {
  position: relative;
  width: 100%;
  height: 33vh;
  overflow: hidden;
  cursor: pointer;
}

.project-card + .project-card {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Thumbnail füllt die ganze Karte */
.video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Play-Button zentriert */
.project-card > .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  z-index: 4;
  width: 72px;
  height: 72px;
  background: rgba(196, 93, 30, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

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

.project-card > .play-btn svg {
  width: 36px;
  height: 36px;
  fill: white;
  margin-left: 4px;
}

/* Gradient-Overlay + Text */
.project-glass {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 3rem;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.85) 0%,
    rgba(5, 5, 5, 0.2) 50%,
    transparent 100%
  );
  pointer-events: none;
  transition: background 0.4s ease;
}

.project-card:hover .project-glass {
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.7) 0%,
    rgba(5, 5, 5, 0.15) 50%,
    transparent 100%
  );
}

.project-category {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--dark-orange);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.project-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--white);
  margin: 0 0 0.4rem;
  line-height: 1.1;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--beige-light);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.project-card:hover .project-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ── Lightbox ── */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: #000;
}

.video-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  display: none; /* nicht nötig – ganzer Screen ist #000 */
}

/* Topbar: schlanke Leiste oben */
.lightbox-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: scale(0.98);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-lightbox.active .lightbox-inner {
  transform: scale(1);
}

.lightbox-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-lightbox.active:hover .lightbox-topbar,
.video-lightbox.active .lightbox-topbar:hover {
  opacity: 1;
}

.lightbox-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lightbox-category {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--dark-orange);
  text-transform: uppercase;
}

.lightbox-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.6rem);
  color: var(--white);
  margin: 0;
  line-height: 1;
}

.lightbox-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.lightbox-close:hover {
  border-color: var(--dark-orange);
  color: var(--dark-orange);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 16px;
  height: 16px;
}

/* Video füllt gesamten Screen */
.lightbox-video-wrap {
  position: absolute;
  inset: 0;
  background: #000;
}

.lightbox-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

@media (max-width: 768px) {
  .lightbox-topbar {
    padding: 1rem 1.2rem;
  }
  .project-glass {
    padding: 1.5rem;
  }
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners {
  padding: 6rem 3rem;
  background: var(--black);
}

.partners-header {
  margin-bottom: 4rem;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.partner-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 2px solid var(--glass-border);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.customer-tschuique:hover {
  transform: translateY(-10px);
  border-color: #ff931e;
  box-shadow: 0 20px 40px rgba(255, 147, 30, 0.4);
}

.customer-zeppelin:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.customer-rothaus:hover {
  transform: translateY(-10px);
  border-color: #c4181e;
  box-shadow: 0 20px 40px rgba(184, 134, 11, 0.5);
}

.customer-milwaukee:hover {
  transform: translateY(-10px);
  border-color: #c4181e;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.5);
}

.partner-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--black-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15%;
}

.partner-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.partner-desc {
  font-size: 0.9rem;
  color: var(--beige-light);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 3rem;
  background: var(--black);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.about-video {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-video video {
  width: 100%;
  height: auto;
  display: block;
}

.about-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(196, 93, 30, 0.3) 0%,
    transparent 50%
  );
}

.glass-card {
  padding: 3rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 4px;
}

.about-text {
  font-size: 1.1rem;
  color: var(--beige-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark-orange);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--beige);
  text-transform: uppercase;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
  padding: 6rem 3rem;
  background: var(--black-light);
}

.team-header {
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(196, 93, 30, 0.3);
}

.team-member:hover::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--dark-orange), transparent 50%);
  border-radius: 6px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(15px);
  animation: glowPulse 2s ease-in-out infinite;
}

.member-video {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--black);
  overflow: hidden;
}

.member-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.team-member:hover .member-video video {
  opacity: 1;
  transform: scale(1.1);
}

.member-glass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    transparent 100%
  );
  transform: translateY(55%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.member-glass .first-name {
  display: inline-block;
  padding-bottom: 3rem;
  transition: padding-bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.member-glass .full-name,
.member-glass .member-role {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-member:hover .member-glass {
  transform: translateY(0);
}
.team-member:hover .first-name {
  padding-bottom: 0.5rem;
}
.team-member:hover .full-name,
.team-member:hover .member-role {
  opacity: 1;
  transform: translateY(0);
}

.member-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.member-role {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--dark-orange);
  text-transform: uppercase;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  background: var(--black);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
  width: 100%;
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--dark-orange);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--white);
  line-height: 1;
  margin: 0 0 2.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 93, 30, 0.4);
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    gap 0.25s ease;
}

.contact-email svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact-email:hover {
  color: var(--dark-orange);
  border-color: var(--dark-orange);
  gap: 1.5rem;
}

.contact-email:hover svg {
  transform: translateX(4px);
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(212, 196, 168, 0.5);
  letter-spacing: 0.05em;
}

.contact-location svg {
  width: 16px;
  height: 16px;
  stroke: var(--dark-orange);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact {
    padding: 5rem 1.5rem;
  }
  .contact-email {
    font-size: 1.1rem;
  }
}

.social-link:hover svg {
  fill: var(--dark-orange);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 3rem;
  background: var(--black);
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
}

.footer-text {
  font-size: 0.9rem;
  color: var(--beige);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(212, 196, 168, 0.5);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.footer-link:hover,
.footer-link--active {
  color: var(--dark-orange);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(196, 93, 30, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(196, 93, 30, 0.6);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .navbar {
    padding: 1rem 2rem;
  }
  .hero-content,
  .partners,
  .about,
  .team,
  .contact {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-video {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  .cursor-glow {
    display: none;
  }
  .navbar {
    flex-direction: row;
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }

  /* Hero aligned to bottom on mobile */
  .hero-content {
    padding: 0 1.5rem;
    justify-content: flex-end !important;
    padding-bottom: 200px;
  }

  .line {
    font-size: clamp(3rem, 12vw, 6rem);
  }
  .hero-glass {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 2rem;
    padding: 1rem 1.5rem;
  }
  .about,
  .partners,
  .team,
  .contact {
    padding: 4rem 1.5rem;
  }
  .projects {
    padding: 4rem 0 0;
  }
  .projects-header {
    padding: 0 1.5rem;
  }
  .project-glass {
    padding: 1.5rem;
  }
  .glass-card {
    padding: 2rem;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .partners-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Hero fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glitch effect */
.glitch-hover:hover {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

/* Add subtle noise texture to background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.3' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========================================
   CONTACT CTA
   ======================================== */
.contact {
  background: var(--black);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
  width: 100%;
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--dark-orange);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--white);
  line-height: 1;
  margin: 0 0 2.5rem;
  font-weight: 400;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 93, 30, 0.4);
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    gap 0.25s ease;
}
.contact-email svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.contact-email:hover {
  color: var(--dark-orange);
  border-color: var(--dark-orange);
  gap: 1.5rem;
}
.contact-email:hover svg {
  transform: translateX(4px);
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(212, 196, 168, 0.5);
}
.contact-location svg {
  width: 16px;
  height: 16px;
  stroke: var(--dark-orange);
  flex-shrink: 0;
}
