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

:root {
  --color-bg: #f5f5f0;
  --color-text: #111111;
  --color-muted: #666666;
  --color-red: #b91c1c;
  --color-red-dark: #991b1b;
  --color-border: #dddddd;
  --container-width: 1180px;
  --font-heading: "Bebas Neue", sans-serif;
  --font-body: "Barlow", sans-serif;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}

img {
  width: 100%;
  display: block;
}
a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

html,
body {
  overflow-x: hidden;
}

/* HEADER */

.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 0.5px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  height: 54px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-size: 22px;
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--font-body);
  color: #555;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #111;
}

.main-nav a.active {
  color: var(--color-red);
  border-bottom: 1.5px solid var(--color-red);
  padding-bottom: 2px;
}

.join-btn {
  height: 36px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.join-btn:hover {
  background: var(--color-red-dark);
  color: #fff;
}

/* HERO */

.hero {
  padding: 80px 0;
  border-bottom: 0.5px solid var(--color-border);
}

.hero-container {
  text-align: center;
}

.hero-label {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  padding: 4px 14px;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 1;
  font-weight: 400;
}

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

.hero-text {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn {
  height: 46px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-red-dark);
}
.btn-secondary {
  border: 1.5px solid #111;
  color: #111;
  background: transparent;
}
.btn-secondary:hover {
  background: #111;
  color: #fff;
}

/* ARTICLE SECTIONS */

.article-section {
  padding-bottom: 80px;
}

.section-heading {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid var(--color-border);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.section-heading span {
  margin-right: 8px;
  color: #e8e8e3;
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: 1;
}

.section-heading h2 {
  margin-right: auto;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.section-heading a {
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.article-card {
  position: relative;
  min-height: 300px;
  padding: 1.25rem;
  background: #fff;
  border: 0.5px solid var(--color-border);
}

.card-number {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #ececec;
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
}

.card-category {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.article-card h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 400;
  text-transform: uppercase;
}

.article-card p {
  margin-bottom: 1.25rem;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid #eee;
  padding-top: 0.75rem;
}

.card-footer span,
.card-footer a {
  font-family: var(--font-body);
  color: #999;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-footer a {
  color: var(--color-red);
}

.section-link-bottom {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.section-link-bottom a {
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* NEWSLETTER */

.newsletter {
  margin-bottom: 80px;
  padding: 80px 0;
  background: #111;
}

.newsletter-inner {
  text-align: center;
  color: #fff;
}

.newsletter h2 {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
}

.newsletter-content p {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: #aaa;
  font-size: 14px;
  line-height: 1.8;
}

.newsletter form {
  max-width: 500px;
  margin: 0 auto 12px;
  display: flex;
  height: 50px;
  gap: 0;
}

.newsletter input {
  flex: 1;
  height: 50px;
  padding: 0 18px;
  border: none;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  border-radius: 0;
  box-sizing: border-box;
}

.newsletter button {
  height: 50px;
  width: 140px;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  box-sizing: border-box;
}

.newsletter button:hover {
  background: var(--color-red-dark);
}
.newsletter-content span {
  color: #555;
  font-size: 11px;
}

/* RESOURCES */

.resources-section {
  padding-bottom: 80px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.resource-card {
  background: #fff;
  border: 0.5px solid var(--color-border);
  overflow: hidden;
}

.resource-image {
  height: 160px;
  background: #e5e5e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.resource-body {
  padding: 1rem;
}

.resource-meta {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.resource-meta span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
}

.resource-card h3 {
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.resource-card p {
  margin-bottom: 0.75rem;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
}

.resource-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 16px;
  padding-top: 0.75rem;
  border-top: 0.5px solid #eee;
}

.resource-footer strong {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
}

.resource-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.resource-action a {
  height: 36px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.resource-action a:hover {
  background: var(--color-red-dark);
}

.resource-action span {
  color: #aaa;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* CATEGORY PAGE */

.category-hero {
  padding: 4rem 0 3rem;
  border-bottom: 2px solid var(--color-red);
  background: var(--color-bg);
}

.breadcrumb {
  margin-bottom: 1.5rem;
  color: #999;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

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

.category-intro {
  background: var(--color-bg);
  padding: 3rem 0;
  border-bottom: 0.5px solid var(--color-border);
}

.category-intro-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.category-intro h2 {
  max-width: 620px;
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
}

.category-intro h2 span {
  color: var(--color-red);
}

.category-intro p {
  max-width: 380px;
  margin-left: auto;
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}

.category-stats {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--color-border);
  display: grid;
  grid-template-columns: 120px 160px 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.stat-item {
  padding-right: 1.5rem;
  border-right: 0.5px solid var(--color-border);
}

.stat-item span {
  display: block;
  margin-bottom: 6px;
  color: #999;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-item strong {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-hero-text p {
  max-width: 360px;
  color: #999;
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.category-main {
  padding: 0 0 80px;
}

.category-main-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.featured-category-article {
  border-bottom: 0.5px solid var(--color-border);
}
.featured-full {
  padding: 3rem;
}

.featured-content {
  padding: 3rem;
  border-right: 0.5px solid var(--color-border);
}

.featured-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.featured-tags span {
  border: 0.5px solid var(--color-border);
  padding: 5px 10px;
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-content h2 {
  max-width: 480px;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
}

.featured-content p {
  max-width: 460px;
  margin-bottom: 2rem;
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}

.featured-footer {
  padding-top: 1rem;
  border-top: 0.5px solid var(--color-border);
  display: flex;
  justify-content: space-between;
}

.featured-footer span,
.featured-footer a {
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card-grid {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--color-border);
}

.category-card {
  position: relative;
  min-height: 280px;
  padding: 1.25rem;
  border-right: 0.5px solid var(--color-border);
  border-bottom: 0.5px solid var(--color-border);
  background: #fff;
}

.category-card h3 {
  max-width: 260px;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 400;
  text-transform: uppercase;
}

.category-card p {
  margin-bottom: 1.25rem;
  color: #999;
  font-size: 13px;
  line-height: 1.7;
}

.next-section-card {
  min-height: 280px;
  padding: 1.25rem;
  background: #111;
  color: #fff;
}

.next-section-card span,
.next-section-card small {
  display: block;
  color: #555;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-section-card h3 {
  margin: 1rem 0 2rem;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}

.next-section-card p {
  margin-bottom: 2rem;
  color: #777;
  font-size: 13px;
  line-height: 1.8;
}

.next-section-card div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.next-section-card a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-sidebar {
  border-left: 0.5px solid var(--color-border);
}

.sidebar-box {
  padding: 1.5rem;
  border: 0.5px solid var(--color-border);
  border-left: none;
}

.sidebar-box h3 {
  margin-bottom: 1rem;
  color: #999;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sidebar-box ol {
  list-style: decimal-leading-zero inside;
}

.sidebar-box li {
  padding: 8px 0;
  border-bottom: 0.5px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sidebar-box a {
  display: block;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sidebar-newsletter {
  padding: 1.5rem;
  background: #111;
  color: #fff;
}

.sidebar-newsletter h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
}

.sidebar-newsletter p {
  margin-bottom: 1rem;
  color: #999;
  font-size: 13px;
  line-height: 1.7;
}

.sidebar-newsletter input {
  width: 100%;
  height: 42px;
  margin-bottom: 8px;
  border: none;
  padding: 0 12px;
  font-family: var(--font-body);
  outline: none;
}

.sidebar-newsletter button {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 0;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

/* SINGLE ARTICLE PAGE */

.article-hero {
  padding: 4rem 0 2.5rem;
  border-bottom: 0.5px solid var(--color-border);
}

.article-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.article-meta span {
  border: 0.5px solid var(--color-border);
  padding: 5px 10px;
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-title {
  max-width: 920px;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.article-excerpt {
  max-width: 680px;
  color: #777;
  font-size: 17px;
  line-height: 1.7;
}

.article-body-section {
  padding: 2.5rem 0 80px;
}

.article-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 760px);
  gap: 3rem;
}

.article-side {
  position: sticky;
  top: 80px;
  height: fit-content;
  border-top: 2px solid var(--color-red);
  padding-top: 1rem;
}

.article-side span,
.article-side strong {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-side span {
  color: #999;
  margin-bottom: 6px;
}
.article-content {
  max-width: 760px;
}

.article-content .lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.article-content h2 {
  margin: 3rem 0 1rem;
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
}

.article-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.article-content blockquote {
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-red);
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
}

/* RESOURCES PAGE */

.resources-page {
  background: var(--color-bg);
}

.resources-hero {
  padding: 4rem 0 3rem;
  border-bottom: 0.5px solid var(--color-border);
}

.resources-breadcrumb {
  margin-bottom: 1.25rem;
  color: #999;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resources-title {
  max-width: 760px;
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

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

.resources-intro {
  max-width: 560px;
  margin-top: 1.25rem;
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}

.resources-note {
  max-width: 680px;
  margin-top: 0.75rem;
  color: #aaa;
  font-size: 12px;
  line-height: 1.7;
}

.resources-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 0.5px solid var(--color-border);
  background: #fff;
}

.resources-tabs a {
  padding: 14px 16px;
  color: #999;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border-right: 0.5px solid var(--color-border);
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}

.resources-tabs a:first-child {
  color: var(--color-red);
  border-bottom: 2px solid var(--color-red);
}

.resource-category {
  padding: 2.5rem 0 2rem;
}

.resource-category-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid #111;
}

.resource-category-heading h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
}

.resource-category-heading span {
  padding-bottom: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}

/* ABOUT PAGE */

.about-page {
  background: var(--color-bg);
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-hero-left {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-left span {
  color: #111;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-hero-left strong {
  margin-top: 6px;
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-hero-left p {
  max-width: 480px;
  margin-top: 1.5rem;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.about-hero-right {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-right span {
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-size: 180px;
}

.about-origin {
  padding: 5rem 0;
  border-top: 0.5px solid var(--color-border);
  border-bottom: 0.5px solid var(--color-border);
}

.about-origin-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 3rem;
}

.about-small-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-origin blockquote {
  margin: 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-red);
  border-radius: 0;
  color: var(--color-red);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
}

.about-origin-text p {
  margin-bottom: 1.25rem;
  color: #555;
  font-size: 15px;
  line-height: 1.9;
}

.about-not {
  padding: 5rem 0;
}
.center {
  display: block;
  margin-bottom: 2.5rem;
  text-align: center;
}

.about-not-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--color-border);
}

.about-not-grid article {
  padding: 2rem;
  border-right: 0.5px solid var(--color-border);
  border-top: 2px solid #111;
}

.about-not-grid article:last-child {
  border-right: none;
}

.about-not-grid h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.about-not-grid p {
  color: #777;
  font-size: 13px;
  line-height: 1.8;
}

.about-sections {
  padding: 5rem 0;
}

.about-accent-label {
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-sections h2 {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.about-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-section-grid article {
  position: relative;
  min-height: 260px;
  padding: 2rem;
  border: 0.5px solid var(--color-border);
  background: #fff;
}

.about-section-grid article span {
  position: absolute;
  top: 12px;
  right: 16px;
  color: #ececec;
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
}

.about-section-grid h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
}

.about-section-grid p {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  color: #666;
  font-size: 13px;
  line-height: 1.8;
}

.about-section-grid a {
  position: relative;
  z-index: 2;
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-reader {
  padding: 5rem 0;
  border-top: 2px solid var(--color-red);
}

.about-reader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.about-reader p {
  max-width: 440px;
  margin-top: 1.25rem;
  color: #555;
  font-size: 15px;
  line-height: 1.9;
}

.about-line {
  width: 60px;
  height: 4px;
  margin-top: 2rem;
  background: #111;
}

.about-reader ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.about-reader li {
  padding: 1.25rem;
  border: 0.5px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background: #fff;
}

/* FOOTER */

.site-footer {
  background: #111;
  color: #fff;
  padding: 3.5rem 0 1.5rem;
}

.footer-top,
.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.5px solid #222;
}

.footer-brand h2 {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 220px;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column span {
  margin-bottom: 1rem;
  color: #444;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  margin-bottom: 0.6rem;
  color: #888;
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--color-red);
}

.footer-social .social-icons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-social .social-icons a {
  color: #888;
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social .social-icons a:hover {
  color: var(--color-red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.25rem;
}

.footer-bottom p,
.footer-bottom span {
  color: #444;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .hero-title {
    font-size: 64px;
  }
  .article-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .category-title {
    font-size: 64px;
  }
  .category-stats,
  .category-intro-inner,
  .category-main-grid,
  .featured-category-article {
    grid-template-columns: 1fr;
  }
  .category-sidebar {
    border-left: none;
  }
  .category-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-hero,
  .about-origin-grid,
  .about-not-grid,
  .about-section-grid,
  .about-reader-grid {
    grid-template-columns: 1fr;
  }
  .about-sections h2 {
    font-size: 56px;
  }
  .about-hero-right {
    min-height: 240px;
  }
  .resources-title {
    font-size: 64px;
  }
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .resources-tabs {
    grid-template-columns: 1fr;
  }
  .footer-top,
  .footer-links {
    flex-direction: column;
  }
  .footer-links {
    gap: 2rem;
  }
}

/* FINAL NAV OVERRIDE */

.menu-toggle {
  display: none !important;
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    width: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-inner {
    position: relative !important;
    height: auto !important;
    padding: 16px 20px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }

  .site-logo {
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .menu-toggle {
    display: flex !important;
    background: transparent !important;
    border: none !important;
    color: #111 !important;
    font-size: 28px !important;
    cursor: pointer !important;
    z-index: 1001 !important;
  }

  .main-nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: #f5f5f0 !important;
    border-top: 0.5px solid #ddd !important;
    padding: 1.5rem 20px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
    z-index: 1000 !important;
  }

  .main-nav.is-open {
    display: flex !important;
  }

  .desktop-join-btn {
    display: none !important;
  }
  .mobile-join-btn {
    display: flex !important;
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 3.5rem 0;
  }
  .hero-title {
    font-size: 52px;
    line-height: 1;
  }
  .hero-text {
    font-size: 14px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 1.5rem;
  }
  .section-heading span {
    font-size: 52px;
    line-height: 1;
  }
  .section-heading h2 {
    font-size: 26px;
  }

  .article-grid,
  .resource-grid,
  .category-card-grid,
  .about-not-grid,
  .about-section-grid,
  .about-reader-grid,
  .about-origin-grid,
  .category-main-grid,
  .category-intro-inner,
  .article-layout,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: auto;
    padding: 1rem;
    overflow: hidden;
  }
  .article-card h3 {
    font-size: 20px;
    line-height: 1.1;
    word-break: break-word;
  }
  .article-card p {
    font-size: 13px;
  }
  .card-number {
    font-size: 44px;
    top: 12px;
    right: 12px;
  }
  .card-footer {
    gap: 12px;
    flex-wrap: wrap;
  }

  .category-title {
    font-size: 48px;
    line-height: 1;
  }
  .featured-content,
  .featured-full {
    padding: 1.5rem;
  }
  .featured-content h2 {
    font-size: 28px;
  }
  .category-card h3 {
    font-size: 20px;
  }

  .article-title {
    font-size: 48px;
    line-height: 1;
  }
  .article-content h2 {
    font-size: 28px;
  }
  .article-content p,
  .article-content .lead {
    font-size: 15px;
  }

  .resources-title {
    font-size: 48px;
    line-height: 1;
  }
  .resources-tabs {
    grid-template-columns: 1fr;
  }
  .resource-card h3 {
    font-size: 20px;
  }
  .resource-category-heading h2 {
    font-size: 24px;
  }

  /* NEWSLETTER MOBILE FIX */
  .newsletter {
    padding: 3.5rem 1.5rem;
    margin-bottom: 3rem;
  }
  .newsletter h2 {
    font-size: 36px;
    line-height: 1;
    max-width: 300px;
    margin: 0 auto 1rem;
  }
  .newsletter-content p {
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto 1.5rem;
  }
  .newsletter form {
    max-width: 100%;
    margin: 0 auto;
    flex-direction: column;
    height: auto;
    gap: 0;
  }
  .newsletter input {
    height: 56px;
    min-height: 56px;
    width: 100%;
    border: none;
    box-sizing: border-box;
    display: block;
  }
  .newsletter button {
    height: 56px;
    min-height: 56px;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    display: block;
  }
  .newsletter-content span {
    display: block;
    margin-top: 0.75rem;
  }

  .about-sections h2 {
    font-size: 48px;
  }
  .about-hero-left {
    padding: 3rem 1.5rem;
  }
  .about-hero-right {
    min-height: 180px;
  }

  .footer-top {
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* FINAL JOIN BUTTON FIX */
.desktop-join-btn {
  display: inline-flex !important;
}
.mobile-join-btn {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-join-btn {
    display: none !important;
  }
  .mobile-join-btn {
    display: flex !important;
    width: 100%;
    justify-content: center;
  }
}
