/* =========================================================================
   John Bales Attorneys — Shared Site Styles (V1 — Modern & Approachable)
   Pages opt-in by setting <body class="v1">.
   Tokens, nav, footer, hero panels, eval form and component CSS are lifted
   verbatim from the homepage so subpages stay visually identical.
   ========================================================================= */

/* Reset & tokens */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #0a0a0a;
  background: #f5f5f2;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

:root {
  --green: #53CB43;
  --green-dark: #3AA92D;
  --green-soft: #E9F8E5;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --ink-3: #3a3a3a;
  --mute: #6a6a6a;
  --line: rgba(10,10,10,0.1);
  --paper: #f5f5f2;
  --paper-2: #ebebe5;
  --white: #ffffff;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.4); }
}

/* =========================================================================
   V1 styles (lifted verbatim from homepage)
   ========================================================================= */
.v1 { background: var(--paper); color: var(--ink); font-family: 'Inter', sans-serif; }
.v1 .nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,245,242,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.v1 .nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.v1 .logo { height: 32px; display: flex; align-items: center; gap: 10px; }
.v1 .logo img { height: 100%; width: auto; }
.v1 .nav-links {
  display: flex; gap: 28px; font-size: 14px; font-weight: 500;
  align-items: center;
}
.v1 .nav-links > a,
.v1 .nav-links > .has-mega > a,
.v1 .nav-links > .has-mega > button {
  color: var(--ink-2); transition: color 0.15s;
  background: none; border: 0; padding: 0;
  font: inherit; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.v1 .nav-links > a:hover,
.v1 .nav-links > .has-mega > a:hover,
.v1 .nav-links > .has-mega > button:hover,
.v1 .nav-links > .has-mega.open > a,
.v1 .nav-links > .has-mega.open > button { color: var(--green-dark); }
.v1 .nav-links .has-mega { position: relative; }
.v1 .nav-links .has-mega > a::after,
.v1 .nav-links .has-mega > button::after {
  content: '';
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s;
  margin-left: 4px;
  opacity: 0.6;
}
.v1 .nav-links .has-mega.open > a::after,
.v1 .nav-links .has-mega.open > button::after {
  transform: translateY(1px) rotate(-135deg);
  opacity: 1;
}

/* Mega panel */
.v1 .mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%; transform: translateX(-50%) translateY(-6px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px -12px rgba(20,20,20,0.18), 0 4px 12px rgba(20,20,20,0.05);
  padding: 28px 32px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 110;
  pointer-events: none;
}
.v1 .has-mega.open .mega-panel {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Practice mega panel */
.v1 .mega-practice {
  width: 880px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 28px 36px;
}
.v1 .mega-col-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
  grid-column: 1 / -1;
}
.v1 .mega-col-head.span-2 { grid-column: 1 / span 2; margin-bottom: 0; }
.v1 .mega-col-head.span-1 { grid-column: 3; margin-bottom: 0; }
.v1 .mega-list { display: flex; flex-direction: column; gap: 2px; }
.v1 .mega-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 14px; color: var(--ink-2);
  transition: background 0.12s, color 0.12s;
}
.v1 .mega-list a:hover { background: var(--paper-2); color: var(--green-dark); }
.v1 .mega-list .mn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--mute); letter-spacing: 0.04em;
  min-width: 22px;
}
.v1 .mega-list a:hover .mn { color: var(--green-dark); }
.v1 .mega-cta {
  grid-column: 1 / -1;
  margin-top: 14px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.v1 .mega-cta .left { color: var(--ink-3); }
.v1 .mega-cta a {
  font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.v1 .mega-cta a:hover { color: var(--green-dark); }

/* Areas mega panel */
.v1 .mega-areas {
  width: 380px;
}
.v1 .mega-areas .mega-list a {
  flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 10px 12px;
}
.v1 .mega-areas .mega-list .office-name {
  font-weight: 600; font-size: 14px; color: var(--ink);
}
.v1 .mega-areas .mega-list .office-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--mute); letter-spacing: 0.02em;
}
.v1 .mega-areas .mega-list a:hover .office-name { color: var(--green-dark); }
.v1 .nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.v1 .phone-btn {
  background: var(--ink); color: white;
  padding: 10px 18px; border-radius: 100px;
  font-family: 'JetBrains Mono'; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.15s;
}
.v1 .phone-btn:hover { background: var(--green-dark); }
.v1 .phone-btn .phone-pre {
  font-family: 'JetBrains Mono'; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.v1 .phone-btn:hover .phone-pre { color: rgba(255,255,255,0.85); }
.v1 .phone-btn::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px rgba(83,203,67,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(83,203,67,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(83,203,67,0.05); }
}
@media (max-width: 900px) {
  .v1 .nav-links { display: none; }
}

/* Hero — photographic, warm, Sweet-James-inspired */
.v1 .hero {
  max-width: 1400px; margin: 0 auto;
  padding: 40px 32px 0;
  position: relative;
}
.v1 .hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0a1a2a;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  isolation: isolate;
}
.v1 .hero-photo {
  position: relative;
  overflow: hidden;
  background: #0a1a2a;
}
.v1 .hero-photo img.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: right center;
  z-index: 1;
}
.v1 .hero-photo .skyline-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,20,16,0.35) 0%, rgba(10,20,16,0) 25%),
    radial-gradient(ellipse at 60% 65%, rgba(255,255,255,0.08), transparent 55%),
    linear-gradient(180deg, rgba(10,20,16,0) 70%, rgba(10,20,16,0.25) 100%);
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: normal;
}
.v1 .hero-photo .hero-img {
  filter: brightness(1.08) contrast(1.04) saturate(1.05);
}
.v1 .hero-photo .skyline-label {
  position: absolute; bottom: 20px; left: 24px;
  font-family: 'JetBrains Mono'; font-size: 10px;
  color: rgba(255,255,255,0.8); letter-spacing: 0.2em;
  z-index: 3;
}
.v1 .hero-badge {
  position: absolute; top: 24px; left: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  background: rgba(10,26,42,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-family: 'JetBrains Mono'; font-size: 11px;
  color: white; letter-spacing: 0.06em;
  z-index: 2;
}
.v1 .hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(83,203,67,0.25);
  animation: pulse 2s infinite;
}
.v1 .hero-content {
  padding: 56px 52px;
  display: flex; flex-direction: column; gap: 24px;
  color: var(--ink);
  background: #faf8f3;
  position: relative;
}
.v1 .hero-content::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(83,203,67,0.08), transparent 55%);
  pointer-events: none;
}
.v1 .hero-meta {
  display: flex; gap: 18px; align-items: center;
  font-family: 'JetBrains Mono'; font-size: 11px;
  color: var(--mute); letter-spacing: 0.08em; text-transform: uppercase;
}
.v1 .hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.v1 .hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
.v1 .hero h1 em {
  font-style: normal;
  color: var(--green-dark);
}
.v1 .hero-lead {
  font-size: 17px; line-height: 1.55;
  color: var(--ink-3);
  max-width: 44ch;
  margin: 0;
}
.v1 .hero-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.v1 .btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: left;
  gap: 16px;
}
.v1 .btn .btn-cta-text { font-family: 'Inter Tight'; font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.v1 .btn-primary {
  background: var(--green); color: white;
  box-shadow: 0 4px 0 var(--green-dark);
}
.v1 .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 5px 0 var(--green-dark); }
.v1 .btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--green-dark); }
.v1 .btn-primary .arrow {
  width: 36px; height: 36px; border-radius: 50%; background: white; color: var(--green-dark);
  display: grid; place-items: center; font-size: 16px; flex-shrink: 0;
}
.v1 .btn-secondary {
  background: white; color: var(--ink);
  border: 1px solid var(--line);
}
.v1 .btn-secondary:hover { border-color: var(--green-dark); color: var(--green-dark); }
.v1 .btn small {
  display: block; font-size: 11px; font-weight: 500;
  font-family: 'JetBrains Mono';
  letter-spacing: 0.04em; opacity: 0.6;
  text-transform: uppercase; margin-bottom: 2px;
}
@media (max-width: 900px) {
  .v1 .hero { padding: 20px 16px 0; }
  .v1 .hero-card { grid-template-columns: 1fr; min-height: auto; }
  .v1 .hero-photo { min-height: 280px; }
  .v1 .hero-content { padding: 36px 28px; }
  .v1 .hero h1 { font-size: 36px; }
}

