* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --text-primary: #000000;
  --text-secondary: #666666;
  --border-color: #000000;
  --accent-color: #000000;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 2000;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
}

.logo:hover {
  opacity: 0.6;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.nav-menu a:hover {
  opacity: 0.6;
}

/* Hero Section with Large Text */
.hero-large {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-primary);
  padding: 8rem 2rem 4rem;
}

.hero-text-container {
  text-align: center;
  width: 100%;
}

.hero-massive-text {
  font-size: clamp(4rem, 15vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.hero-subtitle-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.15em;
  font-weight: 400;
}

.hero-location,
.hero-role {
  color: var(--text-secondary);
}

.hero-separator {
  color: var(--text-secondary);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--text-secondary);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(15px);
    opacity: 1;
  }
}

/* Container */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Section Headers with Numbers */
.section-header-inline {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-top: 8rem;
}

.section-number {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
}

.section-title-inline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* Showreel Section */
.showreel-section {
  background: var(--bg-primary);
  padding-bottom: 8rem;
}

.video-container-large {
  width: 100%;
  border: 1px solid var(--border-color);
  background: #000;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio fallback */
  height: 0;
  overflow: hidden;
}

.video-container-large video,
.video-container-large iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* About Section */
.about-section-split {
  background: var(--bg-secondary);
  padding-bottom: 8rem;
}

.about-grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.about-text-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-paragraph {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 300;
}

.about-skills-column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.skill-block {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.skill-block-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.skill-block-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Contact Section */
.contact-section-minimal {
  background: var(--bg-primary);
  padding-bottom: 8rem;
}

.contact-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-left {
  padding-top: 1rem;
}

.contact-question {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
  font-weight: 300;
  color: var(--text-primary);
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-email-large {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
  word-break: break-all;
}

.contact-email-large:hover {
  opacity: 0.6;
}

.contact-social-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link-minimal {
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-link-minimal:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

/* Footer */
.footer-minimal {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-right {
  align-items: flex-end;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 400;
}

.footer-text-small {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--text-primary);
}

/* Work Pages Styling */
.work-page-header {
  padding-top: 12rem;
  padding-bottom: 4rem;
  background: var(--bg-primary);
}

.page-title-large {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-bottom: 2rem;
}

.page-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 800px;
}

/* Project Sections */
.project-section-full {
  padding: 6rem 0;
  border-top: 1px solid var(--border-color);
}

.project-section-full:nth-child(even) {
  background: var(--bg-secondary);
}

.project-header {
  margin-bottom: 3rem;
}

.project-title-large {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.project-description-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 900px;
  font-weight: 300;
}

/* Video Layouts */
.video-single-large {
  width: 100%;
  border: 1px solid var(--border-color);
  background: #000;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio fallback */
  height: 0;
  overflow: hidden;
}

.video-single-large video,
.video-single-large iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-grid-layout {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.video-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.video-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.video-item-box {
  border: 1px solid var(--border-color);
  background: #000;
  overflow: hidden;
}

.video-item-box video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-label-text {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 1.5rem 2rem;
  }

  .container-wide {
    padding: 0 2rem;
  }

  .about-grid-split,
  .contact-content-split {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col-right {
    align-items: flex-start;
  }

  .video-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 1.5rem;
    font-size: 0.8rem;
  }

  .section-header-inline {
    gap: 1rem;
    padding-top: 6rem;
    margin-bottom: 3rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-number {
    font-size: 0.9rem;
  }

  .section-title-inline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-separator {
    display: none;
  }

  .video-grid-two,
  .video-grid-three {
    grid-template-columns: 1fr;
  }

  .project-description-text {
    font-size: 1rem;
  }

  .contact-question {
    font-size: 1.5rem;
  }

  .contact-email-large {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .container-wide {
    padding: 0 1rem;
  }

  .nav-menu {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-massive-text {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-subtitle-row {
    font-size: 0.85rem;
  }

  .section-header-inline {
    padding-top: 4rem;
    margin-bottom: 2rem;
  }

  .project-section-full {
    padding: 4rem 0;
  }

  .about-grid-split {
    gap: 3rem;
  }

  .skill-block {
    padding-top: 1rem;
  }

  .skill-block-title {
    font-size: 0.9rem;
  }

  .skill-block-text {
    font-size: 0.9rem;
  }

  .contact-content-split {
    gap: 3rem;
  }

  .contact-question {
    font-size: 1.3rem;
  }

  .contact-email-large {
    font-size: 1.1rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-text {
    font-size: 0.85rem;
  }

  .footer-text-small {
    font-size: 0.75rem;
  }

  .project-title-large {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .project-description-text {
    font-size: 0.95rem;
  }
}
