:root {
  --cream: #f4ead4;
  --paper: #d7bd8a;
  --amber: #e98a25;
  --red: #bf1e2e;
  --blue: #143f68;
  --dark: #120b07;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--dark);
  color: var(--cream);
  font-family: "Roboto Slab", Georgia, serif;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13,7,4,.97) 0%, rgba(13,7,4,.88) 39%, rgba(13,7,4,.35) 68%, rgba(13,7,4,.12) 100%),
    linear-gradient(0deg, rgba(13,7,4,.78), transparent 46%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border: 10px solid rgba(215,189,138,.18);
  box-shadow: inset 0 0 160px rgba(0,0,0,.72);
}

.masthead {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 30px clamp(24px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  color: var(--cream);
  font-family: "Rye", Rockwell, Georgia, serif;
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.status {
  border: 1px solid rgba(244,234,212,.52);
  padding: 8px 13px;
  color: var(--paper);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero-copy {
  width: min(1280px, 100%);
  margin: auto;
  padding: 48px clamp(24px, 5vw, 70px) 80px;
  align-self: end;
}

.flag-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--paper);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.flag-wrap img {
  width: 58px;
  height: 38px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 5px 18px rgba(0,0,0,.35);
}

.kicker {
  margin: 0 0 15px;
  color: var(--amber);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: clamp(.72rem, 1.3vw, .9rem);
}

h1 {
  max-width: 770px;
  margin: 0;
  font-family: "Rye", Rockwell, Georgia, serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-shadow: 0 6px 0 rgba(0,0,0,.28), 0 0 40px rgba(0,0,0,.6);
}

h1 span { display: block; color: var(--cream); }

.wire {
  width: min(690px, 90%);
  height: 13px;
  margin: 28px 0 20px;
  opacity: .7;
  background: repeating-linear-gradient(135deg, transparent 0 13px, var(--paper) 14px 16px, transparent 17px 29px);
  border-top: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  transform: skewX(-12deg);
}

.tagline {
  max-width: 650px;
  margin: 0;
  font-family: "Rye", Rockwell, Georgia, serif;
  color: var(--amber);
  font-size: clamp(1.25rem, 2.7vw, 2rem);
  line-height: 1.25;
}

.coming {
  margin: 19px 0 0;
  color: var(--cream);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.legal {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(244,234,212,.62);
  font-size: .78rem;
  line-height: 1.55;
}

.back-link {
  display: inline-block;
  margin-top: 25px;
  color: var(--cream);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-underline-offset: 5px;
}

.back-link span { color: var(--amber); }

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    display: block;
    overflow: visible;
    background: var(--dark);
  }
  .hero-photo {
    position: relative;
    inset: auto;
    z-index: -3;
    width: 100%;
    height: 54svh;
    min-height: 390px;
    object-position: 66% center;
  }
  .shade {
    height: 54svh;
    min-height: 390px;
    bottom: auto;
    background:
      linear-gradient(0deg, rgba(13,7,4,.76) 0%, transparent 38%),
      linear-gradient(90deg, rgba(13,7,4,.28), transparent 70%);
  }
  .hero::after { height: 54svh; min-height: 390px; bottom: auto; }
  .masthead { position: absolute; inset: 0 0 auto; padding-top: 22px; }
  .status { font-size: .65rem; }
  .hero-copy {
    position: relative;
    z-index: 1;
    padding: 38px 24px 52px;
    background: var(--dark);
  }
  h1 { font-size: clamp(3.25rem, 17vw, 5.4rem); }
  .flag-wrap { margin-bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