/* Hero visual panel (typographic, not stock) */
.v1 .hero-panel {
  margin: 40px auto 0;
  max-width: 1400px;
  padding: 0 32px;
}
.v1 .panel-card {
  background: #0f1d18;
  color: white;
  border-radius: 24px;
  padding: 56px 48px 40px;
  position: relative;
  overflow: hidden;
}
.v1 .panel-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(83,203,67,0.18), transparent 60%);
  pointer-events: none;
}
.v1 .panel-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.v1 .panel-row + .panel-row {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px dashed rgba(255,255,255,0.18);
}
.v1 .stat { position: relative; text-align: center; padding: 0 12px; }
.v1 .stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.v1 .stat-value {
  font-family: 'Inter Tight';
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green);
}
.v1 .stat-label {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 14px;
  line-height: 1.45;
}
.v1 .panel-cta {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px dashed rgba(255,255,255,0.18);
  text-align: center;
}
.v1 .panel-cta a {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: white;
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  transition: gap 0.2s, color 0.2s;
}
.v1 .panel-cta a:hover { gap: 26px; color: var(--green); }
.v1 .panel-cta a .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-style: normal;
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  transition: border-color 0.2s, background 0.2s;
}
.v1 .panel-cta a:hover .arrow { border-color: var(--green); background: var(--green); color: #0f1d18; }
@media (max-width: 800px) {
  .v1 .hero-panel { padding: 0 20px; }
  .v1 .panel-card { padding: 36px 20px 28px; }
  .v1 .panel-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .v1 .panel-row + .panel-row { margin-top: 28px; padding-top: 28px; }
  .v1 .stat + .stat::before { display: none; }
  .v1 .stat-value { font-size: 40px; }
}

/* Awards strip */
.v1 .awards-strip {
  max-width: 1400px;
  margin: 56px auto 0;
  padding: 0 32px;
}
.v1 .awards-inner {
  border-top: 1px solid rgba(15, 29, 24, 0.08);
  border-bottom: 1px solid rgba(15, 29, 24, 0.08);
  padding: 32px 0 40px;
}
.v1 .awards-head {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 28px;
}
.v1 .awards-rule {
  flex: 1; max-width: 80px; height: 1px; background: rgba(15, 29, 24, 0.15);
}
.v1 .awards-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
}
.v1 .awards-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  align-items: center; justify-items: center;
  gap: 32px;
}
.v1 .award-item {
  width: 100%;
  height: 96px;
  display: flex; align-items: center; justify-content: center;
}
.v1 .award-item img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(0.95);
  opacity: 0.65;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  transform-origin: center;
}
.v1 .award-item:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.04);
}
.v1 .award-item.award-pad img { transform: scale(1.35); }
.v1 .award-item.award-pad:hover img { transform: scale(1.4); }
@media (max-width: 1100px) {
  .v1 .awards-grid { grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
  .v1 .award-item { height: 80px; }
}
@media (max-width: 600px) {
  .v1 .awards-strip { padding: 0 20px; margin-top: 40px; }
  .v1 .awards-inner { padding: 24px 0 28px; }
  .v1 .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .v1 .award-item { height: 64px; }
  .v1 .awards-rule { max-width: 40px; }
}

/* Practice Areas */
.v1 .section { max-width: 1400px; margin: 0 auto; padding: 120px 32px; }
.v1 .section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 60px; flex-wrap: wrap;
}
.v1 .kicker {
  font-family: 'JetBrains Mono'; font-size: 11px;
  color: var(--mute); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.v1 .kicker::before {
  content: ''; width: 24px; height: 1px; background: var(--ink);
}
.v1 .section h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  max-width: 18ch;
}
.v1 .section-head p {
  font-size: 17px; line-height: 1.55; color: var(--ink-3);
  max-width: 40ch; margin: 0;
}

