:root {
  --charcoal: #1a1a1a;
  --charcoal-header: #121212;
  --paper: #f7f7f5;
  --white: #ffffff;
  --text: #e8e8e8;
  --text-muted: #c9c9c9;
  --body: #1f1f1f;
  --body-muted: #4a4a4a;
  --accent: #c41e1e;
  --link: #ffb4b4;
  --border: #2a2a2a;
}

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

body {
  margin: 0;
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
}

a {
  color: #8b1a1a;
}

a:hover {
  text-decoration-thickness: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  color: #1f1f1f;
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 1rem 0 0.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand__logo {
  display: block;
  height: clamp(44px, 5vw, 56px);
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.brand__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.brand__tagline {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5c5c5c;
  line-height: 1.2;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav a {
  color: #1f1f1f;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  border-bottom-color: var(--accent);
  color: #0f172a;
}

.hero {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  color: var(--text);
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
}

.hero__inner {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0;
  max-width: 78ch;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--text-muted);
}

.section {
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.section--alt {
  background: var(--white);
  border-top: 1px solid #e2e2de;
  border-bottom: 1px solid #e2e2de;
}

.section__inner {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section-title {
  margin: 0 0 1.25rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.accent-rule {
  display: block;
  width: min(420px, 70%);
  height: 10px;
  margin: 0 0 1.25rem;
  object-fit: fill;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.card {
  background: #fafaf8;
  border: 1px solid #e0e0da;
  border-radius: 4px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.card__thumb {
  height: 140px;
  border-radius: 3px;
  background: linear-gradient(135deg, #2a2a2a 0%, #4a1515 45%, #1a1a1a 100%);
  border: 1px solid #333;
  margin-bottom: 0.9rem;
  position: relative;
  overflow: hidden;
}

.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.04) 6px,
    transparent 6px,
    transparent 12px
  );
}

.card h3 {
  margin: 0 0 0.55rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--charcoal);
}

.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card h3 a:hover {
  text-decoration: underline;
}

.card > p {
  margin: 0 0 0.85rem;
  flex: 1;
  color: var(--body-muted);
  font-size: 0.98rem;
}

.card__thumb-link {
  display: block;
  text-decoration: none;
}

.card ul {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}

.mini-article {
  margin: 0.45rem 0;
}

.mini-article a {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  text-decoration: none;
  color: var(--body);
}

.mini-thumb {
  height: 58px;
  border-radius: 3px;
  background: linear-gradient(135deg, #222 0%, #5c1a1a 50%, #111 100%);
  border: 1px solid #333;
}

.mini-thumb-image {
  width: 88px;
  height: 58px;
  border-radius: 3px;
  border: 1px solid #333;
  object-fit: cover;
  display: block;
}

.mini-article span {
  display: block;
  min-width: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  color: #8b1a1a;
  line-height: 1.25;
}

.mini-article a:hover span {
  text-decoration: underline;
}

.card > p:last-of-type {
  margin-top: auto;
  margin-bottom: 0;
}

.card > p:first-of-type {
  min-height: calc(1.65em * 5);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.article-list {
  display: grid;
  gap: 1rem;
}

.article-list-item {
  border: 1px solid #e0e0da;
  background: #fafaf8;
  padding: 1rem;
  border-radius: 4px;
}

.article-list-item h3 {
  margin: 0 0 0.45rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.article-list-item p {
  margin: 0;
  color: var(--body-muted);
  font-size: 0.95rem;
}

.article-list-photo {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #cfcfc8;
  margin: 0 0 0.7rem;
  display: block;
}

.single-col {
  width: min(760px, 92%);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.single-col h1 {
  margin-top: 0;
  color: var(--charcoal);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.single-col h2 {
  margin-top: 1.85rem;
  color: var(--charcoal);
  font-size: 1.2rem;
}

.single-col p {
  margin: 0.85rem 0 0;
}

.article-hero-photo {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #d7d7cf;
  margin: 0 0 1.1rem;
  display: block;
}

footer {
  border-top: 1px solid #ddd;
  padding: 1.5rem 0 2.5rem;
  color: var(--body-muted);
  font-size: 0.9rem;
  background: var(--white);
}

footer .section__inner p {
  margin: 0.35rem 0;
}

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

  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .brand__logo {
    max-width: 100%;
  }

  .card > p:first-of-type {
    min-height: 0;
    display: block;
    -webkit-line-clamp: unset;
  }

  .mini-article a {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .mini-thumb-image {
    width: 72px;
    height: 52px;
  }

  .mini-thumb {
    height: 52px;
  }
}
