/* ===========================================
   Carson Law, L.L.C. — Site stylesheet
   Brand: maroon brick (#8B2A2A)
   Hero/footer: charcoal slate
   Typography: Cormorant Garamond + Inter
   =========================================== */

:root {
  --maroon:        #8B2A2A;
  --maroon-dark:   #6F2020;
  --maroon-light:  #A53D3D;
  --gold:          #C49A4A;
  --ink:           #1F1F1F;
  --text:          #2D2D2D;
  --text-muted:    #6E6E6E;
  --bg:            #FAF8F5;
  --bg-alt:        #F2EDE6;
  --card:          #FFFFFF;
  --border:        #E5DFD5;
  --charcoal-1:    #1F1F1F;
  --charcoal-2:    #2D3748;
  --shadow-sm:     0 1px 3px rgba(31,31,31,.06), 0 1px 2px rgba(31,31,31,.04);
  --shadow-md:     0 4px 12px rgba(31,31,31,.08), 0 2px 4px rgba(31,31,31,.04);
  --shadow-lg:     0 12px 32px rgba(31,31,31,.10), 0 4px 8px rgba(31,31,31,.06);
  --radius:        6px;
  --radius-lg:     12px;
  --font-serif:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; font-family: var(--font-sans); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--maroon); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--maroon-dark); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: .35rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--maroon-dark);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  padding: .5rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-contact { display: flex; gap: 1.5rem; }
