/* ===================================
   CSS VARIABLES - DESIGN SYSTEM
   =================================== */

:root {
  /* Color System */
  --bg-primary: #f6f4f1;
  --bg-dark: #1c1c1c;
  --text-primary: #121212;
  --text-secondary: #a6a29a;
  --accent-terracotta: #8c5a3c;
  --text-inverse: #ffffff;

  /* Typography - Font Families */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;

  /* Typography - Display / Hero Name */
  --display-hero-size: 88px;
  --display-hero-line: 96px;
  --display-hero-spacing: -0.02em;
  --display-hero-weight: 500;

  /* Typography - Display / Section Title */
  --display-section-size: 32px;
  --display-section-line: 40px;
  --display-section-spacing: -0.01em;
  --display-section-weight: 400;

  /* Typography - Body / Default */
  --body-default-size: 18px;
  --body-default-line: 28px;
  --body-default-weight: 400;

  /* Typography - Body / Meta */
  --body-meta-size: 14px;
  --body-meta-line: 20px;
  --body-meta-spacing: 0.04em;
  --body-meta-weight: 500;

  /* Typography - Nav / Link */
  --nav-link-size: 14px;
  --nav-link-spacing: 0.06em;
  --nav-link-weight: 500;

  /* Spacing System (8pt grid) */
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 48px;
  --space-xl: 80px;
  --space-xxl: 120px;

  /* Layout Grid */
  --container-width: 1440px;
  --grid-columns: 12;
  --grid-margin: 120px;
  --grid-gutter: 24px;
}

/* ===================================
   BASE STYLES
   =================================== */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: var(--body-default-size);
  line-height: var(--body-default-line);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  width: 100%;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY UTILITY CLASSES
   =================================== */

.display-hero {
  font-family: var(--font-serif);
  font-size: var(--display-hero-size);
  line-height: var(--display-hero-line);
  letter-spacing: var(--display-hero-spacing);
  font-weight: var(--display-hero-weight);
}

.display-section {
  font-family: var(--font-serif);
  font-size: var(--display-section-size);
  line-height: var(--display-section-line);
  letter-spacing: var(--display-section-spacing);
  font-weight: var(--display-section-weight);
}

.body-default {
  font-family: var(--font-sans);
  font-size: var(--body-default-size);
  line-height: var(--body-default-line);
  font-weight: var(--body-default-weight);
}

.body-meta {
  font-family: var(--font-sans);
  font-size: var(--body-meta-size);
  line-height: var(--body-meta-line);
  letter-spacing: var(--body-meta-spacing);
  font-weight: var(--body-meta-weight);
  color: var(--text-secondary);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: var(--nav-link-size);
  letter-spacing: var(--nav-link-spacing);
  font-weight: var(--nav-link-weight);
  text-transform: uppercase;
}

/* ===================================
   LAYOUT CONTAINER
   =================================== */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--grid-margin);
  padding-right: var(--grid-margin);
}

/* ===================================
   GRID SYSTEM
   =================================== */

.grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: var(--grid-gutter);
}

/* ===================================
   SECTION BACKGROUNDS
   =================================== */

.section-light {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
}

/* ===================================
   ACCENT ELEMENTS
   =================================== */

.accent-line {
  background-color: var(--accent-terracotta);
  height: 1px;
  width: 100%;
}

.accent-text {
  color: var(--accent-terracotta);
}

/* ===================================
   SPACING UTILITIES
   =================================== */

.mt-xs {
  margin-top: var(--space-xs);
}
.mt-s {
  margin-top: var(--space-s);
}
.mt-m {
  margin-top: var(--space-m);
}
.mt-l {
  margin-top: var(--space-l);
}
.mt-xl {
  margin-top: var(--space-xl);
}
.mt-xxl {
  margin-top: var(--space-xxl);
}

.mb-xs {
  margin-bottom: var(--space-xs);
}
.mb-s {
  margin-bottom: var(--space-s);
}
.mb-m {
  margin-bottom: var(--space-m);
}
.mb-l {
  margin-bottom: var(--space-l);
}
.mb-xl {
  margin-bottom: var(--space-xl);
}
.mb-xxl {
  margin-bottom: var(--space-xxl);
}

