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

/* ─── TOKENS ─── */
:root {
  --midnight-navy: #09162F;
  --deep-navy:     #061026;
  --counsel-gold:  #8A5C1D;
  --warm-gold:     #B47928;
  --parchment:     #FBF9F5;
  --white:         #FFFFFF;
  --charcoal:      #4B4B4B;
  --stone:         #9B9B9B;
  --error:         #dc0f1a;
  --border-light:  #E5E0D8;
  --serif:  'Prata', Georgia, 'Times New Roman', serif;
  --sans:   'Libre Franklin', Helvetica, Arial, Lucida, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.8;
  color: var(--charcoal);
  background: var(--parchment);
}

/* ─── NAV (dark fixed — interior pages; index.html overrides to transparent) ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 78px;
  padding: 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--midnight-navy);
  box-shadow: 0 0 7px rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo-mark {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-w { color: var(--white); line-height: 1; font-variant: small-caps; }
.brand-name { font-variant: small-caps; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links > li { display: flex; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 200ms ease;
}
.nav-links a:hover { color: var(--warm-gold); }
.nav-links .active { color: var(--warm-gold); }
.nav-cta {
  background: var(--counsel-gold) !important;
  color: var(--white) !important;
  padding: 10px 28px;
  font-family: var(--serif) !important;
  font-size: 15px !important;
  transition: background 300ms ease !important;
}
.nav-cta:hover { background: var(--warm-gold) !important; }
.nav-phone {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.82) !important;
  margin-right: -14px;
}
.nav-phone:hover { color: var(--warm-gold) !important; }
/* Pipe separator — visually clusters phone + CTA as a right-rail group */
.nav-links > li:has(.nav-phone)::before {
  content: '|';
  color: rgba(255,255,255,0.18);
  font-size: 18px;
  font-weight: 300;
  margin-right: 20px;
  pointer-events: none;
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-top: -3px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 300ms ease, opacity 300ms ease;
  transform-origin: center;
}
.nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav.menu-open {
  background: var(--midnight-navy);
  box-shadow: 0 0 7px rgba(0,0,0,0.1);
}

/* ─── NAV DROPDOWN ─── */
.nav-dropdown-item { position: static; }
.nav-dropdown-trigger {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 200ms ease;
}
.nav-dropdown-trigger:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 3px; }
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active { color: var(--warm-gold); }
.nav-chevron { font-size: 14px; display: inline-block; transition: transform 220ms ease; line-height: 1; }
@media (max-width: 980px) { .nav-chevron { font-size: 18px; } }
.nav-dropdown-item:hover .nav-chevron,
.nav-dropdown-item.open .nav-chevron { transform: rotate(180deg); }

@media (min-width: 981px) {
  /* position: static on .nav-dropdown-item means .nav (position:fixed) is the offset parent,
     so top: 100% = bottom of the nav bar */
  .nav-dropdown {
    position: absolute;
    top: 58px;
    left: auto;
    transform: translateY(-4px);
    background: var(--midnight-navy);
    border-top: 2px solid var(--counsel-gold);
    box-shadow: 0 8px 28px rgba(0,0,0,0.40);
    list-style: none;
    min-width: 230px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    transition: opacity 180ms ease 100ms, visibility 180ms ease 100ms, transform 180ms ease 100ms;
  }
  .nav-dropdown-item:hover .nav-dropdown,
  .nav-dropdown-item.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0ms;
  }
  .nav-dropdown li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-dropdown li:last-child { border-bottom: none; }
  .nav-dropdown a {
    display: block;
    padding: 16px 30px;
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    transition: color 200ms ease, background 200ms ease;
    white-space: nowrap;
  }
  .nav-dropdown a:hover { color: var(--warm-gold); background: rgba(255,255,255,0.04); }
  .nav-dropdown a.active { color: var(--warm-gold); }
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--counsel-gold);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: top 200ms ease;
}
.skip-link:focus { top: 0; }

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  background: var(--counsel-gold);
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  padding: 14px 52px 13px 36px;
  border: none;
  cursor: pointer;
  transition: background 300ms ease;
}
.btn-primary:hover { background: var(--warm-gold); }

