:root {
  color-scheme: dark;
  --ink: #fff8ef;
  --muted: #e9cfc8;
  --gold: #e4b56f;
  --wine: #7b1634;
  --red: #b02746;
  --shadow: rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #080506;
  color: var(--ink);
}

.site-shell {
  min-height: 100svh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(20px, 4vw, 56px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-background.png");
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 3, 4, 0.92) 0%, rgba(7, 4, 6, 0.7) 38%, rgba(16, 4, 8, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.74) 100%);
  content: "";
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  align-self: start;
}

.domain {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}

.age-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 38px;
  border: 1px solid rgba(228, 181, 111, 0.7);
  border-radius: 999px;
  background: rgba(10, 6, 7, 0.62);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy {
  width: min(760px, 100%);
  align-self: center;
  padding-block: 52px 72px;
  text-shadow: 0 18px 40px var(--shadow);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9rem;
  font-weight: 500;
  line-height: 0.88;
}

.status {
  width: fit-content;
  max-width: 100%;
  margin: clamp(24px, 4vw, 40px) 0 0;
  padding: 10px 16px;
  border-left: 4px solid var(--red);
  background: rgba(9, 5, 6, 0.56);
  color: #ffffff;
  font-size: 1.85rem;
  font-weight: 750;
  line-height: 1.15;
}

.intro {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.notice-bar {
  display: flex;
  align-items: center;
  min-height: 66px;
  align-self: end;
  border-top: 1px solid rgba(255, 248, 239, 0.16);
  color: rgba(255, 248, 239, 0.82);
}

.notice-bar p {
  max-width: 980px;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 7.2rem;
  }

  .status {
    font-size: 1.62rem;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 18px;
  }

  .topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .age-mark {
    min-width: 0;
    padding-inline: 14px;
  }

  .hero-copy {
    padding-block: 42px 52px;
  }

  h1 {
    max-width: 9ch;
    font-size: 5.15rem;
  }

  .status {
    width: 100%;
    font-size: 1.36rem;
  }

  .intro {
    font-size: 1.05rem;
  }
}

@media (max-width: 420px) {
  .domain {
    font-size: 0.92rem;
  }

  h1 {
    font-size: 4.2rem;
  }
}
