/* =========================================================
   Hallowell & Pierce — Personal Injury Trial Firm Demo
   Standalone. No Tailwind. No shared dependencies.
   Namespace prefix: hp-
   ========================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Backgrounds — deep charcoal base */
  --hp-bg:       #141414;
  --hp-bg-2:     #1c1c1c;
  --hp-bg-3:     #242424;
  --hp-bg-4:     #2e2e2e;
  --hp-bg-light: #f5f3ee;
  --hp-bg-light-2: #ede9e1;

  /* Accent — warm amber/ochre */
  --hp-amber:      #d4902a;
  --hp-amber-lt:   #e8a840;
  --hp-amber-pale: #f5c96e;
  --hp-amber-dim:  rgba(212, 144, 42, 0.18);

  /* Text */
  --hp-text:   #f0ede7;
  --hp-text-2: #ccc8c0;
  --hp-text-3: #9a9590;
  --hp-text-4: #615e58;

  /* Rules */
  --hp-line:        rgba(255,255,255,0.09);
  --hp-line-strong: rgba(255,255,255,0.18);
  --hp-line-amber:  rgba(212, 144, 42, 0.30);

  /* Typography */
  --hp-ff-display: "Barlow Condensed", "Impact", system-ui, sans-serif;
  --hp-ff-body:    "Inter", system-ui, sans-serif;

  /* Layout */
  --hp-max:    1280px;
  --hp-pad-x:  clamp(20px, 4.5vw, 72px);
  --hp-sec-y:  clamp(80px, 9vw, 128px);

  /* Radii */
  --hp-r-sm:   4px;
  --hp-r-md:   8px;
  --hp-r-lg:   14px;
  --hp-r-xl:   22px;
  --hp-r-pill: 999px;

  /* Motion */
  --hp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--hp-ff-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--hp-bg);
  color: var(--hp-text-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
address { font-style: normal; }
ol, ul { list-style: none; margin: 0; padding: 0; }

::selection { background: var(--hp-amber); color: var(--hp-bg); }

/* ---------- 3. Skip Link ---------- */
.hp-skip {
  position: absolute;
  left: -9999px;
  top: 4px;
  background: var(--hp-amber);
  color: var(--hp-bg);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 200;
  font-family: var(--hp-ff-body);
}
.hp-skip:focus { left: 16px; }

/* ---------- 4. Typography ---------- */
.hp-display {
  font-family: var(--hp-ff-display);
  font-weight: 800;
  font-size: clamp(52px, 9vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--hp-text);
  margin: 0;
  text-wrap: balance;
}
.hp-display em {
  font-style: normal;
  color: var(--hp-amber);
  display: block;
}
.hp-display--section {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.95;
}

.hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hp-ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-amber-lt);
  margin: 0 0 20px;
}
.hp-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--hp-amber);
  flex-shrink: 0;
}
.hp-eyebrow--dark {
  color: var(--hp-amber);
}

/* ---------- 5. Buttons ---------- */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  font-family: var(--hp-ff-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  border-radius: var(--hp-r-sm);
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.25s var(--hp-ease),
    color 0.25s var(--hp-ease),
    border-color 0.25s var(--hp-ease),
    transform 0.25s var(--hp-ease),
    box-shadow 0.25s var(--hp-ease);
}
.hp-btn:focus-visible {
  outline: 3px solid var(--hp-amber);
  outline-offset: 3px;
}
.hp-btn--lg  { height: 56px; padding: 0 30px; font-size: 15px; }
.hp-btn--xl  { height: 64px; padding: 0 36px; font-size: 16px; }

.hp-btn--primary {
  background: var(--hp-amber);
  color: var(--hp-bg);
  border-color: var(--hp-amber);
}
.hp-btn--primary:hover {
  background: var(--hp-amber-lt);
  border-color: var(--hp-amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(212,144,42,0.5);
}

.hp-btn--outline {
  background: transparent;
  color: var(--hp-text);
  border-color: rgba(255,255,255,0.35);
}
.hp-btn--outline:hover {
  border-color: var(--hp-amber);
  color: var(--hp-amber);
}

.hp-btn--outline-light {
  background: transparent;
  color: var(--hp-text);
  border-color: rgba(255,255,255,0.4);
}
.hp-btn--outline-light:hover {
  border-color: var(--hp-amber);
  color: var(--hp-amber-pale);
}

/* ---------- 6. Navigation ---------- */
.hp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--hp-ease), background 0.3s var(--hp-ease);
}
.hp-nav.is-scrolled {
  border-color: var(--hp-line);
  background: rgba(20, 20, 20, 0.96);
}
.hp-nav__inner {
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 0 var(--hp-pad-x);
  height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Brand */
.hp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hp-ff-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--hp-text);
  white-space: nowrap;
}
.hp-brand__icon {
  color: var(--hp-amber);
  flex-shrink: 0;
  display: flex;
}
.hp-brand__amp { color: var(--hp-amber); margin: 0 1px; }

