/* ==========================================================================
   The Fiske Law Group, PLLC — site styles
   Modernized to match the FLG brand mockup: crimson + gold on dark/paper,
   Playfair Display throughout (headings and body). Mobile-first.
   ========================================================================== */

:root {
  /* Brand */
  --crimson: #9e1b45;
  --crimson-dark: #7c1236;
  --crimson-deep: #8a1740;
  --gold: #c49a4e;
  --gold-bright: #d8b25f;
  --gold-soft: #e8d3a6;

  /* Neutrals */
  --ink: #171015;          /* near-black header/footer/hero */
  --ink-2: #241a20;
  --text: #241f22;
  --text-soft: #574d53;
  --muted: #8a8086;
  --paper: #ffffff;
  --paper-2: #f7f4f5;      /* light gray section */
  --blush: #faf0f2;        /* contact background */
  --line: #e8e1e4;
  --line-dark: rgba(255, 255, 255, 0.12);

  --shadow: 0 6px 24px rgba(23, 16, 21, 0.08);
  --shadow-lg: 0 18px 48px rgba(23, 16, 21, 0.18);
  --radius: 4px;

  --font-display: "Playfair Display", "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Playfair Display", "Newsreader", Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4.4vw, 2.9rem); }
h3 { font-size: 1.3rem; }

p { color: var(--text-soft); }

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

.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.85rem;
}

section { padding: 4rem 0; }
@media (min-width: 760px) { section { padding: 6rem 0; } }

.accent { color: var(--crimson); }
.accent-gold { color: var(--gold); }

/* --------------------------------------------------------------------------
   Skip link & focus
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--crimson);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--crimson-deep) 0%, var(--crimson) 55%, var(--crimson-dark) 100%);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 55%, #6a0f2e 100%);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: currentColor;
}
.btn-outline:hover { background: var(--text); color: #fff; }

/* Light outline for dark backgrounds */
.on-dark .btn-outline,
.btn-outline.light { color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.on-dark .btn-outline:hover,
.btn-outline.light:hover { background: #fff; color: var(--ink); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: #fff;
}

/* Utility strip */
.topbar {
  background: #100b0e;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.82rem;
}
.topbar-inner {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}
@media (min-width: 760px) { .topbar-inner { display: flex; } }

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.topbar-item:hover { color: #fff; }
.topbar-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
}
.brand:hover { color: #fff; }

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--crimson);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  color: #fff;
}
.nav-toggle:hover { background: var(--crimson-dark); }

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg);
}
.site-nav.open { display: block; }

.site-nav ul {
  list-style: none;
  padding: 0.5rem 1.25rem 1.25rem;
}
.site-nav a {
  display: block;
  padding: 0.85rem 0.25rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line-dark);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--gold); }

/* Keep the CTA button in the crisp sans, not the serif nav treatment */
.site-nav a.nav-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.nav-cta { margin-top: 1rem; width: 100%; }

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
  }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
  }
  .site-nav a {
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.98rem;
    letter-spacing: 0.15em;
  }
  .site-nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--gold); }
  .nav-cta {
    margin: 0;
    width: auto;
    min-width: 15rem;
    padding: 0.7rem 1.8rem;
  }
  .site-nav a.nav-cta { color: #fff; border-bottom: none; }
  .site-nav a.nav-cta:hover { color: #fff; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  /* Transparent gradient scrim over the DC skyline — keeps the left readable for
     the headline while letting the skyline stay vibrant across the rest. */
  background:
    radial-gradient(ellipse at 82% 22%, rgba(196, 154, 78, 0.14), transparent 55%),
    linear-gradient(95deg, rgba(11, 13, 26, 0.78) 0%, rgba(14, 15, 30, 0.46) 48%, rgba(58, 20, 40, 0.24) 100%),
    url("../images/dc-skyline.jpg") center / cover no-repeat;
  background-color: var(--ink);
  padding: 4.5rem 0 4rem;
}
@media (min-width: 760px) { .hero { padding: 7rem 0 6rem; } }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}

.hero .eyebrow { color: var(--gold); }

.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold); }

.hero .lede {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 1.4rem 0 2.2rem;
  max-width: 36rem;
}
.hero .lede strong { color: #fff; font-weight: 800; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.25rem 2.5rem;
  max-width: 34rem;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--gold);
  line-height: 1;
}
.stat span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

/* Photo now fills the right side of the hero, so the decorative column is hidden */
.hero-figure { display: none; }