.topbar-contact a { color: rgba(255,255,255,.9); }
.topbar-contact a:hover { color: #fff; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle .globe {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: .35rem;
  margin-right: .15rem;
  color: rgba(255,255,255,.7);
}
.lang-toggle a {
  display: inline-flex;
  align-items: center;
  padding: .35rem .85rem;
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  transition: all .15s ease;
}
.lang-toggle a.active {
  color: var(--maroon-dark);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.lang-toggle a:hover:not(.active) { color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Main header ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.logo { display: block; }
.logo img {
  height: 88px;
  width: auto;
  transition: transform .2s ease;
}
.logo:hover img { transform: scale(1.02); }

.nav { display: flex; gap: 2rem; align-items: center; margin-left: 4rem; }
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}
.nav a:hover { color: var(--maroon); border-bottom-color: var(--maroon); }
.nav a.active { color: var(--maroon); border-bottom-color: var(--maroon); }

/* ---------- Buttons (specificity-safe) ---------- */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  letter-spacing: .02em;
}
a.btn-primary, button.btn-primary, .btn-primary { background: var(--maroon); color: #fff; }
a.btn-primary:hover, button.btn-primary:hover, .btn-primary:hover {
  background: var(--maroon-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
a.btn-outline, button.btn-outline, .btn-outline { background: transparent; color: var(--maroon); border: 2px solid var(--maroon); }
a.btn-outline:hover, button.btn-outline:hover, .btn-outline:hover { background: var(--maroon); color: #fff; border-bottom-color: var(--maroon); }
.nav a.btn-primary { border-bottom: none; }
.btn-large { padding: 1rem 2rem; font-size: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1800&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(.55) saturate(.5);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(31,31,31,.82), rgba(60,60,68,.75));
}
.hero-inner { padding: 6rem 0 7rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-bottom: 1.25rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.95);
  margin-bottom: 2rem;
  max-width: 36ch;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-outline { color: #fff; border-color: #fff; }
.hero-actions .btn-outline:hover { background: #fff; color: var(--maroon); border-bottom-color: #fff; }
.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  letter-spacing: .03em;
}
.hero-meta strong {
  color: #fff;
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: .15rem;
}

.hero-card {
  background: #fff;
  color: var(--ink);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--maroon);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-card p { font-size: .95rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.hero-card .btn { width: 100%; text-align: center; }

/* ---------- Compact hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal-1) 0%, var(--charcoal-2) 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: left;
}
.page-hero .breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
  letter-spacing: .05em;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.65); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 {
  color: #fff;
  margin-bottom: .75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.page-hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  max-width: 60ch;
  line-height: 1.55;
}

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-narrow { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  color: var(--maroon);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 60ch; margin: 0 auto; font-size: 1.05rem; }

/* ---------- Practice area cards ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.area-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--maroon);
}
.area-card-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.area-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,31,31,.5) 0%, transparent 60%);
}
.area-card-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.area-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--ink);
}
.area-card p { font-size: .9rem; color: var(--text-muted); margin: 0 0 1rem 0; flex: 1; }
.area-link { font-size: .85rem; color: var(--maroon); font-weight: 600; display: inline-block; }

/* ---------- Attorney intro block ---------- */
.attorney { background: var(--bg-alt); }
.attorney-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: center;
}
.attorney-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.attorney-photo img { width: 100%; height: 100%; object-fit: cover; }
.attorney-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.5);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
  font-style: italic;
}
.attorney-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  box-shadow: var(--shadow-md);
}
.attorney-badge strong { color: var(--maroon); font-size: 1.5rem; font-family: var(--font-serif); display: block; line-height: 1; }
.attorney-badge .label { color: var(--text-muted); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.attorney-content h2 { margin-bottom: 1.5rem; }
.attorney-content p { color: var(--text); font-size: 1.05rem; margin-bottom: 1.25rem; }
.attorney-creds {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cred strong { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--maroon); line-height: 1; margin-bottom: .25rem; }
.cred span { font-size: .85rem; color: var(--text-muted); letter-spacing: .05em; }

/* ---------- Why us ---------- */
.why { background: var(--card); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-image-stack { position: relative; height: 480px; }
.why-image-stack img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.why-image-stack .img-1 { width: 65%; height: 70%; top: 0; left: 0; z-index: 1; }
.why-image-stack .img-2 { width: 55%; height: 55%; bottom: 0; right: 0; z-index: 2; border: 6px solid #fff; }
.why-content h2 { margin-bottom: 1.5rem; }
.why-list { list-style: none; margin: 2rem 0 0; }
.why-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  align-items: start;
}
.why-list li:last-child { border-bottom: none; }
.why-list .check {
  width: 28px;
  height: 28px;
  background: var(--maroon);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.why-list strong { display: block; color: var(--ink); margin-bottom: .25rem; font-size: 1rem; }
.why-list span { color: var(--text-muted); font-size: .95rem; }

/* ---------- Article / page body ---------- */
.article { max-width: 780px; margin: 0 auto; }
.article h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.article h3 { margin-top: 2rem; margin-bottom: .75rem; font-family: var(--font-sans); }
.article p { font-size: 1.05rem; line-height: 1.7; color: var(--text); margin-bottom: 1.25rem; }
.article ul, .article ol { margin: 0 0 1.5rem 1.5rem; }
.article li { font-size: 1.05rem; line-height: 1.65; margin-bottom: .5rem; }
.article strong { color: var(--ink); }
.article blockquote {
  background: var(--bg-alt);
  border-left: 4px solid var(--maroon);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
}
.tab {
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: color .2s ease;
}
.tab:hover { color: var(--maroon); }
.tab.active {
  color: var(--maroon);
}
.tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--maroon);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--maroon);
  box-shadow: var(--shadow-sm);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--maroon);
  line-height: 0;
  margin-bottom: 1rem;
  display: block;
  height: 2rem;
}
.testimonial p { font-size: .95rem; color: var(--text); line-height: 1.6; margin-bottom: 1.25rem; }
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--maroon);
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.testimonials-list { display: grid; gap: 1.5rem; }
.testimonials-list .testimonial { padding: 2rem 2.5rem; }
.testimonials-list .testimonial p { font-size: 1.05rem; line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  color: #fff;
  padding: 4rem 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(.4);
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(139,42,42,.94), rgba(111,32,32,.88));
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.9); margin: 0; font-size: 1.05rem; }
.cta-band-actions { display: flex; gap: 1rem; }
.cta-band .btn-primary { background: #fff; color: var(--maroon); }
.cta-band .btn-primary:hover { background: var(--bg); color: var(--maroon); }
.cta-band .btn-outline { color: #fff; border-color: #fff; }
.cta-band .btn-outline:hover { background: #fff; color: var(--maroon); border-bottom-color: #fff; }

/* ---------- Office strip ---------- */
.office-strip { background: var(--bg-alt); padding: 3rem 0; }
.office-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.office-image {
  width: 280px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.office-image iframe { width: 100%; height: 100%; border: 0; display: block; }
.office-info h3 { font-family: var(--font-sans); font-size: 1.25rem; margin-bottom: .5rem; }
.office-info p { color: var(--text-muted); margin: 0; }
.office-info .office-hours { display: inline-block; margin-top: .75rem; color: var(--maroon); font-weight: 600; font-size: .9rem; }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { font-family: var(--font-sans); margin-bottom: 1rem; }
.contact-info p { color: var(--text); margin-bottom: 1rem; }
.contact-info .contact-row {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info .contact-row:last-of-type { border-bottom: none; }
.contact-info .contact-icon {
  width: 40px; height: 40px;
  background: var(--bg-alt);
  color: var(--maroon);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info .contact-label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.contact-info .contact-value { color: var(--ink); font-weight: 600; font-size: 1.05rem; }

.contact-form {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form h3 { font-family: var(--font-sans); margin-bottom: 1.5rem; }
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  margin-bottom: .35rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(139,42,42,.12);
}
.form-row textarea { min-height: 140px; resize: vertical; }

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(135deg, var(--charcoal-1) 0%, var(--charcoal-2) 100%);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer a { color: rgba(255,255,255,.75); display: block; padding: .25rem 0; }
.footer a:hover { color: #fff; }
.footer-brand img { height: 70px; margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,.75); max-width: 36ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  padding: 0;
}
.footer-social a:hover { border-color: #fff; }

/* ---------- Mobile nav toggle (hamburger) ---------- */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: .5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .attorney-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-image-stack { height: 240px; }
  .why-image-stack .img-1 { width: 100%; height: 100%; top: 0; left: 0; }
  .why-image-stack .img-2 { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band .container { grid-template-columns: 1fr; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .office-grid { grid-template-columns: 1fr; text-align: center; }
  .office-image { width: 100%; max-width: 360px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Hamburger menu */
  .header .container { position: relative; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    background: #fff;
    padding: .75rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    border-top: 1px solid var(--border);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: .9rem 1.5rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    text-align: left;
  }
  .nav a:last-child { border-bottom: none; }
  .nav a:hover { background: var(--bg-alt); border-bottom-color: var(--border); }
  .nav a.btn-primary {
    margin: .75rem 1.5rem 0;
    border-radius: var(--radius);
    text-align: center;
    padding: .85rem 1.5rem;
  }
  .logo img { height: 64px; }
}
@media (max-width: 640px) {
  .header .container { padding: .75rem 1rem; }
  .hero-inner { padding: 4rem 0 5rem; }
  .hero-meta { gap: 1.5rem; }
  .section { padding: 3.5rem 0; }
  .attorney-creds { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .topbar-contact { display: none; }
  .tabs { overflow-x: auto; }
  .tab { white-space: nowrap; }
}
