/* ==============================================
   HARRINGTON & ASSOCIATES — Main Stylesheet
   harrington.css
   ============================================== */

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

:root {
  --ink:            #141210;
  --ink-soft:       #2C2925;
  --ink-muted:      #6B6560;
  --parchment:      #F5F0E8;
  --parchment-dark: #EDE7D9;
  --copper:         #B87333;
  --copper-light:   #D4924A;
  --copper-pale:    #F9EFE3;
  --white:          #FDFCFA;
  --rule:           rgba(20,18,16,.12);
  --rule-heavy:     rgba(20,18,16,.22);
  --ff-display:     'Playfair Display', Georgia, serif;
  --ff-body:        'DM Sans', sans-serif;
  --ff-mono:        'DM Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

/* ── CUSTOM CURSOR ── */
*, a, button { cursor: none !important; }
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--copper);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .15s ease, width .2s ease, height .2s ease;
  mix-blend-mode: normal;
}
#cursor.hovering { width: 36px; height: 36px; opacity: .4; }

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  mix-blend-mode: normal;
  background: rgba(20,18,16,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .4s ease, box-shadow .4s ease;
}
nav::after {
  content: '';
  position: absolute; bottom: 0; left: 3rem; right: 3rem;
  height: 1px; background: var(--rule);
}
nav.scrolled {
  background: rgba(20,18,16,.97);
  box-shadow: 0 1px 0 rgba(184,115,51,.2);
  mix-blend-mode: normal;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: .95rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
nav.scrolled .nav-logo { color: var(--white); }
.nav-logo span { color: var(--copper); }
.nav-right { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  font-family: var(--ff-mono);
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted); text-decoration: none;
  transition: color .2s;
}
nav.scrolled .nav-link { color: rgba(255,255,255,.5); }
.nav-link:hover { color: var(--ink); }
nav.scrolled .nav-link:hover { color: var(--white); }
.nav-consult {
  font-family: var(--ff-mono);
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); background: var(--ink);
  padding: .6rem 1.4rem;
  text-decoration: none;
  transition: background .2s;
}
.nav-consult:hover { background: var(--copper); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background-color: var(--ink);
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&q=80');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  left: 50%; top: 80px; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.12);
  z-index: 1;
}
/* Dark overlay — heavy on left for text, lighter on right */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    105deg,
    rgba(14,13,12,.95) 0%,
    rgba(14,13,12,.88) 45%,
    rgba(14,13,12,.70) 100%
  );
}
.hero-left, .hero-right { position: relative; z-index: 1; }

.hero-left {
  padding: 5rem 4rem 5rem 3rem;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.hero-issue {
  font-family: var(--ff-mono);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 3rem;
}
.hero-issue::before {
  content: ''; width: 32px; height: 1px;
  background: var(--copper); flex-shrink: 0;
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  /* WHITE text — readable on dark photo */
  color: #FFFFFF;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-headline .line-italic {
  font-style: italic; font-weight: 400;
  color: var(--copper-light);
  display: block; padding-left: 2rem;
}
.hero-headline .line-rule {
  display: block; width: 100%; height: 2px;
  background: var(--copper);
  margin: 1rem 0;
  transform-origin: left;
}
.hero-bottom { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.75; max-width: 38ch;
}
.hero-cta-row { display: flex; align-items: center; gap: 2rem; }
.btn-primary-v2 {
  font-family: var(--ff-mono);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); background: var(--copper);
  padding: .9rem 2rem;
  text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s;
  position: relative;
}
.btn-primary-v2::after {
  content: '';
  position: absolute; bottom: -4px; right: -4px;
  width: 100%; height: 100%;
  border: 1px solid rgba(255,255,255,.3);
  transition: transform .2s;
}
.btn-primary-v2:hover { background: var(--copper-light); transform: translateY(-1px); }
.btn-primary-v2:hover::after { transform: translate(3px, 3px); }
.hero-phone {
  font-family: var(--ff-mono);
  font-size: .72rem; letter-spacing: .08em;
  color: rgba(255,255,255,.4); text-decoration: none;
}
.hero-phone strong {
  color: rgba(255,255,255,.85);
  display: block; font-size: .85rem;
}

