/*
  ADHDose — shared.css
  ─────────────────────────────────────────────
  Applies to every page on adhdose.com.

  WHAT THIS FILE OWNS:
  - Design tokens (dark + light mode)
  - CSS reset
  - Body / html base
  - Noise grain overlay
  - Nav (fixed, transparent → solid on scroll)
  - Mobile menu
  - Footer
  - Scroll reveal utility (.reveal / .reveal.up)
  - Common layout: .wrap, .s-label, h2.s-head
  - FAQ accordion
  - Reading progress bar
  - Store badge links

  WHAT STAYS PAGE-SPECIFIC:
  - Hero sections
  - Section-level layout (outcomes, how-it-works, etc.)
  - Medication page components
  - Article / content page components
  - Responsive overrides specific to a page layout

  HOW TO ADD TO A PAGE:
  1. Remove the inline :root { } variables block from <style>
  2. Remove the inline nav CSS from <style>
  3. Remove the inline footer CSS from <style>
  4. Remove the inline .reveal CSS from <style>
  5. Add in <head> (after font link, before page-specific <style>):
       <link rel="stylesheet" href="shared.css"/>
  6. Remove the inline nav HTML and replace with nav.html snippet
  7. Remove the inline footer HTML and replace with footer.html snippet
  8. Remove the inline shared.js block and replace with:
       <script src="shared.js"></script>
  ─────────────────────────────────────────────
*/

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

/* ── DESIGN TOKENS ─────────────────────────── */
:root {
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --mono:    'DM Mono', monospace;
  --serif:   'Fraunces', Georgia, serif;
  --radius:  16px;
  --ease:    cubic-bezier(0.22,1,0.36,1);
}

/* ── BASELINE FALLBACK (dark mode as default, flash-safe) ── */
:root {
  --bg:           #08090E;
  --ink:          #0D0E17;
  --surface:      #111320;
  --border:       rgba(255,255,255,0.07);
  --line:         rgba(255,255,255,0.05);
  --text:         #E8ECF4;
  --mid:          #8896B3;
  --muted:        #4C5872;
  --teal:         #00C9A7;
  --teal-lo:      rgba(0,201,167,0.08);
  --teal-md:      rgba(0,201,167,0.18);
  --amber:        #F5A623;
  --red:          #E04040;
  --nav-bg:       rgba(8,9,14,0.55);
  --nav-scrolled: rgba(8,9,14,0.96);
}

/* DARK MODE (explicit) */
[data-theme="dark"] {
  --bg:           #08090E;
  --ink:          #0D0E17;
  --surface:      #111320;
  --border:       rgba(255,255,255,0.07);
  --line:         rgba(255,255,255,0.05);
  --text:         #E8ECF4;
  --mid:          #8896B3;
  --muted:        #4C5872;
  --teal:         #00C9A7;
  --teal-lo:      rgba(0,201,167,0.08);
  --teal-md:      rgba(0,201,167,0.18);
  --amber:        #F5A623;
  --red:          #E04040;
  --nav-bg:       rgba(8,9,14,0.55);
  --nav-scrolled: rgba(8,9,14,0.96);
}

/* LIGHT MODE */
[data-theme="light"] {
  --bg:           #EDECE8;
  --ink:          #F4F3EF;
  --surface:      #FFFFFF;
  --border:       rgba(0,0,0,0.07);
  --line:         rgba(0,0,0,0.05);
  --text:         #0D0E17;
  --mid:          #4A5066;
  --muted:        #8896B3;
  --teal:         #0A8FAA;
  --teal-lo:      rgba(10,143,170,0.08);
  --teal-md:      rgba(10,143,170,0.18);
  --amber:        #C8870A;
  --red:          #E04040;
  --nav-bg:       rgba(237,236,232,0.72);
  --nav-scrolled: rgba(237,236,232,0.97);
}

/* ── BASE ───────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.28s ease, color 0.28s ease;
  cursor: default;
}

a { color: var(--teal); text-decoration: none; transition: opacity .18s; }
a:hover { opacity: 0.80; }

/* ── GRAIN ──────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.016; pointer-events: none; z-index: 1;
}

/* ── LAYOUT ─────────────────────────────────── */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ── TYPOGRAPHY UTILITIES ───────────────────── */
.s-label {
  font-family: var(--mono);
  font-size: 0.625rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.28s;
}
.s-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--teal);
  transition: background 0.28s;
}

