/* ============================================================
   J R & Co. Law Firm — clean modern design system
   Black & yellow. Color only where it earns its place.
   ============================================================ */

:root {
  /* Ink / neutrals */
  --ink: #0e0e10;
  --ink-2: #18181b;
  --ink-3: #232327;
  --ink-soft: #3c3c42;
  --muted: #6c6c74;
  --muted-2: #8a8a91;

  /* Surfaces */
  --bg: #f4f4f1;
  --surface: #ffffff;
  --surface-2: #fafafa;
  --surface-warm: #fdfaf2;

  /* Brand aliases (kept for compatibility) */
  --brand-black: #0e0e10;
  --brand-yellow: #f5bd2f;

  /* Lines */
  --line: rgba(14, 14, 16, 0.10);
  --line-strong: rgba(14, 14, 16, 0.16);
  --line-on-dark: rgba(255, 255, 255, 0.12);

  /* Brand yellow — the one accent */
  --yellow: #f5bd2f;
  --yellow-strong: #ffc933;
  --yellow-deep: #b07d10;
  --yellow-soft: #fdf3d4;
  --on-yellow: #1a1400;

  /* Shadows — soft, sparse */
  --shadow-sm: 0 1px 2px rgba(14, 14, 16, 0.04), 0 6px 16px rgba(14, 14, 16, 0.05);
  --shadow-md: 0 2px 6px rgba(14, 14, 16, 0.06), 0 18px 40px rgba(14, 14, 16, 0.09);
  --shadow-lg: 0 30px 70px rgba(14, 14, 16, 0.14);

  /* Geometry */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --pill: 999px;
  --max-width: 1180px;

  /* Type */
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SFMono-Regular", "Menlo", monospace;
  --display: var(--sans);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }

::selection { background: var(--yellow); color: var(--on-yellow); }

.page-shell { min-height: 100vh; overflow-x: clip; }

/* ---------- Layout container ---------- */
.site-header,
.section,
.hero,
.page-hero,
.site-footer,
.disclaimer {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 14px clamp(20px, 5vw, 56px);
  background: rgba(244, 244, 241, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 52px;
  height: auto;
  object-fit: contain;
}

.brand > span { display: block; min-width: 0; }

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 2px;
}

.site-nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: var(--pill);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.site-nav a:hover { color: var(--ink); background: rgba(14, 14, 16, 0.05); }

.site-nav a[aria-current="page"] { color: var(--ink); }

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow);
}

/* ---------- Buttons ---------- */
.header-action,
.primary-action,
.secondary-action,
.contact-submit,
.row-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--pill);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease),
    background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}

/* Yellow = the key conversion action */
.header-action,
.primary-action,
.contact-submit {
  background: var(--yellow);
  color: var(--on-yellow);
  box-shadow: 0 8px 22px rgba(245, 189, 47, 0.35);
}

.header-action:hover,
.primary-action:hover,
.contact-submit:hover {
  background: var(--yellow-strong);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 189, 47, 0.45);
}

.header-action { min-height: 42px; padding: 0 18px; font-size: 13.5px; }
.primary-action, .secondary-action { min-height: 54px; padding: 0 26px; font-size: 15px; }

.secondary-action {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.secondary-action:hover { border-color: var(--ink); transform: translateY(-2px); }

.inline-action { margin-top: 26px; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow);
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.hero-title, .page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.page-hero h1 { max-width: 16ch; }

.hero-summary,
.page-hero p:last-child,
.section-header p,
.split-showcase p,
.light-card p,
.why-card p,
.process-card p,
.catalog-note,
.field-note,
.form-status {
  color: var(--ink-soft);
}

.hero-summary, .page-hero p:last-child {
  max-width: 56ch;
  margin: 24px 0 0;
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.6;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: 48px;
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
}

.hero > *, .section > *, .split-showcase > *,
.attorney-teaser > *, .contact-section > *, .attorney-section > * { min-width: 0; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.hero-links a {
  padding: 9px 15px;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.hero-links a:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }

/* Hero docket card — dark, with yellow accents */
.hero-panel { min-width: 0; }

.docket {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.docket::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(245, 189, 47, 0.18), transparent 55%);
  pointer-events: none;
}

.docket > * { position: relative; }

.docket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.docket-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}

.docket-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 189, 47, 0.18);
}

.docket h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.docket-list {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.docket-list li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-on-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
}

.docket-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--yellow);
}

.docket-foot {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-on-dark);
}

.docket-foot strong {
  color: var(--yellow);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.docket-foot span { color: rgba(255, 255, 255, 0.6); font-size: 13px; font-weight: 500; }

/* ---------- Sections ---------- */
.section { padding: clamp(48px, 7vw, 84px) 0; }
.stats-section { padding-top: clamp(8px, 2vw, 20px); }

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.5fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}

.section-header.compact { grid-template-columns: 1fr; max-width: 760px; margin-bottom: 36px; }

.section-header h2,
.split-showcase h2,
.attorney-card h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

