/* ==========================================================================
   Gilley Law — Modern Light Theme
   Brand: navy + deep purple + gold accents on white/off-white backgrounds.
   ========================================================================== */

:root {
  /* Brand */
  --navy: #0E1726;
  --navy-deep: #070C18;
  --purple: #3A2456;
  --purple-light: #5B3F7F;
  --purple-tint: #F6F4FA;
  --gold: #C9A646;
  --gold-soft: #E6D8A8;
  --gold-dark: #A8881F;
  --blue-accent: #4FC3F7;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F7F6F2;
  --soft-gray: #F4F4F7;
  --charcoal: #1F2333;
  --body: #3A3F4A;
  --muted: #6B7280;
  --border: #E5E7EB;
  --border-soft: #EFEFF4;
  --black: #0A0A12;

  /* Typography */
  --font-display: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Cinzel', 'Trajan Pro', Georgia, serif;

  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(14, 23, 38, 0.04);
  --shadow: 0 4px 14px rgba(14, 23, 38, 0.06);
  --shadow-lg: 0 12px 30px rgba(14, 23, 38, 0.10);
  --shadow-purple: 0 8px 24px rgba(58, 36, 86, 0.10);
  --transition: 200ms ease;
  --container: 1180px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -0.025em; }
h3 { font-size: 1.35rem; letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; color: var(--body); }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 12px rgba(201, 166, 70, 0.25);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201, 166, 70, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--blue-accent);
  border-color: var(--blue-accent);
  box-shadow: 0 6px 18px rgba(79, 195, 247, 0.3);
}
.btn-purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(58, 36, 86, 0.25);
}
.btn-purple:hover {
  background: var(--purple-light);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-block { width: 100%; }

/* ==========================================================================
   Header & Navigation (with dropdowns)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 84px;
  width: auto;
  display: block;
}

/* Nav */
.header-nav { display: flex; align-items: center; }
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 10px 14px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition), background var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > .nav-trigger:hover,
.nav-links > li > a.active,
.nav-links > li.has-dropdown:hover > .nav-trigger {
  color: var(--purple);
  background: var(--purple-tint);
}
.nav-links > li > a.active {
  color: var(--purple);
}
.nav-trigger .chevron {
  width: 10px;
  height: 10px;
  transition: transform var(--transition);
}
.nav-links > li.has-dropdown:hover .nav-trigger .chevron,
.nav-links > li.has-dropdown.open .nav-trigger .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  margin: 6px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 200;
}
.nav-links > li.has-dropdown:hover .dropdown,
.nav-links > li.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: .9rem;
  color: var(--charcoal);
  border-radius: 4px;
  font-weight: 500;
}
.dropdown a:hover {
  background: var(--purple-tint);
  color: var(--purple);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-phone {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.header-phone:hover { color: var(--blue-accent); }
.header-phone::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--off-white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { text-align: left; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}
.hero-copy {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--body);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  margin: 0;
  padding-left: 0;
}
.hero-trust li {
  list-style: none;
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.hero-trust li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-photo {
  position: relative;
  aspect-ratio: 5/4;
}
.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--gold);
  display: block;
}

/* Inner-page hero with background image */
.hero-page {
  padding: 70px 0 60px;
}
.hero-page .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 0;
}
.hero-page .hero-content { text-align: center; }
.hero-page .hero-copy { margin-left: auto; margin-right: auto; }
.hero-page .hero-buttons { justify-content: center; }

.hero-bg {
  position: relative;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(14, 23, 38, 0.6), rgba(14, 23, 38, 0.78));
  z-index: -1;
}
.hero-bg .eyebrow { color: var(--gold-soft); }
.hero-bg h1 { color: var(--white); }
.hero-bg .hero-copy { color: rgba(255, 255, 255, 0.9); }
.hero-bg .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
}
.hero-bg .btn-secondary:hover {
  background: var(--navy);
  border-color: var(--blue-accent);
  color: var(--blue-accent);
}

/* ==========================================================================
   Section system
   ========================================================================== */
section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-light { background: var(--off-white); }
.section-gray { background: var(--soft-gray); }
.section-purple-tint { background: var(--purple-tint); }
.section-dark { background: var(--navy-deep); color: rgba(255, 255, 255, 0.85); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.78); }

.section-header {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-header p { font-size: 1.05rem; color: var(--muted); }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.7); }

/* ==========================================================================
   Trust / Value bar
   ========================================================================== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 36px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .92rem;
  color: var(--charcoal);
  font-weight: 500;
}
.trust-bar-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--purple-tint);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   About / Attorney section
   ========================================================================== */
.attorney {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.attorney-centered {
  grid-template-columns: 1fr;
  max-width: 760px;
  text-align: center;
}
.attorney-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--gold);
}
.attorney-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.attorney-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}
.attorney-centered .attorney-list { display: inline-block; text-align: left; }
.attorney-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--body);
  font-size: .98rem;
  border-bottom: 1px solid var(--border-soft);
}
.attorney-list li:last-child { border-bottom: 0; }
.attorney-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
}

/* ==========================================================================
   Practice area / service cards
   ========================================================================== */
