/* ============================================================
   Legal Advocate Services — css/styles.css
   Design: Deep navy authority + warm gold accent
   Typefaces: Cormorant Garamond (display) + Inter (body)
   ============================================================ */

/* ── Tokens ── */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #152236;
  --navy-light: #1E3350;
  --gold:       #C9A84C;
  --gold-light: #E2C97E;
  --gold-dim:   #7A5E24;
  --off-white:  #F5F2EC;
  --gray-100:   #EEF0F3;
  --gray-300:   #C4CBD6;
  --gray-500:   #7A8799;
  --text-body:  #2C3A4A;
  --white:      #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --max-w: 1160px;
  --radius: 3px;
  --transition: 220ms ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--ff-body); font-size: .875rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); }

/* Section headings */
.section-eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600; line-height: 1.2;
  color: var(--navy);
}
.section-title--light { color: var(--white); }
.section-lead {
  font-size: 1.0625rem; color: var(--gray-500);
  max-width: 56ch; margin-top: .75rem;
}
.section-lead--light { color: var(--gray-300); }
.divider-gold {
  width: 3rem; height: 2px;
  background: var(--gold); margin-top: 1rem;
}

/* ── HEADER / NAV ── */
#site-header {
  position: fixed; inset: 0 0 auto;
  z-index: 100;
  background: rgba(13,27,42,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: background var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .875rem;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; fill: var(--navy); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: var(--ff-display); font-size: 1.125rem; font-weight: 700;
  color: var(--white); letter-spacing: .01em;
}
.logo-text span { font-size: .625rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

.nav-desktop { display: flex; align-items: center; gap: .25rem; }
.nav-desktop a {
  font-size: .8125rem; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; color: var(--gray-300);
  padding: .5rem .75rem; border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] { color: var(--gold); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: .3rem; }
.nav-item > a::after { content: '▾'; font-size: .6rem; }
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  min-width: 200px;
  padding: .5rem 0;
  padding-top: calc(.5rem + 8px); /* absorbs the invisible bridge */
  margin-top: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .18s ease, visibility 0s linear .18s;
  pointer-events: none;
}
/* invisible bridge fills gap between trigger and dropdown */
.dropdown::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 8px;
  transform: translateY(-100%);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity .18s ease, visibility 0s linear 0s;
}
.dropdown a {
  display: block; padding: .55rem 1.1rem;
  font-size: .8rem; color: var(--gray-300);
}
.dropdown a:hover { color: var(--gold); background: rgba(255,255,255,.04); }

.nav-cta { margin-left: .75rem; padding: .55rem 1.25rem; font-size: .8rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: .4rem; color: var(--white);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile drawer */
#mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy);
  padding: 5rem 2rem 2rem;
  flex-direction: column; gap: .25rem;
  overflow-y: auto;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  display: block; padding: .8rem 0;
  font-size: 1rem; font-weight: 500; color: var(--gray-300);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu .mob-section-label {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dim); padding: 1rem 0 .25rem; font-weight: 600;
}
#mobile-menu .mob-cta {
  display: flex; justify-content: center;
  width: 100%; margin-top: 1.5rem; box-sizing: border-box;
}
.close-mobile {
  position: fixed; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--white);
  z-index: 201;
}
.close-mobile svg { width: 22px; height: 22px; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-bottom: 4rem;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.88) 0%, rgba(13,27,42,.65) 60%, rgba(13,27,42,.45) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding-top: 5rem; /* offset for fixed header */
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 2rem;
  padding: .4rem 1rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-badge::before { content: '●'; font-size: .5rem; }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white);
  max-width: 14ch;
}
.hero-title em {
  font-style: normal; color: var(--gold);
  display: block;
}
.hero-sub {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: var(--gray-300); max-width: 52ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 2.25rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: .8125rem; color: var(--gray-300); margin-top: .2rem; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 2rem 3rem;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8125rem; font-weight: 500;
  color: var(--gray-300); letter-spacing: .02em;
}
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; fill: var(--gold); }

/* ── SERVICES GRID ── */
.services-section { padding: 5rem 0; background: var(--off-white); }
.services-intro { max-width: 640px; margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); transform: translateY(-2px); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,.1);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.service-card h3 {
  font-family: var(--ff-display); font-size: 1.375rem;
  font-weight: 600; color: var(--navy);
  margin-bottom: .6rem;
}
.service-card p { font-size: .9375rem; color: var(--gray-500); flex: 1; }
.service-card-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1.25rem;
  font-size: .8125rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--gold);
}
.service-card-link svg { width: 14px; height: 14px; fill: var(--gold); transition: transform var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(3px); }

/* ── ABOUT STRIP ── */
.about-section { padding: 5.5rem 0; background: var(--navy); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-body { color: var(--gray-300); font-size: .9875rem; line-height: 1.8; margin-top: 1.25rem; }
.about-body p + p { margin-top: 1rem; }
.about-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.about-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9375rem; color: var(--gray-300);
}
.about-list li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0; margin-top: .5rem;
}
.about-aside {
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: 2.5rem;
}
.about-aside-stat { margin-bottom: 2rem; }
.about-aside-num {
  font-family: var(--ff-display); font-size: 3rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.about-aside-label { font-size: .875rem; color: var(--gray-300); margin-top: .25rem; }
.about-aside-lic {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8125rem; color: var(--gray-500); line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 5rem 0; background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: .15em; margin-bottom: 1rem; }
.testimonial-quote {
  font-family: var(--ff-display); font-size: 1.125rem;
  font-weight: 500; line-height: 1.6;
  color: var(--navy); font-style: italic;
}
.testimonial-author {
  margin-top: 1.25rem;
  font-size: .8125rem; font-weight: 600;
  color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; right: -4rem; top: -4rem;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(201,168,76,.07);
  pointer-events: none;
}
.cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--ff-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--white);
}
.cta-banner p { color: var(--gray-300); margin-top: .5rem; max-width: 48ch; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 7.5rem 0 3.5rem;
  text-align: center;
}
.page-hero .breadcrumb {
  display: flex; justify-content: center; align-items: center; gap: .4rem;
  font-size: .8125rem; color: var(--gray-500); margin-bottom: 1.25rem;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { color: var(--gray-500); }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--white); line-height: 1.15;
}
.page-hero p {
  max-width: 52ch; margin: 1rem auto 0;
  font-size: 1.0625rem; color: var(--gray-300);
}