h2.s-head {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.06;
  color: var(--text);
  transition: color 0.28s;
}
h2.s-head .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
}

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: var(--nav-bg);
  border-bottom: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}
nav.scrolled {
  background: var(--nav-scrolled);
  border-bottom-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 1;
}
.nav-logo:hover { opacity: 1; }
.nav-mark {
  width: 28px; height: 28px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-wordmark {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color 0.28s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 10px;
  transition: color .18s, background .18s;
  opacity: 1;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--border);
  opacity: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Theme toggle button */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  transition: color .18s, background .18s, border-color .18s;
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--text); background: var(--border); }
.theme-toggle svg { width: 16px; height: 16px; display: block; }
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* Primary CTA pill */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: #08090E !important;
  font-family: var(--display);
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  text-decoration: none;
  border: none;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10) inset,
    0 1px 0 rgba(255,255,255,0.12) inset;
  position: relative;
  overflow: hidden;
  transition: opacity .18s, transform .15s, box-shadow .18s;
  opacity: 1;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow:
    0 4px 20px rgba(0,201,167,0.26),
    0 0 0 1px rgba(255,255,255,0.10) inset,
    0 1px 0 rgba(255,255,255,0.12) inset;
}
.nav-cta:active { transform: scale(0.97); }

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: background 0.28s;
}

/* Mobile menu drawer */
.mob-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 90;
  background: var(--nav-scrolled);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  transition: background 0.28s;
}
.mob-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  opacity: 1;
  transition: color 0.28s, border-color 0.28s;
}
.mob-menu a:hover { opacity: 1; color: var(--teal); }
.mob-menu .mob-dl {
  border: none;
  margin-top: 14px;
  background: var(--teal);
  color: #08090E !important;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  opacity: 1;
}
.mob-menu.open { display: flex; }

/* Content pages: nav is sticky not fixed (no hero overlap needed) */
nav.sticky-nav {
  position: sticky;
  top: 0;
  background: var(--nav-scrolled);
  border-bottom-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
nav.sticky-nav .mob-menu {
  top: 64px;
}

/* ── READING PROGRESS BAR (content pages) ──── */
.read-progress-wrap {
  position: fixed;
  top: 64px; left: 0; right: 0;
  height: 2px;
  z-index: 99;
  background: var(--border);
  transition: top 0.28s;
}
.read-progress-fill {
  height: 100%;
  width: 0;
  background: var(--teal);
  transition: background 0.28s;
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  padding: 24px 48px;
  border-top: 1px solid var(--border);
  transition: border-color 0.28s;
}
.footer-row {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.28s;
  opacity: 1;
}
.footer-logo:hover { opacity: 1; color: var(--teal); }
.footer-copy {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
  transition: color 0.28s;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s;
  opacity: 1;
}
.footer-links a:hover { color: var(--text); opacity: 1; }

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.up { opacity: 1; transform: none; }

/* ── FAQ ACCORDION ───────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.28s;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color .18s;
}
.faq-q:hover { color: var(--teal); }
.faq-ico {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .25s, border-color .25s, color .25s;
  line-height: 1;
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  border-color: var(--teal);
  color: var(--teal);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-body {
  padding: 0 0 22px;
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.75;
  transition: color 0.28s;
}
.faq-a-body strong { color: var(--text); font-weight: 600; }
.faq-a-body a {
  color: var(--mid);
  text-decoration: underline;
  text-decoration-color: rgba(0,201,167,.25);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
  opacity: 1;
}
.faq-a-body a:hover {
  text-decoration-color: rgba(0,201,167,.6);
  color: var(--text);
  opacity: 1;
}

/* ── STORE BADGE LINKS ───────────────────────── */
.store-badge-link { display: inline-block; opacity: 1; transition: opacity .18s; }
.store-badge-link:hover { opacity: 0.80; }
.store-badge-link svg { display: block; height: 48px; width: auto; }

/* ── MARQUEE ─────────────────────────────────── */
.marquee-wrap {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.012);
  transition: border-color 0.28s, background 0.28s;
}
[data-theme="light"] .marquee-wrap { background: rgba(0,0,0,0.012); }
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-25%)} }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: color 0.28s;
}
.marquee-item::after { content: '·'; color: var(--teal); font-size: 1rem; }
.marquee-item a { color: inherit; text-decoration: none; transition: color .18s; opacity: 1; }
.marquee-item a:hover { color: var(--teal); opacity: 1; }