.v1 .practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.v1 .practice-card {
  background: var(--paper);
  padding: 32px 28px;
  transition: background 0.2s;
  display: flex; flex-direction: column;
  min-height: 220px;
  cursor: pointer;
  position: relative;
}
.v1 .practice-card:hover { background: #0f1d18; color: white; }
.v1 .practice-card:hover .pc-num { color: var(--green); }
.v1 .practice-card:hover .pc-body { color: rgba(255,255,255,0.7); }
.v1 .practice-card:hover .pc-arrow { opacity: 1; transform: translate(4px, -4px); color: var(--green); }

/* Mass tort sub-section */
.v1 .masstort-head {
  margin: 80px 0 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end;
}
.v1 .masstort-head p {
  font-size: 16px; line-height: 1.6; color: var(--ink-3); margin: 0;
}
.v1 .masstort-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700; font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.025em; line-height: 1.05;
  margin: 8px 0 0; text-wrap: balance;
}
.v1 .kicker-tort { color: var(--green-dark); }
.v1 .masstort-grid {
  grid-template-columns: repeat(3, 1fr);
}
.v1 .masstort-card {
  background: #f4f7f2;
  border-color: rgba(83,203,67,0.18);
}
.v1 .masstort-card .pc-num { color: var(--green-dark); }
@media (max-width: 900px) {
  .v1 .masstort-head { grid-template-columns: 1fr; gap: 16px; margin-top: 56px; }
  .v1 .masstort-grid { grid-template-columns: 1fr; }
}
.v1 .pc-num {
  font-family: 'JetBrains Mono'; font-size: 11px; color: var(--mute);
  letter-spacing: 0.08em; transition: color 0.2s;
}
.v1 .pc-title {
  font-family: 'Inter Tight'; font-weight: 700; font-size: 22px;
  letter-spacing: -0.01em; margin-top: auto; padding-top: 40px;
  line-height: 1.1;
}
.v1 .pc-body {
  font-size: 13px; color: var(--mute); margin-top: 8px; line-height: 1.5;
  transition: color 0.2s;
}
.v1 .pc-arrow {
  position: absolute; top: 28px; right: 28px;
  font-size: 16px; color: var(--mute);
  opacity: 0.5; transition: all 0.2s;
}