.btn-ghost {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  background: transparent;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  transition: color 200ms ease, border-color 200ms ease;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

/* ─── SECTION SHELL ─── */
.section { padding: 81px 54px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.bg-cream  { background: var(--parchment); }
.bg-white  { background: var(--white); }
.bg-dark   { background: var(--midnight-navy); }

/* ─── H4 ORNAMENT ─── */
h4.ornament {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 14px;
}
h4.ornament span { color: var(--counsel-gold); }
h4.ornament span::after {
  width: 50px;
  height: 2px;
  content: '';
  display: block;
  margin: 10px auto 0;
  background: var(--counsel-gold);
}
h4.ornament.left { text-align: left; }
h4.ornament.left span::after { margin: 10px 0 0; }

/* ─── SECTION TITLE ─── */
.section-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--midnight-navy);
}
.accent { color: var(--counsel-gold); }
.section-title.centered { text-align: center; }
.on-dark { color: var(--white); }
.on-light { color: var(--midnight-navy); }

/* ─── CREDIBILITY BADGES ─── */
.badge-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 36px;
}
.badge {
  padding: 20px 32px;
  border: 1px solid #E5E0D8;
  margin: -1px -1px 0 0;
  text-align: center;
  display: flex;
  align-items: center;
}
.badge-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.6;
}

/* ─── PRACTICE CARDS ─── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 27px;
}
.practice-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px;
  margin-top: 44px;
}
.practice-card {
  background: var(--white);
  padding: 44px 36px 36px;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.09);
}
.practice-card:hover .text-link { color: var(--warm-gold); }
.card-bar {
  width: 40px;
  height: 3px;
  background: var(--counsel-gold);
  margin-bottom: 28px;
}
.practice-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--midnight-navy);
  margin-bottom: 14px;
}
.practice-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.text-link {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--counsel-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 200ms ease;
}
.text-link:hover { color: var(--warm-gold); }

/* ─── PHOTO PLACEHOLDER ─── */
.photo-block {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.photo-initials {
  font-family: var(--serif);
  font-size: 84px;
  color: rgba(255,255,255,0.10);
  line-height: 1;
}
.photo-note {
  font-size: 13px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.08em;
}

/* ─── CREDENTIAL LIST (dark background) ─── */
.cred-list {
  list-style: none;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cred-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.52);
  font-size: 15px;
}
.cred-list li::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--counsel-gold);
  flex-shrink: 0;
}

/* ─── WHY CARDS ─── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 27px; }
.why-card { padding: 36px 28px; background: var(--parchment); }
.why-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--midnight-navy); margin-bottom: 14px; line-height: 1.3; }
.why-card p { font-size: 16px; line-height: 1.75; color: var(--charcoal); }

/* ─── PROCESS ─── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 54px; }
.step-n {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  color: var(--counsel-gold);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--midnight-navy); margin-bottom: 14px; }
.process-step p { font-size: 16px; line-height: 1.75; color: var(--charcoal); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--midnight-navy);
  padding: 81px 54px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.58);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E5E0D8; }
.faq-q {
  width: 100%;
  text-align: left;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--midnight-navy);
  background: none;
  border: none;
  padding: 22px 48px 22px 0;
  cursor: pointer;
  line-height: 1.35;
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--counsel-gold);
}
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-a { padding: 0 0 22px; }
.faq-a p { font-size: 16px; line-height: 1.75; color: var(--charcoal); }

/* ─── PAGE HERO (interior practice pages) ─── */
.page-hero { background: var(--midnight-navy); padding: 140px 54px 81px; }
.page-hero-inner { max-width: 1140px; margin: 0 auto; }
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  max-width: 560px;
  margin-bottom: 40px;
}

/* ─── INTRO PROSE (practice pages) ─── */
.intro-prose { max-width: 760px; margin: 0 auto; text-align: center; }
.intro-prose .section-title { margin-bottom: 24px; }
.intro-prose p { font-size: 17px; line-height: 1.85; color: var(--charcoal); margin-bottom: 18px; }
.intro-prose p:last-child { margin-bottom: 0; }

/* ─── CASE TYPE COLUMNS (practice pages) ─── */
.cases-intro { font-size: 17px; color: var(--charcoal); margin-bottom: 40px; max-width: 680px; }
.cases-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.cases-col h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--midnight-navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--counsel-gold);
}
.cases-col ul { list-style: none; }
.cases-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #E5E0D8;
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
}
.cases-col ul li:last-child { border-bottom: none; }
.cases-col ul li::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--counsel-gold);
  flex-shrink: 0;
  margin-top: 11px;
}