.py-xs {
  padding-top: var(--space-xs);
  padding-bottom: var(--space-xs);
}
.py-s {
  padding-top: var(--space-s);
  padding-bottom: var(--space-s);
}
.py-m {
  padding-top: var(--space-m);
  padding-bottom: var(--space-m);
}
.py-l {
  padding-top: var(--space-l);
  padding-bottom: var(--space-l);
}
.py-xl {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.py-xxl {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
}

/* ===================================
   HEADER COMPONENT
   =================================== */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(246, 244, 241, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.header-logo a {
  color: var(--text-primary);
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--accent-terracotta);
}

/* Language Selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-option {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: var(--nav-link-size);
  font-weight: var(--nav-link-weight);
  letter-spacing: var(--nav-link-spacing);
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
}

.lang-option:hover {
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--accent-terracotta);
}

.lang-divider {
  color: var(--text-secondary);
  font-size: var(--nav-link-size);
  user-select: none;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  margin-top: 64px;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1500 / 1000;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: var(--space-xl);
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  color: var(--text-inverse);
  padding: 0 var(--grid-margin);
}

.hero-content .display-hero {
  color: var(--text-inverse);
  margin-bottom: var(--space-m);
}

.hero-descriptor {
  color: var(--text-inverse);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.hero-buttons {
  display: flex;
  gap: var(--space-m);
  justify-content: center;
}

/* ===================================
   BUTTON COMPONENT
   =================================== */

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border: 1px solid var(--accent-terracotta);
  background-color: transparent;
  color: var(--accent-terracotta);
  font-family: var(--font-sans);
  font-size: var(--body-meta-size);
  font-weight: var(--body-meta-weight);
  letter-spacing: var(--body-meta-spacing);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--accent-terracotta);
  color: var(--text-inverse);
}

/* ===================================
   VIDEO COMPONENTS
   =================================== */

.video-container {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background-color: var(--bg-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

/* Showreel Player */
.showreel-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.showreel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showreel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.showreel-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.showreel-play-btn {
  background: none;
  border: none;
  color: var(--text-inverse);
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.showreel-play-btn:hover {
  transform: scale(1.1);
  color: var(--accent-terracotta);
}

/* ===================================
   SCENES SECTION
   =================================== */

.scenes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-l);
}

.scene-card .body-meta {
  color: var(--text-inverse);
}

/* Custom YouTube Video Player */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.video-thumbnail.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.video-iframe-container {
  z-index: 1;
}

.thumbnail-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-play-btn {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  color: var(--text-inverse);
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.custom-play-btn:hover {
  transform: scale(1.1);
  color: var(--accent-terracotta);
}

.video-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.meta-item {
  display: flex;
  gap: var(--space-s);
  align-items: flex-start;
}

.meta-line {
  width: 2px;
  min-width: 2px;
  height: 20px;
  background-color: var(--accent-terracotta);
  margin-top: 4px;
}

/* ===================================
   CREDITS SECTION
   =================================== */

.credits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.credits-column {
  display: flex;
  flex-direction: column;
}

.credits-column .display-section {
  color: var(--text-inverse);
}

.credits-list {
  max-width: 100%;
}

.credits-category h3 {
  text-transform: uppercase;
  color: var(--accent-terracotta);
}

.credit-entry {
  margin-bottom: var(--space-xs);
  padding-left: var(--space-s);
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.credit-entry .body-default {
  color: var(--text-inverse);
}

/* Experience List Styles */
.experience-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.experience-entry {
  padding-left: var(--space-s);
  border-left: 2px solid var(--accent-terracotta);
}

.experience-date {
  font-family: var(--font-sans);
  font-size: var(--body-meta-size);
  letter-spacing: var(--body-meta-spacing);
  color: var(--accent-terracotta);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.experience-company {
  font-family: var(--font-sans);
  font-size: var(--body-default-size);
  font-weight: 500;
  color: var(--text-inverse);
  margin-bottom: 4px;
}

.experience-role {
  font-family: var(--font-sans);
  font-size: var(--body-meta-size);
  color: rgba(255, 255, 255, 0.7);
}

/* Experience Accordion */
.experience-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.experience-accordion.expanded {
  max-height: 1000px;
  opacity: 1;
}

.experience-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-inverse);
  font-family: var(--font-sans);
  font-size: var(--body-meta-size);
  font-weight: var(--body-meta-weight);
  letter-spacing: var(--body-meta-spacing);
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--space-s);
  width: fit-content;
}

.experience-toggle:hover {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.experience-toggle::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -4px;
}

.experience-toggle.expanded::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-m);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
  width: 100%;
}

/* ===================================
   LIGHTBOX COMPONENT
   =================================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(85vh - 40px);
}

.lightbox-image {
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

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

.lightbox-counter {
  margin-top: var(--space-m);
  color: var(--text-inverse);
  font-family: var(--font-sans);
  font-size: var(--body-meta-size);
  letter-spacing: var(--body-meta-spacing);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  background: none;
  border: none;
  color: var(--text-inverse);
  cursor: pointer;
  padding: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  color: var(--accent-terracotta);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  color: var(--text-inverse);
  cursor: pointer;
  padding: 16px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover {
  color: var(--accent-terracotta);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-4px);
}

.lightbox-next {
  right: 24px;
}

.lightbox-next:hover {
  transform: translateY(-50%) translateX(4px);
}

/* Mobile Lightbox Styles */
@media (max-width: 768px) {
  .lightbox-image {
    max-width: 95vw;
    max-height: 70vh;
    min-width: 280px;
    min-height: 373px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    padding: 8px;
  }

  .lightbox-nav {
    padding: 12px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-counter {
    margin-top: var(--space-s);
  }
}

/* ===================================
   DOCUMENTS SECTION
   =================================== */

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}

