:root {
  --ink: #14110f;
  --ink-2: #1d1916;
  --bone: #ece4d6;
  --bone-dim: #b9ad99;
  --rust: #b5502f;
  --rust-bright: #d6693f;
  --line: rgba(236, 228, 214, 0.16);
}

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

html, body {
  height: 100%;
}

body {
  background: radial-gradient(120% 140% at 15% 10%, #221c17 0%, var(--ink) 45%, #0f0c0a 100%);
  color: var(--bone);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.talon-mark {
  position: fixed;
  top: 50%;
  right: -8vw;
  width: 55vw;
  max-width: 720px;
  transform: translateY(-50%) rotate(8deg);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.talon-mark svg path {
  fill: none;
  stroke: var(--rust);
  stroke-width: 1.1;
  opacity: 0.35;
}

.stage {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8vh 8vw;
}

.frame {
  position: relative;
  max-width: 720px;
  animation: rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rust-bright);
  margin-bottom: 1.6rem;
  animation: rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.12s;
}

h1 {
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: var(--bone);
  text-shadow: 0 0 60px rgba(214, 105, 63, 0.18);
  animation: rise 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.22s;
}

.tagline {
  margin-top: 2.2rem;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--bone-dim);
  font-weight: 300;
  animation: rise 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.36s;
}

.tagline::before {
  content: '';
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--rust);
  margin-right: 1rem;
  vertical-align: middle;
  transform: translateY(-2px);
}

.corner {
  position: absolute;
  width: 46px;
  height: 46px;
  border-color: var(--rust);
  border-style: solid;
  opacity: 0.7;
}

.corner-tl {
  top: -2.2rem;
  left: -2.4rem;
  border-width: 1.5px 0 0 1.5px;
}

.corner-br {
  bottom: -2.6rem;
  right: -2.4rem;
  border-width: 0 1.5px 1.5px 0;
}

.foot {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.6rem 8vw;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  opacity: 0.6;
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  .talon-mark {
    right: -30vw;
    width: 90vw;
    opacity: 0.5;
  }

  .stage {
    padding: 10vh 6vw;
  }

  .corner {
    display: none;
  }
}
