/* ============================================================
   Law Office of Aletha J. Smith, PC — Professional v9
   Classic law-firm layout · her teal blue · normal type scale
   Calm, conventional, trustworthy — nothing theatrical.
   ============================================================ */

:root {
  /* Her original theme — teal blue from her live site (#0F5977) */
  --teal:       #0f5977;   /* her brand teal */
  --teal-2:     #176b8f;   /* hover */
  --teal-3:     #0a3d54;   /* dark band */
  --teal-ink:   #08303f;   /* deepest */
  --steel:      #3a7ea0;   /* light blue accent */
  --paper:      #ffffff;   /* white */
  --paper-deep: #f2f6f9;   /* light gray */
  --ink:        #1c2a36;
  --ink-soft:   #34454f;
  --body:       #45555f;
  --muted:      #6b7a84;
  --hairline:   rgba(15, 89, 119, 0.15);

  /* Classic serif headings (NOT Playfair) + clean sans */
  --serif: "Lora", Georgia, serif;
  --sans:  "Public Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1140px;
  --gutter: clamp(18px, 3.5vw, 40px);
  --section: clamp(56px, 6vw, 84px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--body);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--teal); color: #fff; }

/* ---------- Typography (normal, professional scale) ---------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 700; line-height: 1.25; text-wrap: balance; }
h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
h3 { font-size: 1.22rem; }
p { max-width: 65ch; }
p + p { margin-top: 0.9em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--teal); display: inline-block; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(30px, 4vw, 48px); }
.section-head p { margin-top: 14px; font-size: 1rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn svg { transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-2); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--hairline); }
.btn-outline:hover { border-color: var(--teal); background: rgba(15, 89, 119, 0.05); }
.btn-white { background: #fff; color: var(--teal); }
.btn-white:hover { background: var(--paper-deep); }
.btn-light-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.btn-light-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

/* ---------- Top bar ---------- */
.topbar { background: var(--teal-ink); color: rgba(255, 255, 255, 0.85); font-size: 0.78rem; }
.topbar-inner {
  max-width: var(--container); margin: 0 auto; padding: 8px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.topbar a { color: rgba(255, 255, 255, 0.9); }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { color: var(--steel); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--hairline); box-shadow: 0 8px 24px rgba(8, 48, 63, 0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 13px var(--gutter); max-width: var(--container); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--teal-ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #9cc4d8;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 0;
  flex-shrink: 0;
}
.logo-text { line-height: 1.25; }
.logo-text .firm { font-family: var(--serif); font-size: 0.98rem; font-weight: 700; color: var(--ink); display: block; white-space: nowrap; }
.logo-text .tag { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); display: block; margin-top: 2px; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 24px; white-space: nowrap; }
.nav-links a {
  font-size: 0.88rem; font-weight: 600; color: var(--ink-soft);
  padding: 5px 0; position: relative; transition: color 0.2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.nav-phone { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--teal); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 20px var(--gutter) 26px; gap: 14px;
    border-bottom: 1px solid var(--hairline); box-shadow: 0 16px 40px rgba(8, 48, 63, 0.1);
  }
}