/* Results strip */
.v1 .results {
  background: #0f1d18; color: white;
  padding: 100px 32px;
  position: relative; overflow: hidden;
}
.v1 .results::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(83,203,67,0.12), transparent 55%);
  pointer-events: none;
}
.v1 .results-inner { max-width: 1400px; margin: 0 auto; }
.v1 .results-head { margin-bottom: 60px; }
.v1 .results .kicker { color: rgba(255,255,255,0.6); }
.v1 .results .kicker::before { background: var(--green); }
.v1 .results h2 { color: white; }
.v1 .results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.v1 .result-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s, background 0.2s;
}
.v1 .result-card:hover { border-color: var(--green); background: rgba(83,203,67,0.05); }
.v1 .result-amount {
  font-family: 'Inter Tight'; font-size: 48px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--green); margin-bottom: 8px;
}
.v1 .result-type {
  font-family: 'JetBrains Mono'; font-size: 11px;
  color: rgba(255,255,255,0.5); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 20px;
}
.v1 .result-blurb {
  font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.5;
}
.v1 .result-disclaimer {
  font-family: 'JetBrains Mono'; font-size: 10px;
  color: rgba(255,255,255,0.3); margin-top: 40px; letter-spacing: 0.04em;
  text-align: center;
}

/* Why Us / Trust */
.v1 .why {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .v1 .why { grid-template-columns: 1fr; gap: 40px; }
  .v1 .section { padding: 60px 20px; }
}
/* Meet John — portrait trust section */
.v1 .meet {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .v1 .meet { grid-template-columns: 1fr; gap: 40px; }
  .v1 .section { padding: 60px 20px; }
}
.v1 .meet-portrait {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background:
    linear-gradient(180deg, rgba(10,20,16,0) 55%, rgba(10,20,16,0.85) 100%),
    linear-gradient(135deg, #2a3a32 0%, #1a2420 70%);
}
.v1 .meet-portrait::before { display: none; }
.v1 .meet-portrait::after { display: none; }
.v1 .meet-portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  z-index: 0;
}
.v1 .meet-portrait-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,29,24,0.92) 0%, rgba(15,29,24,0.35) 38%, transparent 60%);
  z-index: 1;
}
.v1 .meet-portrait-caption {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  color: white;
  z-index: 2;
}
.v1 .meet-portrait-name {
  font-family: 'Inter Tight'; font-weight: 700; font-size: 28px;
  letter-spacing: -0.02em; line-height: 1;
}
.v1 .meet-portrait-role {
  font-family: 'JetBrains Mono'; font-size: 11px;
  color: rgba(255,255,255,0.7); letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 10px;
}
.v1 .meet-portrait-sig {
  position: absolute; top: 24px; right: 24px;
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 500;
  font-size: 28px; color: var(--green);
  transform: rotate(-4deg);
  opacity: 0.9;
}
.v1 .meet-body h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.025em; line-height: 1.05;
  margin: 0 0 24px;
  text-wrap: balance;
}
.v1 .meet-body h2 em { font-style: normal; color: var(--green-dark); }
.v1 .meet-body .quote {
  font-family: 'Inter Tight'; font-style: italic; font-weight: 500;
  font-size: 20px; line-height: 1.45;
  color: var(--ink-2);
  border-left: 3px solid var(--green);
  padding-left: 20px;
  margin: 0 0 32px;
}
.v1 .meet-body p {
  font-size: 16px; line-height: 1.65; color: var(--ink-3);
  margin: 0 0 20px;
}
.v1 .meet-creds {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.v1 .meet-creds span {
  font-size: 11px; font-family: 'JetBrains Mono';
  padding: 5px 10px; background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.v1 .meet-creds span::before { content: '· '; color: var(--green-dark); }

.v1 .why-list { display: flex; flex-direction: column; }
.v1 .why-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}
.v1 .why-item:last-child { border-bottom: 1px solid var(--line); }
.v1 .why-num {
  font-family: 'JetBrains Mono'; font-size: 12px; color: var(--mute);
  padding-top: 4px;
}
.v1 .why-item h3 {
  font-family: 'Inter Tight'; font-weight: 700; font-size: 22px;
  letter-spacing: -0.01em; margin: 0 0 6px;
}
.v1 .why-item p { margin: 0; font-size: 15px; color: var(--ink-3); line-height: 1.55; }

/* Testimonials */
.v1 .tests { background: var(--paper-2); padding: 100px 0; }
.v1 .tests-inner { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.v1 .test-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .v1 .test-scroll { grid-template-columns: 1fr; }
}
.v1 .test-card {
  background: white; border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid var(--line);
}
.v1 .stars { color: var(--green); font-size: 14px; letter-spacing: 2px; }
.v1 .test-body {
  font-family: 'Inter Tight'; font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.35; color: var(--ink);
  text-wrap: pretty;
}
.v1 .test-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--line);
  margin-top: auto;
}
.v1 .test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--green);
  display: grid; place-items: center;
  font-family: 'Inter Tight'; font-weight: 700; font-size: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.v1 .test-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.v1 .test-name { font-weight: 600; font-size: 14px; }
