:root {
  --ink: #0a0a0a;
  --bone: #e8e2d4;
  --blood: #8b1a1a;
  --moss: #4a5d3a;
  --fog: #c9c4b8;
  --decay: #5a4a3a;
}

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

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  font-family: 'Barlow Condensed', sans-serif;
}

/* Film grain overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(2) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-3px, 2px); }
  100% { transform: translate(2px, -1px); }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.7) contrast(1.15) brightness(0.6) sepia(0.15);
  animation: kenburns 30s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -3%); }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.95) 100%),
    linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, transparent 30%);
}

/* Top bar */
.hero__top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  animation: fadeInDown 1s 0.3s both;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Special Elite', monospace;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--bone);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.hero__brand .ti {
  font-size: 22px;
  color: var(--blood);
}

.hero__nav {
  display: flex;
  gap: 32px;
}
.hero__nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.hero__nav a:hover {
  opacity: 1;
  color: var(--bone);
}

/* Content */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: 0 48px;
  margin-top: 16vh;
  animation: rise 1.4s 0.5s both ease-out;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(139, 26, 26, 0.5);
  border-radius: 2px;
  background: rgba(139, 26, 26, 0.08);
}
.hero__eyebrow .ti { font-size: 15px; }

.hero__title {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(60px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--bone);
  text-shadow: 0 4px 24px rgba(0,0,0,0.7), 0 0 60px rgba(139,26,26,0.15);
}
.hero__title .line {
  display: block;
  opacity: 0;
  animation: lineIn 0.8s forwards;
}
.hero__title .line:nth-child(1) { animation-delay: 0.7s; transform: translateY(30px); }
.hero__title .line:nth-child(2) { animation-delay: 0.9s; transform: translateY(30px); color: var(--blood); }
@keyframes lineIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--fog);
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0.85;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn .ti { font-size: 18px; }

.btn--primary {
  background: var(--blood);
  color: var(--bone);
  border: 1px solid var(--blood);
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.4);
}
.btn--primary:hover {
  background: #a02020;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 26, 26, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(232, 226, 212, 0.4);
}
.btn--ghost:hover {
  border-color: var(--bone);
  background: rgba(232, 226, 212, 0.08);
}

/* Bottom stats */
.hero__bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 48px;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
  animation: fadeInUp 1s 1.6s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stat-value {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--bone);
}
.hero__stat-label {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fog);
  opacity: 0.6;
}
.hero__divider {
  width: 1px;
  height: 32px;
  background: rgba(232, 226, 212, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero__top { padding: 20px 24px; }
  .hero__nav { display: none; }
  .hero__content { padding: 0 24px; margin-top: 12vh; }
  .hero__tagline { font-size: 17px; }
  .hero__bottom { gap: 20px; padding: 20px 24px; }
  .hero__stat-value { font-size: 22px; }
}
