/* ============================================================
   GAPERSONALINJURYLAWYER.COM — Kenneth S. Nugent, P.C.
   Unified Design System — All Pages
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #0A1F44;
  --navy-deep:   #061229;
  --navy-mid:    #142d5e;
  --red:         #CC0000;
  --red-dark:    #990000;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --silver:      #E8ECF2;
  --gray-light:  #D1D8E4;
  --gray-mid:    #8A9AB5;
  --gray:        #8A9AB5;
  --gray-text:   #3D4F6B;
  --body:        #3D4F6B;
  --gold:        #C8A84B;

  --font-display: Georgia, 'Times New Roman', serif;
  --font-body:    Arial, 'Helvetica Neue', sans-serif;

  --container:   1200px;
  --radius:      8px;

  --shadow-sm:  0 2px 8px  rgba(10,31,68,.10);
  --shadow-md:  0 4px 20px rgba(10,31,68,.15);
  --shadow-lg:  0 8px 40px rgba(10,31,68,.20);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); font-size: 17px; line-height: 1.75;
        color: var(--gray-text); background: var(--white); }
img   { max-width: 100%; height: auto; display: block; }
a     { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-dark); text-decoration: underline; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); color: var(--navy); line-height: 1.25; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem);   font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem);font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1.1em; }
ul, ol { padding-left: 1.4em; margin-bottom: 1.1em; }
li { margin-bottom: .4em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER  (works on all pages)
═══════════════════════════════════════════════════════════ */
#site-header,
header:not(.skip) {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

/* top announcement bar */
.header-top {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  text-align: center;
  padding: 7px 24px;
}
.header-top a { color: var(--gold); font-weight: 600; }

/* logo + nav row */
.header-main,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  gap: 16px;
}

/* logo */
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-name   { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
               color: var(--white); line-height: 1.1; }
.logo-tagline,
.logo-tag    { font-size: .7rem; color: var(--gold); letter-spacing: .08em;
               text-transform: uppercase; }

/* nav */
.main-nav,
nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

/* nav items wrapper (subpage generator uses .nav-item) */
.nav-item { position: relative; }

.nav-link {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 4px;
  transition: background .2s, color .2s;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,.1); color: var(--white); text-decoration: none; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 700;
  border-radius: 4px;
  padding: 8px 16px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; text-decoration: none; }

/* dropdowns — both .nav-dropdown (homepage) and .nav-item (subpages) */
.nav-dropdown,
.nav-item { position: relative; }

.nav-dropdown > .nav-link::after,
.nav-item > .nav-link[data-toggle]::after { content: ' ▾'; font-size: .65rem; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--red);
  border-radius: 0 0 6px 6px;
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  z-index: 500;
  padding: 6px 0;
}
.nav-dropdown:hover .dropdown-menu,
.nav-item:hover      .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 18px;
  color: var(--navy);
  font-size: .875rem;
  transition: background .15s;
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--red); text-decoration: none; }

/* hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE HERO
═══════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #1a3570 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-accent {
  position: absolute; top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(to bottom, var(--red), #ff4444, var(--red-dark));
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,0,0,.15); border: 1px solid rgba(204,0,0,.4);
  color: #ff8888; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero-badge::before { content: '★'; color: var(--gold); }
.hero h1      { color: var(--white); margin-bottom: 16px; }
.hero h1 span { color: #ff8080; }
.hero-sub     { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 28px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* homepage stats bar inside hero */
.hero-stats   { display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 1.9rem; font-weight: 700;
                    color: var(--white); font-family: var(--font-display); line-height: 1; }
.hero-stat span   { font-size: .75rem; color: var(--gold); text-transform: uppercase; letter-spacing: .07em; }

/* hero CTA card */
.hero-card         { background: var(--white); border-radius: var(--radius); padding: 30px 26px;
                     box-shadow: var(--shadow-lg); border-top: 4px solid var(--red); }
