:root {
  --void: #050506;
  --deep: #050506;
  --surface: #070607;
  --surface-2: #090809;
  --border: rgba(255, 255, 255, 0.055);
  --border-h: rgba(214, 60, 60, 0.38);

  --accent: #d62828;
  --accent-dim: #8b1515;
  --accent-glow: rgba(214, 40, 40, 0.22);

  --blood: #d62828;
  --blood-dim: #8b1515;
  --blood-glow: rgba(214, 40, 40, 0.28);
  --blood-glow2: rgba(214, 40, 40, 0.09);

  --rot: #4a1518;
  --rot-glow: rgba(120, 30, 40, 0.4);

  --text: #ece9e4;
  --text-dim: rgba(236, 233, 228, 0.58);
  --text-muted: rgba(236, 233, 228, 0.32);

  --sp-section: clamp(5rem, 12vw, 9rem);
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Bebas Neue", sans-serif;
  --font-ui: "DM Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-horror: "Creepster", cursive;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: var(--void);
  background-image: none;
  background-attachment: scroll;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-ui);
  line-height: 1.65;
  position: relative;
  background-color: var(--void);
}

main {
  background-color: var(--void);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  mix-blend-mode: overlay;
  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");
  background-size: 180px 180px;
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    opacity: 0.02;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none !important;
}

.c-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.c-cursor__inner {
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out);
}

.c-cursor__dot {
  width: 10px;
  height: 10px;
  background-color: var(--blood);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--blood-glow), 0 0 4px var(--blood);
  pointer-events: none;
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}
#cursor.hovering .c-cursor__dot {
  transform: scale(2);
  background-color: transparent;
  border: 1px solid var(--blood);
}

#cursor.clicking .c-cursor__dot {
  transform: scale(0.6);
  background-color: #ff6b6b;
}

#cursor.hovering.clicking .c-cursor__dot {
  transform: scale(1.5);
  background-color: var(--blood-glow);
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: auto !important;
  }

  .c-cursor {
    display: none !important;
  }
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
}

em {
  font-style: normal;
  color: var(--blood);
}

.section__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 85, 85, 0.82);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section__label::after {
  content: "";
  display: block;
  height: 1px;
  width: 40px;
  background: rgba(190, 70, 70, 0.35);
}

.section__title {
  margin-bottom: 4rem;
  color: var(--text);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--sp-section) 0;
  background-color: var(--void);
}

.section--dark {
  background: var(--deep);
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.9rem 2rem;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
  transform: translateX(-150%);
  transition: transform 0.5s ease;
}

.btn:hover::after {
  transform: translateX(150%);
}

.btn--primary {
  background: linear-gradient(135deg, var(--blood) 0%, #6d1010 100%);
  color: #fff;
  border: 1px solid rgba(214, 40, 40, 0.45);
  box-shadow: 0 8px 28px var(--blood-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  border-color: #ff6b6b;
  box-shadow: 0 16px 44px var(--blood-glow);
}

.btn--download {
  background: linear-gradient(180deg, #3a1a1c 0%, #1a0e10 55%, #0f0809 100%);
  color: #f5e6e6;
  border: 1px solid rgba(214, 60, 55, 0.65);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 24px var(--blood-glow);
}

.btn--download:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 140, 130, 0.85);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 44px var(--blood-glow);
  color: #fff;
}

.btn--download-free {
  background: linear-gradient(135deg, rgba(22, 10, 12, 0.98) 0%, rgba(8, 5, 6, 0.99) 100%);
  color: #ebe4e4;
  border: 1px solid rgba(160, 70, 75, 0.5);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.btn--download-free:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 90, 85, 0.75);
  box-shadow: 0 12px 36px rgba(80, 20, 22, 0.25);
  color: #fff;
}

