/* Reset Quarto wrapper defaults so our layout takes full control */
#quarto-content,
#quarto-document-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* ===================================================
   QUARTO COMPATIBILITY FIXES
   These rules handle differences between raw HTML and
   Quarto-rendered Markdown output.
=================================================== */

/* Quarto renders ::: {.section} as <section> elements without the .section class,
   so we apply padding to the section tag directly. */
section { padding: 90px 0; }
@media (max-width: 600px) { section { padding: 60px 0; } }

/* Hero, cta-banner, and stats-strip have their own padding — keep them intact. */
.hero        { padding: 100px 0 80px !important; }
.cta-banner  { padding: 80px 0      !important; }
.stats-strip { padding: 38px 0      !important; }
footer.footer { padding: 60px 0 30px !important; }

/* Remove Quarto hover-anchor icons from headings */
.anchored::after { display: none !important; }

/* Quarto wraps lone text in :::divs with <p> tags.
   Reset <p> styles inside specific containers so parent styles aren't overridden. */
.founder-name p,
.founder-title p {
  margin: 0;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.card-icon p    { margin: 0; }
.belief-icon p  { margin: 0; }
.ahead-label p,
.ahead-number p,
.ahead-quote p  {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.about-logo-wrap > p { margin: 0; }

/* Pillar list: Quarto wraps Markdown lists in a <ul> inside the .pillar-list div */
.pillar-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Fix Quarto figure wrapper around Markdown images */
.about-logo-wrap figure,
.about-logo-wrap .quarto-figure { margin: 0; }
.about-logo-wrap figcaption { display: none; }

/* ===================================================
   DESIGN TOKENS — Olive Green (dominant) + Terracotta
=================================================== */
:root {
  --olive-900: #2E3A10;
  --olive-800: #3D4E18;
  --olive-700: #4E6320;
  --olive-600: #5F7828;
  --olive-500: #728D35;
  --olive-400: #8EA455;
  --olive-300: #ABBE78;
  --olive-200: #CBD89F;
  --olive-100: #E4ECC7;
  --olive-50:  #F3F7E6;

  --terra-900: #6B2410;
  --terra-800: #8C3218;
  --terra-700: #A84122;
  --terra-600: #C4572F;
  --terra-500: #D46D45;
  --terra-400: #E08A68;
  --terra-300: #EBA98E;
  --terra-200: #F3C9B4;
  --terra-100: #F9E3D8;
  --terra-50:  #FDF3EE;

  --cream:     #FAF7F2;
  --dark-text: #1E2410;
  --mid-text:  #3E4A20;
  --light-text:#6B7C4A;
  --white:     #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Lato', Arial, sans-serif;

  --radius: 8px;
  --shadow: 0 2px 18px rgba(30,36,16,.09);
  --shadow-md: 0 6px 28px rgba(30,36,16,.14);
}

/* ===================================================
   RESET & BASE
=================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--dark-text);
  background: var(--cream);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===================================================
   TYPOGRAPHY
=================================================== */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: .02em; }
p  { font-size: 1rem; color: var(--mid-text); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===================================================
   LAYOUT
=================================================== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 90px 0; }
.section-alt  { background: var(--olive-50); }
.section-dark { background: var(--olive-800); color: var(--cream); }
.section-dark p { color: var(--olive-200); }

.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

@media (max-width: 900px) {
  .two-col   { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .three-col { grid-template-columns: 1fr; }
  .section   { padding: 60px 0; }
}

.section-label {
  font-family: var(--font-sans);
  font-size: .73rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--terra-600);
  margin-bottom: .5rem; display: block;
}
.section-dark .section-label  { color: var(--terra-300); }

.divider {
  width: 56px; height: 3px;
  background: var(--terra-500);
  margin: 1rem 0 1.8rem;
  border-radius: 2px;
}
.divider-center { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ===================================================
   NAVIGATION
=================================================== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--olive-800);
  border-bottom: 3px solid var(--terra-600);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 2rem;
  max-width: 1160px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: .9rem;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}
