:root {
  --navy: #0f2a3a;
  --gold: #c9a24a;
  --sand: #f6f4ef;
  --border-soft: #e3ded6;
  --text-main: #14212b;
}

body {
  background: var(--sand);
  margin-top: 0 !important;
}

/* Page wrapper refinement */
#main.wrapper {
  background: var(--sand);
  padding-top: 0 !important;
}

#main .inner {
  max-width: 1100px;
}

/* Header */
header.major h2 {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

/* Intro section */
.a-sub-content > h3:first-of-type {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.a-sub-content > p:first-of-type {
  max-width: 65ch;
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 2rem;
}

.attorney-topnav {
  margin-top: -0.17rem !important;
  top: 0;
  position: relative;
}

/* -----------------------
   Video Block
------------------------ */

.a-sub-content iframe {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  margin: 1.5rem auto 2.5rem;
  display: block;
}

/* -----------------------
   Year Sections
------------------------ */

.a-sub-content strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin: 2.75rem 0 1rem;
  position: relative;
}

/* Accent underline */
.a-sub-content strong::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  background: var(--gold);
  margin-top: 0.35rem;
  border-radius: 2px;
}

/* Remove legacy HR look */
.a-sub-content hr {
  display: none;
}

/* -----------------------
   Incident List Cards
------------------------ */

.a-sub-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.a-sub-content ul li {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

/* Date */
.a-sub-content ul li span b {
  font-size: 1.05rem;
  color: var(--navy);
}

/* Links block */
.a-sub-content ul li a {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(15,42,58,0.35);
}

.a-sub-content ul li a:hover {
  border-bottom-width: 2px;
}

/* Space bullets cleanly */
.a-sub-content ul li br {
  display: none;
}

.a-sub-content ul li a + a {
  margin-left: 1.25rem;
}

/* -----------------------
   Responsive
------------------------ */

@media (max-width: 768px) {

  header.major h2 {
    font-size: 1.6rem;
  }

  .a-sub-content > h3:first-of-type {
    font-size: 1.35rem;
  }

  .a-sub-content iframe {
    border-radius: 0.6rem;
  }

  .a-sub-content ul li {
    padding: 1.1rem;
  }

  .a-sub-content strong {
    font-size: 1.2rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .a-sub-content iframe,
  .a-sub-content ul li {
    box-shadow: none;
  }
}

/* =====================================
   CONTACT PAGE
===================================== */

.contact-page {
  background: #f8f7f4;
  margin: 0;
}

.contact-intro {
  max-width: 65ch;
  margin: 0;
  font-size: 1.05rem;
  color: #333;
}

/* Grid */
.contact-grid {
  margin: 1rem auto 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Card */
.contact-card {
  background: #ffffff;
  border: 1px solid #e3ded6;
  border-radius: 0.85rem;
  padding: 1.75rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.contact-card i {
  color: var(--gold);
  font-size: 1.3rem;
}

.contact-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.contact-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,42,58,0.35);
}

.contact-card a:hover {
  border-bottom-width: 2px;
}

/* Alert / Emergency */
.contact-alert {
  margin-top: 2rem;
  border-left: 5px solid #c44;
  background: #fff8f8;
  padding: .5rem 1rem;
}

.contact-alert h3 {
  color: #a22;
}

.contact-alert i {
  color: #c44;
}

.contact-alert p {
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 600px) {
  .contact-grid {
    gap: 1.5rem;
  }

  .contact-card {
    padding: 1.4rem;
  }
}

.sub-img {
  width: 50%;
  height: auto;
  margin: .5rem auto;
  border-radius: .5rem;
}