/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #1a3c28;
  --green-mid: #2d5e3f;
  --green-light: #3a7a52;
  --earth-brown: #6b4c3b;
  --earth-tan: #c4a878;
  --earth-light: #e8dcc8;
  --slate: #2c3e50;
  --navy: #1b2a4a;
  --cream: #faf8f4;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-body: #333333;
  --text-muted: #666666;
  --border: #d4c9b8;
  --shadow: rgba(0, 0, 0, 0.1);
  --font-heading: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* Subtle dot-grid texture */
  background-image: radial-gradient(circle, #d4c9b8 0.5px, transparent 0.5px);
  background-size: 24px 24px;
}

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

a {
  color: var(--green-mid);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--green-dark);
}

ul {
  list-style: none;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ===== UTILITY ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-dark);
  color: var(--earth-light);
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar a {
  color: var(--earth-tan);
  font-weight: 600;
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar__phone {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px var(--shadow);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.logo span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle .hamburger {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green-dark);
  position: relative;
  transition: background 0.2s;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green-dark);
  position: absolute;
  transition: transform 0.3s;
}

.nav-toggle .hamburger::before {
  top: -8px;
}

.nav-toggle .hamburger::after {
  top: 8px;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--green-dark);
  color: var(--white);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--green-dark);
    box-shadow: 0 4px 12px var(--shadow);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.5rem 0;
    gap: 0;
  }

  .main-nav a {
    padding: 0.85rem 1.5rem;
    border-radius: 0;
    font-size: 1rem;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(170deg, rgba(26, 60, 40, 0.92) 0%, rgba(27, 42, 74, 0.88) 100%),
    linear-gradient(to bottom, #1a3c28, #2d5e3f 30%, #3a7a52 50%, #6b8f5e 70%, #c4a878);
  color: var(--white);
  padding: 5rem 0 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Mountain silhouette — back range */
.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: var(--green-dark);
  clip-path: polygon(
    0% 100%,
    0% 65%,
    3% 55%,
    8% 35%,
    12% 42%,
    16% 25%,
    20% 38%,
    24% 20%,
    28% 30%,
    32% 15%,
    36% 28%,
    40% 40%,
    44% 32%,
    48% 22%,
    52% 35%,
    56% 18%,
    60% 30%,
    64% 38%,
    68% 25%,
    72% 10%,
    76% 22%,
    80% 35%,
    84% 28%,
    88% 42%,
    92% 30%,
    96% 45%,
    100% 50%,
    100% 100%
  );
  opacity: 0.35;
  pointer-events: none;
}

/* Mountain silhouette — front range */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--cream);
  clip-path: polygon(
    0% 100%,
    0% 80%,
    4% 70%,
    8% 55%,
    12% 65%,
    16% 50%,
    20% 60%,
    24% 45%,
    28% 55%,
    32% 65%,
    36% 50%,
    40% 60%,
    44% 70%,
    48% 55%,
    52% 42%,
    56% 55%,
    60% 65%,
    64% 52%,
    68% 60%,
    72% 48%,
    76% 58%,
    80% 68%,
    84% 55%,
    88% 45%,
    92% 58%,
    96% 65%,
    100% 55%,
    100% 100%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero .subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 1.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ===== CTA BUTTONS (global) ===== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--earth-tan), #d4b882);
  color: var(--green-dark);
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  background: linear-gradient(135deg, #d4b882, var(--earth-light));
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-btn::after {
  content: " \2192";
  transition: margin-left 0.2s;
}

.cta-btn:hover::after {
  margin-left: 4px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(58, 122, 82, 0.2) 0%, transparent 60%),
    linear-gradient(135deg, var(--green-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-tan), var(--green-mid), var(--earth-tan));
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.page-hero p {
  opacity: 0.85;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section {
  padding: 3.5rem 0;
  position: relative;
}

.section--alt {
  background: var(--white);
  background-image: none;
}

/* Angled top edge on alt sections */
.section--angled {
  clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
  padding-top: 5rem;
  margin-top: -30px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--earth-tan), var(--green-mid));
  border-radius: 2px;
}

.section__title--center {
  text-align: center;
}

.section__title--center::after {
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--green-dark);
  padding: 2.5rem 0;
  position: relative;
}

.stats-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--earth-tan), var(--green-light), var(--earth-tan));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--earth-tan);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--earth-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item .stat-number {
    font-size: 2.25rem;
  }
}