.nav-logo-text {
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}
.nav-logo-text span {
  color: var(--terra-300); font-size: .78rem;
  display: block; font-weight: 400; letter-spacing: .04em;
  font-family: var(--font-sans);
}
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--olive-200); font-size: .83rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--terra-300); }
.nav-cta {
  background: var(--terra-600) !important;
  color: var(--white) !important;
  padding: .45rem 1.2rem; border-radius: 4px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--terra-700) !important; }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ===================================================
   HERO
=================================================== */
.hero {
  background: linear-gradient(140deg, var(--olive-900) 0%, var(--olive-700) 55%, var(--olive-800) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 5rem;
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
}
.hero-logo {
  flex-shrink: 0;
}
.hero-logo img {
  width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 32px rgba(0,0,0,.55));
}
.hero-content { flex: 1; }
.hero-eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--terra-300);
  margin-bottom: .8rem;
}
.hero h1 { color: var(--cream); margin-bottom: .9rem; }
.hero h1 em { color: var(--terra-400); font-style: normal; }
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--olive-200); font-style: italic;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1rem; color: var(--olive-200);
  max-width: 520px; margin-bottom: 2.2rem; line-height: 1.75;
}
.btn {
  display: inline-block; padding: .8rem 1.9rem;
  border-radius: 4px; font-weight: 700; font-size: .87rem;
  letter-spacing: .05em; text-transform: uppercase;
  transition: all .2s; cursor: pointer; border: 2px solid transparent;
}
.btn-terra { background: var(--terra-600); color: var(--white); border-color: var(--terra-600); }
.btn-terra:hover { background: var(--terra-700); border-color: var(--terra-700); }
.btn-outline { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.45); margin-left: .9rem; }
.btn-outline:hover { background: rgba(255,255,255,.08); }

@media (max-width: 820px) {
  .hero-inner { flex-direction: column; text-align: center; gap: 2.5rem; }
  .hero-logo img { width: 200px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}

/* ===================================================
   STATS STRIP
=================================================== */
.stats-strip { background: var(--terra-600); padding: 38px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: .25rem;
}
.stat-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--terra-100);
}
@media (max-width: 580px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ===================================================
   ABOUT — logo display
=================================================== */
.about-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.about-logo-wrap img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}
.country-pills {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: .8rem;
  align-items: center; width: 100%;
}
.pill {
  text-align: center; padding: 1rem;
  background: var(--olive-50); border-radius: var(--radius);
  border: 1px solid var(--olive-100);
}
.pill-terra { background: var(--terra-50); border-color: var(--terra-100); }
.pill .pill-val { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700; color: var(--olive-700); }
.pill-terra .pill-val { color: var(--terra-700); font-size: 1.4rem; }
.pill .pill-key { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--light-text); }

/* ===================================================
   CARDS
=================================================== */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2rem 1.8rem;
  border-top: 4px solid var(--olive-500);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-terra { border-top-color: var(--terra-500); }
.card-icon {
  width: 50px; height: 50px;
  background: var(--olive-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; font-size: 1.4rem;
}
.card-icon-terra { background: var(--terra-100); }
.card h3 { color: var(--olive-800); margin-bottom: .6rem; }
.card h4 { color: var(--olive-800); margin-bottom: .5rem; }

/* ===================================================
   PILLAR LIST
=================================================== */
.pillar-list { list-style: none; }
.pillar-list li {
  padding: .75rem 0 .75rem 1.9rem; position: relative;
  border-bottom: 1px solid var(--olive-100);
  font-size: .96rem; color: var(--mid-text);
}
.pillar-list li::before {
  content: ''; position: absolute; left: 0; top: 1.25rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--terra-500);
}
.pillar-list li:last-child { border-bottom: none; }

/* ===================================================
  ELIGIBILITY NOTICE
=================================================== */
.eligibility-notice {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
}

