/* twenty5zero5 Layout System */

/* ========================================
   DESIGN SYSTEM
   ======================================== */
:root {
  --accent: #B20202;
  --canvas: #FBFAF7;
  --nav-bg: #EFE8DD;
  --warm-neutral: #D2C2B0;
  --light-taupe: #F3EDE6;
  --body-text: #1E1E1E;
  --secondary-text: #6B6560;
  --footer: #1A1816;
  --construction: #D5CEC5;
  --white: #FFFFFF;

  --font: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --text-block-width: 680px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--body-text);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

/* ========================================
   K - NAVIGATION
   ======================================== */
.block-nav {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--warm-neutral);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex: 0 0 auto;
}

.nav-logo img {
  height: 96px;
  width: auto;
  display: block;
  transform: translateY(8px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary-text);
  transition: color 0.2s ease;
  position: relative;
  text-decoration: none;
  line-height: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--body-text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ========================================
   A - HERO
   ======================================== */
.block-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 60px 120px;
  position: relative;
}

.hero-container {
  max-width: var(--text-block-width);
}

.block-hero h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--body-text);
}

.hero-subhead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--secondary-text);
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: #8B0101;
  border-color: #8B0101;
}

.btn-secondary {
  background: transparent;
  color: var(--body-text);
  border: 1px solid var(--warm-neutral);
}

.btn-secondary:hover {
  border-color: var(--body-text);
}

/* ========================================
   B - CARD
   ======================================== */
.block-card {
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border: 1px solid var(--warm-neutral);
  padding: 48px;
  position: relative;
}

.block-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.block-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--secondary-text);
  margin-bottom: 24px;
}

.card-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body-text);
  transition: color 0.2s;
}

.card-link:hover {
  color: var(--accent);
}

/* Card grid container (for homepage 2-card layout) */
.cards-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 32px;
}

/* ========================================
   D - SPLIT
   ======================================== */
.block-split {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 60px;
  position: relative;
}

.split-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.split-left h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  position: sticky;
  top: 120px;
}

.split-right p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--secondary-text);
  margin-bottom: 20px;
}

.split-right p strong {
  font-weight: 600;
  color: var(--body-text);
}

/* ========================================
   C - STAT
   ======================================== */
.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.block-stat {
  position: relative;
  background: var(--white);
  border: 1px solid var(--warm-neutral);
  padding: 32px;
}

.block-stat h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--body-text);
}

.block-stat p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--secondary-text);
}

/* ========================================
   E - LIST
   ======================================== */
.block-list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 60px;
}

.list-container h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 48px;
}

.list-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
  margin-bottom: 36px;
}

.list-column h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.list-column ul {
  list-style: none;
}

.list-column li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--secondary-text);
  padding-left: 20px;
  position: relative;
}

.list-column li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--warm-neutral);
}

.list-footer {
  font-size: 14px;
  color: var(--secondary-text);
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--light-taupe);
}

/* ========================================
   H - CTA
   ======================================== */
.block-cta {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 60px;
  text-align: center;
}

.cta-container h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 32px;
}

.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cta:hover {
  background: #8B0101;
  border-color: #8B0101;
}

.cta-support {
  margin-top: 20px;
  font-size: 14px;
  color: var(--secondary-text);
}

/* ========================================
   L - FOOTER
   ======================================== */
.block-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 60px 40px;
}

.footer-brand {
  max-width: var(--max-width);
  margin: 0 auto 48px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-links {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .nav-container,
  .block-hero,
  .block-split,
  .block-list,
  .block-cta,
  .cards-grid,
  .stats-grid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .block-hero h1 {
    font-size: 36px;
  }

  .split-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-left h2 {
    position: static;
    margin-bottom: 24px;
  }

  .nav-links {
    gap: 20px;
  }

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

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

  .list-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
