:root {
  --bg: #ffffff;
  --text: #1c1c1c;
  --muted: #6b6b6b;
  --soft: #a0a0a0;
  --ease: 220ms ease;
}

* { box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.page {
  width: min(92vw, 1480px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(28px, 4.8vh, 64px) 0 clamp(22px, 3.2vh, 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.8vh, 20px);
  margin-bottom: clamp(28px, 4.6vh, 54px);
  animation: fadeIn 520ms ease both;
}

.logo {
  width: clamp(210px, 23vw, 370px);
  height: auto;
  display: block;
}

.tagline {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: 0.012em;
  text-align: center;
}

.reel {
  width: 100%;
  animation: fadeIn 760ms 120ms ease both;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: 8px;
}

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

.footer {
  margin-top: clamp(26px, 4.1vh, 46px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.6vh, 28px);
  animation: fadeIn 760ms 220ms ease both;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.contact a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--ease), opacity var(--ease);
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--muted);
}

.contact a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.copyright {
  margin: 0;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.02em;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  .page {
    width: min(94vw, 640px);
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .intro {
    gap: 14px;
    margin-bottom: 28px;
  }

  .logo {
    width: min(74vw, 260px);
  }

  .tagline {
    font-size: clamp(22px, 7vw, 28px);
  }

  .video-frame {
    border-radius: 5px;
  }

  .footer {
    margin-top: 26px;
    gap: 22px;
  }

  .contact {
    gap: 11px;
    font-size: 16px;
  }
}

@media (max-height: 760px) and (min-width: 701px) {
  .page {
    width: min(82vw, 1180px);
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .intro {
    margin-bottom: 24px;
    gap: 10px;
  }

  .logo {
    width: clamp(190px, 18vw, 300px);
  }

  .tagline {
    font-size: clamp(22px, 2.4vw, 32px);
  }

  .footer {
    margin-top: 22px;
    gap: 16px;
  }

  .contact {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
