/* ============================================================
   NH NOT GUILTY — SHARED INNER PAGE STYLES
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0a1628;
  --navy-mid:    #132040;
  --navy-light:  #1c2f5a;
  --gold:        #c8a951;
  --gold-bright: #e2c46e;
  --gold-pale:   #f5edd4;
  --gold-dark:   #9d7f30;
  --white:       #ffffff;
  --off:         #f7f5f0;
  --charcoal:    #1a1a1a;
  --grey:        #5a5a5a;
  --light-grey:  #e8e5df;
  --border-gold: rgba(200,169,81,.22);
  --border-lite: rgba(255,255,255,.07);
  --shadow-gold: 0 8px 32px rgba(200,169,81,.22);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--charcoal); background: var(--white); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section-label {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 14px;
}
.divider { width: 52px; height: 2px; background: var(--gold); margin: 18px 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  border: 2px solid transparent; border-radius: 2px; cursor: pointer;
  transition: all .22s ease; white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-navy  { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   HEADER
============================================================ */
.site-header { position: fixed; inset: 0 0 auto; z-index: 900; background: var(--navy); border-bottom: 1px solid var(--border-gold); transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.5); }

.hdr-topbar { background: var(--navy-mid); padding: 7px 0; border-bottom: 1px solid var(--border-lite); }
.hdr-topbar .container { display: flex; justify-content: flex-end; gap: 28px; }
.hdr-topbar-item { font-size: 12px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 7px; }
.hdr-topbar-item a { color: var(--gold); transition: color .2s; }
.hdr-topbar-item a:hover { color: var(--gold-bright); }
.hdr-topbar-item svg { opacity: .5; flex-shrink: 0; }

.hdr-main { padding: 14px 0; }
.hdr-main .container { display: flex; align-items: center; gap: 20px; }

.site-logo { flex-shrink: 0; }
.site-logo img { height: 62px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.site-nav > li { position: relative; }
.site-nav > li > a { display: block; padding: 8px 13px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.8); transition: color .2s; white-space: nowrap; }
.site-nav > li > a:hover { color: var(--gold); }

.dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px; background: var(--navy-mid); border-top: 2px solid var(--gold); box-shadow: 0 12px 40px rgba(0,0,0,.45); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .22s ease; z-index: 200; }
.site-nav > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 11px 18px; font-size: 12.5px; color: rgba(255,255,255,.72); border-bottom: 1px solid var(--border-lite); transition: all .18s; }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--gold); padding-left: 26px; background: rgba(200,169,81,.06); }

.hdr-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.hdr-phone { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--gold); white-space: nowrap; transition: color .2s; }
.hdr-phone:hover { color: var(--gold-bright); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all .3s; border-radius: 1px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-fab { display: none; position: fixed; bottom: 24px; right: 24px; z-index: 800; width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: var(--navy); align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 6px 24px rgba(200,169,81,.45); }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  background: var(--navy);
  padding: 160px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/dui-arrest.jpg') center/cover no-repeat;
  opacity: .08;
}
.page-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb-sep { opacity: .4; }

.page-hero h1 { font-size: clamp(30px, 4vw, 52px); color: var(--white); margin-bottom: 16px; max-width: 740px; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,.62); max-width: 600px; line-height: 1.7; }

.hero-gold-bar { width: 52px; height: 3px; background: var(--gold); margin: 20px 0; }

/* ============================================================
   INNER CONTENT LAYOUT
============================================================ */
.inner-wrap { padding: 80px 0 100px; background: var(--white); }
.inner-wrap.bg-off { background: var(--off); }

.inner-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

/* Main content */
.inner-content h2 { font-size: clamp(22px, 2.5vw, 32px); color: var(--navy); margin: 36px 0 14px; }
.inner-content h2:first-child { margin-top: 0; }
.inner-content h3 { font-size: clamp(18px, 2vw, 24px); color: var(--navy); margin: 28px 0 12px; }
.inner-content h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; color: var(--navy); margin: 22px 0 10px; text-transform: uppercase; }
.inner-content p  { font-size: 16px; color: var(--grey); line-height: 1.85; margin-bottom: 18px; }
.inner-content p strong { color: var(--charcoal); }
.inner-content ul, .inner-content ol { margin: 0 0 20px 20px; }
.inner-content ul { list-style: disc; }
.inner-content ol { list-style: decimal; }
.inner-content li { font-size: 15.5px; color: var(--grey); line-height: 1.75; margin-bottom: 8px; }
.inner-content a { color: var(--gold-dark); font-weight: 600; transition: color .2s; }
.inner-content a:hover { color: var(--gold); }

.content-img { width: 100%; border-radius: 3px; margin: 28px 0; box-shadow: 0 8px 32px rgba(0,0,0,.1); }

