:root {
  --ink: #102c3a;
  --muted: #5d6d73;
  --paper: #f6f2ea;
  --panel: #fffaf1;
  --line: #e4d8c8;
  --brand: #0c4a5f;
  --accent: #e66f25;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

.special-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #fffaf1;
}

.special-header img {
  width: min(290px, 58vw);
  display: block;
}

.special-header nav,
.special-actions,
.classified-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.special-header a,
.special-actions a,
.classified-cats a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  font-weight: 850;
}

.special-hero {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
  padding: clamp(24px, 5vw, 52px);
  border-radius: 6px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 47, 61, 0.9), rgba(12, 47, 61, 0.52)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.special-hero div {
  max-width: 760px;
}

.special-hero span,
.special-section span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.special-hero h1 {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.special-hero p,
.special-card p,
.special-section p {
  line-height: 1.65;
}

.special-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 42px;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.special-card,
.special-section {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  padding: 20px;
}

.special-card h2,
.special-section h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.special-actions {
  margin-top: 18px;
}

.special-actions a:first-child {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.classified-cats {
  margin-top: 16px;
}

@media (max-width: 820px) {
  .special-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .special-hero {
    min-height: 520px;
  }
}