/* ===================================================
   VALUES TABLE
=================================================== */
.values-table { width: 100%; border-collapse: collapse; }
.values-table th {
  background: var(--olive-700); color: var(--cream);
  padding: .9rem 1.3rem; text-align: left;
  font-family: var(--font-sans); font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.values-table td { padding: .85rem 1.3rem; border-bottom: 1px solid var(--olive-100); font-size: .95rem; }
.values-table tr:nth-child(even) td { background: var(--olive-50); }
.values-table tr:hover td { background: var(--terra-50); }
.val-name { font-weight: 700; color: var(--terra-700); font-family: var(--font-serif); font-size: 1.05rem; }

/* ===================================================
   PROGRAM CARDS
=================================================== */
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
@media (max-width: 768px) { .program-grid { grid-template-columns: 1fr; } }

.program-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.program-card-header { padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1rem; }
.program-card-header.us { background: var(--olive-700); }
.program-card-header.id { background: var(--olive-800); }
.program-flag { font-size: 1.9rem; }
.program-card-header h3 { color: var(--white); font-size: 1.3rem; margin: 0; }
.program-card-header span { color: var(--olive-200); font-size: .85rem; }
.program-card-body { padding: 1.8rem 2rem; }
.program-detail-row { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--olive-100); font-size: .93rem; }
.program-detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--light-text); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.detail-value { color: var(--olive-800); font-weight: 600; text-align: right; max-width: 55%; }
.program-amount { margin-top: 1.2rem; padding: 1rem 1.2rem; background: var(--terra-50); border-radius: 6px; border-left: 4px solid var(--terra-500); }
.amount-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--terra-700); }
.amount-value { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--terra-700); }

/* ===================================================
   CRITERIA TABLE
=================================================== */
.criteria-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.criteria-table th {
  background: var(--olive-700); color: var(--cream);
  padding: .85rem 1.1rem; text-align: left;
  font-size: .77rem; letter-spacing: .08em; text-transform: uppercase;
}
.criteria-table td { padding: .8rem 1.1rem; border-bottom: 1px solid var(--olive-100); vertical-align: top; }
.criteria-table tr:nth-child(even) td { background: var(--olive-50); }
.weight-badge { display: inline-block; padding: .2rem .65rem; border-radius: 12px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.badge-primary   { background: var(--terra-100); color: var(--terra-700); }
.badge-secondary { background: var(--olive-100); color: var(--olive-700); }
.badge-required  { background: var(--olive-50); color: var(--olive-600); border: 1px solid var(--olive-300); }

/* ===================================================
   TIMELINE
=================================================== */
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before { content: ''; position: absolute; left: .6rem; top: 0; bottom: 0; width: 2px; background: var(--olive-300); }
.timeline-item { position: relative; margin-bottom: 1.9rem; }
.timeline-dot { position: absolute; left: -2.2rem; top: .3rem; width: 14px; height: 14px; border-radius: 50%; background: var(--terra-500); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--terra-300); }
.timeline-phase { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra-600); margin-bottom: .2rem; }
.timeline-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--olive-800); }
.timeline-period { font-size: .83rem; color: var(--light-text); margin-bottom: .3rem; }
.timeline-desc  { font-size: .91rem; color: var(--mid-text); }

/* ===================================================
   FOUNDERS
=================================================== */
.founder-card { background: var(--white); border-radius: 10px; box-shadow: var(--shadow); overflow: hidden; }
.founder-header { padding: 1.8rem 2rem; color: var(--white); }
.founder-header.travis { background: linear-gradient(135deg, var(--olive-700), var(--olive-900)); }
.founder-header.gatot  { background: linear-gradient(135deg, var(--terra-700), #6B2410); }
.founder-name  { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 700; }
.founder-title { font-size: .83rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-top: .3rem; }
.founder-header.travis .founder-title { color: var(--olive-300); }
.founder-header.gatot  .founder-title { color: var(--terra-200); }
.founder-body  { padding: 1.8rem 2rem; font-size: .95rem; color: var(--mid-text); line-height: 1.75; }

/* ===================================================
   BUDGET CARDS
=================================================== */
.budget-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 580px) { .budget-cards { grid-template-columns: 1fr; } }
.budget-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.budget-card-head { padding: .9rem 1.4rem; font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); }
.budget-card-head.us { background: var(--olive-600); }
.budget-card-head.id { background: var(--olive-800); }
.budget-card-body { padding: 1.4rem; }
.budget-row { display: flex; justify-content: space-between; padding: .52rem 0; border-bottom: 1px solid var(--olive-100); font-size: .92rem; }
.budget-row:last-child { border-bottom: none; font-weight: 700; font-size: .98rem; color: var(--terra-700); }
.budget-row .b-label { color: var(--light-text); }

