@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Fira+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #F0F4F7;
  --dark-green: #1A3528;
  --mid-green: #4E6E5A;
  --emerald: #1E7A4A;
  --text: #1C2B22;
  --text-light: #4E6E5A;
  --border: #C8D6CC;
  --white: #FFFFFF;
  --rule: 1px solid #C8D6CC;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Fira Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-green);
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1.1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--emerald);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--dark-green); }

strong { font-weight: 600; }
em { font-style: italic; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* ─── LAYOUT ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--wide {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── HEADER ─── */
.site-header {
  background-color: var(--dark-green);
  border-bottom: 3px solid var(--emerald);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: #FFFFFF;
  letter-spacing: 0.03em;
  line-height: 1;
}

.logo-sub {
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  color: #A0BFAB;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── NAV ─── */
.main-nav { display: flex; align-items: center; gap: 0; }

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0 16px;
  height: 72px;
  line-height: 72px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C8DACE;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
  background-color: rgba(30, 122, 74, 0.25);
}

.nav-item.has-dropdown:hover > .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  min-width: 240px;
  background-color: var(--dark-green);
  border-top: 2px solid var(--emerald);
  border-bottom: 2px solid var(--emerald);
  z-index: 200;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 400;
  color: #A0BFAB;
  text-transform: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(200,214,204,0.15);
  transition: background-color 0.15s, color 0.15s;
}

.dropdown a:hover {
  background-color: rgba(30,122,74,0.3);
  color: #FFFFFF;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #C8DACE;
}

.mobile-nav {
  display: none;
  background-color: var(--dark-green);
  border-top: 1px solid rgba(200,214,204,0.2);
  padding: 12px 0;
}

.mobile-nav a {
  display: block;
  padding: 10px 40px;
  font-size: 0.9rem;
  color: #A0BFAB;
  font-weight: 400;
  border-bottom: 1px solid rgba(200,214,204,0.08);
}

.mobile-nav a:hover { color: #FFFFFF; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--dark-green);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,53,40,0.96) 0%, rgba(26,53,40,0.5) 60%, rgba(26,53,40,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7EC49A;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
}

.hero-lead {
  font-size: 1.12rem;
  color: #B8D4C4;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 640px;
  font-weight: 300;
}

.hero-rule {
  width: 60px;
  height: 2px;
  background-color: var(--emerald);
  margin-bottom: 28px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.btn-primary {
  background-color: var(--emerald);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #186040;
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: var(--dark-green);
  border: 1.5px solid var(--dark-green);
}

.btn-outline:hover {
  background-color: var(--dark-green);
  color: #FFFFFF;
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  color: #FFFFFF;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.78rem;
}

/* ─── SECTIONS ─── */
.section {
  padding: 80px 0;
  border-bottom: var(--rule);
}

.section:last-of-type { border-bottom: none; }

.section--dark {
  background-color: var(--dark-green);
  color: #B8D4C4;
}

.section--dark h2, .section--dark h3, .section--dark h4 { color: #FFFFFF; }
.section--dark p { color: #B8D4C4; }
.section--dark .section-eyebrow { color: #7EC49A; }

.section--mid {
  background-color: #E4EBE7;
}

.section-eyebrow {
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.section-divider {
  width: 48px;
  height: 2px;
  background-color: var(--emerald);
  margin: 20px 0 32px;
}

/* ─── GRID LAYOUTS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }

/* ─── CARDS ─── */
.card {
  background-color: var(--white);
  border: var(--rule);
  padding: 32px;
  transition: border-color 0.2s;
}

.card:hover { border-color: var(--mid-green); }

.card-meta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-green);
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.25;
}

.card-title a { color: var(--dark-green); text-decoration: none; }
.card-title a:hover { color: var(--emerald); }

.card-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.card-link:hover { border-bottom-color: var(--emerald); color: var(--emerald); }

/* ─── ARTICLE CARD ─── */
.article-card {
  border-bottom: var(--rule);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.article-card:first-child { border-top: var(--rule); }

.article-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.article-card-body {}

/* ─── STAT BLOCK ─── */
.stat-block {
  border-left: 3px solid var(--emerald);
  padding: 12px 20px;
  margin: 24px 0;
}

.stat-block .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-block .stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ─── STAT ROW ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--rule);
  background-color: var(--white);
}

.stat-item {
  padding: 32px 28px;
  border-right: var(--rule);
}

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

.stat-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.45;
}

/* ─── QUOTE BLOCK ─── */
.blockquote {
  border-left: 3px solid var(--emerald);
  padding: 20px 32px;
  margin: 36px 0;
  background-color: rgba(30,122,74,0.04);
}

.blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--dark-green);
  line-height: 1.6;
  margin-bottom: 12px;
}

.blockquote cite {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: normal;
  letter-spacing: 0.08em;
}

/* ─── TABLE ─── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 24px 0;
}

.data-table th {
  background-color: var(--dark-green);
  color: #FFFFFF;
  padding: 12px 16px;
  text-align: left;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background-color: rgba(240,244,247,0.6); }

/* ─── SIDEBAR ─── */
.sidebar {}