/* Hero right panel */
.hero-right {
  background: rgba(14,13,12,.55);
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 5rem 3rem 5rem 4rem;
  position: relative; overflow: hidden;
  backdrop-filter: blur(2px);
}
.hero-right::before {
  content: 'HARRINGTON';
  font-family: var(--ff-display);
  font-size: 11rem; font-weight: 900;
  color: rgba(255,255,255,.03);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-15deg);
  white-space: nowrap; pointer-events: none;
  letter-spacing: -.04em;
}
.hero-right-top {
  font-family: var(--ff-mono);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  display: flex; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 1rem;
}
.hero-verdicts {
  display: flex; flex-direction: column; gap: 0;
  flex: 1; justify-content: center;
}
.verdict-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.verdict-row:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.verdict-type {
  font-family: var(--ff-mono);
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: .4rem;
}
.verdict-label {
  font-family: var(--ff-display);
  font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,.6);
}
.verdict-amount {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1; text-align: right; overflow: hidden;
}
.verdict-amount span { color: var(--copper-light); }
.hero-right-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 2rem; font-weight: 700;
  color: var(--white); line-height: 1; overflow: hidden;
}
.hero-stat-num em { color: var(--copper-light); font-style: normal; }
.hero-stat-label {
  font-family: var(--ff-mono);
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-top: .3rem;
}
.hero-stat-div { width: 1px; height: 32px; background: rgba(255,255,255,.1); }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--copper);
  overflow: hidden; padding: .85rem 0; white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-mono);
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); margin: 0 2.5rem;
}
.marquee-track span::before {
  content: '◆'; margin-right: 2.5rem; opacity: .5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 2fr;
  min-height: 60vh;
}
.manifesto-left {
  padding: 5rem 3rem;
  background: var(--parchment-dark);
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; justify-content: space-between;
}
.manifesto-label {
  font-family: var(--ff-mono);
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-muted);
  writing-mode: vertical-rl; transform: rotate(180deg);
  align-self: flex-start;
}
.manifesto-year {
  font-family: var(--ff-display);
  font-size: 6rem; font-weight: 900;
  color: var(--parchment-dark);
  -webkit-text-stroke: 2px var(--rule-heavy);
  line-height: 1; align-self: flex-end;
}
.manifesto-right {
  padding: 5rem 5rem 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1453945619913-79ec89a82c51?w=1600&q=80');
  background-size: cover; background-position: center;
  position: relative;
}
.manifesto-right::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(245,240,232,.93); z-index: 0; pointer-events: none;
}
.manifesto-right > * { position: relative; z-index: 1; }
.manifesto-right blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400; line-height: 1.3;
  color: var(--ink); margin-bottom: 3rem;
  position: relative; padding-left: 2rem;
}
.manifesto-right blockquote::before {
  content: ''; position: absolute; left: 0; top: .3em;
  width: 4px; height: calc(100% - .4em);
  background: var(--copper);
}
.manifesto-right blockquote em { font-style: italic; color: var(--copper); }
.manifesto-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule); padding-top: 2.5rem; gap: 2rem;
}
.meta-num {
  font-family: var(--ff-display);
  font-size: 2.5rem; font-weight: 700;
  color: var(--ink); line-height: 1; overflow: hidden;
}
.meta-num em { color: var(--copper); font-style: normal; }
.meta-desc {
  font-family: var(--ff-mono);
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted); margin-top: .4rem;
}

