/* ============================================
   LAYOUT — Hero, Page Hero, Sections, Footer, Animations
============================================ */
/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 4rem 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("https://images.unsplash.com/photo-1603207549725-0c5f2de1bee8?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat,
    radial-gradient(
      ellipse at 65% 35%,
      rgba(232, 0, 29, 0.13),
      transparent 55%
    ),
    linear-gradient(160deg, #0e0e0e, #070707);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(0, 0, 0, 0.55),
    transparent 60%
  );
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 25%,
    black 75%,
    transparent
  );
}
.hero-word {
  position: absolute;
  right: -1%;
  bottom: 3%;
  font-size: 20vw;
  line-height: 1;
  opacity: 0.04;
  font-family: "Bebas Neue", sans-serif;
  color: var(--wht);
  user-select: none;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}
.hero-badge::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--red);
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  max-width: 620px;
  text-wrap: balance;
}
.hero-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--red);
}
.hero-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 32rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: 100%;
  max-width: 44rem;
}
.btn-r {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: #fff;
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  clip-path: polygon(
    0 0,
    calc(100% - 9px) 0,
    100% 9px,
    100% 100%,
    9px 100%,
    0 calc(100% - 9px)
  );
  cursor: pointer;
  border: none;
  font-family: "DM Sans", sans-serif;
  justify-content: center;
  min-height: 44px;
}
.btn-r:hover {
  background: #ff1530;
  transform: translateX(3px);
}
.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  font-family: "DM Sans", sans-serif;
  justify-content: center;
  min-height: 44px;
}
.btn-g:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}
.hero-counters {
  position: absolute;
  right: 4rem;
  bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}
.cnt-n {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}
.cnt-n span {
  color: var(--red);
  font-size: 1.8rem;
}
.cnt-l {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: right;
}
.h-sep {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  align-self: flex-end;
}

/* ══════════════════════════════════════════
   PAGE BANNER (image hero)
══════════════════════════════════════════ */
.page-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 480px;
  line-height: 0;
}
.page-banner-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.page-banner-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--blk, #080808));
  pointer-events: none;
}

/* ══════════════════════════════════════════
   PAGE HERO (subpages)
══════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 9rem 4rem 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 70% 50%,
      rgba(232, 0, 29, 0.08),
      transparent 60%
    ),
    linear-gradient(160deg, #0d0d0d, #070707);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 30%,
    black 70%,
    transparent
  );
}
.page-hero-word {
  position: absolute;
  right: -0.5%;
  bottom: -5%;
  font-size: 18vw;
  line-height: 1;
  opacity: 0.03;
  font-family: "Bebas Neue", sans-serif;
  color: var(--wht);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.page-hero-badge {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.page-hero-badge::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--red);
}
.page-hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  max-width: 700px;
}
.page-hero-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--red);
}
.page-hero-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.38);
  max-width: 500px;
  line-height: 1.8;
  margin-top: 1rem;
}
.page-hero-tabs {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.page-tabs-bar {
  display: flex;
  gap: 0;
  background: var(--blk, #080808);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 4rem;
  overflow-x: auto;
}
.pht {
  padding: 0.7rem 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
.pht:hover {
  color: rgba(255, 255, 255, 0.7);
}
.pht.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
section {
  padding: 7rem 4rem;
}
.ey {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.ey::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
}
.st {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.st em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--red);
}
.si {
  color: rgba(255, 255, 255, 0.42);
  max-width: 560px;
  line-height: 1.8;
  font-size: 0.88rem;
  margin-bottom: 3rem;
}

/* ══════════════════════════════════════════
   HOME: SECTION CARDS
══════════════════════════════════════════ */
.home-sections {
  padding: 5rem 4rem;
}
.hs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.hs-card {
  background: var(--blk);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.hs-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.hs-card:hover {
  background: rgba(232, 0, 29, 0.04);
}
.hs-card:hover::before {
  transform: scaleX(1);
}
.hs-card:hover .hs-arrow {
  transform: translateX(4px);
}
.hs-icon {
  font-size: 2rem;
  line-height: 1;
}
.hs-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.hs-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--wht);
  overflow-wrap: anywhere;
}
.hs-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
  flex: 1;
  overflow-wrap: anywhere;
}
.hs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.hs-tag {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
}
.hs-arrow {
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-wrap: anywhere;
}

