/* ============================================
   LARA LAW — STYLES
   Bold / Dark / Traditional Law Firm
   ============================================ */

:root {
  --charcoal: #1a1a1a;
  --charcoal-deep: #111111;
  --charcoal-mid: #2a2a2a;
  --charcoal-light: #3a3a3a;
  --cream: #f0ebe3;
  --cream-dim: #d4cfc7;
  --gold: #b8965a;
  --gold-light: #d4b07a;
  --white: #ffffff;
  --text-muted: #8a8a8a;
  --border: rgba(255,255,255,0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;

  --nav-height: 80px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--cream);
  background: var(--charcoal-deep);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img { height: 52px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal-deep) !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal-deep);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  border: 1px solid var(--cream-dim);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { border-color: var(--white); }
.btn-dark {
  background: var(--charcoal-mid);
  color: var(--cream);
}
.btn-dark:hover { background: var(--charcoal-light); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 5%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(17,17,17,0.1) 0%,
      rgba(17,17,17,0.15) 25%,
      rgba(17,17,17,0.45) 50%,
      rgba(17,17,17,0.8) 70%,
      rgba(17,17,17,0.9) 100%
    ),
    linear-gradient(
      to right,
      rgba(17,17,17,0.5) 0%,
      rgba(17,17,17,0.2) 30%,
      rgba(17,17,17,0.0) 50%,
      rgba(17,17,17,0.2) 80%,
      rgba(17,17,17,0.5) 100%
    );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  width: 100%;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 3rem;
}

/* ============================================
   PRACTICES OVERVIEW
   ============================================ */
.practices-overview {
  padding: 8rem 0;
  background: var(--charcoal-deep);
}
.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.practice-card {
  padding: 2.5rem;
  background: var(--charcoal-deep);
  transition: background 0.4s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.practice-card:hover {
  background: var(--charcoal-mid);
}
.practice-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.practice-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.practice-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.practice-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: 1.5rem;
  display: inline-block;
  transition: transform 0.3s;
}
.practice-card:hover .practice-arrow { transform: translateX(6px); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 8rem 0;
  background: var(--charcoal);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05);
}
.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-content .section-label { margin-bottom: 0.5rem; }
.about-content .section-title { margin-bottom: 2rem; }
.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.about-content p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
}
.about-content .btn { margin-top: 1rem; }

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  padding: 8rem 0;
  background: var(--charcoal-deep);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--gold);
}
.why-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.why-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   CASE RESULTS
   ============================================ */
.results-section {
  padding: 8rem 0;
  background: var(--charcoal);
}
.results-intro {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 650px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.result-card {
  padding: 2.5rem 2rem;
  background: var(--charcoal-deep);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.result-card:hover {
  border-color: var(--gold);
}
.result-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.result-type {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.result-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.results-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2rem;
}

/* ============================================
   AWARDS & RECOGNITION
   ============================================ */
.awards-section {
  padding: 8rem 0;
  background: var(--charcoal-deep);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.award-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.award-card:hover {
  border-color: var(--gold);
}
.award-icon {
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.award-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.award-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 6rem 0;
  background: var(--gold);
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--charcoal-deep);
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto; margin-right: auto;
}
.cta-banner .btn-primary {
  background: var(--charcoal-deep);
  color: var(--gold);
}
.cta-banner .btn-primary:hover {
  background: var(--charcoal);
}
.cta-banner .btn-outline-light {
  border-color: var(--charcoal);
  color: var(--charcoal-deep);
}
.cta-banner .btn-outline-light:hover {
  background: rgba(0,0,0,0.1);
}
.cta-banner .hero-actions { justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal-deep);
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo { height: 44px; margin-bottom: 1.2rem; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-disclaimer { font-style: italic; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  50.01% { top: -100%; }
  100% { top: 100%; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PRACTICES PAGE
   ============================================ */
.page-header {
  padding: 10rem 0 4rem;
  background: var(--charcoal-deep);
  text-align: center;
}
.page-header .section-label { margin-bottom: 0.8rem; }
.page-header .section-title { margin-bottom: 1rem; }
.page-header p {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 600px;
  margin: 0 auto;
}

.practice-detail {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.practice-detail:last-child { border-bottom: none; }
.practice-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.practice-detail-label {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.practice-detail-label .practice-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}
.practice-detail-label h2 {
  font-size: 2rem;
  color: var(--white);
}
.practice-detail-content p {
  font-size: 1rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* ============================================
   PEOPLE PAGE
   ============================================ */
.team-section {
  padding: 4rem 0 6rem;
  background: var(--charcoal-deep);
}
.attorneys-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.attorney-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.attorney-block:last-of-type { border-bottom: none; }
.attorney-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05);
}
.attorney-info .section-label { margin-bottom: 0.3rem; }
.attorney-info h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.attorney-bio p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.attorney-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.attorney-details h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.attorney-details ul {
  list-style: none;
  padding: 0;
}
.attorney-details li {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

/* Staff Section */
.staff-section {
  padding: 6rem 0;
  background: var(--charcoal);
}
.staff-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.staff-card {
  text-align: center;
}
.staff-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 1.5rem;
  filter: contrast(1.05);
}
.staff-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.staff-card p {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 4rem 0 6rem;
  background: var(--charcoal-deep);
}
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-form-wrap h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: flex; gap: 1.2rem; }
.form-row .form-group { flex: 1; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-light);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit {
  background: var(--gold);
  color: var(--charcoal-deep);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold-light); }

.contact-info-col h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
}
.office-block {
  margin-bottom: 2.5rem;
}
.office-block h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.office-block p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
}
.contact-map {
  margin-top: 2rem;
  width: 100%;
  height: 250px;
  border: 1px solid var(--charcoal-light);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) brightness(0.8) contrast(1.1);
}

/* Bilingual Section */
.bilingual-section {
  padding: 5rem 0;
  background: var(--charcoal);
  text-align: center;
}
.bilingual-section p {
  max-width: 700px;
  margin: 0 auto 1rem;
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.8;
}
.bilingual-section .spanish {
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .practices-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-width: 500px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .attorney-block { grid-template-columns: 300px 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .practice-detail-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .practice-detail-label { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--charcoal-deep);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s;
    border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { text-align: center; }

  .hero { min-height: 600px; }
  .hero-headline { font-size: 2.5rem; }
  .hero-scroll { display: none; }

  .practices-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .attorney-block { grid-template-columns: 1fr; gap: 2rem; }
  .attorney-photo { max-width: 340px; }
  .attorney-details { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr 1fr; }

  .form-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .staff-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--charcoal-deep);
  padding: 0.8rem 1.5rem;
  z-index: 9999;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Ensure sufficient touch target size (44x44px minimum) */
.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-tag, .hero-headline, .hero-sub, .hero-actions, .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