/* Nav links */
.hp-nav__links {
  justify-self: center;
  display: flex;
  gap: 2px;
}
.hp-nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--hp-text-3);
  padding: 8px 14px;
  border-radius: var(--hp-r-sm);
  transition: color 0.2s var(--hp-ease), background 0.2s var(--hp-ease);
}
.hp-nav__links a:hover {
  color: var(--hp-text);
  background: var(--hp-bg-3);
}
.hp-nav__links a:focus-visible {
  outline: 2px solid var(--hp-amber);
  outline-offset: 2px;
}

/* Nav right */
.hp-nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hp-nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--hp-amber-lt);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.hp-nav__phone:hover { color: var(--hp-amber-pale); }

/* Hamburger toggle */
.hp-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--hp-bg-3);
  border: 1px solid var(--hp-line-strong);
  border-radius: var(--hp-r-sm);
  padding: 0;
}
.hp-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--hp-text);
  border-radius: 2px;
  transition: transform 0.25s var(--hp-ease), opacity 0.25s;
}
.hp-nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hp-nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hp-nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.hp-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--hp-pad-x) 24px;
  border-top: 1px solid var(--hp-line);
  background: var(--hp-bg-2);
}
.hp-drawer.is-open { display: flex; }
.hp-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.hp-drawer nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--hp-line);
  font-size: 15px;
  font-weight: 600;
  color: var(--hp-text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.hp-drawer nav a:hover { color: var(--hp-amber-lt); }
.hp-drawer__phone { align-self: flex-start; margin-top: 4px; }
.hp-drawer__spanish {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-amber);
}

@media (max-width: 1020px) {
  .hp-nav__links { display: none; }
  .hp-nav__phone { display: none; }
  .hp-nav__cta   { display: none; }
  .hp-nav__toggle { display: flex; }
  .hp-nav__inner { grid-template-columns: auto 1fr; }
}