/* ---------- Hero banner (classic, like her original) ---------- */
.hero {
  position: relative;
  min-height: clamp(380px, 52vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 30s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6, 34, 48, 0.9) 0%, rgba(10, 61, 84, 0.75) 50%, rgba(15, 89, 119, 0.45) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: clamp(48px, 7vw, 84px) 0; color: #fff; }
.hero-content .eyebrow { color: #9cc4d8; }
.hero-content h1 { color: #fff; margin: 16px 0 16px; }
.hero-content .lede { color: rgba(255, 255, 255, 0.9); font-size: 1.05rem; max-width: 52ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 18px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.75); }
.hero-note strong { color: #fff; }

/* ---------- Trust bar ---------- */
.trust-bar { border-bottom: 1px solid var(--hairline); background: var(--paper-deep); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 20px; padding: 16px 0; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ---------- Practice areas ---------- */
.pa-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pa-card {
  background: var(--card, #fff);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 28px 28px 30px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.pa-card:hover { box-shadow: 0 10px 30px rgba(8, 48, 63, 0.08); border-color: rgba(15, 89, 119, 0.35); transform: translateY(-2px); }
.pa-icon {
  width: 46px; height: 46px; border-radius: 3px;
  background: rgba(15, 89, 119, 0.08); color: var(--teal);
  display: grid; place-items: center; margin-bottom: 16px;
}
.pa-card h3 { margin-bottom: 10px; }
.pa-card p { font-size: 0.92rem; margin-bottom: 16px; }
.pa-link { font-weight: 700; font-size: 0.85rem; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }
.pa-link svg { transition: transform 0.2s ease; }
.pa-link:hover svg { transform: translateX(3px); }

/* ---------- Stats band ---------- */
.stats-band { background: var(--teal-3); color: rgba(255, 255, 255, 0.85); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px 0; }
.stat .num { font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; color: #fff; line-height: 1.1; display: block; font-variant-numeric: tabular-nums; }
.stat .lbl { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 8px; display: block; color: #9cc4d8; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.about-photo { border-radius: 4px; overflow: hidden; border: 1px solid var(--hairline); }
.about-photo img { width: 100%; height: clamp(360px, 40vw, 460px); object-fit: cover; object-position: 50% 12%; }
.about-caption { margin-top: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--hairline); border-left: 3px solid var(--teal); border-radius: 3px; }
.about-caption .name { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--ink); display: block; }
.about-caption .role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.bio-block { margin-top: 18px; }
.bio-block h4 { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin: 18px 0 10px; }
.bio-block ul { display: grid; gap: 8px; }
.bio-block li { font-size: 0.9rem; display: flex; gap: 9px; align-items: baseline; color: var(--ink-soft); }
.bio-block li::before { content: "—"; color: var(--teal); font-weight: 700; }
.about-copy p { margin-top: 16px; }
.check-list { display: grid; gap: 12px; margin-top: 24px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.check-list svg { flex-shrink: 0; margin-top: 4px; color: var(--teal); }

/* ---------- Quote ---------- */
.quote-band { text-align: center; background: var(--paper-deep); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.quote-band blockquote {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.5;
  color: var(--ink); max-width: 780px; margin: 0 auto; font-weight: 500; text-wrap: balance;
}
.quote-attr { margin-top: 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); }

/* ---------- FAQ teaser ---------- */
.faq-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.faq-preview-list { display: grid; border-top: 1px solid var(--hairline); }
.faq-preview-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 4px; border-bottom: 1px solid var(--hairline);
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--ink);
  transition: color 0.2s ease, padding 0.2s ease;
}
.faq-preview-item:hover { color: var(--teal); padding-left: 8px; }
.faq-preview-item svg { flex-shrink: 0; color: var(--teal); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--teal-ink); color: rgba(255, 255, 255, 0.85); position: relative; overflow: hidden; }
.cta-orbit {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  width: min(60vw, 560px);
  animation: ctaOrbit 22s linear infinite;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-orbit::before, .cta-orbit::after {
  content: ""; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; position: absolute; inset: 14%;
}
.cta-orbit::after { inset: 28%; }
.cta-orbit-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 48, 63, 0.5);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #9cc4d8;
  letter-spacing: 0.06em;
  z-index: 1;
}
@keyframes ctaOrbit { to { transform: translate(-50%, -50%) rotate(360deg); } }
.cta-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(28px, 4vw, 56px); align-items: center; position: relative; z-index: 2; }
.cta-inner h2 { color: #fff; }
.cta-inner .eyebrow { color: #9cc4d8; }
.cta-inner p { color: rgba(255, 255, 255, 0.8); }
.cta-phone { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 1.9rem); font-weight: 700; color: #fff; display: block; margin: 8px 0 4px; }
.cta-phone:hover { color: #9cc4d8; }
.cta-fee { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 16px; margin-top: 20px; max-width: 54ch; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-ink); color: rgba(255, 255, 255, 0.72); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-grid a:hover { color: #fff; }
.footer-about .logo { margin-bottom: 16px; }
.footer-about .logo-mark { background: rgba(8, 48, 63, 0.6); border-color: rgba(255, 255, 255, 0.18); color: #9cc4d8; }
.footer-about .logo-text .firm { color: #fff; }
.footer-about .logo-text .tag { color: #9cc4d8; }
.footer-about p { font-size: 0.88rem; max-width: 40ch; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.78rem; }
.footer-bottom a { color: rgba(255, 255, 255, 0.55); }
.footer-bottom a:hover { color: #fff; }
.disclaimer { font-size: 0.72rem; color: rgba(255, 255, 255, 0.42); max-width: 100%; margin-top: 18px; line-height: 1.6; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: var(--teal-3); color: #fff; padding: clamp(40px, 5.5vw, 64px) 0; }
.page-hero h1 { color: #fff; margin: 12px 0 14px; }
.page-hero .lead { color: rgba(255, 255, 255, 0.85); max-width: 60ch; font-size: 1rem; }
.breadcrumb { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #9cc4d8; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: #9cc4d8; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span:last-child { color: rgba(255, 255, 255, 0.85); }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(32px, 4vw, 56px); align-items: start; }
.faq-main { min-width: 0; }
.faq-intro p { font-size: 1rem; margin-bottom: 1.1em; }
.faq-intro { padding-bottom: 18px; border-bottom: 1px solid var(--hairline); }
.faq-group { margin-top: 40px; }
.faq-group > h2 { display: flex; align-items: baseline; gap: 12px; padding-bottom: 14px; border-bottom: 2px solid var(--teal); margin-bottom: 4px; }
.faq-group > h2 .grp-num { font-size: 1rem; color: var(--teal); font-weight: 700; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 20px 40px 20px 4px; position: relative;
  font-family: var(--serif); font-size: 1.08rem; font-weight: 700; color: var(--ink);
  transition: color 0.2s ease; display: block;
}
.faq-q:hover { color: var(--teal); }
.faq-q .faq-icon { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border: 1px solid var(--hairline); border-radius: 50%; display: grid; place-items: center; transition: all 0.2s ease; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after { content: ""; position: absolute; background: var(--teal); transition: transform 0.2s ease; }
.faq-q .faq-icon::before { width: 12px; height: 1.5px; }
.faq-q .faq-icon::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-q { color: var(--teal); }
.faq-item.open .faq-icon { background: var(--teal); border-color: var(--teal); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 44px 22px 4px; font-size: 0.95rem; }
.faq-a-inner p + p { margin-top: 0.8em; }
.faq-a-inner ul { list-style: none; display: grid; gap: 7px; margin: 12px 0; }
.faq-a-inner ul li { display: flex; gap: 9px; align-items: baseline; }
.faq-a-inner ul li::before { content: "—"; color: var(--teal); font-weight: 700; }
.faq-a-inner a { color: var(--teal); font-weight: 600; }
.faq-a-inner a:hover { text-decoration: underline; }

.faq-side { position: sticky; top: 90px; display: grid; gap: 20px; }
.side-card { background: #fff; border: 1px solid var(--hairline); border-top: 3px solid var(--teal); border-radius: 3px; padding: 26px; }
.side-card .side-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.side-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.side-card p { font-size: 0.9rem; }
.side-card .btn { width: 100%; margin-top: 16px; }
.side-phone { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--teal); display: block; margin-top: 12px; }
.side-phone:hover { color: var(--teal-2); }
.side-list { display: grid; }
.side-list a { padding: 10px 0; border-bottom: 1px solid var(--hairline); font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); display: flex; justify-content: space-between; align-items: center; transition: color 0.2s ease, padding 0.2s ease; }
.side-list a:hover { color: var(--teal); padding-left: 6px; }
.side-list a svg { color: var(--teal); }

/* ---------- Reveal (subtle) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* Word reveal — hero headline words stagger in */
.word-reveal { display: inline-block; opacity: 0; transform: translateY(0.5em); transition: opacity 0.6s ease, transform 0.6s ease; }
.word-reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal, .word-reveal { opacity: 1; transform: none; }
  .hero-bg { animation: none; }
}

/* ---------- Contact form ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid, .faq-teaser-grid, .cta-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 380px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-side { position: static; order: -1; }
}
@media (max-width: 720px) {
  .pa-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }

  /* ---- Mobile header: prevent horizontal overflow ---- */
  .header-inner { gap: 8px; padding-top: 10px; padding-bottom: 10px; }
  .logo { gap: 8px; min-width: 0; }
  .logo-mark { width: 36px; height: 36px; font-size: 0.92rem; }
  .logo-text { min-width: 0; }
  .logo-text .firm { font-size: 0.82rem; white-space: normal; line-height: 1.2; }
  .logo-text .tag { display: none; }
  .nav { gap: 8px; }
  .nav-cta .btn { display: none; }
  .nav-cta { gap: 2px; }
  .nav-toggle { padding: 6px; }

  /* ---- Mobile hero ---- */
  .hero-content { max-width: 100%; }
  .hero .eyebrow { font-size: 0.62rem; letter-spacing: 0.14em; }
  .hero-ctas { flex-wrap: wrap; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* ---- Mobile topbar ---- */
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-right { gap: 12px; flex-wrap: wrap; justify-content: center; }

  /* ---- Mobile contact form ---- */
  .form-row { grid-template-columns: 1fr; }
}
