:root {
  --bg: #1f1f1f;
  --panel: #252525;
  --panel-dark: #181818;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f3f3;
  --muted: #c6c6c6;
  --red: #ff1a1a;
  --blue: #174792;
  --blue-dark: #102f61;
  --shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

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

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

button {
  font: inherit;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  min-height: 56px;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-brand {
  position: absolute;
  left: 24px;
  width: 36px;
  height: 36px;
}

.site-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a,
.section-tag,
.hero-title,
.action-button,
.card-title,
.closed-badge {
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.site-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: #f3f3f3;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--red);
}

.site-nav a[aria-current="page"] {
  color: var(--red);
}

/* ── Hero ── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78vh;
  padding: 60px 20px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82) 42%, rgba(0,0,0,0.25) 100%),
    url('/939173638_17130984604_1743714359746_1.png') center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
  margin-left: max(calc(50vw - 580px), 20px);
}

.section-tag {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: var(--text);
}

.hero-title span {
  color: var(--red);
}

.hero-copy {
  margin: 0 0 32px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.action-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  padding: 13px 22px;
  border: 0;
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
}

.action-button:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.action-button-primary {
  background: linear-gradient(180deg, var(--red), #c01111);
  color: #fff;
}

.action-button-secondary {
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  color: #fff;
}

/* ── Content sections ── */
.content-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 8px 0 0;
  color: var(--text);
}

.section-header p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.info-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px;
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1;
}

.card-title {
  font-size: 1.05rem;
  margin: 0 0 10px;
  color: var(--text);
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── Divider ── */
.section-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ── Stats band ── */
.stats-band {
  background: var(--panel-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  width: min(900px, 100%);
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-value {
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--red);
  display: block;
}

.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
}

/* ── CTA strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0b1f42 100%);
  border-top: 1px solid rgba(23, 71, 146, 0.4);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 8px;
}

.cta-text p {
  margin: 0;
  color: rgba(243, 243, 243, 0.75);
  line-height: 1.7;
}

/* ── Closed badge in CTA ── */
.closed-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  cursor: default;
  white-space: nowrap;
}

.closed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #888;
  flex-shrink: 0;
}

/* ── Gallery preview ── */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-strip {
  position: relative;
  background: #000;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 10px;
}

.gallery-slide {
  display: none;
}

.gallery-slide.is-active {
  display: block;
}

.gallery-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
}

.gallery-thumb {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.15);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.gallery-thumb.is-active {
  background: var(--red);
}

.gallery-thumb:hover {
  background: rgba(255,255,255,0.35);
}

.gallery-thumb.is-active:hover {
  background: var(--red);
}

/* ── Footer ── */
.site-footer {
  padding: 22px 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(243, 243, 243, 0.3);
  border-top: 1px solid var(--line);
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .site-header {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 72px;
  }

  .site-nav {
    display: grid;
    gap: 10px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-bg {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 100%),
      url('/939173638_17130984604_1743714359746_1.png') center / cover no-repeat;
  }

  .stats-inner {
    flex-direction: column;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-brand {
    left: 18px;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-actions {
    flex-direction: column;
  }
}