.v1 .test-meta { font-size: 12px; color: var(--mute); font-family: 'JetBrains Mono'; letter-spacing: 0.04em; }

/* Attorneys */
.v1 .attorneys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.v1 .att-card { display: flex; flex-direction: column; gap: 16px; }
.v1 .att-photo {
  aspect-ratio: 3/4;
  border-radius: 14px;
  background:
    repeating-linear-gradient(135deg, var(--paper-2) 0 12px, var(--paper) 12px 24px);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.v1 .att-photo::after {
  content: 'PORTRAIT PHOTO';
  position: absolute; top: 20px; left: 20px;
  font-family: 'JetBrains Mono'; font-size: 10px;
  color: var(--mute); letter-spacing: 0.1em;
}
.v1 .att-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.v1 .att-photo:has(img)::after { display: none; }
.v1 .att-name { font-family: 'Inter Tight'; font-weight: 700; font-size: 20px; letter-spacing: -0.01em; }
.v1 .att-role { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.v1 .att-creds {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}
.v1 .att-cred {
  font-size: 11px; font-family: 'JetBrains Mono';
  padding: 3px 8px; background: var(--paper-2); border-radius: 20px;
  letter-spacing: 0.02em;
}

/* Case eval form */
.v1 .eval {
  background: #0f1d18; color: white;
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.v1 .eval::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(83,203,67,0.15), transparent 70%);
}
.v1 .eval-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  position: relative;
}
@media (max-width: 900px) { .v1 .eval-inner { grid-template-columns: 1fr; gap: 40px; } }
.v1 .eval h2 { color: white; }
.v1 .eval .kicker { color: rgba(255,255,255,0.6); }
.v1 .eval .kicker::before { background: var(--green); }
.v1 .eval-lead { font-size: 17px; color: rgba(255,255,255,0.7); margin-top: 24px; line-height: 1.55; }
.v1 .eval-contact {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 16px;
}
.v1 .eval-contact-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 16px;
  align-items: baseline;
  font-family: 'JetBrains Mono'; font-size: 13px;
}
.v1 .eval-contact-label {
  color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px;
}
.v1 .eval-contact-value { color: white; }
.v1 .eval-contact-value a:hover { color: var(--green); }