/* ── PRACTICE AREAS ── */
.practice {
  background: var(--parchment);
  padding: 6rem 0;
  border-top: 1px solid var(--rule);
}
.practice-masthead {
  max-width: 1380px; margin: 0 auto;
  padding: 0 3rem 2rem;
  border-bottom: 3px double var(--rule-heavy);
  display: flex; align-items: baseline; justify-content: space-between;
}
.practice-masthead h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; letter-spacing: -.02em; color: var(--ink);
}
.practice-masthead h2 em { font-style: italic; font-weight: 400; }
.masthead-rule-text {
  font-family: var(--ff-mono);
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted);
}
.practice-grid {
  max-width: 1380px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: 2fr 1px 1fr 1px 1fr;
  gap: 0;
}
.practice-divider { background: var(--rule); margin: 2.5rem 0; }
.practice-col { padding: 2.5rem 2rem; }
.practice-col:first-child { padding-left: 0; }
.practice-col:last-child  { padding-right: 0; }

/* Practice images */
.practice-col-img {
  width: 100%; height: 160px;
  overflow: hidden; margin-bottom: 1.5rem; position: relative;
}
.practice-col.featured .practice-col-img { height: 220px; }
.practice-col-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(45%) contrast(1.1) brightness(.95);
  transition: transform .5s ease, filter .4s ease;
  display: block;
}
.practice-col:hover .practice-col-img img {
  transform: scale(1.05);
  filter: grayscale(10%) contrast(1.1) brightness(1);
}
.practice-col-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(245,240,232,.55) 100%);
  pointer-events: none;
}

.practice-col.featured .area-num {
  font-family: var(--ff-display);
  font-size: 7rem; font-weight: 900;
  color: var(--parchment-dark);
  -webkit-text-stroke: 1px var(--rule-heavy);
  line-height: 1; margin-bottom: -.5rem; display: block;
}
.practice-col .area-num {
  font-family: var(--ff-mono);
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--copper); display: block; margin-bottom: .75rem;
}
.practice-col h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem; font-weight: 700;
  line-height: 1.2; color: var(--ink); margin-bottom: .75rem;
}
.practice-col.featured h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem;
}
.practice-col p {
  font-size: .9rem; font-weight: 300;
  color: var(--ink-muted); line-height: 1.75;
}
.practice-col .area-verdict {
  margin-top: 1.25rem;
  font-family: var(--ff-mono);
  font-size: .72rem; letter-spacing: .06em;
  color: var(--copper);
  display: flex; align-items: center; gap: .75rem;
}
.practice-col .area-verdict::before {
  content: ''; width: 20px; height: 1px; background: var(--copper);
}
.practice-sub-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.practice-sub-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
}
.practice-sub-item:first-child { padding-top: 0; }
.practice-sub-item:last-child  { border-bottom: none; }

