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

@font-face {
  font-family: 'Dunvar';
  src: url('fonts/webfontkit-20260424-101930/dunbar-tall-regular-webfont.woff2') format('woff2'),
       url('fonts/webfontkit-20260424-101930/dunbar-tall-regular-webfont.woff') format('woff'),
       url('fonts/dunbar-tall-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* SCROLL SNAP */
html {
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  overflow-y: scroll;
  font-family: 'Dunvar', sans-serif;
}

/* VARIABLES */
:root {
  --white: #ffffff;
  --accent: #FF931E;
  --twomirror_bg_color: #1E3C4B;
  --overlay: rgba(10, 10, 10, 0.3);
}

/* SECTION (layout only) */
.section {
  position: relative;
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
}

/* VIDEO */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* FALLBACK */
.hero__fallback {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  z-index: 0;
}

/* OVERLAY */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.5), transparent);
  z-index: 1;
}

/* HEADER */
.top-bar {
  position: absolute;
  background-color: var(--twomirror_bg_color);
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 10;
}

.logo {
  opacity: 0;
  animation: fadeDown 0.9s ease 0.2s forwards;
}

.logo img {
  height: 60px;
}

nav {
  display: flex;
  gap: 30px;
  opacity: 0;
  animation: fadeDown 0.9s ease 0.35s forwards;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* CONTENT */
.hero__content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  max-width: 700px;
}

/* TEXT */
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: var(--accent);
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero__headline {
  font-family: 'Dunvar', serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  color: white;
  margin-bottom: 30px;
}

.hero__headline em {
  font-style: italic;
}

/* WORD ANIMATION */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordIn 0.8s ease forwards;
}

/* CTA */
.hero__cta {
  display: inline-block;
  border: 1px solid white;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

/* ANIMATIONS */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-15px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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