@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800;900&family=Montserrat:wght@500;600;700&display=swap');

.brand .logo{height:71px;width:auto;display:block;}

:root {
  --navy: #16294d;
  --navy-dark: #0d1830;
  --burgundy: #7a2233;
  --gold: #c39a5b;
  --gold-bright: #d8b16e;
  --ink: #18202e;
  --muted: #5a6170;
  --paper: #f7f5ef;
  --line: #e2ddd0;
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --serif: "Georgia", "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

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

body {
  font-family: var(--serif);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 18px;
}

a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* Header */
header.site {
  background: var(--navy);
  color: #fff;
  border-bottom: 3px solid var(--gold);
}
header.site .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand { color: #fff; }
.brand .name {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 1.5px;
  font-weight: 800;
  text-transform: uppercase;
}
.brand .tagline {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
nav.site ul {
  list-style: none;
  display: flex;
  gap: 26px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
nav.site a { color: #e8e6df; }
nav.site a:hover, nav.site a.active { color: var(--gold); text-decoration: none; }

/* Hero */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(195,154,91,0.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 104px 0;
  border-bottom: 4px solid var(--gold);
}
.hero h1 {
  font-family: var(--display);
  font-size: 62px;
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 22px;
  font-weight: 900;
}
.hero p { font-size: 21px; color: #d8d4c8; max-width: 720px; }
.hero .cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 34px;
  font-weight: 700;
  border-radius: 2px;
  transition: transform .15s ease, background .15s ease;
}
.hero .cta:hover { background: var(--gold-bright); text-decoration: none; transform: translateY(-2px); }
.hero-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: 52px; }
.hero-art { margin: 0; }
.hero-art .crop {
  overflow: hidden;
  background: #fff;
  padding: 10px;
  border: 1px solid var(--gold);
  box-shadow: 0 22px 50px rgba(0,0,0,0.40);
  aspect-ratio: 4 / 3;
}
.hero-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 0% center;
  transform: scale(1.22);
}
.hero-art figcaption {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #cdc7b8;
  margin-top: 12px;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Sections */
section { padding: 64px 0; }
section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -1.2px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 800;
}
.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 14px;
}
h2 + p, .lead { margin-top: 14px; }
.lead { font-size: 20px; color: var(--muted); max-width: 760px; }
p { margin-bottom: 16px; }
.rule { width: 72px; height: 4px; background: var(--gold); margin: 18px 0 26px; border-radius: 2px; }

/* Practice section with background image */
.practice-bg {
  position: relative;
  background:
    linear-gradient(rgba(13,24,48,0.50), rgba(13,24,48,0.58)),
    url('images/supreme-court-up.jpg') center/cover no-repeat fixed;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.kicker.light { color: var(--gold-bright); }
h2.light { color: #fff; }

/* Experience section with background image */
.exp-bg {
  background:
    linear-gradient(rgba(13,24,48,0.78), rgba(13,24,48,0.84)),
    url('images/hearron-podium.JPG') center/cover no-repeat fixed;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.exp-copy { max-width: 760px; margin: 0 auto; text-align: left; }
.exp-copy p { color: #e8e6df; }
.link-light { color: var(--gold-bright); }
.link-light:hover { color: #fff; }

/* Cards / grid */
.grid { display: grid; gap: 28px; margin-top: 30px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 32px 28px;
  border-radius: 3px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(22,41,77,0.12); }
.card h3 { font-family: var(--display); color: var(--navy); font-size: 24px; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 12px; }
.card p { font-size: 17px; color: var(--muted); margin-bottom: 0; }

/* Credentials list */
.creds { list-style: none; margin-top: 18px; }
.creds li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.creds li strong { color: var(--navy); }

/* Two-column content */
.two-col { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 26px;
  font-family: var(--sans);
  font-size: 15px;
}
.sidebar h4 { color: var(--navy); font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.headshot {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 22px;
  border-bottom: 4px solid var(--gold);
}
.sidebar ul { list-style: none; }
.sidebar li { padding: 7px 0; border-bottom: 1px solid var(--line); }

/* Credentials band (About page) */
.creds-band {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 3px solid var(--gold);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}
.cred-group h4 {
  font-family: var(--display);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.cred-group ul { list-style: none; }
.cred-group li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.cred-group li:last-child { border-bottom: none; }
@media (max-width: 800px) {
  .creds-band { grid-template-columns: 1fr; gap: 28px; }
}

/* Media list */
.media-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.media-item .date { font-family: var(--sans); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--burgundy); }
.media-item h3 { font-family: var(--display); font-size: 24px; font-weight: 800; letter-spacing: -0.4px; color: var(--navy); margin: 6px 0; }

/* Contact form */
form { max-width: 620px; }
label { display: block; font-family: var(--sans); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin: 18px 0 6px; }
input, textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 17px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
}
button[type=submit] {
  margin-top: 24px;
  background: var(--navy);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  padding: 14px 30px;
  cursor: pointer;
}
button[type=submit]:hover { background: var(--burgundy); }

.contact-block { font-family: var(--sans); font-size: 16px; line-height: 1.9; }
.contact-block strong { color: var(--navy); display: block; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-top: 16px; }

/* Footer */
footer.site {
  background: var(--navy-dark);
  color: #c5c8d0;
  font-family: var(--sans);
  font-size: 14px;
  padding: 56px 0 40px;
  margin-top: 0;
}
.footer-grid { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-logo { height: 58px; width: auto; }
.footer-brand a { color: var(--gold-bright); font-size: 15px; }
.footer-offices { display: flex; gap: 30px; flex-wrap: wrap; }
.office { width: 152px; }
.office img { width: 100%; height: 84px; object-fit: cover; border-radius: 3px; border-bottom: 2px solid var(--gold); margin-bottom: 10px; display: block; }
.office strong { display: block; font-family: var(--display); color: #fff; letter-spacing: 1px; text-transform: uppercase; font-size: 12px; margin-bottom: 5px; }
.office span { color: #9aa0a8; font-size: 13px; line-height: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-copy { font-family: var(--display); letter-spacing: 1px; color: #9aa0a8; font-size: 13px; }
.disclaimer { font-size: 12px; color: #8a8f9c; max-width: 660px; line-height: 1.6; }

@media (max-width: 800px) {
  .two-col, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; gap: 32px; }
  header.site .container { flex-direction: column; gap: 16px; text-align: center; }
  nav.site ul { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .hero h1 { font-size: 32px; }
}