.v1 .form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.v1 .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 600px) { .v1 .form-row { grid-template-columns: 1fr; } }
.v1 .form-field label {
  display: block;
  font-family: 'JetBrains Mono'; font-size: 10px;
  color: rgba(255,255,255,0.5); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 8px;
}
.v1 .form-field input, .v1 .form-field select, .v1 .form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.15s;
}
.v1 .form-field input:focus, .v1 .form-field select:focus, .v1 .form-field textarea:focus {
  outline: none; border-color: var(--green);
}
.v1 .form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.v1 .form-field option { background: var(--ink); color: white; }
.v1 .form-field textarea { resize: vertical; min-height: 80px; }
.v1 .form-submit {
  background: var(--green); color: var(--ink);
  padding: 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.15s;
}
.v1 .form-submit:hover { background: #6fe05f; }
.v1 .form-disclaimer {
  font-family: 'JetBrains Mono'; font-size: 10px; color: rgba(255,255,255,0.4);
  line-height: 1.5; letter-spacing: 0.02em;
}

/* Footer */
.v1 .foot {
  background: var(--paper);
  padding: 80px 32px 40px;
  border-top: 1px solid var(--line);
}
.v1 .foot-inner { max-width: 1400px; margin: 0 auto; }
.v1 .foot-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .v1 .foot-top { grid-template-columns: 1fr; gap: 48px; }
}
.v1 .foot-social {
  display: flex; gap: 10px; margin-top: 24px;
}
.v1 .foot-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: all 0.15s;
}
.v1 .foot-social a:hover {
  background: var(--green); border-color: var(--green); color: #0f1d18;
}
.v1 .foot-offices > h4 {
  font-family: 'JetBrains Mono'; font-size: 11px; font-weight: 500;
  color: var(--mute); letter-spacing: 0.08em; text-transform: uppercase;
  margin: 0 0 24px;
}
.v1 .foot-office-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 700px) {
  .v1 .foot-office-grid { grid-template-columns: 1fr; gap: 24px; }
}
.v1 .foot-office {
  display: flex; flex-direction: column; gap: 8px;
}
.v1 .foot-office-name {
  font-family: 'Inter Tight'; font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em; color: var(--ink);
}
.v1 .foot-office-name span {
  font-family: 'JetBrains Mono'; font-weight: 400; font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-dark);
  margin-left: 4px;
}
.v1 .foot-office-addr {
  font-size: 13px; color: var(--ink-3); line-height: 1.5;
}
.v1 .foot-office-link {
  font-family: 'JetBrains Mono'; font-size: 11px;
  letter-spacing: 0.04em; color: var(--green-dark);
  margin-top: 2px;
}
.v1 .foot-office-link:hover { color: var(--ink); }
.v1 .foot-grid-2 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; padding: 48px 0; border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) {
  .v1 .foot-grid-2 { grid-template-columns: 1fr 1fr; gap: 32px; padding: 36px 0; }
}
.v1 .foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .v1 .foot-grid { grid-template-columns: 1fr 1fr; } }
.v1 .foot-brand img { height: 36px; margin-bottom: 20px; }
.v1 .foot-brand p { font-size: 14px; color: var(--mute); line-height: 1.6; max-width: 32ch; }
.v1 .foot-col h4 {
  font-family: 'JetBrains Mono'; font-size: 11px; font-weight: 500;
  color: var(--mute); letter-spacing: 0.08em; text-transform: uppercase;
  margin: 0 0 16px;
}
.v1 .foot-col a {
  display: block; padding: 4px 0; font-size: 14px; color: var(--ink-2);
}
.v1 .foot-col a:hover { color: var(--green-dark); }
.v1 .foot-bottom {
  display: flex; justify-content: space-between; padding-top: 30px;
  font-family: 'JetBrains Mono'; font-size: 11px; color: var(--mute);
  flex-wrap: wrap; gap: 12px;
}