/* ---------- Stats band ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.stat-card {
  padding: 28px clamp(20px, 2.4vw, 30px);
  border-right: 1px solid var(--line);
}
.stat-card:last-child { border-right: 0; }

.stat-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- Cards (shared) ---------- */
.service-card,
.package-card,
.why-card,
.process-card,
.testimonial-card,
.attorney-card,
.contact-form,
.expandable-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

/* ---------- Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.service-card:hover,
.package-card:hover,
.why-card:hover,
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.service-index, .process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.service-card h3, .why-card h3, .process-card h3 {
  margin: 20px 0 0;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-card p, .testimonial-card cite { font-size: 14.5px; }
.service-card > p { margin: 10px 0 0; }

/* bullet lists with yellow ticks */
.quiet-list, .included-list, .footer-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.quiet-list li, .included-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.quiet-list li::before, .included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--yellow-soft);
  box-shadow: inset 0 0 0 1.5px var(--yellow);
}

.quiet-list li::after, .included-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.78em;
  width: 6px; height: 3px;
  border-left: 1.5px solid var(--yellow-deep);
  border-bottom: 1.5px solid var(--yellow-deep);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.text-link::after {
  content: "→";
  color: var(--yellow-deep);
  transition: transform 180ms var(--ease);
}

.text-link:hover::after { transform: translateX(4px); }

.service-card .text-link { margin-top: auto; padding-top: 20px; }

/* ---------- Split showcase ---------- */
.split-showcase, .attorney-teaser, .contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 0.62fr);
  gap: 28px;
  align-items: center;
}

.split-showcase {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
  align-items: center;
}

.package-preview-grid, .package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 20px; }

/* ---------- Package cards ---------- */
.package-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.package-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.card-topline {
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.package-card.featured .card-topline { color: var(--yellow); }

.package-card h3 {
  min-height: 2.4em;
  margin: 0;
  font-size: 20px;
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.package-card.featured h3 { color: #fff; }

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 8px;
}

.was-price {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-size: 14px;
  font-weight: 600;
}

.now-price {
  color: var(--ink);
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.package-card.featured .now-price { color: var(--yellow); }
.package-card.featured .was-price,
.package-card.featured .location-line { color: rgba(255, 255, 255, 0.55); }
.package-card.featured .included-list li { color: rgba(255, 255, 255, 0.85); }

.location-line { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; }

.package-card .text-link { margin-top: auto; padding-top: 20px; }
.package-card.featured .text-link { color: #fff; }
.package-card.featured .text-link::after { color: var(--yellow); }

.package-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.package-note li {
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 14px 16px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

/* ---------- Expandables ---------- */
.expandable-stack, .package-band { display: grid; gap: 14px; }

.expandable-card { overflow: hidden; }

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 24px 28px;
  transition: background 180ms var(--ease);
}

summary:hover { background: var(--surface-2); }
summary::-webkit-details-marker { display: none; }

summary::after {
  content: "";
  flex: 0 0 auto;
  width: 11px; height: 11px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 220ms var(--ease);
}

details[open] summary::after { transform: rotate(-135deg); }

summary small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--yellow-deep);
}

summary strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

summary em {
  flex: 0 0 auto;
  border-radius: var(--pill);
  background: var(--yellow);
  color: var(--on-yellow);
  padding: 6px 12px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.catalog-note { margin: 0 28px 18px; font-size: 14px; }

.service-table { display: grid; gap: 10px; padding: 0 18px 18px; }

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  padding: 16px 18px;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.service-row:hover { border-color: var(--line-strong); background: var(--surface); }

.service-row h4 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.row-price { margin-top: 6px; color: var(--yellow-deep); font-size: 13.5px; font-weight: 700; }

.mini-list { margin: 0; padding-left: 18px; color: var(--muted); font-size: 13px; }
.mini-list li { margin: 3px 0; }

.row-action {
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  padding: 10px 16px;
  font-size: 12.5px;
}
.row-action:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-1px); }

/* ---------- Attorney ---------- */
.attorney-teaser { grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.85fr); align-items: stretch; }

.attorney-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.44fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.light-card, .attorney-card { padding: clamp(26px, 4vw, 40px); }
.attorney-card h2, .attorney-card h3 { margin-top: 0; }
.attorney-card h3 { font-size: 22px; font-weight: 780; letter-spacing: -0.02em; }
.attorney-card h3 + p { margin-top: 8px; }
.attorney-card p { color: var(--ink-soft); }

.attorney-portrait {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  padding: clamp(30px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.attorney-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 60% at 50% 0%, rgba(245, 189, 47, 0.2), transparent 60%);
}

.attorney-portrait > * { position: relative; }

.portrait-mark {
  display: grid;
  width: 130px; height: 130px;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--on-yellow);
  font-size: 42px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.attorney-portrait .eyebrow { justify-content: center; color: rgba(255, 255, 255, 0.6); }
.attorney-portrait h2 { margin: 0; color: #fff; font-size: clamp(24px, 3vw, 32px); line-height: 1.08; text-align: center; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.expertise-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  padding: 14px 16px;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
}

/* ---------- Why / process / testimonials ---------- */
.why-grid, .process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.why-card, .process-card { padding: 24px 22px; }