.hero-card h3      { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.hero-card p       { color: var(--gray-text); font-size: .875rem; margin-bottom: 18px; }
.hero-card .phone-big { font-size: 1.6rem; color: var(--navy); }

/* ═══════════════════════════════════════════════════════════
   SUBPAGE HERO  (.page-hero)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1a3570 100%);
  color: var(--white);
  padding: 56px 0 48px;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(to bottom, var(--red), var(--red-dark));
}
.page-hero .container { position: relative; }

.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero h1    { color: var(--white); margin-bottom: 14px; }
.page-hero .hero-sub { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 28px; max-width: 640px; }

/* stat strip inside page-hero */
.page-hero .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 28px;
  background: rgba(0,0,0,.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.page-hero .hero-stat {
  flex: 1;
  min-width: 130px;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.page-hero .hero-stat:last-child { border-right: none; }

.stat-num   { display: block; font-family: var(--font-display); font-size: 1.6rem;
              font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { display: block; font-size: .7rem; color: var(--gold);
              text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* CTA buttons inside hero */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .15s;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-lg { font-size: 1rem; padding: 14px 32px; }

.btn-red          { background: var(--red);  color: var(--white); border-color: var(--red); }
.btn-red:hover    { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn-gold         { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover   { background: #b8962e; border-color: #b8962e; color: var(--navy); }

.btn-navy         { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover   { background: var(--navy-deep); color: var(--white); }

.btn-outline      { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover{ background: var(--navy); color: var(--white); }

.btn-outline-white       { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); }

/* legacy aliases */
.btn-primary { background: var(--red); color: var(--white); display: inline-block; font-weight: 700;
               font-size: 1rem; padding: 14px 30px; border-radius: 4px; text-decoration: none;
               transition: background .2s; }
.btn-primary:hover { background: var(--red-dark); color: var(--white); text-decoration: none; }

.btn-white       { display: inline-block; background: var(--white); color: var(--red); font-weight: 700;
                   padding: 13px 32px; border-radius: 4px; font-size: 1rem; margin: 0 6px 8px;
                   text-decoration: none; transition: transform .15s, box-shadow .15s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2);
                   color: var(--red-dark); text-decoration: none; }

.btn-outline-wh  { display: inline-block; border: 2px solid rgba(255,255,255,.65); color: var(--white);
                   font-weight: 600; padding: 11px 28px; border-radius: 4px; font-size: 1rem;
                   margin: 0 6px 8px; text-decoration: none; transition: border-color .2s, background .2s; }
.btn-outline-wh:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   PHONE DISPLAY
═══════════════════════════════════════════════════════════ */
.phone-big {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  text-decoration: none;
  margin: 10px 0 16px;
}
.phone-big:hover { color: var(--gold); text-decoration: none; }
.hero-card .phone-big { color: var(--navy) !important; }
.hero-card .phone-big:hover { color: var(--red) !important; }

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════ */
.trust-bar   { background: var(--silver); border-bottom: 1px solid var(--gray-light); padding: 16px 0; }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; }
.trust-item  { display: flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 600; color: var(--navy); }
.trust-item .icon { color: var(--red); font-size: 1.1rem; }

/* ═══════════════════════════════════════════════════════════
   GENERIC SECTIONS
═══════════════════════════════════════════════════════════ */
.section      { padding: 72px 0; }
.section-alt  { background: var(--off-white); }
.section-navy { background: var(--navy); }
.section-navy h2,.section-navy h3,.section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,.82); }

.section-header        { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow { display: inline-block; font-size: .76rem; font-weight: 700;
                            letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.section-header h2     { margin-bottom: 14px; }
.section-header p      { color: var(--gray-text); max-width: 580px; margin: 0 auto; font-size: 1rem; }
.section-navy .section-header p { color: rgba(255,255,255,.75); }

/* eyebrow utility */
.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT SECTION  (wraps subpage body)
═══════════════════════════════════════════════════════════ */
.content-section {
  padding: 56px 0 72px;
}

/* two-column grid: main + sidebar */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.content-body { min-width: 0; }

/* ── Article typography ─────────────────────────── */
.content-body h2,
.article-content h2 {
  color: var(--navy);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin: 40px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--red);
}
.content-body h2:first-child,
.article-content h2:first-child { margin-top: 0; }

.content-body h3,
.article-content h3 { color: var(--navy); font-size: 1.15rem; margin: 28px 0 10px; }

.content-body p,
.article-content p  { color: var(--gray-text); margin-bottom: 1.1em; }

.content-body ul,
.content-body ol,
.article-content ul,
.article-content ol { margin-bottom: 1.1em; padding-left: 1.4em; }

.content-body li,
.article-content li { color: var(--gray-text); margin-bottom: .5em; }

/* callout boxes */
.callout,
.article-content .callout {
  background: var(--off-white);
  border-left: 4px solid var(--navy);
  border-radius: 0 6px 6px 0;
  padding: 18px 20px;
  margin: 24px 0;
}
.callout-red,
.article-content .callout-red { background: #fff4f4; border-left-color: var(--red); }
.callout strong,
.article-content .callout strong { color: var(--navy); display: block; margin-bottom: 6px; }

/* inline stat boxes */
.stat-box  { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0; }
.stat-item { background: var(--navy); color: var(--white); border-radius: var(--radius);
             padding: 20px 22px; flex: 1; min-width: 130px; text-align: center; }
.stat-item strong { display: block; font-size: 1.9rem; color: var(--white);
                    font-family: var(--font-display); line-height: 1; margin-bottom: 4px; }
.stat-item span   { font-size: .75rem; color: rgba(255,255,255,.7);
                    text-transform: uppercase; letter-spacing: .06em; }

/* ═══════════════════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════════════════ */
aside { position: sticky; top: 100px; }

.sidebar-cta,
.sidebar-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 24px;
}

.sidebar-cta h3,
.sidebar-cta h4,
.sidebar-card h3,
.sidebar-card h4  { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.sidebar-cta p,
.sidebar-card p   { color: rgba(255,255,255,.75); font-size: .875rem; margin-bottom: 14px; }

/* phone number inside sidebar */
.sidebar-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 14px;
}
.sidebar-phone:hover { color: var(--white); text-decoration: none; }

.sidebar-divider { border: none; border-top: 1px solid rgba(255,255,255,.15); margin: 18px 0; }

.sidebar-offices h4 { color: var(--white); font-size: .85rem; margin-bottom: 10px; }
.sidebar-offices ul { list-style: none; padding: 0; margin: 0; }
.sidebar-offices li { padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-offices li:last-child { border-bottom: none; }
.sidebar-offices a  { color: rgba(255,255,255,.75); font-size: .85rem; transition: color .15s; }
.sidebar-offices a:hover { color: var(--white); text-decoration: none; }

/* legacy sidebar classes */
.sidebar-card { background: var(--white); border: 1px solid var(--gray-light);
                border-top: 4px solid var(--red); }
.sidebar-card h4 { color: var(--navy); }
.sidebar-card p  { color: var(--gray-text); }
.sidebar-phone-legacy { font-size: 1.4rem; font-weight: 700; color: var(--red);
                        display: block; margin-bottom: 8px;
                        font-family: var(--font-display); text-decoration: none; }
.sidebar-btn { display: block; background: var(--navy); color: var(--white);
               text-align: center; padding: 11px; border-radius: 4px;
               font-weight: 700; font-size: .9rem; margin-top: 12px; text-decoration: none; transition: background .2s; }
.sidebar-btn:hover { background: var(--navy-deep); color: var(--white); text-decoration: none; }

/* PA link list in sidebar */
.pa-list-sidebar          { list-style: none; padding: 0; margin: 0; }
.pa-list-sidebar li       { border-bottom: 1px solid var(--gray-light); }
.pa-list-sidebar li:last-child { border-bottom: none; }
.pa-list-sidebar a        { display: block; padding: 7px 0; font-size: .875rem; color: var(--navy); }
.pa-list-sidebar a:hover  { color: var(--red); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-list { }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item:last-child { border-bottom: none; }

/* homepage style: .faq-q / .faq-a */
.faq-q {
  font-weight: 700; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; font-size: 1rem; padding: 20px 0;
}
.faq-q::after { content: '+'; color: var(--red); font-size: 1.35rem; line-height: 1; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 0 18px; font-size: .93rem; color: var(--gray-text); }
.faq-item.open .faq-a { display: block; }

/* subpage style: button.faq-question / div.faq-answer */
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.faq-question::after { content: '+'; color: var(--red); font-size: 1.35rem; line-height: 1; flex-shrink: 0; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding: 0 0 18px; font-size: .93rem; color: var(--gray-text); }
.faq-item.open .faq-answer { display: block; }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE CARDS
═══════════════════════════════════════════════════════════ */
/* Practice area cards */
.pa-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.pa-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); padding: 26px 22px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  text-decoration: none; display: block;
}
.pa-card:hover { box-shadow: var(--shadow-md); border-color: var(--red); transform: translateY(-3px); text-decoration: none; }
.pa-card-icon  { width: 46px; height: 46px; background: linear-gradient(135deg, var(--red), var(--red-dark));
                 border-radius: 10px; display: flex; align-items: center; justify-content: center;
                 font-size: 1.3rem; margin-bottom: 14px; }
.pa-card h3    { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.pa-card p     { font-size: .875rem; color: var(--gray-text); margin-bottom: 10px; line-height: 1.55; }
.pa-card .card-link { font-size: .82rem; font-weight: 700; color: var(--red); }

/* Location cards */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 18px; }
.loc-card { background: var(--navy-mid); border-radius: var(--radius); padding: 22px 18px;
            text-decoration: none; transition: background .2s, transform .2s; display: block; }
.loc-card:hover { background: var(--red-dark); transform: translateY(-2px); text-decoration: none; }
.loc-card .city  { font-size: 1.05rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 3px; }
.loc-card .state { font-size: .8rem; color: rgba(255,255,255,.6); }
.loc-card .arrow { color: var(--gold); font-weight: 700; margin-top: 10px; font-size: .85rem; display: block; }

/* About page: location cards */
.loc-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.loc-cards .loc-card { text-align: left; }
.loc-cards .loc-city  { font-size: 1rem; font-weight: 700; color: var(--white); display: block; }
.loc-cards .loc-phone { font-size: .85rem; color: var(--gold); display: block; margin-top: 4px; }
.loc-cards .loc-region{ font-size: .78rem; color: rgba(255,255,255,.6); display: block; margin-top: 2px; }

/* Location service grid (subpage) */
.loc-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; margin: 24px 0; }
.loc-service-card { background: var(--off-white); border-radius: 6px; padding: 16px 18px;
                    border: 1px solid var(--gray-light); text-decoration: none; display: block; transition: border-color .2s; }
.loc-service-card:hover { border-color: var(--red); text-decoration: none; }
.loc-service-card h4 { color: var(--navy); font-size: .92rem; margin-bottom: 4px; }
.loc-service-card p  { font-size: .8rem; color: var(--gray-text); margin: 0; }

/* Why-choose items */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(275px, 1fr)); gap: 30px; }
.why-item { display: flex; gap: 16px; }
.why-icon { flex-shrink: 0; width: 50px; height: 50px; background: rgba(204,0,0,.1); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--red); }
.why-item h4 { color: var(--navy); margin-bottom: 5px; }
.why-item p  { font-size: .875rem; color: var(--gray-text); margin: 0; }

/* Testimonials */
.testimonial-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 26px; }
.testimonial-card  { background: var(--white); border-radius: var(--radius); padding: 26px 22px;
                     border-left: 4px solid var(--red); box-shadow: var(--shadow-sm); }
.testimonial-stars { color: var(--gold); font-size: .95rem; margin-bottom: 10px; }
.testimonial-card blockquote { font-style: italic; color: var(--gray-text); margin-bottom: 14px;
                                font-size: .92rem; line-height: 1.7; }
.testimonial-author   { font-weight: 700; color: var(--navy); font-size: .875rem; }
.testimonial-location { color: var(--gray-mid); font-size: .8rem; }

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; justify-content: center; }
.process-step  { text-align: center; padding: 30px 18px; }
.step-num      { width: 54px; height: 54px; background: var(--red); color: var(--white); border-radius: 50%;
                 display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
                 font-weight: 700; margin: 0 auto 14px; font-family: var(--font-display); }
