@font-face {
  font-family: 'VCR OSD Mono';
  src: url('../fonts/VCR-OSD-Mono.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-black: #0a0a0a;
  --text-white: #f5f5f0;
  --accent: #f5f5f0;
  --sand: #d8c9ad;
  --section-gap: 5rem;
}

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

body {
  background: var(--bg-black);
  color: var(--text-white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2 {
  font-family: 'VCR OSD Mono', 'Space Mono', 'Courier New', monospace;
}

h2 {
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* ---------- Hero ---------- */
.hero {
  padding: 3rem 1.5rem 0;
  text-align: center;
}

.logo {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.cursor {
  display: inline-block;
  height: 1.25em;
  width: auto;
  vertical-align: -0.25em;
  margin: 0 0.35em;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.cycle-text {
  display: inline-block;
  animation: colorCycle 4s linear infinite;
}

@keyframes colorCycle {
  0% { color: #ff5c5c; }
  16.66% { color: #ffb347; }
  33.33% { color: #f5f542; }
  50% { color: #5eff8f; }
  66.66% { color: #5ec8ff; }
  83.33% { color: #c77dff; }
  100% { color: #ff5c5c; }
}

.hero-image {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

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

/* ---------- About ---------- */
.about {
  margin-top: var(--section-gap);
}

.about-bg {
  position: relative;
  aspect-ratio: 1859 / 1806;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 440px;
  padding: 8rem 2rem;
  text-align: center;
  color: #1a1208;
}

.about-content h2 {
  color: #1a1208;
  margin-bottom: 1.25rem;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---------- Reel ---------- */
.reel {
  margin-top: var(--section-gap);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.reel-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #111;
}

.reel-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Other Work ---------- */
.other-work {
  margin-top: var(--section-gap);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.work-item {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-item:hover img {
  transform: scale(1.05);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: var(--section-gap);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: var(--text-white);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 1;
}

.social-links svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .work-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 639px) {
  .site-footer {
    font-size: 0.7rem;
  }
}

@media (min-width: 1200px) {
  .about-content p {
    font-size: 18px;
  }
}

@media (min-width: 701px) {
  .about-bg {
    aspect-ratio: 1859 / 1294;
  }
}

@media (max-width: 600px) {
  .about-content {
    max-width: 340px;
  }

  .about-content p {
    font-size: 12.2px;
  }
}

@media (max-width: 400px) {
  .about-bg {
    max-width: 100%;
    aspect-ratio: 1859 / 2758;
    min-height: 0;
    margin: 0;
    overflow: visible;
    align-items: center;
  }

  .about-content {
    max-width: calc(80% - 80px);
    padding: 2rem 1rem;
  }

  .about-content p {
    font-size: 10px;
  }
}
