@import url('https://fonts.googleapis.com/css2?family=Ultra&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-primary: #0A0A0A;
  --text-primary: #F5F0EB;
  --text-secondary: #A8A098;
  --text-muted: #6B6560;
  --link-accent: #00aeff;
  --font-display: 'Ultra', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.4;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover {
  color: var(--text-primary);
}

.temp-page {
  width: 100%;
}

.hero {
  height: 220vh;
  position: relative;
}

.hero-video-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

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

.hero-video-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(1.6rem, 3vw, 2.3rem);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 220ms ease;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--link-accent), transparent);
  animation: pulse-scroll 1.7s ease-in-out infinite;
}

@keyframes pulse-scroll {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.45;
    transform: scaleY(0.7);
  }
}

.contact-section {
  padding: clamp(4.5rem, 10vw, 9rem) 1.25rem clamp(5rem, 10vw, 9rem);
  background: #000;
}

.contact-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}

.subtitle {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: clamp(1.32rem, 4.8vw, 2.88rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.12;
  text-wrap: balance;
}

.contact-line {
  margin-top: 2rem;
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  line-height: 1.9;
  letter-spacing: 0.008em;
}

.contact-line a {
  color: var(--link-accent);
}

.contact-line a:hover {
  color: #59c8ff;
}

.mobile-break {
  display: none;
}

@media (max-width: 700px) {
  .hero {
    height: 185vh;
  }

  .hero-video {
    width: var(--mobile-video-width, 188vw);
    height: auto;
    max-width: none;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    object-fit: contain;
  }

  .scroll-line {
    height: 42px;
  }

  .contact-section {
    margin-top: calc(var(--mobile-video-height, 0px) - 100vh + 2rem);
    padding-top: 0;
    padding-bottom: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    z-index: 3;
  }

  .contact-line {
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-separator {
    display: none;
  }

  .mobile-break {
    display: block;
  }
}
