/* =====================================================================
   Building on It — Shared Stylesheet
   Used by all pages on buildingonit.co.uk.
   Palette: deep navy, warm canvas, gold accent.
   Typography: Fraunces (display serif) + Inter (body sans).
   ===================================================================== */

:root {
  --ink: #0a1929;
  --ink-soft: #2c3e54;
  --ink-mute: #5a6b7e;
  --canvas: #fafaf7;
  --canvas-warm: #f1efe8;
  --line: rgba(10, 25, 41, 0.1);
  --line-strong: rgba(10, 25, 41, 0.2);
  --accent: #d4a574;
  --accent-deep: #b88a5e;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--canvas);
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- Layout primitives ---------- */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
}
.wrap-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (max-width: 720px) {
  .wrap, .wrap-narrow { padding: 0 1.4rem; }
}

/* ---------- Top notice bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(250, 250, 247, 0.8);
  font-size: 0.82rem;
  padding: 0.6rem 0;
  text-align: center;
}
.topbar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  margin-left: 0.4rem;
}
.topbar a:hover { text-decoration: underline; }

/* ---------- Nav ---------- */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
nav.site-nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}
.brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
    height: 40px;
    width: auto;
    display: block;
    /* delete any old background, border-radius, font-size, padding, line-height, etc. */
}
nav.site-nav ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
nav.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.2s;
}
nav.site-nav a:hover,
nav.site-nav a.active { color: var(--ink); }
nav.site-nav a.active { font-weight: 500; }
.nav-contact {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--ink);
  color: var(--ink) !important;
  border-radius: 6px;
  font-weight: 500;
}
.nav-contact:hover { background: var(--ink); color: var(--canvas) !important; }
@media (max-width: 820px) {
  nav.site-nav ul li:not(:last-child) { display: none; }
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
  margin-bottom: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent-deep);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: var(--canvas);
}
.btn-primary:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); }

/* ---------- Hero (homepage) ---------- */
header.hero {
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}
h1.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.8rem;
  font-variation-settings: "opsz" 144;
}
h1.hero-title em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 400;
}
.hero-lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 38rem;
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* Hero card */
.hero-card {
  background: var(--canvas-warm);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.2rem;
  position: relative;
}
.hero-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.stat-num em { font-style: italic; color: var(--accent-deep); }
.stat-label {
  font-size: 0.85rem;
  color: var(--ink-mute);
  line-height: 1.4;
}
.hero-card-list {
  list-style: none;
  font-size: 0.92rem;
}
.hero-card-list li {
  padding: 0.65rem 0;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-card-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-deep);
  flex-shrink: 0;
}

/* ---------- Hero (inner pages) ---------- */
header.page-hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--line);
}
header.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 22ch;
}
header.page-hero h1 em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 400;
}
header.page-hero .hero-lead { margin-bottom: 0; }

/* ---------- Sections ---------- */
section { padding: 6rem 0; }
@media (max-width: 720px) { section { padding: 4rem 0; } }

.section-head {
  margin-bottom: 4rem;
  max-width: 56rem;
}
.section-head .eyebrow { margin-bottom: 1.4rem; }
h2.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 1.2rem;
}
h2.section-title em { font-style: italic; color: var(--accent-deep); }
.section-head p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 50rem;
}

/* ---------- Capabilities grid ---------- */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cap {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem;
  transition: background 0.3s;
}
.cap:hover { background: var(--canvas-warm); }
.cap-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-deep);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: block;
}
.cap h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}
.cap p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}
@media (max-width: 820px) { .caps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .caps-grid { grid-template-columns: 1fr; } }