/* ---------- 7. Hero ---------- */
.hp-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hp-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(14,12,10,0.96) 0%,
      rgba(14,12,10,0.80) 50%,
      rgba(14,12,10,0.40) 100%
    ),
    linear-gradient(
      to top,
      rgba(14,12,10,0.85) 0%,
      transparent 60%
    );
}
.hp-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: clamp(100px, 14vw, 180px) var(--hp-pad-x) 0;
}
.hp-hero__content { max-width: 700px; }
.hp-hero .hp-eyebrow { margin-bottom: 24px; }
.hp-hero .hp-display { margin-bottom: 28px; }
.hp-hero__sub {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
  color: var(--hp-text-2);
  max-width: 54ch;
  margin: 0 0 36px;
}
.hp-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Trust strip */
.hp-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--hp-line-amber);
  padding-top: 28px;
  max-width: 560px;
}
.hp-hero__trust li {
  display: grid;
  gap: 6px;
  padding-right: 24px;
  border-right: 1px solid var(--hp-line);
}
.hp-hero__trust li:last-child { border-right: 0; padding-right: 0; padding-left: 24px; }
.hp-hero__trust li:nth-child(2) { padding-left: 24px; }
.hp-hero__trust strong {
  font-family: var(--hp-ff-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--hp-amber-lt);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hp-hero__trust span {
  font-size: 12px;
  font-weight: 500;
  color: var(--hp-text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .hp-hero { min-height: auto; padding-top: 40px; padding-bottom: 60px; }
  .hp-hero__trust { grid-template-columns: 1fr 1fr; }
  .hp-hero__trust li:last-child { border-right: 0; padding-left: 0; padding-top: 20px; grid-column: span 2; border-top: 1px solid var(--hp-line); border-right: 0; }
}

/* ---------- 8. Results Band ---------- */
.hp-results {
  background: var(--hp-bg);
  padding: var(--hp-sec-y) var(--hp-pad-x);
  max-width: var(--hp-max);
  margin: 0 auto;
}
.hp-results__head {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 3px solid var(--hp-line-amber);
}
.hp-results__head .hp-display--section {
  margin-top: 8px;
  margin-bottom: 16px;
}
.hp-results__disclaimer {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--hp-text-4);
  background: var(--hp-bg-3);
  border: 1px solid var(--hp-line);
  border-left: 3px solid var(--hp-amber);
  padding: 10px 14px;
  border-radius: var(--hp-r-sm);
  line-height: 1.5;
  max-width: 68ch;
  margin: 0;
}
.hp-results__disclaimer svg { flex-shrink: 0; margin-top: 1px; color: var(--hp-amber); }

.hp-results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  border: 2px solid var(--hp-line-amber);
}
.hp-verdict {
  background: var(--hp-bg-2);
  padding: 32px 28px;
  border: 1px solid var(--hp-line);
  display: grid;
  gap: 8px;
  align-content: start;
  transition: background 0.25s var(--hp-ease);
}
.hp-verdict:hover { background: var(--hp-bg-3); }
.hp-verdict--featured {
  grid-column: span 1;
  background: var(--hp-bg-3);
  border-color: var(--hp-line-amber);
  position: relative;
}
.hp-verdict--featured::before {
  content: "LARGEST VERDICT";
  position: absolute;
  top: 0; left: 0;
  background: var(--hp-amber);
  color: var(--hp-bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  font-family: var(--hp-ff-body);
}
.hp-verdict__amount {
  font-family: var(--hp-ff-display);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 68px);
  color: var(--hp-amber-lt);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.hp-verdict--featured .hp-verdict__amount {
  font-size: clamp(52px, 6.5vw, 88px);
}
.hp-verdict__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-amber);
  font-family: var(--hp-ff-body);
  border-left: 3px solid var(--hp-amber);
  padding-left: 10px;
  margin-bottom: 4px;
}
.hp-verdict__case {
  font-family: var(--hp-ff-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
  color: var(--hp-text);
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.hp-verdict__detail {
  font-size: 13.5px;
  color: var(--hp-text-3);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hp-results__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hp-results__grid { grid-template-columns: 1fr; }
  .hp-verdict--featured { grid-column: span 1; }
}

/* ---------- 9. Practice Areas ---------- */
.hp-practices {
  background: var(--hp-bg-light);
  padding: var(--hp-sec-y) 0;
}
.hp-practices__inner {
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 0 var(--hp-pad-x);
}
.hp-section-head { margin-bottom: 48px; }
.hp-section-head .hp-display--section { margin: 8px 0 16px; }
.hp-section-head__body {
  font-size: 16px;
  color: var(--hp-text-4);
  max-width: 52ch;
  margin: 0;
  line-height: 1.7;
}
.hp-section-head--center { text-align: center; }
.hp-section-head--center .hp-eyebrow { display: inline-flex; }
.hp-section-head--center .hp-section-head__body { margin: 0 auto; }

/* On the light background section */
.hp-practices .hp-section-head .hp-display--section { color: var(--hp-bg); }
.hp-practices .hp-section-head__body { color: #5a5550; }
.hp-practices .hp-eyebrow--dark { color: var(--hp-amber); }

.hp-practices__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1020px) { .hp-practices__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .hp-practices__grid { grid-template-columns: 1fr; } }

.hp-practice-card {
  display: block;
  background: white;
  border: 2px solid #e0dbd3;
  border-radius: var(--hp-r-md);
  padding: 28px 24px 22px;
  position: relative;
  cursor: pointer;
  transition:
    border-color 0.25s var(--hp-ease),
    box-shadow 0.25s var(--hp-ease),
    transform 0.25s var(--hp-ease);
}
.hp-practice-card:hover {
  border-color: var(--hp-amber);
  box-shadow: 0 8px 32px -8px rgba(212,144,42,0.25);
  transform: translateY(-4px);
}
.hp-practice-card:focus-visible {
  outline: 3px solid var(--hp-amber);
  outline-offset: 2px;
}
.hp-practice-card__icon {
  color: var(--hp-amber);
  margin-bottom: 18px;
}
.hp-practice-card h3 {
  font-family: var(--hp-ff-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--hp-bg);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.hp-practice-card p {
  font-size: 14px;
  color: #6a6560;
  margin: 0 0 18px;
  line-height: 1.6;
}
.hp-practice-card__arrow {
  display: flex;
  align-items: center;
  color: var(--hp-amber);
  transition: transform 0.25s var(--hp-ease);
}
.hp-practice-card:hover .hp-practice-card__arrow { transform: translateX(5px); }

/* ---------- 10. No Fee Section ---------- */
.hp-fee {
  background: var(--hp-bg-2);
  border-top: 3px solid var(--hp-line-amber);
  border-bottom: 3px solid var(--hp-line-amber);
  padding: var(--hp-sec-y) 0;
}
.hp-fee__inner {
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 0 var(--hp-pad-x);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 860px) { .hp-fee__inner { grid-template-columns: 1fr; } }

.hp-fee__text .hp-display--section { margin: 8px 0 20px; }
.hp-fee__body {
  font-size: 16px;
  color: var(--hp-text-3);
  max-width: 52ch;
  margin: 0 0 28px;
  line-height: 1.7;
}
.hp-fee__list {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
  border-top: 1px solid var(--hp-line);
  padding-top: 24px;
}
.hp-fee__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--hp-text-2);
  line-height: 1.5;
}
.hp-fee__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--hp-amber-dim);
  border: 1px solid var(--hp-line-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-amber-lt);
  margin-top: 1px;
}