/* --------------------------------------------------------------------------
   Section headers
   -------------------------------------------------------------------------- */
.section-head { max-width: 46rem; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.08rem; }

/* --------------------------------------------------------------------------
   About block
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; } }

.about-photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.about-body h2 { margin-bottom: 1.1rem; }
.about-body > p { font-size: 1.05rem; }

.checklist {
  list-style: none;
  display: grid;
  gap: 0.9rem 1.5rem;
  margin: 1.75rem 0 0;
}
@media (min-width: 560px) { .checklist { grid-template-columns: 1fr 1fr; } }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.98rem;
}
.checklist svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.about-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about-feature .mark-box {
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--crimson);
  border-radius: var(--radius);
  color: var(--crimson);
}
.about-feature .mark-box svg { width: 42px; height: 42px; }
.about-feature p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   Practice areas grid
   -------------------------------------------------------------------------- */
.services { background: var(--paper-2); }

.services-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 0; } }

.service-item { padding: 0.5rem 0; }
@media (min-width: 1000px) {
  .service-item { padding: 0 2.25rem; border-left: 1px solid var(--line); }
  .service-item:first-child { padding-left: 0; border-left: none; }
  .service-item:last-child { padding-right: 0; }
}

.service-item .service-icon { color: var(--gold); margin-bottom: 1.1rem; }
.service-item .service-icon svg { width: 46px; height: 46px; }
.service-item h3 { margin-bottom: 0.75rem; font-size: 1.35rem; }
.service-item p { font-size: 0.98rem; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
}
.read-more svg { width: 20px; height: 12px; color: var(--crimson); transition: transform 0.18s ease; }
.read-more:hover { color: var(--crimson); }
.read-more:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Attorney spotlight band (crimson)
   -------------------------------------------------------------------------- */
