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

:root {
  --ink: #15171a;
  --charcoal: #20242b;
  --bg: #f5f3ef;
  --paper: #ffffff;
  --grey: #5c616b;
  --line: #e4e0d8;
  --taupe: #b7a890;
  --blue: #23456e;
  --burgundy: #7a2233;
  --gold: #c39a5b;
  --gold-bright: #d8b16e;
  --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(--bg);
  line-height: 1.65;
  font-size: 18px;
}
a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ===== Header ===== */
header.site {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 10;
}
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 .logo { height: 75px; width: auto; display: block; }
.brand .name {
  font-family: var(--display);
  letter-spacing: 3px;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.brand .firm {
  font-family: "Jost", var(--display);
  font-size: 31px;
  font-weight: 600;
  letter-spacing: 3px;
}
.brand .ent {
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--taupe);
}
.brand .tagline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 3px;
}
nav.site ul {
  list-style: none;
  display: flex;
  gap: 30px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
nav.site a { color: #d7d4cc; transition: color .15s ease; }
nav.site a:hover, nav.site a.active { color: var(--gold-bright); text-decoration: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-art-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 70%;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 4% 100%);
  overflow: hidden;
  animation: swoopIn 1.05s cubic-bezier(.18,.7,.2,1) both;
}
.hero-art-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 0% center;
  transform: scale(1.14);
  transform-origin: left center;
  filter: saturate(1.02) contrast(1.02);
}
@keyframes swoopIn {
  from { transform: translateX(16%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}
/* dark gradient blending image into the text panel */
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    var(--ink) 30%,
    rgba(21,23,26,0.72) 44%,
    rgba(21,23,26,0.15) 56%,
    transparent 68%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-copy { max-width: 560px; }
.hero-eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 22px;
  padding-left: 2px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.hero h1 {
  font-family: var(--display);
  font-size: 68px;
  line-height: 0.96;
  letter-spacing: -2.5px;
  font-weight: 900;
  margin-bottom: 24px;
}
.hero-copy p {
  font-size: 20px;
  color: #d9d6ce;
  max-width: 500px;
}
.hero .cta {
  display: inline-block;
  margin-top: 34px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 17px 38px;
  border-radius: 2px;
  transition: transform .15s ease, background .15s ease;
}
.hero .cta:hover { background: var(--gold-bright); text-decoration: none; transform: translateY(-2px); }
.hero-credit {
  position: absolute;
  bottom: 16px; right: 24px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.78);
  text-align: right;
  max-width: 60%;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ===== Sections ===== */
section { padding: 86px 0; }
.kicker {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 14px;
}
.kicker.light { color: var(--gold-bright); }
h2 {
  font-family: var(--display);
  font-size: 46px;
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: var(--ink);
  font-weight: 800;
}
h2.light { color: #fff; }
.rule { width: 72px; height: 4px; background: var(--gold); margin: 18px 0 30px; border-radius: 2px; }
p { margin-bottom: 16px; }
.lead { font-size: 20px; color: var(--grey); max-width: 760px; }

/* ===== Cards ===== */
.grid { display: grid; gap: 26px; margin-top: 36px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 34px 30px;
  border-radius: 3px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(21,23,26,0.16); }
.card h3 {
  font-family: var(--display);
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.card p { font-size: 17px; color: var(--grey); margin-bottom: 0; }

/* ===== Practice section (image bg) ===== */
.practice-bg {
  background:
    linear-gradient(rgba(21,23,26,0.80), rgba(21,23,26,0.86)),
    url('images/supreme-court-up.jpg') center/cover no-repeat fixed;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* ===== Experience section (image bg) ===== */
.exp-bg {
  background:
    linear-gradient(rgba(21,23,26,0.52), rgba(21,23,26,0.60)),
    url('images/hearron-podium.JPG') center/cover no-repeat fixed;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.exp-copy { max-width: 760px; margin: 0 auto; text-align: left; }
.exp-copy p { color: #ece9e2; }
.link-light { color: var(--gold-bright); font-family: var(--display); font-size: 14px; font-weight: 600; letter-spacing: 0.5px; }
.link-light:hover { color: #fff; }

/* ===== Closing CTA section ===== */
section:not([class]) { background: var(--charcoal); }
section:not([class]) .kicker { color: var(--gold-bright); }
section:not([class]) h2 { color: #fff; }
section:not([class]) .lead { color: #d9d6ce; }
section:not([class]) .cta {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 17px 38px;
  border-radius: 2px;
  transition: transform .15s ease, background .15s ease;
}
section:not([class]) .cta:hover { background: var(--gold-bright); text-decoration: none; transform: translateY(-2px); }

/* ===== Footer ===== */
footer.site {
  background: var(--ink);
  color: #bcbfc6;
  font-family: var(--sans);
  font-size: 14px;
  padding: 56px 0 40px;
  border-top: 3px solid var(--gold);
}
.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.1); }
.footer-copy { font-family: var(--display); letter-spacing: 1px; color: #9aa0a8; font-size: 13px; }
.disclaimer { font-size: 12px; color: #84888f; max-width: 660px; line-height: 1.6; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  /* Stack the hero: image on top, text panel below */
  .hero { display: block; min-height: 0; padding: 0; }
  .hero-art-bg {
    position: relative;
    width: 100%;
    height: 300px;
    clip-path: none;
    animation: none;
  }
  .hero-art-bg img {
    object-position: center;
    transform: none;
  }
  .hero-shade { display: none; }
  .hero-inner {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 44px 28px 52px;
    background: var(--ink);
  }
  .hero-copy { max-width: 100%; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero h1 { font-size: 40px; letter-spacing: -1.2px; }
  .hero-copy p { font-size: 18px; max-width: 100%; }
  .grid.cols-3 { grid-template-columns: 1fr; }
  h2 { font-size: 34px; }
  header.site .container { flex-direction: column; gap: 16px; text-align: center; }
  .brand .logo { height: 65px; }
  nav.site ul { flex-wrap: wrap; justify-content: center; gap: 18px; }
  .footer-grid { flex-direction: column; gap: 32px; }
}