.hp-fee__media {
  position: relative;
  border-radius: var(--hp-r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--hp-bg-3);
}
.hp-fee__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hp-fee__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(20, 20, 20, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hp-line-amber);
  border-radius: var(--hp-r-md);
  padding: 18px 22px;
  display: grid;
  gap: 4px;
}
.hp-fee__badge strong {
  font-family: var(--hp-ff-display);
  font-weight: 800;
  font-size: 42px;
  color: var(--hp-amber-lt);
  line-height: 1;
  text-transform: uppercase;
}
.hp-fee__badge span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hp-text-3);
}

/* ---------- 11. Attorneys ---------- */
.hp-attorneys {
  background: var(--hp-bg);
  padding: var(--hp-sec-y) 0;
}
.hp-attorneys__inner {
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 0 var(--hp-pad-x);
}
.hp-attorneys .hp-section-head--center { max-width: 60ch; margin: 0 auto 56px; }
.hp-attorneys .hp-section-head__body { color: var(--hp-text-3); }

.hp-attorneys__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .hp-attorneys__grid { grid-template-columns: 1fr; max-width: 560px; } }

.hp-attorney-card {
  background: var(--hp-bg-2);
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-r-lg);
  overflow: hidden;
  transition: border-color 0.25s var(--hp-ease);
}
.hp-attorney-card:hover { border-color: var(--hp-line-amber); }

.hp-attorney-card__photo {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--hp-bg-3);
}
.hp-attorney-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--hp-ease);
}
.hp-attorney-card:hover .hp-attorney-card__photo img { transform: scale(1.04); }

.hp-attorney-card__body { padding: 28px 26px 26px; }
.hp-attorney-card__name {
  font-family: var(--hp-ff-display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--hp-text);
  margin: 0 0 4px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.hp-attorney-card__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-amber);
  margin: 0 0 18px;
}
.hp-attorney-card__creds {
  border-top: 1px solid var(--hp-line);
  border-bottom: 1px solid var(--hp-line);
  padding: 16px 0;
  margin: 0 0 18px;
  display: grid;
  gap: 6px;
}
.hp-attorney-card__creds li {
  font-size: 12.5px;
  color: var(--hp-text-3);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}
.hp-attorney-card__creds li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--hp-amber);
}
.hp-attorney-card__bio {
  font-size: 14px;
  color: var(--hp-text-3);
  margin: 0;
  line-height: 1.65;
}

/* ---------- 12. Process ---------- */
.hp-process {
  background: var(--hp-bg-light);
  padding: var(--hp-sec-y) 0;
}
.hp-process__inner {
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 0 var(--hp-pad-x);
}
.hp-process .hp-display--section { color: var(--hp-bg); margin: 8px 0 48px; }

.hp-process__steps {
  display: grid;
  gap: 0;
  border-top: 3px solid var(--hp-amber);
}
.hp-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  border-bottom: 1px solid #d4cfc7;
  padding: 32px 0;
  transition: background 0.2s;
}
.hp-step:hover { background: rgba(212,144,42,0.04); }