/* ── ATTORNEYS ── */
.attorneys { background: var(--ink); padding: 6rem 0; }
.attorneys-header {
  max-width: 1380px; margin: 0 auto;
  padding: 0 3rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; align-items: end;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.attorneys-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; line-height: .95;
  letter-spacing: -.02em; color: var(--white);
}
.attorneys-header h2 em {
  font-style: italic; font-weight: 400;
  color: var(--copper-light); display: block;
}
.attorneys-header p {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.5); line-height: 1.75; max-width: 40ch;
}
.attorneys-grid {
  max-width: 1380px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.atty {
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden;
  transition: background .3s; will-change: transform;
}
.atty:last-child { border-right: none; }
.atty:hover { background: rgba(255,255,255,.03); }

/* Attorney photo */
.atty-photo-wrap {
  height: 340px; overflow: hidden; position: relative; flex-shrink: 0;
}
.atty-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
  filter: grayscale(25%) contrast(1.05);
  transition: transform .6s ease, filter .4s ease;
}
.atty:hover .atty-photo-wrap img {
  transform: scale(1.04); filter: grayscale(0%) contrast(1.05);
}
.atty-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(14,13,12,.75) 100%);
  pointer-events: none;
}
.atty-photo-copper-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
}
.atty-inner { padding: 2rem 2.5rem; }
.atty-initial-bg {
  position: absolute; right: -1rem; top: 1rem;
  font-family: var(--ff-display);
  font-size: 9rem; font-weight: 900;
  color: rgba(255,255,255,.03);
  line-height: 1; pointer-events: none; letter-spacing: -.04em;
}
.atty-index {
  font-family: var(--ff-mono);
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--copper-light); margin-bottom: 1.5rem;
}
.atty-name {
  font-family: var(--ff-display);
  font-size: 1.7rem; font-weight: 700;
  color: var(--white); line-height: 1.1; margin-bottom: .4rem;
}
.atty-role {
  font-family: var(--ff-mono);
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 1.5rem;
}
.atty-bio {
  font-size: .875rem; font-weight: 300;
  color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 1.5rem;
}
.atty-creds { display: flex; flex-direction: column; gap: .4rem; }
.atty-cred {
  font-family: var(--ff-mono);
  font-size: .65rem; letter-spacing: .06em;
  color: rgba(255,255,255,.25);
  display: flex; align-items: center; gap: .6rem;
}
.atty-cred::before { content: '—'; color: var(--copper); }

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--parchment-dark); padding: 6rem 0;
  border-top: 1px solid var(--rule);
}
.testi-header {
  max-width: 1380px; margin: 0 auto; padding: 0 3rem 3rem;
  border-bottom: 1px solid var(--rule-heavy);
  display: flex; align-items: baseline; justify-content: space-between;
}
.testi-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900; color: var(--ink);
}
.testi-header h2 em { font-style: italic; font-weight: 400; color: var(--copper); }
.testi-count {
  font-family: var(--ff-mono);
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted);
}
.testi-grid {
  max-width: 1380px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.testi {
  padding: 3rem 2.5rem; border-right: 1px solid var(--rule); position: relative;
}
.testi:first-child { padding-left: 0; }
.testi:last-child  { border-right: none; padding-right: 0; }
.testi-verdict-tag {
  font-family: var(--ff-mono);
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.testi-verdict-tag::before { content: ''; width: 16px; height: 1px; background: var(--copper); }
.testi-quote {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-style: italic;
  color: var(--ink); line-height: 1.65; margin-bottom: 2rem;
}
.testi-rule { width: 40px; height: 2px; background: var(--rule-heavy); margin-bottom: 1.5rem; }
.testi-client {
  font-family: var(--ff-mono);
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-muted);
}
.testi-client strong { color: var(--ink); display: block; font-size: .78rem; margin-bottom: .2rem; }

/* ── PROCESS ── */
.process { background: var(--white); padding: 6rem 0; border-top: 1px solid var(--rule); }
.process-inner {
  max-width: 1380px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start;
}
.process-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900; line-height: .95;
  letter-spacing: -.02em; color: var(--ink);
  position: sticky; top: 6rem;
}
.process-left h2 em { font-style: italic; font-weight: 400; color: var(--copper); display: block; }
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2rem; align-items: start;
  padding: 2.5rem 0; border-bottom: 1px solid var(--rule);
}
.process-step:first-child { border-top: 1px solid var(--rule); }
.step-n {
  font-family: var(--ff-display);
  font-size: 1.8rem; font-weight: 700; color: var(--ink-muted);
  border: 1px solid var(--rule-heavy);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: color .2s, border-color .2s; flex-shrink: 0;
}
.step-body h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--ink); margin-bottom: .5rem; padding-top: .65rem;
}
.step-body p {
  font-size: .9rem; font-weight: 300; color: var(--ink-muted); line-height: 1.75;
}

/* ── CTA BAND ── */
.cta {
  background: var(--copper);
  padding: 7rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: '$500M';
  font-family: var(--ff-display);
  font-size: 18rem; font-weight: 900;
  color: rgba(0,0,0,.06);
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%);
  white-space: nowrap; pointer-events: none; line-height: 1;
}
.cta-left { position: relative; z-index: 1; }
.cta-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; line-height: .95;
  letter-spacing: -.02em; color: var(--white);
}
.cta-left h2 em { font-style: italic; font-weight: 400; display: block; }
.cta-right { position: relative; z-index: 1; }
.cta-right p {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 2.5rem;
}
.btn-white-v2 {
  font-family: var(--ff-mono);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); background: var(--white);
  padding: 1rem 2.5rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 1rem;
  transition: background .2s;
}
.btn-white-v2:hover { background: var(--parchment); }
.cta-phone {
  display: block; margin-top: 1.25rem;
  font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .08em;
  color: rgba(255,255,255,.6);
}
.cta-phone strong { color: var(--white); }

