/* ─────────────────────────────────────────────────────────────
   ANVIL & FORGE ADVISORY — Pre-launch Teaser (landing)
   Full-bleed forge video + centered logo lockup
   Brand: Navy #002855 · Gold #C5A55A · White #FFFFFF
   ───────────────────────────────────────────────────────────── */

:root {
  --navy:      #002855;
  --navy-deep: #001A3A;
  --navy-mid:  #003070;
  --gold:      #C5A55A;
  --gold-dark: #A88A40;
  --white:     #FFFFFF;

  --ff-primary: 'Montserrat', sans-serif;
  --ff-accent:  'Space Grotesk', sans-serif;
}

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

html, body { height: 100%; }

body {
  font-family: var(--ff-primary);
  color: var(--white);
  background: var(--navy-deep);          /* base color before video paints */
  -webkit-font-smoothing: antialiased;
  overflow: hidden;                      /* single, non-scrolling viewport */
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── FULL-VIEWPORT STAGE ─────────────────────────────────────── */
.teaser {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;                        /* avoids iOS URL-bar letterbox */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
}

/* ── VIDEO BACKGROUND ────────────────────────────────────────── */
.teaser__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;                     /* fill viewport, never letterbox */
  object-position: center;
  z-index: 0;
  background: var(--navy-deep) center / cover no-repeat;
}

/* ── DARK NAVY OVERLAY (legibility) ──────────────────────────────
   ~55% navy per brand spec, darkened toward the center where the
   forge fire is brightest so the white logo stays legible over the
   hottest frame; lighter at the edges so the footage still reads. */
.teaser__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 86% 80% at 50% 49%,
      rgba(0, 26, 58, 0.74) 0%,
      rgba(0, 26, 58, 0.68) 34%,
      rgba(0, 40, 85, 0.52) 70%,
      rgba(0, 40, 85, 0.40) 100%);
  pointer-events: none;
}

/* ── CENTERED LOGO LOCKUP + CONTACT ──────────────────────────── */
.teaser__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 2rem 1.5rem;
}

.teaser__logo {
  width: auto;
  height: auto;
  max-width: min(900px, 90vw);
  max-height: 69vh;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.5));
}

.teaser__contact {
  margin-top: clamp(1.6rem, 5vh, 3rem);
  font-family: var(--ff-accent);
  font-weight: 500;
  font-size: clamp(1rem, 2.4vw, 1.23rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.teaser__contact a {
  color: var(--white);
  border-bottom: 1px solid rgba(197, 165, 90, 0.55);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.teaser__contact a:hover,
.teaser__contact a:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
  outline: none;
}

/* ── REDUCED MOTION: swap video for the static poster frame ───── */
@media (prefers-reduced-motion: reduce) {
  .teaser__video { display: none; }
  .teaser {
    background-image: url('../assets/forge-poster.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* ── MOBILE: keep the (now larger) email within the viewport ─── */
@media (max-width: 600px) {
  .teaser__contact { font-size: clamp(0.86rem, 3.4vw, 1.05rem); letter-spacing: 0.16em; }
}

/* ── VERY NARROW SCREENS (e.g. iPhone SE) ────────────────────── */
@media (max-width: 380px) {
  .teaser__contact { font-size: 0.82rem; letter-spacing: 0.08em; }
}

/* ── SHORT / LANDSCAPE VIEWPORTS ─────────────────────────────── */
@media (max-height: 480px) {
  .teaser__logo { max-height: 78vh; max-width: min(760px, 84vw); }
  .teaser__contact { margin-top: clamp(0.9rem, 3vh, 1.5rem); }
}