.hp-step__num {
  font-family: var(--hp-ff-display);
  font-weight: 800;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--hp-amber);
  line-height: 1;
  opacity: 0.35;
  padding-right: 24px;
  align-self: flex-start;
  margin-top: 2px;
}
.hp-step__content { display: grid; gap: 10px; align-content: start; }
.hp-step h3 {
  font-family: var(--hp-ff-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  color: var(--hp-bg);
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.hp-step p {
  font-size: 15px;
  color: #5a5550;
  margin: 0;
  line-height: 1.65;
  max-width: 60ch;
}

@media (max-width: 600px) {
  .hp-step { grid-template-columns: 60px 1fr; }
}

/* ---------- 13. Testimonials ---------- */
.hp-testimonials {
  background: var(--hp-bg-2);
  padding: var(--hp-sec-y) 0;
}
.hp-testimonials__inner {
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 0 var(--hp-pad-x);
}
.hp-testimonials .hp-section-head--center { max-width: 60ch; margin: 0 auto 40px; }
.hp-testimonials__disclaimer {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--hp-text-4);
  background: var(--hp-bg-3);
  border: 1px solid var(--hp-line);
  border-left: 3px solid var(--hp-amber);
  padding: 10px 14px;
  border-radius: var(--hp-r-sm);
  line-height: 1.5;
  max-width: 66ch;
  margin: 16px auto 0;
}
.hp-testimonials__disclaimer svg { flex-shrink: 0; margin-top: 1px; color: var(--hp-amber); }

.hp-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 900px) { .hp-testimonials__grid { grid-template-columns: 1fr; } }

.hp-testimonial {
  margin: 0;
  background: var(--hp-bg-3);
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-r-lg);
  padding: 32px 28px;
  display: grid;
  gap: 24px;
  align-content: space-between;
}
.hp-testimonial--featured {
  background: var(--hp-amber);
  border-color: var(--hp-amber);
}
.hp-testimonial__quote {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--hp-text);
  line-height: 1.65;
  margin: 0;
  position: relative;
  padding-top: 36px;
}
.hp-testimonial--featured .hp-testimonial__quote { color: var(--hp-bg); }
.hp-testimonial__quote::before {
  content: "\201C";
  position: absolute;
  top: -4px; left: 0;
  font-family: var(--hp-ff-display);
  font-size: 72px;
  color: var(--hp-amber);
  line-height: 1;
}
.hp-testimonial--featured .hp-testimonial__quote::before { color: rgba(20,20,20,0.4); }

.hp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hp-testimonial__avatar {
  width: 46px; height: 46px;
  background: var(--hp-amber-dim);
  border: 2px solid var(--hp-line-amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--hp-ff-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--hp-amber-lt);
  flex-shrink: 0;
}
.hp-testimonial--featured .hp-testimonial__avatar {
  background: rgba(20,20,20,0.25);
  border-color: rgba(20,20,20,0.3);
  color: var(--hp-bg);
}
.hp-testimonial__author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--hp-text);
  margin-bottom: 3px;
}
.hp-testimonial--featured .hp-testimonial__author strong { color: var(--hp-bg); }
.hp-testimonial__author span {
  font-size: 12px;
  color: var(--hp-text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.hp-testimonial--featured .hp-testimonial__author span { color: rgba(20,20,20,0.6); }

/* ---------- 14. FAQ ---------- */
.hp-faq {
  background: var(--hp-bg);
  padding: var(--hp-sec-y) 0;
  border-top: 1px solid var(--hp-line);
}
.hp-faq__inner {
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 0 var(--hp-pad-x);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 860px) { .hp-faq__inner { grid-template-columns: 1fr; } }

.hp-faq__sidebar .hp-display--section { margin: 8px 0 20px; }
.hp-faq__sub {
  font-size: 15px;
  color: var(--hp-text-3);
  margin: 0;
  line-height: 1.6;
}
.hp-faq__phone {
  color: var(--hp-amber-lt);
  font-weight: 600;
  transition: color 0.2s;
}
.hp-faq__phone:hover { color: var(--hp-amber-pale); }

.hp-faq__list {
  border-top: 2px solid var(--hp-amber);
}
.hp-faq__list details {
  border-bottom: 1px solid var(--hp-line);
}
.hp-faq__list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 22px 4px;
  font-family: var(--hp-ff-display);
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 19px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--hp-text);
  transition: color 0.2s;
}
.hp-faq__list summary::-webkit-details-marker { display: none; }
.hp-faq__list summary:hover { color: var(--hp-amber-lt); }
.hp-faq__list details[open] summary { color: var(--hp-amber-lt); }
.hp-faq__list details:focus-within { outline: 2px solid var(--hp-amber); outline-offset: 2px; }