/* ===== PRACTICE AREAS ===== */
.practice-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.practice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green-mid);
  padding: 1.5rem;
  border-radius: 6px;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.practice-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.practice-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--white);
}

.practice-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.practice-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== SERVICE AREA BADGES ===== */
.service-areas {
  margin-top: 2rem;
  text-align: center;
}

.service-areas h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.area-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.area-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-body);
  background: var(--cream);
  transition: all 0.2s;
}

.area-badge:hover {
  border-color: var(--green-mid);
  color: var(--green-dark);
  background: var(--white);
}

/* ===== CTA BAR ===== */
.cta-bar {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(58, 122, 82, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(27, 42, 74, 0.15) 0%, transparent 50%),
    var(--green-dark);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
  position: relative;
}

.cta-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--earth-tan), transparent);
}

.cta-bar h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.cta-bar p {
  opacity: 0.85;
  margin-bottom: 1.25rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-bar .cta-btn {
  padding: 0.85rem 2rem;
}

.cta-bar .phone-link {
  display: block;
  margin-top: 0.75rem;
  color: var(--earth-tan);
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.2s;
}

.cta-bar .phone-link:hover {
  color: var(--white);
}

/* ===== ABOUT / CONTENT BLOCKS ===== */
.content-block {
  max-width: 780px;
  margin: 0 auto;
}

.content-block p {
  margin-bottom: 1.25rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block strong {
  color: var(--text-dark);
}

.content-block .highlight-quote,
.contact-info .highlight-quote {
  border-left: 4px solid var(--earth-tan);
  padding: 1.25rem 1.5rem;
  background: var(--white);
  font-style: italic;
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
}

.content-block .highlight-quote::before,
.contact-info .highlight-quote::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--earth-tan);
  position: absolute;
  top: -8px;
  left: 12px;
  opacity: 0.4;
  font-family: var(--font-heading);
  line-height: 1;
}

/* ===== HEADSHOT PLACEHOLDER ===== */
.headshot-placeholder {
  width: 180px;
  height: 220px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--slate) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.headshot-placeholder::before {
  content: "";
  width: 60px;
  height: 60px;
  background: var(--earth-tan);
  border-radius: 50%;
  position: absolute;
  top: 40px;
}

.headshot-placeholder::after {
  content: "";
  width: 100px;
  height: 80px;
  background: var(--earth-tan);
  border-radius: 50px 50px 0 0;
  position: absolute;
  top: 110px;
}

/* ===== ABOUT LAYOUT ===== */
.about-intro {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 780px;
  margin: 0 auto;
}

.about-intro .headshot-placeholder {
  flex-shrink: 0;
  margin: 0;
}

@media (max-width: 600px) {
  .about-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===== STAFF CARDS ===== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 780px;
  margin: 1.5rem auto 0;
}

.staff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}

.staff-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.staff-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.staff-card h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}

.staff-card .role {
  font-size: 0.85rem;
  color: var(--earth-brown);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.staff-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info-item .icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.contact-info-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-item .value {
  font-weight: 600;
  color: var(--text-dark);
}

.contact-info-item a {
  color: var(--green-mid);
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 94, 63, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 0.8rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ===== COURT INFO ===== */
.court-info-section {
  max-width: 780px;
  margin: 0 auto;
}

.court-info-section h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin: 2.25rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--earth-tan);
}

.court-info-section h2:first-child {
  margin-top: 0;
}

.court-info-section p {
  margin-bottom: 1rem;
}

.court-info-section .warning-box {
  background: linear-gradient(135deg, var(--green-dark), var(--navy));
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  text-align: center;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.02em;
}

/* ===== SERVICES CALLOUT ===== */
.callout-box {
  background: linear-gradient(135deg, var(--green-dark), var(--navy));
  color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.callout-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--earth-tan), var(--green-light), var(--earth-tan));
}

.callout-box p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--slate);
  color: var(--earth-light);
  padding: 3rem 0 1.5rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-tan), var(--green-mid), var(--navy), var(--green-mid), var(--earth-tan));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h4 {
  font-family: var(--font-heading);
  color: var(--earth-tan);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.site-footer p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--earth-light);
  opacity: 0.85;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--earth-light);
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--earth-tan);
}

.footer-contact a {
  color: var(--earth-tan);
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 6rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .section--angled {
    clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
    padding-top: 4rem;
    margin-top: -20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0 5rem;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero::before {
    height: 120px;
  }

  .hero::after {
    height: 80px;
  }

  .practice-areas {
    grid-template-columns: 1fr;
  }

  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
}