.attorney-band {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(216, 178, 95, 0.14), transparent 55%),
    var(--crimson);
  color: #fff;
}
.attorney-band .eyebrow { color: var(--gold-soft); }
.attorney-band h2 { color: #fff; }
.attorney-band .section-head p { color: rgba(255, 255, 255, 0.85); }

.attorney-cards {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.75rem;
}
@media (min-width: 760px) { .attorney-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 760px) {
  .attorney-cards.solo { grid-template-columns: minmax(0, 680px); justify-content: center; }
}

.attorney-card {
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 2rem;
}
.attorney-card .role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.attorney-card h3 { color: #fff; font-size: 1.6rem; margin: 0.35rem 0 0.9rem; }
.attorney-card p { color: rgba(255, 255, 255, 0.86); font-size: 0.98rem; }
.attorney-card .read-more { color: #fff; margin-top: 1.25rem; }
.attorney-card .read-more svg { color: var(--gold); }
.attorney-card .read-more:hover { color: var(--gold-soft); }

/* --------------------------------------------------------------------------
   Cards (generic)
   -------------------------------------------------------------------------- */
.card-grid { display: grid; gap: 1.75rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 0.6rem; }
.card.has-img { padding: 0; overflow: hidden; }
.card.has-img .card-body { padding: 1.75rem 2rem 2rem; }
.card-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Split sections (interior pages)
   -------------------------------------------------------------------------- */
.split { display: grid; gap: 2.75rem; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse > .split-art, .split.reverse > .split-photo { order: -1; }
}
.split-photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 480px;
}
.split h2 { margin-bottom: 1rem; }
.split p + p { margin-top: 1rem; }

.band { background: var(--paper-2); }

/* --------------------------------------------------------------------------
   Service list (interior "how we can help")
   -------------------------------------------------------------------------- */
.service-list { list-style: none; margin-top: 0.75rem; columns: 1; }
@media (min-width: 640px) { .service-list.two-col { columns: 2; column-gap: 2.5rem; } }
.service-list li {
  padding: 0.55rem 0 0.55rem 1.6rem;
  border-bottom: 1px dashed var(--line);
  color: var(--text-soft);
  position: relative;
  break-inside: avoid;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   Attorney profiles (team page)
   -------------------------------------------------------------------------- */
.attorney {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}
@media (min-width: 760px) { .attorney { padding: 3rem; } }
.attorney + .attorney { margin-top: 2rem; }
.attorney-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  border-bottom: 2px solid var(--crimson);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.attorney-header .role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
}
.attorney p + p { margin-top: 1rem; }
.attorney-facts { display: grid; gap: 1.5rem; margin-top: 1.75rem; }
@media (min-width: 760px) { .attorney-facts { grid-template-columns: 1fr 1fr; } }
.attorney-facts h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.attorney-facts ul { list-style: none; color: var(--text-soft); }
.attorney-facts ul li { padding: 0.35rem 0; border-bottom: 1px dashed var(--line); }

/* --------------------------------------------------------------------------
   Forms / contact
   -------------------------------------------------------------------------- */
.contact-band { background: var(--blush); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
@media (min-width: 760px) { .form-card { padding: 2.5rem; } }

.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid #d9d0d4;
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--crimson); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }

.info-list { list-style: none; }
.info-list li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.info-list li strong { color: var(--text); font-weight: 700; }
address { font-style: normal; color: var(--text-soft); }

/* --------------------------------------------------------------------------
   CTA panel (crimson)
   -------------------------------------------------------------------------- */
.cta-panel {
  background:
    radial-gradient(ellipse at 90% 15%, rgba(216, 178, 95, 0.16), transparent 55%),
    var(--crimson);
  border-radius: var(--radius);
  padding: 2.75rem 1.75rem;
  text-align: center;
  color: #fff;
}
@media (min-width: 760px) { .cta-panel { padding: 4rem; } }
.cta-panel h2 { color: #fff; margin-bottom: 0.85rem; }
.cta-panel p { color: rgba(255, 255, 255, 0.88); max-width: 42rem; margin: 0 auto 1.9rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-panel .btn-primary { background: #fff; color: var(--crimson); }
.cta-panel .btn-primary:hover { background: var(--gold-soft); color: var(--crimson-dark); }
.cta-panel .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.cta-panel .btn-outline:hover { background: #fff; color: var(--crimson); }

/* --------------------------------------------------------------------------
   Interior page hero (dark banner)
   -------------------------------------------------------------------------- */
.page-hero {
  color: #fff;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(196, 154, 78, 0.16), transparent 55%),
    linear-gradient(135deg, #3a0f24 0%, #1d1017 50%, var(--ink) 100%);
  padding: 3.5rem 0;
}
@media (min-width: 760px) { .page-hero { padding: 5rem 0; } }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: #fff; }
.page-hero p { max-width: 44rem; margin-top: 1rem; font-size: 1.12rem; color: rgba(255, 255, 255, 0.82); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; } }

.footer-brand .brand-mark { color: var(--gold); margin-bottom: 1rem; width: 46px; height: 46px; }
.footer-brand .brand-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.6rem;
}
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; }

.site-footer h3 {
  color: #fff;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  position: relative;
}
.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--crimson); flex-shrink: 0; margin-top: 3px; }
.footer-contact address, .footer-contact a { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom p + p { margin-top: 0.5rem; }
.footer-bottom p { color: rgba(255, 255, 255, 0.45); }

/* --------------------------------------------------------------------------
   Scroll reveal — panels "flip up" into place as the next section arrives.
   Hidden state only applies when JS is on (html.js) and motion is allowed,
   so no-JS and reduced-motion visitors always see full content.
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .site-header,
  html.js .hero,
  html.js .section-head,
  html.js .about-photo,
  html.js .about-body,
  html.js .service-item,
  html.js .attorney-card,
  html.js .cta-panel,
  html.js .split > *,
  html.js .card,
  html.js .attorney,
  html.js .form-card,
  html.js .info-list,
  html.js .page-hero .container {
    opacity: 0;
    transform: perspective(1100px) rotateX(-10deg) translateY(46px);
    transform-origin: 50% 100%;
    transition:
      opacity 0.7s cubic-bezier(0.2, 0.6, 0.25, 1),
      transform 0.7s cubic-bezier(0.2, 0.6, 0.25, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
  }

  html.js .is-visible {
    opacity: 1 !important;
    transform: perspective(1100px) rotateX(0deg) translateY(0) !important;
  }

  /* Staggered cascades within a row */
  html.js .services-grid .service-item:nth-child(2),
  html.js .attorney-cards .attorney-card:nth-child(2),
  html.js .split > *:nth-child(2) { transition-delay: 0.12s; }
  html.js .services-grid .service-item:nth-child(3) { transition-delay: 0.24s; }

  /* Header leads, then the DC hero flips up just behind it */
  html.js .hero { transition-delay: 0.1s; }
}