/* Plus/minus icon */
.hp-faq__icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--hp-line-amber);
  border-radius: 50%;
}
.hp-faq__icon::before,
.hp-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--hp-amber);
  top: 50%; left: 50%;
  border-radius: 1px;
  transition: transform 0.25s var(--hp-ease);
}
.hp-faq__icon::before {
  width: 10px; height: 2px;
  transform: translate(-50%, -50%);
}
.hp-faq__icon::after {
  width: 2px; height: 10px;
  transform: translate(-50%, -50%);
}
.hp-faq__list details[open] .hp-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.hp-faq__answer {
  padding: 0 4px 22px;
}
.hp-faq__answer p {
  margin: 0;
  font-size: 15px;
  color: var(--hp-text-3);
  line-height: 1.7;
  max-width: 62ch;
}

/* ---------- 15. Final CTA ---------- */
.hp-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(80px, 11vw, 140px) 0;
}
.hp-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hp-cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hp-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,12,10,0.97) 0%,
    rgba(14,12,10,0.88) 60%,
    rgba(14,12,10,0.75) 100%
  );
  z-index: -1;
}
.hp-cta__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--hp-pad-x);
  text-align: center;
}
.hp-cta__inner .hp-display {
  margin: 12px 0 36px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}
.hp-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hp-cta__spanish {
  font-size: 15px;
  color: var(--hp-text-2);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--hp-line-amber);
  border-radius: var(--hp-r-md);
  padding: 16px 20px;
  max-width: 52ch;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hp-cta__spanish strong { color: var(--hp-amber-lt); }
.hp-cta__details {
  display: flex;
  gap: 8px 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-text-4);
}
.hp-cta__details span { position: relative; }
.hp-cta__details span + span::before {
  content: "/";
  position: absolute;
  left: -18px;
  color: var(--hp-amber);
  opacity: 0.5;
}
@media (max-width: 600px) {
  .hp-cta__details span + span::before { display: none; }
}

/* ---------- 16. Footer ---------- */
.hp-footer {
  background: var(--hp-bg);
  border-top: 3px solid var(--hp-line-amber);
}
.hp-footer__top {
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) var(--hp-pad-x) clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (max-width: 860px) { .hp-footer__top { grid-template-columns: 1fr; } }

.hp-brand--footer { gap: 12px; }
.hp-footer__brand p {
  margin: 12px 0 20px;
  font-size: 14px;
  color: var(--hp-text-3);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hp-footer__address {
  font-size: 14px;
  color: var(--hp-text-3);
  line-height: 1.7;
}
.hp-footer__address a {
  color: var(--hp-amber-lt);
  font-weight: 600;
  transition: color 0.2s;
}
.hp-footer__address a:hover { color: var(--hp-amber-pale); }

.hp-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) { .hp-footer__cols { grid-template-columns: 1fr 1fr; } }

.hp-footer__col h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-text-4);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hp-line);
}
.hp-footer__col ul { display: grid; gap: 10px; }
.hp-footer__col li {
  font-size: 14px;
  color: var(--hp-text-3);
  line-height: 1.4;
}
.hp-footer__col a {
  color: var(--hp-text-2);
  transition: color 0.2s;
}
.hp-footer__col a:hover { color: var(--hp-amber-lt); }

/* Disclaimer */
.hp-footer__disclaimer {
  border-top: 1px solid var(--hp-line);
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 28px var(--hp-pad-x);
}
.hp-footer__disclaimer p {
  font-size: 12px;
  color: var(--hp-text-4);
  line-height: 1.65;
  max-width: 90ch;
  margin: 0 0 10px;
}
.hp-footer__disclaimer p:last-child { margin-bottom: 0; }

/* Bottom bar */
.hp-footer__bar {
  border-top: 1px solid var(--hp-line);
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 18px var(--hp-pad-x);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--hp-text-4);
}
.hp-footer__demo { font-style: italic; }

/* ---------- 17. Scroll-reveal utility ---------- */
.hp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--hp-ease), transform 0.6s var(--hp-ease);
}
.hp-reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .hp-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 18. Focus visible global ---------- */
:focus-visible {
  outline: 3px solid var(--hp-amber);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }
