@font-face {
  font-family: "DIN Pro";
  src: url("assets/fonts/dinpro_light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro";
  src: url("assets/fonts/dinpro_bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0a0a;
  --bg-elev: #111;
  --ink: #f2f2f2;
  --ink-muted: #b8b8b8;
  --red: #8c0000;
  --red-bright: #c41212;
  --line: rgba(255, 255, 255, 0.12);
  --font: "DIN Pro", "DIN Alternate", "Arial Narrow", sans-serif;
  --wrap: min(72rem, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--red-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: #ff3a3a;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* —— top brand strip —— */
.site-top {
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  width: var(--wrap);
  margin-inline: auto;
  padding: 1.35rem 0 0;
  left: 0;
  right: 0;
}

.brand-logo-link {
  display: inline-block;
  pointer-events: auto;
  text-decoration: none;
}

.brand-logo {
  width: clamp(9.5rem, 18vw, 13.5rem);
  height: auto;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.55));
}

/* —— hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.2%, -0.8%, 0); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 28%, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 0.94) 82%, #0a0a0a 100%),
    radial-gradient(ellipse 80% 55% at 70% 20%, rgba(140, 0, 0, 0.28), transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin-inline: auto;
  padding: 0 0 4.5rem;
  animation: rise 0.9s ease-out both;
}

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

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.hero__eyebrow a {
  color: #fff;
  text-decoration: none;
}

.hero__eyebrow a:hover,
.hero__eyebrow a:focus-visible {
  color: #ff3a3a;
}

.hero__mark {
  width: 0.65rem;
  height: 0.65rem;
  flex: 0 0 auto;
  background: var(--red-bright);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin: 1.75rem 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin: 2.25rem 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.45rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.btn--primary {
  background: var(--red-bright);
  color: #fff;
  border-color: var(--red-bright);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #e01818;
  color: #fff;
  border-color: #e01818;
}

.btn--secondary {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: #f2f2f2;
  color: #0a0a0a;
  border-color: #f2f2f2;
}

.hero__tag {
  margin: 0 0 1rem;
  max-width: 28rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.75);
}

.hero__title {
  margin: 0 0 1.1rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero__title-main {
  display: block;
  font-size: clamp(2.4rem, 7vw, 4.75rem);
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.hero__title-sub {
  display: block;
  margin-top: 0.2em;
  font-size: clamp(1.35rem, 3.6vw, 2.35rem);
  color: var(--red-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.9),
    0 2px 14px rgba(0, 0, 0, 0.75);
}

.hero__lead {
  margin: 0 0 1.35rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  color: #f2f2f2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.75);
}

.hero__when {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-left: 3px solid var(--red);
  padding-left: 0.85rem;
}

/* —— content blocks —— */
.block {
  padding: 4.5rem 0 1rem;
}

.block h2 {
  margin: 0 0 0.65rem;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: 0.02em;
  color: #fff;
}

.lead {
  margin: 0 0 2.25rem;
  max-width: 36rem;
  color: var(--ink-muted);
  font-size: 1.125rem;
}

.points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.points li {
  display: grid;
  grid-template-columns: minmax(6.5rem, 9rem) 1fr;
  gap: 1rem 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.points__label {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.points__text {
  color: var(--ink);
  font-size: 1.1rem;
}

.meta {
  margin: 0 0 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.meta div {
  padding-top: 1rem;
  border-top: 3px solid var(--red);
}

.meta dt {
  margin: 0 0 0.4rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.meta dd {
  margin: 0;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.4;
  color: #fff;
}

/* —— gallery —— */
.gallery {
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16rem, 28vw);
  gap: 0.65rem;
  padding-inline: max(1.25rem, calc((100% - min(72rem, 100% - 2.5rem)) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
  animation: gallery-in 1.1s ease-out 0.15s both;
}

@keyframes gallery-in {
  from { opacity: 0; transform: translateY(0.75rem); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery figure {
  margin: 0;
  scroll-snap-align: start;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.08);
}

/* —— footer —— */
.site-foot {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.75rem;
}

.site-foot__inner {
  display: grid;
  gap: 0.85rem;
}

.site-foot__logo-link {
  display: inline-block;
  text-decoration: none;
  width: fit-content;
}

.site-foot__logo {
  width: clamp(10rem, 22vw, 13rem);
  height: auto;
}

.site-foot__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.site-foot__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.35rem;
  margin-top: 0.55rem;
}

.site-foot__nav a {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

.site-foot__nav a:hover,
.site-foot__nav a:focus-visible {
  color: var(--red-bright);
}

@media (max-width: 720px) {
  .site-top {
    padding: 1rem 0 0;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.55) 22%, rgba(0, 0, 0, 0.88) 48%, rgba(0, 0, 0, 0.96) 72%, #0a0a0a 100%),
      radial-gradient(ellipse 90% 50% at 50% 18%, rgba(140, 0, 0, 0.22), transparent 55%);
  }

  .hero__content {
    padding-bottom: 2.75rem;
    padding-top: 5.5rem;
  }

  .hero__tag,
  .hero__lead {
    color: #fff;
  }

  .hero__actions {
    margin-top: 1.25rem;
  }

  .hero__actions .btn {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 9.5rem;
  }

  .points li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .meta {
    grid-template-columns: 1fr;
  }

  .gallery__track {
    grid-auto-columns: 78vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media img,
  .hero__content,
  .gallery__track,
  .gallery img {
    animation: none !important;
    transition: none !important;
  }
}