.process-step h4 { color: var(--navy); margin-bottom: 7px; }
.process-step p  { font-size: .875rem; color: var(--gray-text); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   CTA BAND / BANNER
═══════════════════════════════════════════════════════════ */
.cta-band,
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.cta-band h2,
.cta-banner h2  { color: var(--white); margin-bottom: 12px; }
.cta-band p,
.cta-banner p   { color: rgba(255,255,255,.88); margin-bottom: 24px; font-size: 1rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-banner .eyebrow { color: var(--gold) !important; display: block; margin-bottom: 10px; }
.btn-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer,
#site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-stripe {
  height: 5px;
  background: linear-gradient(to right, var(--red-dark), var(--red), var(--gold));
  margin-top: 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand { }
.footer-brand .logo-name    { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-tagline { color: var(--gold); }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: 10px; color: rgba(255,255,255,.65); }

/* footer phone — both class names */
.footer-phone,
.footer-brand a[href^="tel"] {
  display: block; font-size: 1.25rem; font-weight: 700;
  color: var(--gold) !important; margin-top: 14px; text-decoration: none;
  font-family: var(--font-display);
}
.footer-phone:hover,
.footer-brand a[href^="tel"]:hover { color: var(--white) !important; text-decoration: none; }
.footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--white);
                    font-weight: 700; display: block; margin-bottom: 4px; }

