:root {
  --bone: #e8e2d4;
  --ash: #c9c2b3;
  --blood: #7a1f1f;
  --blood-bright: #a82828;
  --char: #0d0d0d;
  --char-2: #181613;
  --moss: #4a5237;
}

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

html, body {
  background: var(--char);
  color: var(--bone);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  min-height: 100vh;
}

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

/* nav */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  opacity: 0;
  animation: fadeDown 1s 0.2s ease forwards;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 0.95rem;
}
.nav__mark { width: 26px; height: 26px; color: var(--blood-bright); }
.nav__links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--ash);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav__links a:hover { color: var(--blood-bright); }

/* hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8vw;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4) contrast(1.05) brightness(0.55);
  transform: scale(1.08);
  animation: slowZoom 20s ease-out forwards;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.55) 45%, rgba(13,13,13,0.2) 100%),
    linear-gradient(0deg, var(--char) 2%, transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 640px;
}
.hero__tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--blood-bright);
  border-left: 2px solid var(--blood-bright);
  padding-left: 0.8rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s ease forwards;
}
.hero__title {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: lineRise 0.8s ease forwards;
}
.hero__title .line:nth-child(1) { animation-delay: 0.5s; color: var(--bone); }
.hero__title .line:nth-child(2) { animation-delay: 0.65s; color: var(--ash); font-style: italic; font-weight: 500; padding-left: 1.5rem; }
.hero__title .line:nth-child(3) { animation-delay: 0.8s; color: var(--blood-bright); }
.hero__sub {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ash);
  max-width: 520px;
  margin-bottom: 2.4rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 1s 1s ease forwards;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--solid {
  background: var(--blood);
  color: var(--bone);
}
.btn--solid:hover { background: var(--blood-bright); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(232,226,212,0.4);
}
.btn--ghost:hover { border-color: var(--blood-bright); color: var(--blood-bright); }

.hero__stats {
  display: flex;
  gap: 3rem;
  opacity: 0;
  animation: fadeUp 1s 1.4s ease forwards;
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--bone);
}
.stat__label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 0.3rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ash);
  opacity: 0;
  animation: fadeUp 1s 1.6s ease forwards, bob 2.4s 2.6s ease-in-out infinite;
  z-index: 5;
}

/* keyframes */
@keyframes slowZoom { from { transform: scale(1.15); } to { transform: scale(1.0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lineRise { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

@media (max-width: 720px) {
  .nav { padding: 1.5rem 1.5rem; }
  .nav__links { display: none; }
  .hero { padding: 0 6vw; }
  .hero__cta { flex-direction: column; }
  .hero__stats { gap: 1.8rem; }
}