.btn__icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.btn--ghost {
  background: rgba(12, 8, 10, 0.72);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.btn--ghost:hover {
  border-color: var(--border-h);
  color: #ffc9c9;
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  color: var(--blood);
  border: 1px solid rgba(214, 40, 40, 0.45);
  padding: 0.7rem 1.6rem;
  font-size: 0.78rem;
}

.btn--outline:hover {
  background: var(--blood-glow2);
  border-color: var(--blood);
  transform: translateY(-2px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 5, 5, 0.82);
  backdrop-filter: blur(16px);
  height: 58px;
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 var(--gutter);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.nav__logo-icon {
  flex-shrink: 0;
  opacity: 0.92;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__logo:hover .nav__logo-icon {
  transform: scale(1.08);
  opacity: 1;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--blood);
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f8ecec;
  background: linear-gradient(180deg, #2a1416 0%, #120a0c 55%, #0a0506 100%);
  border: 1px solid rgba(214, 60, 55, 0.5);
  padding: 0.55rem 1.15rem;
  border-radius: var(--r-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5), 0 0 18px var(--blood-glow);
}

.nav__cta-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.nav__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 130, 120, 0.65);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.55), 0 0 26px var(--blood-glow);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--void);
}

.hero__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--void);
  background-image: url("assets/hero-keyart.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 52% center;
  transform: scale(1.02);
  /* Assombrit l’illustration pour ne pas dominer le texte */
  filter: brightness(0.46) contrast(1.12) saturate(0.88);
}

@media (max-width: 900px) {
  .hero__art {
    background-position: 58% center;
  }
}

@media (max-width: 600px) {
  .hero__art {
    background-position: center top;
    background-size: cover;
    transform: scale(1.05);
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  --v: 5, 5, 6;
  background:
    radial-gradient(
      ellipse min(92vw, 820px) min(78vh, 720px) at 50% 40%,
      rgba(var(--v), 0.78) 0%,
      rgba(var(--v), 0.4) 42%,
      transparent 70%
    ),
    linear-gradient(105deg, rgba(var(--v), 0.75) 0%, rgba(var(--v), 0.38) 32%, transparent 58%),
    linear-gradient(215deg, rgba(var(--v), 0.62) 0%, transparent 40%),
    linear-gradient(0deg, rgba(var(--v), 0.9) 0%, rgba(var(--v), 0.55) 18%, rgba(var(--v), 0.22) 45%, transparent 62%),
    radial-gradient(ellipse 95% 78% at 50% 100%, rgba(var(--v), 0.82) 0%, transparent 58%);
}

.hero__crawl {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.3;
}

.hero__mist {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.88;
  background:
    radial-gradient(ellipse 130% 70% at 50% 108%, rgba(5, 5, 6, 0.88) 0%, transparent 52%),
    radial-gradient(ellipse 75% 50% at 72% 22%, rgba(5, 5, 6, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 55% 40% at 18% 35%, rgba(5, 5, 6, 0.12) 0%, transparent 48%);
  animation: mistDrift 24s ease-in-out infinite alternate;
}

@keyframes mistDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.88;
  }
  100% {
    transform: translate3d(0.8%, -1.2%, 0) scale(1.02);
    opacity: 0.96;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__mist {
    animation: none;
    opacity: 0.9;
  }
}

.hero__bg-glow {
  position: absolute;
  top: 26%;
  left: 58%;
  transform: translate(-50%, -50%);
  width: min(90vw, 720px);
  height: min(55vh, 480px);
  background: radial-gradient(ellipse at 50% 50%, rgba(5, 5, 6, 0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
  animation: heroPulse 7s ease-in-out infinite;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow:
    inset 0 0 140px 48px rgba(5, 5, 6, 0.55),
    inset 0 -100px 90px 24px rgba(5, 5, 6, 0.42),
    inset 0 0 70px 18px rgba(5, 5, 6, 0.28);
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.48;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.hero__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 820px;
  padding: 0 var(--gutter);
  margin-top: clamp(0.5rem, 6vh, 3.5rem);
}

.hero__fear {
  font-family: var(--font-horror);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: rgba(245, 215, 155, 0.96);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 1),
    0 0 22px rgba(0, 0, 0, 0.98),
    0 0 44px rgba(0, 0, 0, 0.75);
  margin: 0;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(235, 225, 215, 0.72);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 1);
}

.hero__badge {
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(200, 155, 70, 0.32);
  color: #e8d8b4;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.65rem;
}

.hero__divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}

