:root {
  color-scheme: dark;
  --ink: #f5f1e7;
  --muted: #b7b2a7;
  --line: rgba(245, 241, 231, 0.22);
  --orange: #ff8a3d;
  --green: #8fbd68;
  --sky: #78b7d6;
  --black: #11110f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--black);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(17, 17, 15, 0.92) 0%, rgba(17, 17, 15, 0.76) 34%, rgba(17, 17, 15, 0.28) 68%, rgba(17, 17, 15, 0.1) 100%),
    linear-gradient(0deg, rgba(17, 17, 15, 0.86) 0%, rgba(17, 17, 15, 0.14) 42%, rgba(17, 17, 15, 0.18) 100%),
    url("/assets/castle-placeholder-hero.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 138, 61, 0.12), transparent 30%),
    radial-gradient(circle at 24% 82%, rgba(143, 189, 104, 0.13), transparent 24%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 88px);
  padding-bottom: clamp(140px, 16vw, 210px);
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 9.5vw, 10rem);
  line-height: 0.86;
  letter-spacing: 0;
  max-width: 7ch;
}

.lead {
  margin: 28px 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.status-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(245, 241, 231, 0.82);
  font-size: 0.82rem;
  background: rgba(245, 241, 231, 0.06);
}

.legal-note {
  position: absolute;
  left: clamp(32px, 6vw, 88px);
  bottom: clamp(28px, 4vw, 54px);
  z-index: 1;
  max-width: min(660px, calc(100vw - 64px));
  padding: 13px 15px;
  border-left: 3px solid var(--orange);
  background: rgba(17, 17, 15, 0.72);
  color: rgba(245, 241, 231, 0.82);
  font-size: 0.78rem;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

@media (max-width: 820px) {
  .hero {
    min-height: 100svh;
    background-position: 58% center;
  }

  .hero-copy {
    min-height: 100svh;
    padding-bottom: 180px;
  }

  .legal-note {
    left: 24px;
    right: 24px;
    max-width: none;
  }
}