/* ── CONTACT ── */
.contact {
  background: var(--parchment);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 70vh; border-top: 1px solid var(--rule);
}
.contact-left {
  padding: 6rem 4rem 6rem 3rem;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-eyebrow {
  font-family: var(--ff-mono);
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 1.5rem;
}
.contact-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900; line-height: .95;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 2rem;
}
.contact-left h2 em { font-style: italic; font-weight: 400; color: var(--copper); display: block; }
.contact-left p {
  font-size: 1rem; font-weight: 300; color: var(--ink-muted); line-height: 1.8; max-width: 38ch;
}
.contact-details { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-detail { display: grid; grid-template-columns: 1fr; gap: .3rem; }
.contact-detail-label {
  font-family: var(--ff-mono);
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted);
}
.contact-detail-value {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 500; color: var(--ink);
}
.contact-right { padding: 6rem 3rem 6rem 4rem; background: var(--white); }
.form-heading {
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700;
  color: var(--ink); margin-bottom: .4rem;
}
.form-sub {
  font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 2.5rem;
}
.form-field { margin-bottom: 1.5rem; }
.form-field label {
  display: block; font-family: var(--ff-mono);
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: .5rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--rule-heavy);
  background: transparent; padding: .6rem 0;
  font-family: var(--ff-body); font-size: .95rem; color: var(--ink);
  outline: none; transition: border-color .2s;
  appearance: none; border-radius: 0;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-bottom-color: var(--copper);
}
.form-field textarea { resize: none; height: 80px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-submit-v2 {
  width: 100%; border: none; background: var(--ink); color: var(--white);
  font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 1.1rem; transition: background .2s; margin-top: .5rem; position: relative;
}
.form-submit-v2::after {
  content: ''; position: absolute; bottom: -4px; right: -4px;
  width: 100%; height: 100%; border: 1px solid var(--copper);
  pointer-events: none; transition: transform .2s;
}
.form-submit-v2:hover { background: var(--copper); }
.form-submit-v2:hover::after { transform: translate(3px, 3px); }
.form-note {
  font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .06em;
  color: var(--ink-muted); text-align: center; margin-top: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink-soft); padding: 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; border-top: 3px solid var(--ink);
}
.footer-brand-name {
  font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: .75rem;
}
.footer-brand-name span { color: var(--copper-light); }
.footer-disclaimer {
  font-size: .75rem; font-weight: 300; color: rgba(255,255,255,.3); line-height: 1.7;
}
.footer-col-head {
  font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--copper-light); }
.footer-bottom {
  background: var(--ink); padding: 1rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span {
  font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .06em;
  color: rgba(255,255,255,.2);
}

/* ── NEWSLETTER WIDGET ── */
#nl-widget {
  position: fixed; bottom: 2.5rem; right: 2.5rem; z-index: 800;
  width: 320px; background: var(--parchment);
  border: 1px solid var(--rule-heavy); padding: 2rem;
  transform-style: preserve-3d; will-change: transform;
  border-top: 3px solid var(--copper);
}
#nl-widget::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg,transparent,transparent 28px,rgba(20,18,16,.025) 28px,rgba(20,18,16,.025) 29px);
  pointer-events: none;
}
.nl-close {
  position: absolute; top: .85rem; right: .85rem;
  background: none; border: none; color: var(--ink-muted);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s; opacity: 0;
}
.nl-close:hover { color: var(--copper); }
.nl-eyebrow {
  font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.nl-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--copper); flex-shrink: 0; }