.document-item {
  cursor: pointer;
}

.document-preview {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #e8e6e3 0%, #d4d2cf 100%);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-item:hover .document-preview {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pdf-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.document-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-inverse);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.document-item:hover .document-overlay {
  opacity: 1;
}

.document-item .body-meta {
  text-align: center;
}

/* PDF Lightbox Specifics */
.pdf-lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-m);
}

.pdf-lightbox-wrapper {
  max-width: 90vw;
  max-height: 75vh;
  overflow: auto;
  border-radius: 4px;
  background: var(--text-inverse);
}

#pdf-lightbox-canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* PDF Page Navigation Controls */
.pdf-page-controls {
  display: flex;
  align-items: center;
  gap: var(--space-s);
}

.pdf-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: var(--text-inverse);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdf-nav-btn:hover:not(:disabled) {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.pdf-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pdf-page-counter {
  font-family: var(--font-sans);
  font-size: var(--body-meta-size);
  letter-spacing: var(--body-meta-spacing);
  color: var(--text-inverse);
  min-width: 60px;
  text-align: center;
}

.pdf-lightbox-actions {
  display: flex;
  gap: var(--space-m);
}

.pdf-download-btn {
  border-color: var(--text-inverse);
  color: var(--text-inverse);
}

.pdf-download-btn:hover {
  background-color: var(--text-inverse);
  color: var(--text-primary);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info {
  text-align: left;
  display: inline-block;
  margin: 0 auto;
}

/* ===================================
   COPYRIGHT FOOTER
   =================================== */

.copyright-footer {
  background-color: #1c1c1c;
  padding: 32px 0;
  width: 100%;
}

.copyright-footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright-footer .body-meta {
  color: var(--text-inverse);
  text-align: center;
}

/* ===================================
   MOBILE MENU COMPONENT
   =================================== */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  right: 0;
  width: 280px;
  height: calc(100vh - 64px);
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  padding: var(--space-l) var(--space-m);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-link {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--space-s) 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--accent-terracotta);
}

.mobile-language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
  :root {
    --grid-margin: 48px;
    --display-hero-size: 64px;
    --display-hero-line: 72px;
    --display-section-size: 28px;
    --display-section-line: 36px;
    --space-xxl: 80px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    gap: var(--space-l);
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  :root {
    --grid-margin: 24px;
    --display-hero-size: 40px;
    --display-hero-line: 48px;
    --display-section-size: 24px;
    --display-section-line: 32px;
    --body-default-size: 16px;
    --body-default-line: 24px;
    --space-xxl: 64px;
    --space-xl: 48px;
    --space-l: 32px;
  }

  /* Header Mobile */
  .header-right {
    display: none;
  }

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

  .mobile-menu {
    display: flex;
  }

  /* Hero Mobile */
  .hero-section {
    /*margin-top: 64px;*/
  }

  .hero-image-wrapper {
    aspect-ratio: auto;
    height: calc(100svh - 64px);
    max-height: 700px;
  }

  .hero-image {
    object-position: center top;
  }

  .hero-content {
    bottom: var(--space-l);
    padding: 0 var(--grid-margin);
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--space-s);
  }

  .hero-buttons .btn-outline {
    width: 100%;
  }

  /* Scenes Mobile */
  .scenes-grid {
    grid-template-columns: 1fr;
    gap: var(--space-m);
  }

  /* About Mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }

  /* Credits Mobile */
  .credits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-s);
  }

  /* Documents Mobile */
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-s);
  }

  /* Contact Mobile */
  .contact-content {
    text-align: left;
  }

  .contact-info {
    display: block;
  }

  /* Video Container */
  .video-container {
    max-width: 100%;
  }

  /* Custom play buttons smaller on mobile */
  .custom-play-btn svg,
  .showreel-play-btn svg {
    width: 56px;
    height: 56px;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  :root {
    --grid-margin: 16px;
    --display-hero-size: 32px;
    --display-hero-line: 40px;
    --display-section-size: 22px;
    --display-section-line: 28px;
  }

  .hero-image-wrapper {
    max-height: 600px;
  }

  .hero-descriptor {
    margin-bottom: var(--space-l);
  }

  .gallery-grid {
    gap: var(--space-xs);
  }

  .lightbox-image {
    min-width: auto;
    min-height: auto;
  }
}