/* ── CONTENT PAGE LAYOUT ── */
.content-section { padding: 5rem 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem; align-items: start;
}
.content-prose h2 {
  font-family: var(--ff-display); font-size: 1.875rem;
  font-weight: 600; color: var(--navy); margin: 2rem 0 .75rem;
}
.content-prose h2:first-child { margin-top: 0; }
.content-prose h3 {
  font-family: var(--ff-display); font-size: 1.375rem;
  font-weight: 600; color: var(--navy); margin: 1.5rem 0 .5rem;
}
.content-prose p { font-size: .9875rem; color: var(--text-body); margin-bottom: 1rem; line-height: 1.75; }
.content-prose ul {
  margin: .75rem 0 1.25rem 0;
  display: flex; flex-direction: column; gap: .5rem;
}
.content-prose ul li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .9375rem; color: var(--text-body);
}
.content-prose ul li::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: .5rem;
}

/* Sidebar */
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 2rem;
  position: sticky; top: 5.5rem;
}
.sidebar-card h3 {
  font-family: var(--ff-display); font-size: 1.25rem;
  font-weight: 600; color: var(--navy); margin-bottom: 1.25rem;
}
.sidebar-contact-item {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9rem; color: var(--text-body);
  margin-bottom: 1rem;
}
.sidebar-contact-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-top: 1.5rem; }
.sidebar-divider { border: none; border-top: 1px solid var(--gray-300); margin: 1.5rem 0; }
.sidebar-services-list { display: flex; flex-direction: column; gap: .35rem; }
.sidebar-services-list a {
  display: flex; align-items: center; gap: .4rem;
  font-size: .875rem; color: var(--text-body); padding: .4rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.sidebar-services-list a:hover { color: var(--gold); }
.sidebar-services-list a svg { width: 12px; height: 12px; fill: var(--gold); }

/* Service detail highlight block */
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 6px; padding: 2rem;
  margin: 2rem 0;
}
.highlight-box h3 {
  font-family: var(--ff-display); font-size: 1.375rem;
  font-weight: 600; color: var(--white); margin-bottom: .75rem;
}
.highlight-box p { color: var(--gray-300); font-size: .9375rem; }
.highlight-box ul { margin-top: .75rem; }
.highlight-box ul li {
  color: var(--gray-300); font-size: .9375rem;
  display: flex; align-items: flex-start; gap: .65rem;
}
.highlight-box ul li::before { background: var(--gold); }

/* Corporate agencies list */
.agency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin: 1.5rem 0;
}
.agency-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.agency-card svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }
.agency-card span { font-size: .9rem; font-weight: 500; color: var(--navy); line-height: 1.35; }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem; align-items: start;
  padding: 5rem 0;
}
.contact-form-wrap { background: var(--white); }
.contact-info-block { padding: 0; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; margin-bottom: .45rem;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--ff-body); font-size: .9375rem; color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-honey { display: none !important; }
.form-submit-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
#form-status {
  font-size: .9rem; font-weight: 500; display: none;
  padding: .6rem 1rem; border-radius: var(--radius);
}
#form-status.success { background: #d4edda; color: #155724; display: block; }
#form-status.error   { background: #f8d7da; color: #721c24; display: block; }

.info-card {
  background: var(--navy);
  border-radius: 8px; padding: 2.5rem;
  position: sticky; top: 5.5rem;
}
.info-card h3 {
  font-family: var(--ff-display); font-size: 1.375rem;
  font-weight: 600; color: var(--white); margin-bottom: 1.5rem;
}
.info-item {
  display: flex; gap: 1rem; margin-bottom: 1.5rem;
}
.info-item-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}
.info-item-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.info-item-body dt { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.info-item-body dd { font-size: .9375rem; color: var(--gray-300); margin-top: .2rem; line-height: 1.6; }
.info-item-body a { color: var(--gray-300); }
.info-item-body a:hover { color: var(--gold); }

/* ── FOOTER ── */
#site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  font-size: .9rem; color: var(--gray-500); line-height: 1.75; margin-top: 1rem; max-width: 30ch;
}
.footer-col h4 {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  font-size: .875rem; color: var(--gray-500);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-line {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .875rem; color: var(--gray-500); margin-bottom: .75rem;
}
.footer-contact-line svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.footer-contact-line a { color: var(--gray-500); }
.footer-contact-line a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 3rem; padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: var(--gray-500); }
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--gold); }
.footer-lic {
  font-size: .75rem; color: var(--gray-500);
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1rem; }
  .hero-actions { flex-direction: column; }
}

/* ── ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .fade-up.visible { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Footer cert badges */
.footer-certs {
  display: flex; gap: .6rem; flex-wrap: wrap;
  margin-top: 1.25rem;
}
.footer-cert-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 3px;
  padding: .3rem .6rem;
  font-size: .675rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}
.footer-cert-badge svg { width: 11px; height: 11px; fill: var(--gold); flex-shrink: 0; }

/* Active nav state */
.nav-desktop a.active, .nav-desktop a[aria-current="page"] { color: var(--gold); }
#mobile-menu a.active { color: var(--gold); }