@media (max-width: 960px) {
  .hero {
    padding: 0 2rem 4rem;
  }
  .hero-counters {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    max-width: 9ch;
    font-size: clamp(2.9rem, 17vw, 4.8rem);
  }
  .hero-sub {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.7;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-r,
  .btn-g {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.55rem, 15vw, 3.9rem);
  }
  .hs-card {
    padding: 1.6rem 1.25rem;
  }
}
/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 84, 84, 0.22), transparent 32%),
    radial-gradient(circle at bottom left, rgba(232, 0, 29, 0.18), transparent 28%),
    linear-gradient(180deg, #23080c, #130507 58%, #090304);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.15));
  opacity: 0.25;
  pointer-events: none;
}
.site-footer-shell {
  position: relative;
  z-index: 1;
  padding: 4rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.site-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: stretch;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.site-footer-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.9rem;
}
.site-footer-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.site-footer-brand {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: 0.1em;
  line-height: 0.9;
  color: var(--wht);
  text-decoration: none;
}
.site-footer-brand span {
  color: var(--wht);
}
.site-footer-brand-rest {
  color: var(--red);
  letter-spacing: 0.05em;
  margin-left: 0.24rem;
}
.site-footer-copy {
  max-width: 620px;
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
}
.site-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.site-footer-badges span {
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-footer-heading {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}
.site-footer-cta {
  position: relative;
  padding: 1.6rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% 100%,
    18px 100%,
    0 calc(100% - 18px)
  );
}
.site-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 0, 29, 0.24), transparent 55%);
  pointer-events: none;
}
.site-footer-cta > * {
  position: relative;
  z-index: 1;
}
.site-footer-cta h3 {
  max-width: 12ch;
  margin-top: 0.9rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  letter-spacing: 0.05em;
  line-height: 0.96;
}
.site-footer-cta p {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}
.site-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}
.site-footer-primary,
.site-footer-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.site-footer-primary {
  background: var(--red);
  color: var(--wht);
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}
.site-footer-primary:hover {
  transform: translateX(3px);
  background: #ff1530;
}
.site-footer-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.76);
}
.site-footer-secondary:hover {
  transform: translateY(-1px);
  border-color: var(--red);
  color: var(--red);
}
.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.site-footer-section,
.site-footer-spotlight {
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}
.site-footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer-links {
  display: grid;
  gap: 0.75rem;
}
.site-footer-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  color: var(--wht);
  text-decoration: none;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.site-footer-link strong {
  font-size: 0.82rem;
  font-weight: 500;
}
.site-footer-link span {
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.44);
}
.site-footer-link:hover {
  transform: translateX(4px);
  border-color: rgba(232, 0, 29, 0.45);
  background: rgba(232, 0, 29, 0.05);
}
.site-footer-spotlight {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.6rem;
  background: linear-gradient(180deg, rgba(232, 0, 29, 0.14), rgba(255, 255, 255, 0.03));
  color: var(--wht);
}
.site-footer-spotlight strong {
  max-width: 9ch;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: 0.05em;
}
.site-footer-spotlight span {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
}
.site-footer-spotlight-cta {
  margin-top: 0.7rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 1.35rem;
  background: #f4001e;
  border: 1px solid #f4001e;
  color: #fff;
  text-decoration: none;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%, 0 14px);
  box-shadow: 0 14px 30px rgba(244, 0, 30, 0.22);
  transition: transform 0.2s, border-color 0.2s, background 0.2s, color 0.2s;
}
.site-footer-spotlight-cta:hover {
  transform: translateX(3px);
  background: #ff1530;
  border-color: #ff1530;
}
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer-meta {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.site-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.2rem;
}
.site-footer-bottom-links a,
.site-footer-bottom-links span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.46);
  text-decoration: none;
}
.site-footer-bottom-links a:hover {
  color: var(--red);
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.fi {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s,
    transform 0.55s;
  pointer-events: none;
}
.fi.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.btn-r.fi.visible {
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