/* ── DOWNLOAD BUTTON (global) ────────────────── */
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal);
  color: #08090E;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 0 40px rgba(0,201,167,0.20);
  position: relative;
  overflow: hidden;
  transition: opacity .18s, transform .15s, box-shadow .2s;
  opacity: 1;
}
.dl-btn::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.10), transparent);
  pointer-events: none;
  border-radius: 100px 100px 0 0;
}
.dl-btn:hover {
  opacity: 0.90;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 6px 28px rgba(0,201,167,0.30);
}
.dl-btn:active { transform: scale(0.98); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .wrap { padding: 0 22px; }
  footer { padding: 24px 22px; }
  .footer-row { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
}

@media (max-width: 520px) {
  .wrap { padding: 0 18px; }
  .dl-btn { padding: 14px 28px; font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   BREADCRUMB
   Orientation chrome — almost invisible by design.
   DM Mono, flush with content column, recedes naturally.
═══════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 48px 0 0;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

/* Full-width pages (med hub, learn hub) */
.breadcrumb.breadcrumb--wide {
  max-width: 1080px;
  padding-left: 32px;
  padding-right: 32px;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.breadcrumb__link {
  color: var(--muted);
  text-decoration: none;
  opacity: 1;
  transition: color 0.15s ease;
}
.breadcrumb__link:hover {
  color: var(--text);
  opacity: 1;
}

/* Chevron separator — SVG, thinner and more refined than / */
.breadcrumb__sep {
  display: inline-flex;
  align-items: center;
  margin: 0 7px;
  color: var(--border);
  flex-shrink: 0;
}
.breadcrumb__sep svg {
  width: 10px;
  height: 10px;
  display: block;
}

/* Current page — slightly brighter, not a link */
.breadcrumb__current {
  color: var(--mid);
  font-weight: 400;
  /* Truncate long titles gracefully */
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

@media (max-width: 960px) {
  .breadcrumb {
    padding-left: 22px;
    padding-right: 22px;
  }
  .breadcrumb--wide {
    padding-left: 22px;
    padding-right: 22px;
  }
  /* On mobile, hide the middle crumb if 3 levels deep — only show root + current */
  .breadcrumb__item.breadcrumb__item--mid {
    display: none;
  }
  .breadcrumb__sep.breadcrumb__sep--mid {
    display: none;
  }
}

@media (max-width: 520px) {
  .breadcrumb {
    padding-top: 32px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .breadcrumb__current {
    max-width: 180px;
  }
}

/* ═══════════════════════════════════════════════════════
   FOOTER — multi-column, substantive
   Brand left. Medications, Learn, Product, Legal columns.
   Medical disclaimer below the fold.
═══════════════════════════════════════════════════════ */

/* Override the simple footer from earlier in this file */
footer {
  padding: 72px 48px 0;
  border-top: 1px solid var(--border);
  background: var(--ink);
  transition: background 0.28s, border-color 0.28s;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.28s;
}

/* Brand column */
.footer-brand {}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-bottom: 14px;
  opacity: 1;
}
.footer-logo:hover { opacity: 1; }
.footer-logo-mark {
  width: 26px; height: 26px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-logo-name {
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color 0.28s;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 220px;
  transition: color 0.28s;
}

.footer-badge-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 14px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--mid);
  letter-spacing: 0.02em;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  opacity: 1;
  width: fit-content;
}
.footer-store-badge:hover {
  color: var(--text);
  border-color: var(--teal);
  opacity: 1;
}
.footer-store-badge svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--muted);
  transition: color 0.18s;
}
.footer-store-badge:hover svg {
  color: var(--teal);
}
.footer-store-badge .badge-status {
  font-size: 0.5625rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Link columns */
.footer-col {}

.footer-col-head {
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  transition: color 0.28s;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-col-links a {
  font-size: 0.875rem;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.15s;
  opacity: 1;
  line-height: 1.3;
}
.footer-col-links a:hover {
  color: var(--text);
  opacity: 1;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 0 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--muted);
  transition: color 0.28s;
}

.footer-disclaimer {
  font-family: var(--mono);
  font-size: 0.5625rem;
  color: var(--muted);
  opacity: 0.45;
  line-height: 1.65;
  max-width: 520px;
  transition: color 0.28s;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}
.footer-bottom-links a {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  opacity: 1;
}
.footer-bottom-links a:hover {
  color: var(--text);
  opacity: 1;
}

/* Responsive */
@media (max-width: 960px) {
  footer { padding: 56px 22px 0; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-tagline { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  footer { padding: 44px 18px 0; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
}
