:root {
  --anthracite: #1A1A1A;
  --teal: #5F9EA0;
  --sage: #8A9A5B;
  --terracotta: #CC7357;
  --off-white: #F5F5F5;
}

/* Base Styles */
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--off-white);
  background: var(--anthracite);
  margin: 0;
  padding: 0;
}

.lct-logo {
    max-width: 100%; /* Ensures logo never overflows on mobile */
    padding-top: 25px; /* Optional extra spacing */
    padding-bottom: 0px; /* Optional extra spacing */
}

.nexus-logo {
    max-width: 100%; /* Ensures logo never overflows on mobile */
    padding-top: 25px; /* Optional extra spacing */
    padding-bottom: 3px; /* Optional extra spacing */
}

/* Typography */
h1, h2, h3 {
  font-family: 'EB Garamond', serif;
  font-weight: normal;
}

h1 {
  font-size: 2.5rem;
  color: var(--teal);
}

h2 {
  font-size: 2rem;
  color: var(--sage);
  position: relative;
  margin: 1rem 0 0.5rem;
}

h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin: 0.5rem 0;
}

/* Sections */
section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  padding: 1.5rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.subhead {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 1rem auto;
}

.tagline {
  font-style: italic;
  color: var(--sage);
  margin-top: 1rem;
}

/* Statistics Highlight */
.stat-highlight {
  background: rgba(0,0,0,0.3);
  padding: 1.5rem;
  border-left: 3px solid var(--terracotta);
  margin: 1rem 0;
  font-style: italic;
}

/* Pathways Grid */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pathway-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pathway-card:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-5px);
}

.pathway-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pathway-cta {
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s;
}

.pathway-cta:hover {
  background: var(--teal);
  color: var(--anthracite);
}

/* Manifesto Section */
.manifesto-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)));
  gap: 1.4rem;
  margin: 2rem 0;
}

.point {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}

.closing-quote {
  font-size: 1rem;
  color: var(--terracotta);
  text-align: center;
  max-width: 600px;
  margin: 2rem auto;
  font-style: italic;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 2.5rem 0.5rem;
  background: rgba(0,0,0,0.3);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-button {
  padding: 0.5rem 1rem;
  border: 1px solid var(--sage);
  color: var(--off-white);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.cta-button:hover {
  background: var(--sage);
  color: var(--anthracite);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  opacity: 0.8;
}

.lct-logo-bottom {
    max-width: 100%; /* Ensures logo never overflows on mobile */
    padding-top: 3px; /* Optional extra spacing */
    padding-bottom: 3px; /* Optional extra spacing */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .pathways-grid, .manifesto-points {
    grid-template-columns: 1fr;
}

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