.nl-heading {
  font-family: var(--ff-display); font-size: 1.55rem; font-weight: 900;
  line-height: 1.05; letter-spacing: -.02em; color: var(--ink); margin-bottom: 1rem;
}
.nl-heading em { font-style: italic; font-weight: 400; color: var(--copper); }
.nl-rule { width: 100%; height: 1px; background: var(--rule-heavy); margin-bottom: 1rem; }
.nl-body {
  font-size: .85rem; font-weight: 300; color: var(--ink-muted); line-height: 1.7; margin-bottom: 1.25rem;
}
.nl-input-wrap {
  display: flex; border-bottom: 1px solid var(--rule-heavy); margin-bottom: .6rem;
}
.nl-input-wrap input {
  flex: 1; background: none; border: none; padding: .6rem 0;
  font-family: var(--ff-body); font-size: .875rem; color: var(--ink); outline: none;
}
.nl-input-wrap input::placeholder { color: rgba(20,18,16,.3); }
.nl-input-wrap:focus-within { border-bottom-color: var(--copper); }
#nl-submit {
  background: none; border: none; color: var(--copper); padding: .6rem .4rem;
  display: flex; align-items: center; transition: transform .2s;
}
#nl-submit:hover { transform: translateX(3px); }
.nl-note {
  font-family: var(--ff-mono); font-size: .58rem; letter-spacing: .06em; color: rgba(20,18,16,.3);
}
.nl-success { text-align: center; padding: .5rem 0; }
.nl-success svg { margin-bottom: .75rem; }
.nl-success p {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600;
  color: var(--ink); line-height: 1.4;
}
.nl-success p em { font-style: italic; font-weight: 400; color: var(--copper); display: block; font-size: .95rem; margin-top: .25rem; }

/* ── GSAP INITIAL STATES ── */
.gsap-hide { opacity: 0; }
.hero-headline .line-rule { transform-origin: left; }
.meta-num, .hero-stat-num, .verdict-amount { overflow: hidden; }
.section-line { display: block; width: 0; height: 1px; background: var(--copper); margin-bottom: 2rem; }
.atty { will-change: transform; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 2rem 4rem; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-left { display: none; }
  .manifesto-right { padding: 4rem 2rem; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-divider { display: none; }
  .practice-col { padding: 2rem 0; border-bottom: 1px solid var(--rule); }
  .attorneys-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .attorneys-grid { grid-template-columns: 1fr; }
  .atty { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .testi-grid { grid-template-columns: 1fr; }
  .testi { border-right: none; border-bottom: 1px solid var(--rule); padding: 2.5rem 0; }
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-left h2 { position: static; }
  .cta { grid-template-columns: 1fr; gap: 2rem; padding: 5rem 2rem; }
  .cta::before { display: none; }
  .contact { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 4rem 2rem; }
  .contact-right { padding: 4rem 2rem; }
  footer { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 2rem; }
  nav { padding: 1.25rem 1.5rem; }
  nav::after { left: 1.5rem; right: 1.5rem; }
  .nav-right .nav-link { display: none; }
  .practice-masthead, .testi-header, .attorneys-header, .attorneys-grid { padding-left: 2rem; padding-right: 2rem; }
  .practice-masthead { padding: 0 2rem 2rem; }
}
@media (max-width: 640px) {
  .manifesto-meta { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  #nl-widget { right: 1rem; left: 1rem; width: auto; bottom: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .gsap-hide { opacity: 1 !important; }
  #cursor { display: none; }
}

/* ── MOBILE MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
  z-index: 600;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: rgba(14,13,12,.97);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.nav-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-menu a {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}
.nav-mobile-menu a:hover { color: var(--copper-light); }
.nav-mobile-menu a.mobile-cta {
  font-family: var(--ff-mono);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--copper);
  padding: 1rem 2.5rem;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .nav-hamburger { display: flex; }
  .nav-right .nav-link,
  .nav-right .nav-consult { display: none; }
}