/* Inline CTA */
.inline-cta {
  background: var(--navy);
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  border-radius: 3px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.inline-cta p { margin: 0; color: var(--white); font-size: 16px; font-weight: 600; flex: 1; }
.inline-cta a { flex-shrink: 0; }

/* Penalty table */
.penalty-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 14px; }
.penalty-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.penalty-table td { padding: 12px 16px; border-bottom: 1px solid var(--light-grey); color: var(--grey); vertical-align: top; }
.penalty-table tr:nth-child(even) td { background: var(--off); }
.penalty-table td:first-child { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* Penalty box */
.penalty-box { background: var(--off); border: 1px solid var(--light-grey); border-radius: 4px; padding: 28px 32px; margin: 20px 0; }
.penalty-box h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--navy); margin-bottom: 14px; text-transform: none; letter-spacing: 0; font-weight: 700; border-bottom: 2px solid var(--gold); padding-bottom: 10px; }
.penalty-box p, .penalty-box li { font-size: 14px; }

/* Pledge list */
.pledge-list { margin: 0 0 28px; }
.pledge-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--light-grey); font-size: 15px; color: var(--grey); }
.pledge-list li:first-child { border-top: 1px solid var(--light-grey); }
.pledge-check { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   SIDEBAR
============================================================ */
.sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 24px; }

.sidebar-card { background: var(--white); border: 1px solid var(--light-grey); border-radius: 4px; overflow: hidden; }
.sidebar-card-header { background: var(--navy); padding: 18px 22px; }
.sidebar-card-header h3 { font-size: 16px; color: var(--white); font-family: 'Playfair Display', serif; }
.sidebar-card-header p { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; }
.sidebar-card-body { padding: 22px; }

/* Sidebar form */
.sb-form .form-group { margin-bottom: 12px; }
.sb-form label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 5px; }
.sb-form input, .sb-form textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--light-grey); border-radius: 2px;
  font-family: 'Inter', sans-serif; font-size: 13.5px; color: var(--charcoal);
  background: #fafafa; transition: border-color .2s, background .2s;
}
.sb-form input:focus, .sb-form textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.sb-form textarea { min-height: 80px; resize: vertical; }
.sb-submit { width: 100%; padding: 13px; background: var(--gold); color: var(--navy); border: none; border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all .22s; margin-top: 4px; }
.sb-submit:hover { background: var(--gold-bright); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.sb-note { font-size: 10px; color: #aaa; text-align: center; margin-top: 8px; line-height: 1.5; }

/* Sidebar phone */
.sb-phone { display: flex; align-items: center; gap: 14px; padding: 18px 22px; background: var(--off); border: 1px solid var(--light-grey); border-radius: 4px; }
.sb-phone-icon { font-size: 28px; flex-shrink: 0; }
.sb-phone-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.sb-phone-num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); }
.sb-phone-num a { color: var(--navy); transition: color .2s; }
.sb-phone-num a:hover { color: var(--gold-dark); }

/* Sidebar quick links */
.sb-links h4 { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sb-links ul { list-style: none; }
.sb-links li { border-bottom: 1px solid var(--light-grey); }
.sb-links li:last-child { border-bottom: none; }
.sb-links a { display: flex; align-items: center; gap: 8px; padding: 10px 0; font-size: 13.5px; color: var(--grey); transition: color .2s; }
.sb-links a::before { content: '›'; color: var(--gold); font-size: 18px; line-height: 1; flex-shrink: 0; }
.sb-links a:hover { color: var(--navy); }

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--light-grey); border-radius: 3px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: var(--white); border: none; cursor: pointer;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-family: 'Playfair Display', serif; font-size: 17px; color: var(--navy);
  transition: background .2s;
}
.faq-question:hover { background: var(--off); }
.faq-question.open { background: var(--navy); color: var(--white); }
.faq-icon { flex-shrink: 0; font-size: 22px; font-weight: 300; color: var(--gold); transition: transform .3s; line-height: 1; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 24px; background: var(--off); }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 15px; color: var(--grey); line-height: 1.8; margin-top: 16px; margin-bottom: 0; }
.faq-answer ol, .faq-answer ul { padding-left: 20px; margin-top: 12px; }
.faq-answer li { font-size: 15px; color: var(--grey); line-height: 1.75; margin-bottom: 6px; }

/* ============================================================
   BLOG GRID
============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { display: block; background: var(--white); border: 1px solid var(--light-grey); border-radius: 4px; overflow: hidden; transition: all .28s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; filter: brightness(.92) saturate(.85); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-card-body h3 { font-size: 18px; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.blog-card-body p { font-size: 14px; color: var(--grey); line-height: 1.65; margin-bottom: 16px; }
.blog-read-more { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.blog-card:hover .blog-read-more { gap: 10px; }

/* ============================================================
   ATTORNEY CARD
============================================================ */
.attorney-card { display: flex; gap: 40px; align-items: flex-start; background: var(--off); border-radius: 4px; padding: 40px; margin-bottom: 40px; border: 1px solid var(--light-grey); }
.attorney-card img { width: 220px; height: 280px; object-fit: cover; object-position: top; border-radius: 3px; flex-shrink: 0; }
.attorney-info h2 { font-size: 28px; color: var(--navy); margin-bottom: 4px; }
.attorney-info .role { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.attorney-info .quote { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--navy-mid); border-left: 3px solid var(--gold); padding-left: 16px; margin-bottom: 18px; }
.attorney-info p { font-size: 15px; color: var(--grey); line-height: 1.8; margin-bottom: 12px; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px; }
.contact-info-box { background: var(--navy); border-radius: 4px; padding: 28px; text-align: center; }
.contact-info-box .icon { font-size: 32px; margin-bottom: 12px; }
.contact-info-box .label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-info-box .value { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); font-weight: 600; line-height: 1.4; }
.contact-info-box .value a { color: var(--white); transition: color .2s; }
.contact-info-box .value a:hover { color: var(--gold); }