.process-step {
  width: auto; height: auto;
  padding: 6px 12px;
  border-radius: var(--pill);
  font-size: 14px;
}

.testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

.testimonial-card { padding: 30px; position: relative; }

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 14px; left: 28px;
  color: var(--yellow);
  font-size: 64px;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card blockquote {
  position: relative;
  margin: 0;
  padding-top: 30px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.testimonial-card cite {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-style: normal;
  font-size: 13.5px;
  font-weight: 700;
}

.testimonials-band { }

/* ---------- Contact ---------- */
.contact-section-wrap { padding-bottom: clamp(56px, 8vw, 96px); }
.contact-section { align-items: stretch; }

.contact-form, .contact-card { padding: clamp(26px, 4vw, 40px); }

.contact-card {
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card .eyebrow { color: rgba(255, 255, 255, 0.55); }
.contact-card .eyebrow::before { background: var(--yellow); }

.contact-card h3 { margin: 18px 0 8px; color: #fff; font-size: 24px; font-weight: 780; letter-spacing: -0.02em; }
.contact-card h3:first-of-type { margin-top: 0; }
.contact-card p { margin: 6px 0; }
.contact-card a { color: var(--yellow); font-weight: 700; }
.contact-card a:hover { color: var(--yellow-strong); }
.contact-card address { color: rgba(255, 255, 255, 0.7); font-style: normal; line-height: 1.6; }

.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }

.field label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  outline: 0;
  padding: 13px 15px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 189, 47, 0.22);
}

.field-note { font-size: 12px; line-height: 1.4; }

.contact-submit { width: 100%; min-height: 54px; margin-top: 22px; font-size: 15px; }
.form-status { margin: 16px 0 0; font-size: 13px; text-align: center; }

/* ---------- Disclaimer ---------- */
.disclaimer {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 26px;
  margin-block: 8px 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(22px, 3vw, 32px);
}

.disclaimer h2 { margin: 0; font-size: 22px; font-weight: 780; letter-spacing: -0.02em; }
.disclaimer p:last-child { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 32px;
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  padding: clamp(32px, 5vw, 52px);
}

.site-footer .eyebrow { color: rgba(255, 255, 255, 0.5); }
.site-footer h2, .site-footer h3 { margin: 0; color: #fff; }
.site-footer h2 { font-size: clamp(28px, 3vw, 36px); font-weight: 820; letter-spacing: -0.03em; }
.site-footer > div:first-child p { margin: 14px 0 0; max-width: 38ch; }
.site-footer h3 { font-size: 14px; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 14px; }
.site-footer p, .site-footer li, .site-footer address { color: rgba(255, 255, 255, 0.68); font-size: 14px; }
.site-footer address { font-style: normal; line-height: 1.7; }
.site-footer a { color: rgba(255, 255, 255, 0.92); font-weight: 500; transition: color 160ms var(--ease); }
.site-footer a:hover { color: var(--yellow); }
.footer-list li { margin: 9px 0; }

/* ---------- Animations ---------- */
.fade-up { animation: fade-up 720ms var(--ease) both; }
.hero-panel.fade-up { animation-delay: 120ms; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .site-header { grid-template-columns: auto 1fr; }
  .site-nav { justify-self: end; overflow-x: auto; }
  .header-action { display: none; }

  .hero, .split-showcase, .attorney-teaser, .attorney-section, .contact-section {
    grid-template-columns: 1fr;
  }
  .hero { gap: 36px; }
  .split-showcase { gap: 28px; }

  .why-grid, .process-grid, .package-note { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  body { font-size: 16px; }

  .site-header { padding: 11px 16px; gap: 10px; }
  .brand > span { display: none; }
  .brand-logo { width: 42px; }
  .site-nav { gap: 0; }
  .site-nav a { padding: 7px 9px; font-size: 12.5px; }

  .hero { padding-top: 36px; }
  .hero-title, .page-hero h1 { font-size: clamp(32px, 9vw, 44px); letter-spacing: -0.035em; }

  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .primary-action, .secondary-action { width: 100%; }

  .stats-grid, .service-grid, .package-preview-grid, .package-note,
  .why-grid, .compact-grid, .process-grid, .testimonial-grid,
  .field-grid, .expertise-grid, .site-footer, .disclaimer, .section-header {
    grid-template-columns: 1fr;
  }

  .stat-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-card:last-child { border-bottom: 0; }

  .docket-foot { flex-direction: column; gap: 4px; }

  summary { align-items: flex-start; padding: 20px; }
  summary em { display: none; }
  .catalog-note { margin: 0 20px 16px; }
  .service-row { grid-template-columns: 1fr; gap: 12px; }
  .service-row .row-action { justify-self: start; }
  .page-hero h1 { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media print {
  .site-header, .hero-actions, .contact-form { display: none; }
  body { background: #fff; }
  .docket, .contact-card, .site-footer, .attorney-portrait, .package-card.featured {
    color: #111; background: #fff; box-shadow: none;
    -webkit-print-color-adjust: exact;
  }
}