/* ===================================================
   PARTNER CARDS
=================================================== */
.partner-card { background: var(--white); border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: var(--shadow); border-bottom: 4px solid var(--terra-500); }
.partner-flag { font-size: 2.4rem; margin-bottom: .7rem; }
.partner-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--olive-800); margin-bottom: .35rem; }
.partner-location { font-size: .85rem; color: var(--light-text); }
.partner-tag { display: inline-block; margin-top: .7rem; padding: .25rem .75rem; background: var(--olive-100); border-radius: 12px; font-size: .75rem; font-weight: 700; color: var(--olive-700); letter-spacing: .06em; }

/* ===================================================
   QUOTE BLOCK
=================================================== */
.quote-block {
  border-left: 4px solid var(--terra-400);
  padding: 1.1rem 1.7rem;
  background: var(--terra-50);
  border-radius: 0 6px 6px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--terra-800);
  margin: 1.8rem 0;
}

/* ===================================================
   PHILOSOPHY BLOCKS
=================================================== */
.belief-block {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: .8rem;
}
.belief-olive { background: var(--olive-50); border-left: 4px solid var(--olive-500); }
.belief-terra { background: var(--terra-50); border-left: 4px solid var(--terra-500); }
.belief-block .belief-icon { font-size: 1.4rem; flex-shrink: 0; padding-top: .1rem; }
.belief-block p { margin: 0; font-size: .94rem; }

/* ===================================================
   LOOKING AHEAD
=================================================== */
.ahead-box {
  text-align: center; padding: 3rem 2rem;
  background: rgba(255,255,255,.05);
  border-radius: 12px; border: 1px solid rgba(255,255,255,.1);
}
.ahead-number { font-family: var(--font-serif); font-size: 4.5rem; font-weight: 700; color: var(--terra-300); line-height: 1; }
.ahead-number-small { font-size: 3rem; }
.ahead-label  { color: var(--olive-200); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.8rem; }
.ahead-sep    { width: 1px; height: 36px; background: var(--olive-600); margin: 0 auto 1.8rem; }
.ahead-quote  { font-family: var(--font-serif); font-style: italic; color: var(--terra-300); font-size: 1rem; line-height: 1.65; }
.ahead-number p,
.ahead-number-small p,
.ahead-quote p { color: var(--terra-300); }
.ahead-label p { color: var(--olive-200); }

/* ===================================================
   CTA BANNER
=================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--terra-700) 0%, var(--terra-600) 50%, var(--terra-500) 100%);
  padding: 80px 0; text-align: center; color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: .9rem; }
.cta-banner p  { color: var(--terra-100); max-width: 580px; margin: 0 auto 2rem; font-size: 1.02rem; }
.btn-white { background: var(--white); color: var(--terra-700); border: 2px solid var(--white); }
.btn-white:hover { background: var(--terra-50); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); margin-left: .9rem; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

/* ===================================================
   FOOTER
=================================================== */
.footer { background: var(--olive-900); color: var(--olive-200); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.footer-brand img { height: 60px; width: auto; object-fit: contain; }
.footer-brand-text h3 { font-family: var(--font-serif); color: var(--cream); font-size: 1.1rem; margin: 0; }
.footer-brand-text p  { font-size: .8rem; color: var(--olive-300); margin: .2rem 0 0; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; color: var(--terra-300); font-size: .9rem; margin-top: .7rem; }
.footer-desc    { font-size: .88rem; color: var(--olive-300); line-height: 1.75; margin-top: .9rem; }

.footer-col h4 { color: var(--cream); font-family: var(--font-sans); font-size: .77rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a  { color: var(--olive-300); font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--terra-300); }

.footer-bottom { border-top: 1px solid var(--olive-700); padding-top: 1.4rem; text-align: center; font-size: .8rem; color: var(--olive-400); }
.footer-bottom a { color: var(--terra-400); }
