/* ============================================
   The Michel Law Firm, LLC
   Brand: Navy #1d3b73 + Gold #c8a96a + Ivory
   ============================================ */

:root {
  --navy: #1d3b73;
  --navy-dark: #142a55;
  --navy-light: #2d4f8f;
  --gold: #c8a96a;
  --gold-dark: #a88848;
  --gold-light: #e0c896;
  --ivory: #faf7f1;
  --cream: #f4efe4;
  --charcoal: #1a1a1a;
  --gray: #4a4a4a;
  --gray-light: #6b6b6b;
  --gray-lighter: #e5e5e5;
  --white: #ffffff;

  --font-serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --container: 1200px;
  --shadow-sm: 0 2px 8px rgba(20, 42, 85, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 42, 85, 0.10);
  --shadow-lg: 0 16px 48px rgba(20, 42, 85, 0.14);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--gray); }

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; height: auto; display: block; }

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

section { padding: 5rem 0; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--gold-light); font-weight: 500; }
.topbar a:hover { color: var(--white); }
.topbar-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-info span { color: rgba(255,255,255,0.85); }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.logo svg { width: 48px; height: 48px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav { display: flex; gap: 2rem; align-items: center; }
.nav a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.5rem 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--navy); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 4px;
  font-weight: 600;
  transition: background var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(20, 42, 85, 0.92) 0%, rgba(29, 59, 115, 0.85) 60%, rgba(29, 59, 115, 0.75) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, transparent 45%, rgba(200, 169, 106, 0.12) 50%, transparent 55%);
  transform: rotate(-15deg);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 620px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-page {
  padding: 4.5rem 0 3.5rem;
}
.hero-page .hero-content { max-width: 900px; }
.hero-page h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--cream);
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-lighter);
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.trust-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.trust-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  font-weight: 500;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 0.75rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-top: 1rem;
}

/* ============================================
   PRACTICE AREAS
   ============================================ */
.practice-areas {
  background: var(--white);
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  padding: 2.5rem 2rem;
  border-radius: 6px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.practice-card:hover::before { transform: scaleX(1); }

.practice-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.practice-card:hover .practice-icon { background: var(--gold); }
.practice-icon svg { width: 36px; height: 36px; color: var(--gold-dark); transition: color var(--transition); }
.practice-card:hover .practice-icon svg { color: var(--white); }

.practice-card h3 { margin-bottom: 0.75rem; }
.practice-card p { font-size: 0.95rem; margin-bottom: 0; }

/* ============================================
   ABOUT / WHY US
   ============================================ */
.why-us {
  background: var(--cream);
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.why-image::after {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: -1rem;
  bottom: -1rem;
  border: 3px solid var(--gold);
  z-index: -1;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }

.why-content h2 { margin-bottom: 1.5rem; }
.why-content .lead {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 1.75rem;
}
.why-list {
  list-style: none;
  margin-top: 1.5rem;
}
.why-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.why-list .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 2px;
}
.why-list h4 { margin-bottom: 0.25rem; color: var(--navy); }
.why-list p { font-size: 0.95rem; margin: 0; }

/* ============================================
   ATTORNEYS
   ============================================ */
.attorneys { background: var(--white); }
.attorney-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.attorney-card {
  text-align: center;
  padding: 0;
}
.attorney-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
  border: 4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
}
.attorney-image img { width: 100%; height: 100%; object-fit: cover; }
.attorney-card h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.attorney-title {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.attorney-card p { font-size: 0.98rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255, 255, 255, 0.85); }
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-eyebrow::before,
.testimonials .section-eyebrow::after { background: var(--gold); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 169, 106, 0.25);
  padding: 2.25rem 2rem;
  border-radius: 6px;
  position: relative;
  backdrop-filter: blur(10px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
.testimonial-stars {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}
.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(200, 169, 106, 0.25);
  padding-top: 1.25rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-serif);
}
.author-info { line-height: 1.3; }
.author-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.author-meta { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); }

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.google-badge-text { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-primary {
  background: var(--navy);
  border-color: var(--navy);
}
.cta-band .btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content { padding: 4.5rem 0; }
.page-content .container { max-width: 900px; }
.page-content h2 { margin: 2.5rem 0 1rem; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { margin: 2rem 0 0.75rem; color: var(--gold-dark); }
.page-content p { font-size: 1.05rem; margin-bottom: 1.25rem; }
.page-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.page-content ul li { margin-bottom: 0.5rem; color: var(--gray); }

.content-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sidebar-card {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 2rem;
  border-radius: 4px;
  position: sticky;
  top: 120px;
}
.sidebar-card h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.2rem;
}
.sidebar-card .btn { width: 100%; margin-top: 1rem; }
.sidebar-phone {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-list { list-style: none; margin-bottom: 2rem; }
.contact-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-list strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}
.contact-list a, .contact-list span { color: var(--gray); }
.contact-list a:hover { color: var(--gold-dark); }

.contact-form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 6px;
  border-top: 4px solid var(--gold);
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group label .req { color: var(--gold-dark); }
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: 4px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.2);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-disclaimer {
  font-size: 0.8rem;
  color: var(--gray-light);
  line-height: 1.5;
  margin-top: 1rem;
}
.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  display: none;
}
.form-status.success { background: #e6f4ea; color: #1e6b3a; display: block; }
.form-status.error { background: #fde8e6; color: #9b2c1f; display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-about p { font-size: 0.95rem; line-height: 1.7; color: rgba(255, 255, 255, 0.75); }
.footer-about .logo { margin-bottom: 1.25rem; }
.footer-about .logo-text { color: var(--white); }
.footer-about .logo-text small { color: var(--gold-light); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.65rem;
  line-height: 1.6;
}
.footer-contact a { color: rgba(255, 255, 255, 0.85); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact strong { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 900px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 1000;
  }
  .nav.open { right: 0; }
  .nav a { width: 100%; padding: 0.75rem 0; border-bottom: 1px solid var(--gray-lighter); }
  .nav a::after { display: none; }
  .nav-cta { margin-top: 1rem; text-align: center; }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 42, 85, 0.5);
    z-index: 999;
  }
  .nav-overlay.open { display: block; }

  .why-grid, .contact-grid, .content-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-image { max-width: 420px; margin: 0 auto; }
  .sidebar-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  section { padding: 3.5rem 0; }
  .topbar-info { gap: 0.75rem; font-size: 0.78rem; }
}

@media (max-width: 560px) {
  .topbar { display: none; }
  .logo svg { width: 40px; height: 40px; }
  .logo-text { font-size: 1.2rem; }
  .logo-text small { font-size: 0.6rem; }
  .hero { padding: 4rem 0 3.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .practice-card, .testimonial-card, .contact-form { padding: 1.75rem 1.25rem; }
  .attorney-image { width: 180px; height: 180px; font-size: 2.75rem; }
}