.sidebar-block {
  margin-bottom: 40px;
  border: var(--rule);
  background-color: var(--white);
}

.sidebar-block-title {
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-green);
  padding: 14px 20px;
  border-bottom: var(--rule);
}

.sidebar-list a {
  display: block;
  padding: 11px 20px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.15s;
}

.sidebar-list a:last-child { border-bottom: none; }
.sidebar-list a:hover { background-color: rgba(30,122,74,0.05); color: var(--emerald); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 0.8rem;
  color: var(--text-light);
  border-bottom: var(--rule);
  margin-bottom: 48px;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--emerald); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text); }

/* ─── PAGE HEADER ─── */
.page-header {
  background-color: var(--dark-green);
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--emerald);
}

.page-header-eyebrow {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7EC49A;
  margin-bottom: 16px;
  display: block;
}

.page-header h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-header p {
  color: #B8D4C4;
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.75;
}

/* ─── TAGS ─── */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--mid-green);
  background-color: transparent;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}

.tag:hover {
  background-color: var(--emerald);
  border-color: var(--emerald);
  color: #FFFFFF;
}

/* ─── CONTACT FORM ─── */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-green);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background-color: var(--white);
  border: 1.5px solid var(--border);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--emerald);
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-success {
  display: none;
  padding: 20px 24px;
  background-color: rgba(30,122,74,0.08);
  border: 1.5px solid var(--emerald);
  color: var(--dark-green);
  font-size: 0.95rem;
  margin-top: 24px;
}

.form-success.visible { display: block; }

/* ─── INFO BOXES ─── */
.info-box {
  border: 1.5px solid var(--border);
  padding: 24px 28px;
  background-color: var(--white);
  margin: 24px 0;
}

.info-box-label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-green);
  margin-bottom: 10px;
  display: block;
}

/* ─── TIMELINE ─── */
.timeline { margin: 32px 0; }

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: var(--rule);
}

.timeline-item:last-child { border-bottom: none; }

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--emerald);
  line-height: 1;
  padding-top: 4px;
}

.timeline-body h4 { margin-bottom: 8px; }
.timeline-body p { font-size: 0.9rem; color: var(--text-light); }

/* ─── TOPIC GRID ─── */
.topic-card {
  background-color: var(--white);
  border: var(--rule);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.topic-card:hover { border-color: var(--emerald); }

.topic-icon {
  width: 36px;
  height: 2px;
  background-color: var(--emerald);
  margin-bottom: 20px;
}

.topic-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.topic-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 20px;
}

/* ─── IMAGE FIGURE ─── */
.figure {
  margin: 36px 0;
}

.figure img {
  width: 100%;
  display: block;
}

.figure figcaption {
  padding: 10px 0;
  font-size: 0.8rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  margin-top: 0;
}

/* ─── FOOTER ─── */
.site-footer {
  background-color: #0F2018;
  color: #7EA490;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(126,164,144,0.2);
}

.footer-brand .logo-name { color: #FFFFFF; font-size: 1.4rem; }
.footer-brand .logo-sub { color: #7EA490; }

.footer-desc {
  font-size: 0.88rem;
  color: #7EA490;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 0;
}

.footer-col-title {
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: #7EA490;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #FFFFFF; }

.footer-contact-item {
  font-size: 0.88rem;
  color: #7EA490;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: #567068;
}

.footer-policy-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-policy-links a {
  font-size: 0.8rem;
  color: #567068;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-policy-links a:hover { color: #FFFFFF; }

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-green);
  border-top: 2px solid var(--emerald);
  padding: 20px 40px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

#cookie-banner p {
  font-size: 0.88rem;
  color: #B8D4C4;
  margin: 0;
  flex: 1;
}

#cookie-banner a { color: #7EC49A; }

.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.full-width { width: 100%; }
.hidden { display: none; }

/* ─── POLICY PAGES ─── */
.policy-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: var(--rule);
}

.policy-content h2:first-of-type { border-top: none; margin-top: 0; }

.policy-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
}

.policy-content p { margin-bottom: 1rem; }
.policy-content ul { margin-bottom: 1rem; }
.policy-content li { margin-bottom: 0.5rem; font-size: 0.95rem; }

.policy-meta {
  background-color: var(--white);
  border: var(--rule);
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .grid-2, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .article-card { grid-template-columns: 1fr; }
  .article-card-img { order: -1; }
}

@media (max-width: 768px) {
  .container, .container--narrow, .container--wide { padding: 0 20px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .hero { min-height: 460px; }
  .hero-content { padding: 56px 0 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 16px; }
  #cookie-banner { padding: 16px 20px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: var(--rule); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* auto-aliases R13 */
:root {
  --color-accent: #3b82f6;
  --color-dark: #0f172a;
  --color-mid: #64748b;
  --font-body: "Inter",sans-serif;
  --font-heading: "Inter",sans-serif;
}