.contact-form-card { background: var(--white); border: 1px solid var(--light-grey); border-radius: 4px; padding: 40px; }
.contact-form-card h2 { font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { font-size: 14px; color: var(--grey); margin-bottom: 28px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { margin-bottom: 16px; }
.cf-group label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 6px; }
.cf-group input, .cf-group textarea, .cf-group select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--light-grey); border-radius: 2px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--charcoal); background: #fafafa;
  transition: border-color .2s, background .2s;
}
.cf-group input:focus, .cf-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.cf-group textarea { min-height: 120px; resize: vertical; }
.cf-submit { padding: 16px 36px; background: var(--navy); color: var(--white); border: none; border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all .22s; }
.cf-submit:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,22,40,.3); }
.cf-note { font-size: 11px; color: #aaa; margin-top: 12px; line-height: 1.5; }

.map-wrap { margin-top: 48px; border-radius: 4px; overflow: hidden; border: 1px solid var(--light-grey); }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ============================================================
   FREE EVAL PAGE
============================================================ */
.eval-page .inner-grid { grid-template-columns: 1fr 400px; }
.eval-form-big { background: var(--white); border: 1px solid var(--light-grey); border-radius: 4px; padding: 44px; box-shadow: 0 8px 40px rgba(0,0,0,.06); }
.eval-form-big h2 { font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.eval-form-big > p { font-size: 14px; color: var(--grey); margin-bottom: 28px; line-height: 1.6; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner { background: var(--gold); padding: 56px 0; }
.cta-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-banner h2 { font-size: clamp(22px,3vw,36px); color: var(--navy); margin-bottom: 8px; }
.cta-banner p { font-size: 16px; color: rgba(10,22,40,.68); }
.cta-banner-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: #0e0e0e; padding: 88px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 72px; }
.footer-brand img { height: 68px; width: auto; margin-bottom: 20px; opacity: .9; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.42); line-height: 1.8; margin-bottom: 22px; }
.footer-fb-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.1); padding: 7px 14px; border-radius: 2px; transition: all .2s; }
.footer-fb-link:hover { background: rgba(200,169,81,.1); border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; padding-bottom: 10px; border-bottom: 1px solid rgba(200,169,81,.18); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.42); transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 16px; line-height: 1; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-contact-entry { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.fce-icon { color: var(--gold); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.fce-text { font-size: 13.5px; color: rgba(255,255,255,.42); line-height: 1.5; }
.fce-text a { color: rgba(255,255,255,.65); transition: color .2s; }
.fce-text a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 28px 0; }
.footer-bottom .container { display: flex; align-items: flex-start; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,.25); line-height: 1.7; max-width: 660px; }
.footer-disclaimer a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer-disclaimer a:hover { color: rgba(255,255,255,.5); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.22); white-space: nowrap; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .inner-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .attorney-card { flex-direction: column; }
  .attorney-card img { width: 100%; max-width: 280px; height: auto; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-banner-btns { justify-content: center; }
}

@media (max-width: 768px) {
  .hdr-topbar { display: none; }
  /* topbar hidden → actual header height: 14px padding×2 + 50px logo = 78px */
  .site-nav { position: fixed; top: 78px; left: 0; right: 0; background: var(--navy); flex-direction: column; align-items: stretch; padding: 8px 0 20px; border-top: 2px solid var(--gold); display: none; z-index: 850; max-height: calc(100vh - 78px); overflow-y: auto; }
  .site-nav.open { display: flex; }
  .site-nav > li > a { padding: 13px 24px; border-bottom: 1px solid var(--border-lite); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; background: rgba(0,0,0,.25); display: none; }
  .site-nav > li.open .dropdown { display: block; }
  .hdr-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-fab { display: flex; }
  .site-logo img { height: 50px; }
  .page-hero { padding: 110px 0 48px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .inner-content h2 { font-size: 22px; }
  .inner-content ul, .inner-content ol { margin: 0 0 18px 14px; }
  /* Inline CTA: stack button below text on phones */
  .inline-cta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 20px; }
  /* Penalty tables: horizontal scroll instead of overflow */
  .penalty-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .penalty-table td, .penalty-table th { white-space: normal; min-width: 120px; }
  /* Contact info boxes: full width */
  .contact-info-grid { grid-template-columns: 1fr; }
  /* Attorney card: compact on phone */
  .attorney-card { flex-direction: column; padding: 24px; gap: 20px; }
  .attorney-card img { width: 100%; max-width: 240px; height: auto; }
  /* CTA banner already collapses at 1024px */
}
