/* =========================================================
   Meu Espaço Digital: design system
   Navy + terracotta + cream, tipografia Plus Jakarta Sans /
   DM Sans / JetBrains Mono. CSS puro, sem framework.
   ========================================================= */

:root {
  --ink: #13212c;
  --ink-2: #0f1a23;
  --cream: #fdf9f3;
  --cream-2: #f5f0e8;
  --paper: #ffffff;
  --sage: #dfeee2;
  --sage-ink: #24382c;
  --sage-ink-soft: #4a5f52;
  --terracotta: #a53c1d;
  --terracotta-light: #fe7d59;
  --line: rgba(19, 33, 44, 0.12);
  --line-soft: rgba(19, 33, 44, 0.08);
  --muted: #5b6570;
  --muted-on-ink: rgba(253, 249, 243, 0.68);

  --font-display: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --font-body: "DM Sans", "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1240px;
  --gap: 24px;
  --section-gap: 128px;
  --section-gap-mobile: 72px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3 { font-family: var(--font-display); margin: 0; color: var(--ink); text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .wrap { padding-left: 64px; padding-right: 64px; }
}

.section {
  padding-top: var(--section-gap-mobile);
  padding-bottom: var(--section-gap-mobile);
}
@media (min-width: 768px) {
  .section { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }
}

/* Focus visibility (accessibility) */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------------------- Reveal on scroll -------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* -------------------- Icons -------------------- */
.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-lg { width: 28px; height: 28px; }

/* -------------------- Eyebrow (kept sparingly) -------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.eyebrow .rule { width: 44px; height: 1px; background: var(--terracotta); }
.eyebrow span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow.on-ink span { color: var(--muted-on-ink); }
.eyebrow.on-ink .rule { background: rgba(253, 249, 243, 0.35); }

.kicker {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 14px;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(165, 60, 29, 0.22);
}
.btn-primary:hover { background: #8f3419; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(165, 60, 29, 0.28); }
.btn:active { transform: scale(0.97); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--cream-2); }
.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn-light:hover { background: var(--paper); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--terracotta);
  transition: gap 0.25s ease;
}
.link-arrow:hover { gap: 12px; }
.link-arrow .icon { transition: transform 0.25s ease; }
.link-arrow:hover .icon { transform: translate(2px, -2px); }

/* -------------------- Nav -------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 249, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .nav-inner { padding: 16px 64px; } }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand img { height: 32px; width: 32px; }

.nav-links {
  display: none;
  gap: 4px;
  align-items: center;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--cream-2); }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: var(--ink);
  padding: 8px;
  cursor: pointer;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 20px 22px;
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a:last-child { border-bottom: 0; color: var(--terracotta); }

/* -------------------- Hero -------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 56px;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; gap: var(--gap); padding-top: 40px; }
}

.hero-copy { display: flex; flex-direction: column; gap: 30px; }

h1.headline {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
@media (min-width: 768px) { h1.headline { font-size: 60px; line-height: 1.08; } }
h1.headline .accent { color: var(--terracotta); }

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 34em;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  opacity: 0.85;
}
.hero-note .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--terracotta-light); }
.hero-note span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; }

/* Hero visual: hand-built abstract composition, no stock photo */
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--ink) 0%, #1c2f3d 100%);
  padding: 22px;
  box-shadow: 0 30px 70px rgba(19, 33, 44, 0.22);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(253,249,243,0.05) 0 1px, transparent 1px 26px);
  pointer-events: none;
}
.hv-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 18px;
  position: relative;
  z-index: 1;
}
.hv-bar span { width: 8px; height: 8px; border-radius: 999px; background: rgba(253, 249, 243, 0.25); }
.hv-bar .pill {
  margin-left: 10px;
  height: 20px;
  flex: 1;
  border-radius: 999px;
  background: rgba(253, 249, 243, 0.08);
}
.hv-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hv-tile {
  background: rgba(253, 249, 243, 0.06);
  border: 1px solid rgba(253, 249, 243, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--cream);
}
.hv-tile .icon { color: var(--terracotta-light); width: 22px; height: 22px; }
.hv-tile strong { font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.hv-tile.wide { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
.hv-tile.wide .bars { display: flex; gap: 6px; align-items: flex-end; height: 30px; }
.hv-tile.wide .bars i { display: block; width: 6px; background: var(--terracotta-light); border-radius: 3px; opacity: 0.85; }
.hv-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

/* -------------------- Trust bar -------------------- */
.trustbar {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--cream-2);
  padding: 20px;
}
.trustbar .wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .trustbar .wrap { flex-direction: row; justify-content: space-between; text-align: left; padding: 4px 0; }
}
.trustbar-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.trustbar-tags {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.trustbar-tags .sep { width: 4px; height: 4px; border-radius: 999px; background: var(--line); }

/* -------------------- Cases -------------------- */
.cases-head { max-width: 640px; margin-bottom: 40px; display: flex; flex-direction: column; gap: 18px; }
.cases-head p { font-size: 17px; color: var(--muted); }

.cases-track-wrap { overflow-x: auto; scrollbar-width: thin; margin: 0 -20px; padding: 8px 20px 16px; }
@media (min-width: 768px) { .cases-track-wrap { margin: 0 -64px; padding: 8px 64px 16px; } }
.cases-track {
  display: flex;
  gap: var(--gap);
  scroll-snap-type: x proximity;
}

.case-card {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(19, 33, 44, 0.05);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.case-card:hover { box-shadow: 0 18px 40px rgba(19, 33, 44, 0.1); transform: translateY(-4px); }
@media (min-width: 768px) { .case-card { width: 320px; } }

.case-thumb { aspect-ratio: 16 / 10; background: var(--cream-2); overflow: hidden; }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.case-info { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 6px; }
.case-info h3 { font-size: 19px; font-weight: 700; }
.case-info p { font-size: 14px; color: var(--muted); margin: 0 0 6px; }
.case-info .link-arrow { font-size: 13px; font-weight: 700; }

/* -------------------- Intro -------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .intro-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }

h2.section-title {
  font-size: 32px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.015em;
}
@media (min-width: 768px) { h2.section-title { font-size: 44px; } }
h2.section-title .accent { color: var(--terracotta); }

.intro-body { display: flex; flex-direction: column; gap: 26px; }
.intro-body p { font-size: 18px; line-height: 1.65; color: var(--muted); }

/* -------------------- Services -------------------- */
.services { background: var(--cream-2); }
.services-head { max-width: 640px; margin-bottom: 56px; display: flex; flex-direction: column; gap: 18px; }
.services-head p { font-size: 17px; color: var(--muted); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
@media (min-width: 860px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 320px;
  box-shadow: 0 10px 28px rgba(19, 33, 44, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover { box-shadow: 0 18px 40px rgba(19, 33, 44, 0.1); transform: translateY(-4px); }
.service-card--paper { background: var(--paper); color: var(--ink); }
.service-card--sage { background: var(--sage); color: var(--sage-ink); }
.service-card--ink { background: var(--ink); color: var(--cream); }
@media (min-width: 860px) {
  .service-card:nth-child(2) { margin-top: 32px; }
  .service-card:nth-child(3) { margin-top: 8px; }
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card--paper .service-icon { background: var(--cream-2); color: var(--terracotta); }
.service-card--sage .service-icon { background: rgba(36, 56, 44, 0.08); color: var(--sage-ink); }
.service-card--ink .service-icon { background: rgba(253, 249, 243, 0.08); color: var(--terracotta-light); }

.service-card h3 { font-size: 23px; line-height: 1.25; font-weight: 700; }
.service-card--paper p { color: var(--muted); }
.service-card--sage p { color: var(--sage-ink-soft); }
.service-card--ink p { color: rgba(253, 249, 243, 0.72); }
.service-card p { font-size: 16px; line-height: 1.6; }
.service-card .link-arrow { margin-top: auto; }
.service-card--sage .link-arrow { color: var(--sage-ink); }
.service-card--ink .link-arrow { color: var(--terracotta-light); }

/* -------------------- Quote -------------------- */
.quote-section {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.12;
  pointer-events: none;
}
.quote-rings .ring { position: absolute; border: 1px solid var(--cream); border-radius: 999px; }
.quote-rings .ring--1 { width: 780px; height: 780px; }
.quote-rings .ring--2 { width: 560px; height: 560px; }

.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.quote-mark {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: var(--font-display);
}
@media (min-width: 768px) { .quote-mark { font-size: 42px; line-height: 1.3; } }
.quote-cite {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted-on-ink);
}

/* -------------------- Process -------------------- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .process { grid-template-columns: 0.8fr 1.2fr; gap: 96px; } }

.process-intro { display: flex; flex-direction: column; gap: 18px; }
.process-intro p { color: var(--muted); font-size: 16px; max-width: 26em; }

.process-list { border-top: 1px solid var(--line); }
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr 26px;
  align-items: start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.process-step .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--terracotta);
  padding-top: 4px;
}
.process-step h3 { font-size: 20px; margin-bottom: 6px; }
.process-step p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.process-step .icon { color: var(--terracotta); margin-top: 6px; }

/* -------------------- Audience -------------------- */
.audience-card {
  background: var(--terracotta-light);
  border-radius: var(--radius-lg);
  padding: 44px 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .audience-card { padding: 64px; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
}
.audience-card h2 { color: #3a1206; }
.audience-card h2 .accent { color: var(--ink); }
.audience-card .eyebrow span { color: rgba(58, 18, 6, 0.65); }
.audience-card .eyebrow .rule { background: rgba(58, 18, 6, 0.3); }

.audience-list p {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(58, 18, 6, 0.16);
  font-size: 16.5px;
  color: #3a1206;
}
.audience-list p:last-child { border-bottom: 1px solid rgba(58, 18, 6, 0.16); }
.audience-list .num { font-family: var(--font-mono); font-size: 12px; color: rgba(58, 18, 6, 0.55); }

/* -------------------- FAQ -------------------- */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .faq { grid-template-columns: 0.8fr 1.2fr; gap: 96px; } }
.faq-intro p { color: var(--muted); max-width: 26em; }

.faq-list { border-top: 1px solid var(--line); }
details.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .icon { color: var(--terracotta); transition: transform 0.25s ease; }
details.faq-item[open] summary .icon { transform: rotate(45deg); }
details.faq-item p.answer { margin-top: 14px; max-width: 34em; color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* -------------------- CTA -------------------- */
.cta-section { background: var(--cream); }
.cta-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 44px 26px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(19, 33, 44, 0.2);
}
@media (min-width: 900px) {
  .cta-card { flex-direction: row; align-items: center; justify-content: space-between; padding: 76px; gap: 60px; }
}
.cta-copy { max-width: 520px; display: flex; flex-direction: column; gap: 26px; position: relative; z-index: 1; }
.cta-copy h2 { color: var(--cream); }
.cta-copy h2 .accent { color: var(--terracotta-light); }
.cta-copy p.lede { color: var(--muted-on-ink); }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.cta-actions small { font-family: var(--font-mono); font-size: 11px; color: rgba(253, 249, 243, 0.62); max-width: 30em; line-height: 1.6; }

.cta-mark {
  display: none;
  position: relative;
  z-index: 1;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  border: 1px solid rgba(253, 249, 243, 0.14);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 900px) { .cta-mark { display: flex; } }
.cta-mark img { width: 78px; height: 78px; opacity: 0.92; }
.cta-tags {
  position: absolute;
  right: -6px;
  bottom: -6px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 249, 243, 0.4);
  line-height: 1.9;
}

.cta-deco {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  opacity: 0.16;
  pointer-events: none;
}

/* -------------------- Footer -------------------- */
footer {
  background: var(--cream-2);
  border-top: 1px solid var(--line-soft);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
  padding: 52px 20px;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; padding: 52px 64px; }
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; align-items: center; }
@media (min-width: 768px) { .footer-brand { align-items: flex-start; } }
.footer-brand .brand { font-size: 15px; }
.footer-brand .copy { font-size: 14px; color: var(--muted); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) { .footer-links { flex-direction: row; gap: 40px; } }
.footer-links a, .footer-links button {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.footer-links a:hover, .footer-links button:hover { color: var(--terracotta); }