.hero__title {
  font-size: clamp(2.75rem, 12vw, 7.5rem);
  font-weight: 400;
  line-height: 0.92;
  margin: 0;
  padding: 0 0.02em;
  color: #faf6f1;
  letter-spacing: 0.08em;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 1),
    0 0 1px rgba(0, 0, 0, 1),
    0 0 20px rgba(0, 0, 0, 1),
    0 0 48px rgba(0, 0, 0, 0.98),
    0 4px 32px rgba(0, 0, 0, 0.9),
    0 0 72px rgba(30, 8, 6, 0.75);
  animation: heroTitleFloat 9s ease-in-out infinite;
}

.hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238, 228, 216, 0.72);
  margin: 0;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 1),
    0 0 18px rgba(0, 0, 0, 0.95);
}

@keyframes heroTitleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(244, 236, 226, 0.9);
  letter-spacing: 0.03em;
  max-width: 520px;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 1),
    0 0 20px rgba(0, 0, 0, 0.92);
}

.hero__actions {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 420px;
}

.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blood), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1.25);
    opacity: 1;
  }
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.story__text p {
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.story__text .btn {
  margin-top: 1.5rem;
}

.story__card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
}

.story__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 6, 0.65) 0%, transparent 62%);
  pointer-events: none;
}

.story__stats {
  display: flex;
  gap: 1px;
  margin-top: 1px;
  background: var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.stat {
  flex: 1;
  background: var(--surface);
  padding: 1.2rem;
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--blood);
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: 0.08em;
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 1rem;
}

.feature-card {
  grid-column: span 4;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.4s ease, transform 0.5s var(--ease-out), box-shadow 0.4s ease;
}

.feature-card--large {
  grid-column: span 8;
}

.feature-card:hover {
  border-color: rgba(200, 70, 70, 0.32);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 28px rgba(120, 30, 28, 0.12);
}

.feature-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
  filter: brightness(0.48) saturate(0.85);
}

.feature-card:hover .feature-card__img {
  transform: scale(1.08);
  filter: brightness(0.62) saturate(1.05);
}

.feature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 4, 6, 0.96) 0%, rgba(5, 4, 6, 0.35) 50%, transparent 100%);
}

.feature-card__body {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-card__num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--blood);
  letter-spacing: 0.2em;
  margin-bottom: 0.6rem;
  opacity: 0.85;
}

.feature-card h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery__item {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.3s ease, transform 0.4s var(--ease-out);
}

.gallery__item:hover {
  border-color: var(--border-h);
  transform: scale(1.02);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.72) brightness(0.92);
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1.02);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rot-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.footer {
  background: var(--void);
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  padding: 3rem 0 2rem;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__icon {
  flex-shrink: 0;
  opacity: 0.85;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer__brand:hover .footer__icon {
  opacity: 1;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__social {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: all 0.3s ease;
}

.footer__social:hover {
  border-color: var(--border-h);
  color: #ffb4b4;
  background: var(--blood-glow2);
  transform: translateY(-3px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy,
.footer__made {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-card,
  .feature-card--large {
    grid-column: span 1;
    height: 280px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .story__stats {
    flex-direction: column;
    gap: 1px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav__cta span {
    display: none;
  }

  .nav__cta {
    padding: 0.55rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__bg-glow,
  .hero__scroll-line {
    animation: none;
  }

  .hero__art {
    transform: none;
  }
}