/* ---------- Portfolio (products on homepage) ---------- */
.portfolio {
  background: var(--canvas-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}
.product:last-child { border-bottom: none; padding-bottom: 0; }
.product:first-child { padding-top: 0; }
.product.reverse > div:first-child { order: 2; }
@media (max-width: 900px) {
  .product, .product.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .product.reverse > div:first-child { order: 0; }
}
.product-tag {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
  margin-bottom: 1rem;
}
.product h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.product h3 em { font-style: italic; color: var(--accent-deep); }
.product p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.product-features {
  list-style: none;
  margin-bottom: 1.8rem;
}
.product-features li {
  padding: 0.5rem 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.product-features li::before {
  content: '→';
  color: var(--accent-deep);
  font-family: var(--serif);
  flex-shrink: 0;
}
.product-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.product-link:hover { color: var(--accent-deep); border-color: var(--accent-deep); }

.product-visual {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}

/* Construction product visual */
.visual-construction {
  background: linear-gradient(135deg, #2c3e54 0%, #0a1929 100%);
  display: grid;
  grid-template-rows: auto 1fr;
  color: rgba(255,255,255,0.95);
  padding: 1.6rem;
}
.visual-construction .vc-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1.4rem;
}
.visual-construction .vc-head span:first-child {
  font-family: var(--serif); font-style: italic; font-size: 0.85rem;
  color: var(--accent);
}
.visual-construction .vc-head span:last-child {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.visual-construction .vc-rows {
  display: flex; flex-direction: column; gap: 0.7rem;
}
.visual-construction .vc-row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 0.8rem; align-items: center;
  font-size: 0.78rem;
}
.visual-construction .vc-row .vc-bar {
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.12);
  position: relative;
}
.visual-construction .vc-row .vc-bar::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--accent); border-radius: 2px;
}
.visual-construction .vc-row:nth-child(1) .vc-bar::after { width: 88%; }
.visual-construction .vc-row:nth-child(2) .vc-bar::after { width: 64%; background: #6cb888; }
.visual-construction .vc-row:nth-child(3) .vc-bar::after { width: 42%; background: #6c95b8; }
.visual-construction .vc-row:nth-child(4) .vc-bar::after { width: 76%; }
.visual-construction .vc-row .vc-pct { color: rgba(255,255,255,0.7); font-variant-numeric: tabular-nums; }

/* MemoLeap product visual */
.visual-memoleap {
  background: #f4f1ea;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #0f1413;
}
.visual-memoleap .vm-top {
  display: flex; justify-content: space-between; align-items: center;
}
.visual-memoleap .vm-logo {
  font-family: var(--serif); font-weight: 500; font-size: 1.2rem;
  display: flex; align-items: center; gap: 0.45rem;
}
.visual-memoleap .vm-dot {
  width: 18px; height: 18px; position: relative;
}
.visual-memoleap .vm-dot::before, .visual-memoleap .vm-dot::after {
  content: ''; position: absolute; border-radius: 50%;
}
.visual-memoleap .vm-dot::before { width: 11px; height: 11px; background: #0f1413; top: 0; left: 0; }
.visual-memoleap .vm-dot::after { width: 8px; height: 8px; background: #c75135; bottom: 0; right: 0; }
.visual-memoleap .vm-tag {
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: #c75135;
}
.visual-memoleap .vm-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.4rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,20,19,0.06);
}
.visual-memoleap .vm-prompt {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #888; margin-bottom: 0.6rem;
}
.visual-memoleap .vm-word {
  font-family: var(--serif); font-size: 2.3rem; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 0.2rem;
}
.visual-memoleap .vm-word em { font-style: italic; color: #c75135; }
.visual-memoleap .vm-trans { font-size: 0.85rem; color: #5a6b7e; }
.visual-memoleap .vm-foot {
  display: flex; justify-content: space-between; font-size: 0.7rem; color: #5a6b7e;
}
.visual-memoleap .vm-pill {
  padding: 0.25rem 0.65rem; background: #ebe6da; border-radius: 99px; font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* Education product visual */
.visual-music {
  background: linear-gradient(135deg, #f1efe8 0%, #e0dccc 100%);
  padding: 1.8rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.visual-music .vmu-head {
  font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ink-soft);
}
.visual-music .vmu-cal {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-top: 0.8rem;
}
.visual-music .vmu-cell {
  aspect-ratio: 1; border-radius: 4px; background: rgba(10,25,41,0.06);
}
.visual-music .vmu-cell.on { background: var(--accent-deep); }
.visual-music .vmu-cell.dim { background: rgba(212,165,116,0.4); }
.visual-music .vmu-list {
  background: rgba(255,255,255,0.6); border-radius: 6px; padding: 0.8rem 1rem;
  font-size: 0.78rem; color: var(--ink-soft);
}
.visual-music .vmu-list strong { color: var(--ink); font-weight: 500; }

/* ---------- Why us ---------- */
.why .why-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .why .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.why-points {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.why-point {
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
}
.why-point span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-deep);
  font-size: 1rem;
  padding-top: 4px;
}
.why-point h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.why-point p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Sectors (dark section) ---------- */
.sectors {
  background: var(--ink);
  color: var(--canvas);
}
.sectors h2 { color: var(--canvas); }
.sectors h2 em { color: var(--accent); }
.sectors .eyebrow { color: var(--accent); }
.sectors .eyebrow::before { background: var(--accent); }
.sectors .section-head p { color: rgba(250, 250, 247, 0.7); }
.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 820px) { .sec-grid { grid-template-columns: 1fr; } }
.sec-card {
  border: 1px solid rgba(250, 250, 247, 0.15);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s;
  background: rgba(250, 250, 247, 0.02);
}
.sec-card:hover {
  border-color: var(--accent);
  background: rgba(250, 250, 247, 0.04);
  transform: translateY(-2px);
}
.sec-card .sec-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: block;
}
.sec-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--canvas);
}
.sec-card p {
  font-size: 0.93rem;
  color: rgba(250, 250, 247, 0.7);
  margin-bottom: 1.2rem;
}
.sec-card ul {
  list-style: none;
  font-size: 0.85rem;
}
.sec-card li {
  color: rgba(250, 250, 247, 0.6);
  padding: 0.3rem 0;
  border-top: 1px solid rgba(250, 250, 247, 0.08);
}
.sec-card li:first-child { border-top: none; padding-top: 0; }

/* ---------- Contact ---------- */
.contact {
  background: var(--canvas-warm);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-detail {
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.contact-detail .value {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
}
.contact-detail .value a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.2s;
}
.contact-detail .value a:hover { border-color: var(--ink); }
.contact-detail .sub { font-size: 0.92rem; color: var(--ink-mute); margin-top: 0.3rem; }

/* ---------- Product detail page (sub-pages) ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  padding: 5rem 0;
  align-items: start;
}
@media (max-width: 980px) {
  .product-detail { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
}
.product-detail h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.product-detail h2 em { font-style: italic; color: var(--accent-deep); }
.product-detail p {
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.product-detail .feature-list {
  margin: 2rem 0;
  border-top: 1px solid var(--line);
}
.product-detail .feature-list .feat {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
}
.product-detail .feature-list .feat span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-deep);
  padding-top: 4px;
}
.product-detail .feature-list .feat h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.product-detail .feature-list .feat p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin-bottom: 0;
}

/* ---------- Long-form prose ---------- */
.prose {
  padding: 4rem 0 6rem;
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  margin: 3rem 0 1rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.prose ul {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--ink-soft);
}
.prose ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: rgba(250, 250, 247, 0.65);
  padding: 4rem 0 1.5rem;
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 250, 247, 0.1);
}
@media (max-width: 720px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .foot-top > div:first-child { grid-column: 1 / -1; }
}
.foot-brand-row {
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem;
  color: var(--canvas);
}
.foot-brand-name {
  font-family: var(--serif); font-weight: 500; font-size: 1.4rem;
}
.foot-tag { color: rgba(250, 250, 247, 0.65); max-width: 32ch; font-size: 0.93rem; }
.foot-top h4 {
  color: var(--canvas);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.foot-top ul { list-style: none; }
.foot-top li { margin-bottom: 0.55rem; }
.foot-top a {
  color: rgba(250, 250, 247, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.foot-top a:hover { color: var(--accent); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(250, 250, 247, 0.5);
}
