:root {
  --primary: #1f4d2c;
  --secondary: #6d8f77;
  --accent: #e8b02a;
  --surface: #f5f8f5;
  --ink: #12291a;
  --white: #ffffff;
  --border-color: #12291a;
  --display-font: 'Anek Latin', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --body-font: 'Radio Canada', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  font-size: 16px;
  background-color: var(--surface);
  color: var(--ink);
}

body.fuel-site-body {
  font-family: var(--body-font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--surface);
  letter-spacing: -0.015em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Base typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
}

a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
}

/* CHROME: stacked-centered */
.fuel-brand-header {
  width: 100%;
  background-color: var(--surface);
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 0;
  border-bottom: 3px solid var(--border-color);
}

.fuel-brand-banner {
  padding: 1.5rem 1rem 1rem 1rem;
}

.fuel-brand-link {
  text-decoration: none;
  color: var(--ink);
}

.fuel-brand-name {
  font-family: var(--display-font);
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  display: inline-block;
  color: var(--ink);
  line-height: 1;
}

.fuel-navigation-row {
  width: 100%;
  border-top: 1px solid var(--border-color);
  background-color: var(--surface);
  padding: 0;
}

.fuel-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.fuel-nav-item {
  border-right: 1px solid var(--secondary);
}

.fuel-nav-item:last-child {
  border-right: none;
}

.fuel-nav-link {
  display: block;
  padding: 0.85rem 1.75rem;
  font-family: var(--display-font);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
}

.fuel-nav-link:hover,
.fuel-nav-link.active {
  background-color: var(--primary);
  color: var(--white);
}

/* MAIN CONTAINER */
.fuel-main-layout {
  flex: 1 0 auto;
  width: 100%;
}

/* HOMEPAGE OPENING: 50/50 split-screen */
.fuel-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  width: 100%;
  border-bottom: 2px solid var(--border-color);
}

@media (min-width: 768px) {
  .fuel-hero-split {
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
  }
}

.fuel-hero-left {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.fuel-hero-title {
  color: var(--white);
  font-size: 2.75rem;
  line-height: 1.15;
  font-weight: 800;
  max-width: 500px;
}

@media (min-width: 992px) {
  .fuel-hero-title {
    font-size: 3.5rem;
  }
}

.fuel-hero-right {
  background-color: var(--surface);
  color: var(--ink);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 2px solid var(--border-color);
}

@media (min-width: 768px) {
  .fuel-hero-right {
    border-top: none;
    border-left: 2px solid var(--border-color);
  }
}

.fuel-hero-lead {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

/* SECTION PITCHES */
.fuel-pillars-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.fuel-section-header {
  margin-bottom: 2rem;
}

.fuel-section-title {
  font-size: 2.1rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.fuel-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .fuel-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fuel-pillar-box {
  background-color: var(--white);
  border: 2px solid var(--border-color);
  padding: 1.75rem;
}

.fuel-pillar-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.fuel-pillar-desc {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}

/* ARTICLE PRESENTATION: numbered */
.fuel-articles-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.fuel-numbered-feed {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.fuel-feed-item {
  display: flex;
  gap: 1.75rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.fuel-feed-number {
  font-family: var(--display-font);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  flex-shrink: 0;
  width: 3.5rem;
  text-align: right;
  letter-spacing: -0.04em;
  padding-top: 0.2rem;
}

.fuel-feed-content {
  flex: 1;
}

.fuel-feed-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.fuel-feed-title a {
  color: var(--ink);
  text-decoration: none;
}

.fuel-feed-title a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.fuel-feed-summary {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2b4533;
  margin: 0;
}

/* SINGLE ARTICLE & PAGE LAYOUT */
.fuel-single-container,
.fuel-list-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.fuel-article-main-title,
.fuel-list-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .fuel-article-main-title,
  .fuel-list-title {
    font-size: 3.1rem;
  }
}

.fuel-article-pubdate {
  font-family: var(--display-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.fuel-article-standfirst,
.fuel-list-lead {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary);
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 2rem;
}

.fuel-single-footer-nav {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
}

.fuel-back-link {
  font-family: var(--display-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* EXPLICIT PROSE CONTAINER LIST RULES (article & homepage intro) */
.fuel-prose-container {
  font-size: 1.05rem;
  line-height: 1.65;
}

.fuel-prose-container p {
  margin-bottom: 1.4rem;
}

.fuel-prose-container h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.25rem;
  display: inline-block;
}

.fuel-prose-container h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.fuel-prose-container ul,
.fuel-prose-container ol {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding-left: 2.25rem;
}

.fuel-prose-container li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.fuel-prose-container li > ul,
.fuel-prose-container li > ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.fuel-prose-container blockquote {
  border-left: 4px solid var(--primary);
  background-color: var(--white);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--ink);
}

.fuel-prose-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.fuel-prose-container th,
.fuel-prose-container td {
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  text-align: left;
}

.fuel-prose-container th {
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--display-font);
  font-weight: 700;
}

/* FOOTER */
.fuel-site-footer {
  width: 100%;
  background-color: var(--ink);
  color: var(--surface);
  border-top: 4px solid var(--accent);
  padding: 3rem 1.5rem;
  margin-top: 4rem;
}

.fuel-footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .fuel-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.fuel-footer-title {
  font-family: var(--display-font);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.fuel-footer-tagline {
  font-size: 0.95rem;
  color: var(--secondary);
}

.fuel-footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.fuel-legal-link {
  color: var(--surface);
  text-decoration: none;
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 0.95rem;
}

.fuel-legal-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.fuel-legal-sep {
  color: var(--secondary);
}

/* RESPONSIVE SAFETY ON 375PX */
@media (max-width: 480px) {
  .fuel-brand-name {
    font-size: 2.25rem;
  }
  .fuel-nav-link {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
  }
  .fuel-hero-left {
    padding: 2rem 1.25rem;
  }
  .fuel-hero-title {
    font-size: 2.1rem;
  }
  .fuel-hero-right {
    padding: 2rem 1.25rem;
  }
  .fuel-feed-item {
    gap: 1rem;
  }
  .fuel-feed-number {
    font-size: 2.25rem;
    width: 2.5rem;
  }
  .fuel-feed-title {
    font-size: 1.25rem;
  }
}
