:root {
  --bg-ink: #0b0b0b;
  --panel-gray: #141414;
  --muted: #9a9a9a;
  --accent: #7a1414;
  --max-width: 1200px;
  --wrap-padding: 24px;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

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

}

body {
  background: var(--bg-ink);
  color: #e6e6e6;
  line-height: 1.45;
}

strong {
  color: #e6e6e6;
  }
  
small {
  padding: 10px;
  }
  
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--wrap-padding);
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.12));
  backdrop-filter: blur(4px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: #cfcfcf;
  margin-left: 1px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
  font-weight: 600;
}

.main-nav a.cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
}

/* HERO */
.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 88px;
  padding-bottom: 48px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-position: top center;
  background-size: cover;
  filter: grayscale(100%) contrast(0.9) brightness(0.45);
  z-index: 0;
}

.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 70%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 0;
}

.hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: 2px;
}

.hero__title span {
  color: #bfbfbf;
}

.hero__subtitle {
  max-width: 760px;
  color: var(--muted);
  margin-top: 18px;
  font-size: 18px;
}

/* SECTION */
.section {
  padding: 72px 0;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #d6d6d6;
  margin-bottom: 24px;
}

/* GRID CONTAINER */
.wrap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* CARD */
.wrap-card, .news-card {
  background: #0f0f0f;
  padding: 14px;
  border-radius: 6px;
}

.wrap-card .thumb, .news-card .thumb {
  height: 180px;
  background-size: cover;
  background-position: top;
  border-radius: 4px;
  margin-bottom: 12px;
  filter: grayscale(100%) brightness(0.6);
}

.wrap-card h3, .news-card h4 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #e6e6e6;
}

.wrap-card p, .news-card p {
  margin-bottom: 12px;
  color: var(--muted);
}

.wrap-card .readmore, .news-card .readmore {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

/* RESPONSIVE */
/*
@media (max-width: 1000px) {
  .wrap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wrap-grid {
    grid-template-columns: 1fr;
  }
}
*/
/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 28px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 16px;
}

.muted {
  color: var(--muted);
}

.wrap-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin-top: 32px;
}

.wrap-form input {
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #111;
  color: #eee;
}

.wrap-form button {
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