.footer-col h4,
.footer-col h5 { color: var(--white); font-size: .8rem; font-weight: 700;
                 letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul   { list-style: none; padding: 0; margin: 0; }
.footer-col li   { margin-bottom: 6px; }
.footer-col a    { color: rgba(255,255,255,.6); font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--white); }

.disclaimer {
  background: rgba(0,0,0,.2);
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  line-height: 1.6;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE TOPBAR
═══════════════════════════════════════════════════════════ */
.topbar { background: var(--navy-deep); color: var(--silver); font-size: .82rem; padding: 8px 0; }
.topbar a { color: var(--gold); font-weight: 600; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }

/* ═══════════════════════════════════════════════════════════
   SITEMAP
═══════════════════════════════════════════════════════════ */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 36px; margin-top: 48px; }
.sitemap-col h3 { color: var(--navy); font-size: .95rem; font-weight: 700; text-transform: uppercase;
                  letter-spacing: .08em; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 3px solid var(--red); }
.sitemap-col ul { list-style: none; padding: 0; margin: 0; }
.sitemap-col li { padding: 5px 0; border-bottom: 1px solid var(--gray-light); }
.sitemap-col li:last-child { border-bottom: none; }
.sitemap-col a  { color: var(--navy); font-size: .9rem; }
.sitemap-col a:hover { color: var(--red); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.office-cards   { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; margin-top: 24px; }
.office-card    { background: var(--off-white); border-radius: var(--radius); padding: 20px;
                  border-left: 4px solid var(--red); }
.office-card .oc-city   { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.office-card .oc-county { font-size: .82rem; color: var(--gray-mid); margin-bottom: 6px; }
.office-card .oc-phone  { font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--red); text-decoration: none; }
.office-card .oc-phone:hover { color: var(--red-dark); }
.office-card .oc-address{ font-size: .82rem; color: var(--gray-text); margin-top: 6px; line-height: 1.45; }

/* ═══════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════ */
.text-red    { color: var(--red); }
.text-navy   { color: var(--navy); }
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.mt-0  { margin-top: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.fw-bold { font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .content-grid  { grid-template-columns: 1fr; }
  aside          { position: static; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  /* hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }

  /* page-hero stat strip stacks 2-up */
  .page-hero .hero-stat { min-width: calc(50% - 8px); }

  /* nav */
  .main-nav,
  nav { display: none; }
  .main-nav.open,
  nav.open {
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 12px 0; gap: 2px; width: 100%;
  }
  .main-nav.open .nav-item,
  nav.open .nav-dropdown { width: 100%; }
  .dropdown-menu { position: static; box-shadow: none; border: none;
                   border-left: 3px solid var(--red); border-top: none;
                   padding: 4px 0 4px 12px; margin-top: 4px; background: rgba(255,255,255,.05); }
  .dropdown-menu a { color: rgba(255,255,255,.8); }
  .dropdown-menu a:hover { color: var(--white); background: transparent; }

  .hamburger { display: block; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { gap: 16px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .btn-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .section   { padding: 48px 0; }
  .content-section { padding: 40px 0 56px; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero .hero-stats { display: none; }
  .hero-stats { gap: 18px; }
  .process-steps { grid-template-columns: 1fr; }
  .stat-box  { flex-direction: column; }
  .hero-ctas { flex-direction: column; }
  .hero-actions { flex-direction: column; }
}