/* =========================================================================
   Page-shell utilities — for interior pages
   ========================================================================= */

/* Page hero — used on every interior page top */
.v1 .page-hero {
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 32px;
}
.v1 .page-hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0f1d18;
  color: white;
  padding: 80px 64px 72px;
  isolation: isolate;
}
.v1 .page-hero-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(83,203,67,0.12), transparent 55%);
  pointer-events: none;
}
.v1 .page-hero-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  pointer-events: none;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.v1 .page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: end;
  max-width: 1280px;
}
.v1 .page-hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 20px;
  display: flex; align-items: center; gap: 12px;
}
.v1 .page-hero-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--green);
}
.v1 .page-hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 8px;
  text-wrap: balance;
}
.v1 .page-hero h1 em {
  font-style: normal;
  color: var(--green);
}
.v1 .page-hero-lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 28px 0 0;
  max-width: 56ch;
}
.v1 .page-hero-aside {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  letter-spacing: 0.04em;
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 24px;
}
.v1 .page-hero-aside .label {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  display: block;
  margin-bottom: 8px;
}
.v1 .page-hero-aside .stat-line {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.v1 .page-hero-aside + .page-hero-aside { margin-top: 24px; }

@media (max-width: 900px) {
  .v1 .page-hero { padding: 0 16px; margin-top: 16px; }
  .v1 .page-hero-card { padding: 48px 28px 40px; }
  .v1 .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .v1 .page-hero-aside { border-left: 0; padding-left: 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.18); }
}