/* ─── FOOTER ─── */
.footer { background: var(--midnight-navy); border-top: 1px solid rgba(255,255,255,0.12); }
.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 54px 54px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.8fr;
  gap: 54px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { font-family: var(--serif); font-size: 18px; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.footer-logo span { font-variant: small-caps; }
.footer-logo-mark { height: 32px; width: auto; display: block; flex-shrink: 0; }
.footer-about p { font-size: 15px; color: rgba(255,255,255,0.52); line-height: 1.75; margin-top: 14px; }
.footer-col h4 { font-family: var(--serif); font-size: 16px; font-weight: 400; color: var(--warm-gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.52); font-size: 15px; text-decoration: none; transition: color 200ms ease; }
.footer-col ul a:hover { color: var(--white); }
.footer-address,
.footer-hours { font-size: 15px; color: rgba(255,255,255,0.42); line-height: 1.65; display: block; }
.footer-map { border-top: 1px solid rgba(255,255,255,0.06); }
.footer-map-placeholder {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 54px;
  height: 180px;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-map-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}
.footer-disclaimer {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 54px 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}
.footer-bar {
  background: var(--deep-navy);
  padding: 20px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bar p,
.footer-bar a { color: rgba(255,255,255,0.32); font-size: 13px; text-decoration: none; }
.footer-bar a:hover { color: rgba(255,255,255,0.6); }

/* ─── MOBILE STICKY CTA ─── */
/* hide desktop CTAs in mobile-only nav section */
.nav-links > li.nav-mobile-ctas { display: none; }

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 997;
  background: var(--midnight-navy);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 12px 20px;
  gap: 12px;
}
.mobile-cta-btn,
.mobile-cta-call {
  flex: 1;
  text-align: center;
  padding: 13px 0;
  font-family: var(--serif);
  font-size: 15px;
  text-decoration: none;
}
.mobile-cta-btn { background: var(--counsel-gold); color: var(--white); }
.mobile-cta-call { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); }

/* ─── NAV OVERLAY (mobile backdrop) ─── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }

  /* Backdrop active */
  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Slide-down panel */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    list-style: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--midnight-navy);
    padding: 86px 0 24px;
    max-height: 100vh;
    max-height: 100svh;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.55);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 300ms;
  }
  .nav.menu-open .nav-links {
    transform: translateY(0);
    visibility: visible;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
  }

  /* Top-level items */
  .nav-links > li { display: block; }
  .nav-links > li:has(.nav-cta),
  .nav-links > li:has(.nav-phone) { display: none; }

  /* Top-level links */
  .nav-links > li > a {
    display: block;
    padding: 18px 24px;
    font-size: 17px;
    color: rgba(255,255,255,0.88);
  }

  /* CTA button */
  .nav-cta {
    display: block !important;
    text-align: center !important;
    margin: 4px 24px 12px !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    border-radius: 3px;
  }

  /* Dropdown trigger */
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 17px;
    color: rgba(255,255,255,0.88);
  }

  /* Sub-menu accordion via max-height */
  .nav-dropdown {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 260ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-dropdown-item.open .nav-dropdown { max-height: 300px; }
  .nav-dropdown li { border-bottom: none; }
  .nav-dropdown a {
    padding: 14px 24px 14px 36px !important;
    font-size: 15px !important;
    color: rgba(255,255,255,0.65) !important;
  }

  /* Mobile nav CTA buttons */
  .nav-mobile-ctas {
    display: block;
    padding: 16px 24px 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 4px;
  }
  .nav-mobile-btn-primary {
    display: block;
    text-align: center;
    background: var(--counsel-gold);
    color: var(--white);
    font-family: var(--serif);
    font-size: 16px;
    padding: 16px 24px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background 300ms ease;
  }
  .nav-mobile-btn-primary:hover { background: var(--warm-gold); }
  .nav-mobile-btn-call {
    display: block;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.82);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    text-decoration: none;
    transition: border-color 200ms ease, color 200ms ease;
  }
  .nav-mobile-btn-call:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

  .section { padding: 54px 27px; }
  .practice-grid { grid-template-columns: 1fr; gap: 27px; }
  .practice-pair { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 27px; }
  .process-grid { grid-template-columns: 1fr; gap: 27px; }
  .cases-columns { grid-template-columns: 1fr; gap: 27px; }
  .page-hero { padding: 110px 27px 60px; }
  .cta-banner { padding: 54px 27px; }
  .footer-content { grid-template-columns: 1fr 1fr; padding: 40px 27px; }
  .footer-bar { padding: 16px 27px; flex-direction: column; gap: 8px; text-align: center; }
  .footer-map-placeholder { padding: 0 27px; height: 140px; }
  .footer-disclaimer { padding: 14px 27px 18px; }

  body { padding-bottom: 80px; }
  .mobile-cta { display: flex; }
}

@media (max-width: 600px) {
  .footer-content { grid-template-columns: 1fr; }
  .badge-row { flex-direction: column; align-items: stretch; }
}

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