.practice-block + .practice-block { margin-top: 60px; }
.practice-block-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.practice-block-header h2 { margin: 0; }
.practice-block-header .practice-intro { max-width: 520px; color: var(--muted); margin: 0; }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
}
.practice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.practice-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-tint);
  border-radius: 50%;
  color: var(--purple);
  margin-bottom: 18px;
}
.practice-card h3 {
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--navy);
}
.practice-card p {
  font-size: .94rem;
  color: var(--muted);
  margin: 0 0 18px;
  flex-grow: 1;
}
.practice-card-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.practice-card:hover .practice-card-link {
  color: var(--blue-accent);
  gap: 10px;
}

/* ==========================================================================
   Why-choose / value props
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  gap: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.why-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.why-content h3 { margin: 0 0 6px; font-size: 1.1rem; }
.why-content p { margin: 0; color: var(--muted); font-size: .94rem; }

/* ==========================================================================
   Overlap section
   ========================================================================== */
.overlap-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.overlap-content h2 { color: var(--navy); }
.overlap-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 26px;
}
.overlap-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.overlap-tags li {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--charcoal);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
}
.overlap-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-soft);
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-quote {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0 0 18px;
  flex-grow: 1;
}
.testimonial-author {
  font-size: .85rem;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.testimonial-author strong { color: var(--charcoal); font-weight: 600; }

/* ==========================================================================
   Service area / counties
   ========================================================================== */
.counties-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.county-card {
  grid-column: span 2;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.county-card:nth-child(4) { grid-column: 2 / span 2; }
.county-card:nth-child(5) { grid-column: 4 / span 2; }
.county-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.county-card h3 { font-size: 1.1rem; margin: 0 0 6px; }
.county-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
}
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 22px 48px 22px 0;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  position: relative;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--purple);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--body);
  font-size: .98rem;
  line-height: 1.7;
  max-width: 720px;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-section { background: var(--off-white); }
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 44px;
}
.form-intro { text-align: center; margin-bottom: 28px; }
.form-intro p { color: var(--muted); margin: 0; }

.case-form .field { margin-bottom: 18px; }
.case-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}
.case-form input,
.case-form select,
.case-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: all var(--transition);
}
.case-form input:focus,
.case-form select:focus,
.case-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(58, 36, 86, 0.12);
}
.case-form textarea { min-height: 130px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55;
}
.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--purple);
  flex-shrink: 0;
}

.form-success {
  display: none;
  padding: 28px;
  background: var(--purple-tint);
  border: 1px solid var(--purple);
  border-radius: var(--radius);
  text-align: center;
  color: var(--navy);
}
.form-success.show { display: block; }
.form-success h3 { margin-bottom: 8px; }

/* ==========================================================================
   Dark CTA banner (before footer)
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--purple) 100%);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 166, 70, 0.12), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(91, 63, 127, 0.4), transparent 50%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-banner h2 { color: var(--white); margin: 0 0 14px; }
.cta-banner p { color: rgba(255, 255, 255, 0.78); margin: 0; max-width: 540px; }
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.cta-banner .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--blue-accent);
  color: var(--blue-accent);
}

/* ==========================================================================
   Contact page specifics
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info { padding-top: 4px; }
.contact-info h3 { margin-top: 28px; }
.contact-info h3:first-of-type { margin-top: 0; }
.contact-info p, .contact-info a { color: var(--body); font-size: 1rem; line-height: 1.6; }
.contact-info a:hover { color: var(--purple); }
.contact-info address { font-style: normal; color: var(--body); }
.map-placeholder {
  background: var(--soft-gray);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 16px;
  background-image: linear-gradient(135deg, var(--soft-gray) 25%, var(--off-white) 25%, var(--off-white) 50%, var(--soft-gray) 50%, var(--soft-gray) 75%, var(--off-white) 75%);
  background-size: 16px 16px;
}

/* ==========================================================================
   Footer (dark)
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--purple));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo-img { height: 100px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-tag {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold-soft);
  font-size: 1rem;
  margin: 18px 0 0;
}
.footer-service-area {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 360px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 166, 70, 0.3);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a, .footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-col address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  font-size: .9rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.disclaimer {
  font-size: .76rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 740px;
}
.copyright {
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  padding: 10px;
  gap: 10px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
}
.mobile-cta .btn { flex: 1; padding: 13px 12px; font-size: .9rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 960px) {
  .hero-grid, .attorney, .footer-grid, .cta-banner-inner, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-banner-actions { justify-content: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 70px; }
  section { padding: 64px 0; }
  .practice-block-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  .counties-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .county-card,
  .county-card:nth-child(4),
  .county-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .header-inner { padding: 12px 20px; position: relative; }
  .logo-img { height: 60px; }

  /* Mobile menu drawer */
  .header-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
    padding: 16px 20px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .header-nav.open .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .header-nav.open .nav-links > li > a,
  .header-nav.open .nav-links > li > .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
  }
  .header-nav.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    margin: 4px 0 8px 14px;
    padding: 4px 0 4px 12px;
    background: transparent;
  }
  .header-nav.open .nav-links > li.has-dropdown .dropdown {
    display: none;
  }
  .header-nav.open .nav-links > li.has-dropdown.open .dropdown {
    display: block;
  }
  .header-nav.open .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
  }
  .header-nav.open .nav-mobile-cta .btn { width: 100%; }
  .header-nav .nav-mobile-cta { display: none; }

  .form-wrap { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; }

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

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .trust-bar-grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .counties-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 56px; }
  .hero-buttons .btn, .cta-banner-actions .btn { width: 100%; }
}