/* Breadcrumb */
.v1 .breadcrumb {
  max-width: 1400px;
  margin: 24px auto 0;
  padding: 0 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.v1 .breadcrumb a:hover { color: var(--green-dark); }
.v1 .breadcrumb .sep { color: var(--mute); opacity: 0.5; }
.v1 .breadcrumb .current { color: var(--ink); }
@media (max-width: 700px) { .v1 .breadcrumb { padding: 0 16px; } }

/* Generic content section variants */
.v1 .section.tight { padding: 80px 32px; }
.v1 .section.loose { padding: 140px 32px; }
.v1 .section-narrow { max-width: 920px; margin: 0 auto; padding: 80px 32px; }
@media (max-width: 700px) {
  .v1 .section.tight { padding: 56px 20px; }
  .v1 .section-narrow { padding: 56px 20px; }
}

/* Prose — for long-form copy on attorney bios, locations, blog posts */
.v1 .prose { font-size: 17px; line-height: 1.7; color: var(--ink-3); }
.v1 .prose p { margin: 0 0 1.2em; max-width: 64ch; }
.v1 .prose h2 {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px); letter-spacing: -0.02em; line-height: 1.1;
  color: var(--ink); margin: 56px 0 20px; text-wrap: balance;
}
.v1 .prose h3 {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em; line-height: 1.2;
  color: var(--ink); margin: 36px 0 12px;
}
.v1 .prose strong { color: var(--ink); font-weight: 600; }
.v1 .prose ul { margin: 0 0 1.2em; padding-left: 1.2em; }
.v1 .prose li { margin-bottom: 0.6em; }
.v1 .prose a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.v1 .prose a:hover { color: var(--ink); }

/* CTA card — used at the bottom of most pages as a final call-to-action */
.v1 .cta-card {
  max-width: 1400px;
  margin: 0 auto 100px;
  padding: 0 32px;
}
.v1 .cta-card-inner {
  background: var(--paper-2);
  border-radius: 24px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.v1 .cta-card-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom right, rgba(83,203,67,0.18), transparent 60%);
  pointer-events: none;
}
.v1 .cta-card h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
  position: relative; z-index: 1;
}
.v1 .cta-card h2 em { font-style: normal; color: var(--green-dark); }
.v1 .cta-card-actions {
  display: flex; flex-direction: column; gap: 12px;
  position: relative; z-index: 1;
}
@media (max-width: 800px) {
  .v1 .cta-card { padding: 0 16px; margin-bottom: 60px; }
  .v1 .cta-card-inner { grid-template-columns: 1fr; padding: 44px 28px; gap: 28px; }
}

/* Mobile-nav trigger (kept simple — V1 hides nav-links < 900px via existing rule) */
@media (max-width: 900px) {
  .v1 .nav-cta .phone-btn .phone-pre { display: none; }
}

/* =========================================================================
   Print stylesheet — generates clean PDFs for client review
   ========================================================================= */
@media print {
  /* Single tall page — no breaks. User picks "Save as PDF" with default scale. */
  @page { size: 1440px 9000px; margin: 0; }

  html, body {
    background: white !important;
    overflow: visible !important;
    width: 1440px !important;
  }

  /* Hide interactive chrome */
  .tweaks-panel, .tweaks-toggle, [data-tweaks-root],
  #variationSwitcher, .switcher,
  .sticky-call, .mobile-cta, .scroll-cta {
    display: none !important;
  }

  /* Make nav non-sticky */
  .v1 .nav, .v1 nav.nav { position: static !important; }

  /* Sticky asides flatten */
  .v1 .service-aside, .v1 .sticky-aside {
    position: static !important; top: auto !important;
  }

  /* No page breaks anywhere */
  * {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}
