/* ═══════════════════════════════════════════
   MITNICK & DRAPER — styles.css
   Mad Men palette: dark wood / deep red / amber
═══════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────── */
:root {
  --bg-base:        #1c1208;
  --bg-surface:     #241a0e;
  --bg-panel:       #2e1f0f;
  --bg-card:        #3a2510;
  --wood-mid:       #3d2b1a;
  --wood-light:     #5c4230;

  --red-deep:       #7a1f1f;
  --red-mid:        #8b2222;
  --red-accent:     #a02828;

  --amber:          #c9a84c;
  --amber-light:    #d4b86a;
  --amber-dim:      #7a6130;

  --text-primary:   #f5f0e8;
  --text-secondary: #b8a898;
  --text-muted:     #7a6a5a;
  --text-amber:     #c9a84c;

  --border:         rgba(201, 168, 76, 0.15);
  --border-strong:  rgba(201, 168, 76, 0.3);

  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Lora', Georgia, serif;
  --font-accent:    'Crimson Text', Georgia, serif;

  --radius:         2px;
  --radius-md:      4px;
  --transition:     0.3s ease;

  --max-width:      1200px;
  --nav-height:     72px;
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-deep), var(--amber), var(--red-deep));
  z-index: 9999;
  pointer-events: none;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
}
.section-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--amber);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.review-card {
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.review-card p,
.review-card .review-stars,
.review-card .review-author {
  position: relative;
  z-index: 1;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  max-width: 100%;
}

/* ─── UTILITY ────────────────────────────── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── BUTTONS ────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--red-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--red-mid);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover {
  background: var(--red-accent);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border: 1px solid rgba(245, 240, 232, 0.25);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn-ghost-light {
  display: inline-block;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border: 1px solid rgba(245, 240, 232, 0.35);
  transition: border-color var(--transition);
}
.btn-ghost-light:hover { border-color: var(--amber); color: var(--amber); }
.btn-outline {
  display: inline-block;
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--amber-dim);
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--amber);
}
.btn-full { width: 100%; text-align: center; }

/* ─── HEADER / NAV ───────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(13, 11, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.site-header.scrolled {
  background: rgba(13, 11, 8, 0.98);
  border-bottom-color: var(--border-strong);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
}
.amp { color: var(--amber); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--red-deep) !important;
  color: var(--text-primary) !important;
  padding: 9px 20px !important;
  border: 1px solid var(--red-mid) !important;
  font-size: 0.78rem !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--red-accent) !important; }

/* Practice Areas dropdown (desktop) */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 99;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover {
  color: var(--amber);
  background: rgba(201, 168, 76, 0.05);
}
.dropdown-arrow {
  font-size: 0.65rem;
  color: var(--amber);
  margin-left: 4px;
}

/* Mobile nav practice sublinks */
.mobile-nav-heading {
  font-weight: 500;
  color: var(--text-primary) !important;
}
.mobile-nav-sublink {
  padding: 8px 0 8px 20px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
  border-bottom: 1px solid var(--border) !important;
  color: var(--text-muted) !important;
}
.mobile-nav-sublink:hover {
  color: var(--amber) !important;
}

/* Interior pages */
.page-main {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 96px;
  min-height: 55vh;
  background: var(--bg-base);
}
.page-main .section-inner {
  max-width: 720px;
}
.page-main--wide .section-inner {
  max-width: var(--max-width);
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.hub-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color var(--transition), transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}
.hub-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.hub-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.hub-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}
.hub-card .card-link {
  font-size: 0.78rem;
}
@media (max-width: 768px) {
  .hub-grid { grid-template-columns: 1fr; }
}
.page-main .page-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.page-main h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-main .page-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.page-main .page-back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  transition: letter-spacing var(--transition);
}
.page-main .page-back:hover {
  letter-spacing: 0.1em;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text-primary); }
.mobile-cta {
  color: var(--amber) !important;
  font-weight: 500;
}
.mobile-phone {
  color: var(--text-secondary) !important;
  font-size: 0.85rem !important;
}

/* ─── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) saturate(0.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 11, 8, 0.82) 0%,
    rgba(26, 18, 9, 0.65) 50%,
    rgba(13, 11, 8, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px 120px;
  max-width: 680px;
  margin-left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}
.cursor-blink {
  color: var(--amber);
  font-weight: 400;
  animation: cursorBlink 0.8s step-end infinite;
}
.cursor-blink.cursor-done {
  animation: none;
  opacity: 0;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--text-primary);
}
.hero-headline .line {
  display: block;
}
.hero .hero-headline .line {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero .hero-eyebrow,
.hero .hero-sub,
.hero .hero-actions,
.hero .hero-badges {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero.hero-loaded .hero-headline .line,
.hero.hero-loaded .hero-eyebrow,
.hero.hero-loaded .hero-sub,
.hero.hero-loaded .hero-actions,
.hero.hero-loaded .hero-badges {
  opacity: 1;
  transform: translateY(0);
}
.hero-headline .line:nth-child(2) { transition-delay: 0.12s; }
.hero-headline .line:nth-child(3) { transition-delay: 0.24s; }
.hero-headline .line:nth-child(4) { transition-delay: 0.36s; }
.hero .hero-eyebrow { transition-delay: 0.5s; }
.hero .hero-sub { transition-delay: 0.6s; }
.hero .hero-actions { transition-delay: 0.7s; }
.hero .hero-badges { transition-delay: 0.8s; }
.hero-headline .accent {
  color: var(--red-accent);
  font-style: italic;
}
.hero-headline .accent-light {
  color: var(--amber-light);
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 16px;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.badge-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ─── TRUST BAR ──────────────────────────── */
.pull-quote {
  margin: 0;
  padding: 56px 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-top: 1px solid var(--amber-dim);
  background: none;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  color: var(--amber);
}

/* ─── TRUST BADGE BAR ────────────────────── */
.trust-bar {
  background: var(--bg-panel);
  border-top: 1px solid var(--amber-dim);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-bar::-webkit-scrollbar { display: none; }
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: max-content;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  position: relative;
  transition: background var(--transition);
}
.trust-badge:hover {
  background: rgba(201,168,76,0.04);
}
.trust-badge-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 12px 0;
  flex-shrink: 0;
}
.trust-badge-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.trust-badge-icon svg {
  width: 100%;
  height: 100%;
  color: var(--amber);
}
.trust-badge-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.trust-badge-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.trust-badge-sub {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 0 16px;
  }
  .trust-badge {
    padding: 16px 20px;
    gap: 10px;
  }
  .trust-badge-icon {
    width: 30px;
    height: 30px;
  }
  .trust-badge-title {
    font-size: 0.75rem;
  }
  .trust-badge-sub {
    font-size: 0.62rem;
  }
}

/* ─── PRACTICE AREAS ─────────────────────── */
.practice-areas {
  padding: 96px 0;
  background: var(--bg-base);
  border-top: 1px solid var(--amber-dim);
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.practice-card {
  display: block;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='leather'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeBlend in='SourceGraphic' mode='multiply'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23leather)' opacity='0.08'/%3E%3C/svg%3E"),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 4px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.04) 0px,
      rgba(0,0,0,0.04) 1px,
      transparent 1px,
      transparent 4px
    );
  background-color: var(--bg-card);
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: visible;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}
.practice-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.03) 0%,
    transparent 40%,
    rgba(0,0,0,0.08) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}
.practice-card:hover {
  background: var(--wood-mid);
  border-color: var(--border-strong);
  transform: translateY(-6px) translateX(-4px);
  box-shadow: 6px 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.2);
}
.practice-card.featured {
  background: var(--bg-panel);
  border-color: var(--border-strong);
}
.practice-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--amber);
}
.practice-card-icon svg {
  width: 100%;
  height: 100%;
}
.practice-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.practice-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  transition: letter-spacing var(--transition);
}
.practice-card:hover .card-link { letter-spacing: 0.15em; }

/* ─── WHY US ──────────────────────────────── */
.why-us {
  position: relative;
  padding: 96px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--amber-dim);
  border-bottom: none;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -36deg,
    rgba(245, 240, 232, 0.025) 0px,
    rgba(245, 240, 232, 0.025) 1px,
    transparent 1px,
    transparent 10px
  );
}
.why-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-eyebrow { text-align: left; }
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}
.why-text h2 em {
  font-style: italic;
  color: var(--amber-light);
}
.why-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.why-text p:last-of-type { margin-bottom: 32px; }
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.legal-pad-card {
  position: relative;
  background-image: url('images/legal-pad.webp');
  background-size: cover;
  background-position: center;
  border-radius: 2px 2px 4px 4px;
  padding: 24px 28px 32px;
  box-shadow: 2px 4px 16px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(0,0,0,0.08);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.legal-pad-card:hover {
  transform: translateY(-4px) rotate(0.5deg);
  box-shadow: 4px 8px 24px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(0,0,0,0.08);
}
.pad-holes {
  position: absolute;
  left: 11px;
  top: 22px;
  bottom: 22px;
  width: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}
.pad-holes .hole {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle at 32% 30%, #fff9d0 0%, #dcd4a0 45%, #9a9358 100%);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.35);
}
.pad-content {
  position: relative;
  z-index: 1;
  padding: 0;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}
.pad-num {
  font-family: 'Kalam', cursive;
  font-size: clamp(2.3rem, 4.6vw, 2.93rem);
  font-weight: 700;
  color: #1a1209;
  line-height: 1.1;
  margin-bottom: 6px;
}
.pad-num span {
  color: #e8543a;
  font-size: 0.68em;
  font-weight: 700;
}
.pad-label {
  font-family: 'Kalam', cursive;
  font-size: 1.06rem;
  font-weight: 400;
  color: #1a1209;
  line-height: 1.35;
  max-width: 14em;
}

/* ─── ATTORNEYS STRIP ────────────────────── */
.attorneys-strip {
  padding: 96px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--amber-dim);
}
.attorneys-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.attorney-card {
  display: flex;
  gap: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}
.attorney-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.15), 0 8px 32px rgba(0, 0, 0, 0.4);
}
.attorney-photo-wrap { flex-shrink: 0; }
.attorney-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--wood-mid);
  border: 2px solid var(--border-strong);
  overflow: hidden;
  object-fit: cover;
}
.attorney-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.placeholder-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--amber);
}
.attorney-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.attorney-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.attorney-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials {
  padding: 96px 0;
  background: var(--bg-base);
  border-top: 1px solid var(--amber-dim);
}
.legal-scroll-wrap {
  max-width: 100%;
  overflow: hidden;
}
.legal-scroll-track {
  display: flex;
  gap: 24px;
  max-width: 100vw;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  cursor: grab;
  padding: 8px 4px 24px;
  margin: 0 -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.legal-scroll-track::-webkit-scrollbar {
  display: none;
}
.legal-scroll-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.legal-scroll-track.is-dragging * {
  user-select: none;
}
.legal-scroll-card {
  position: relative;
  flex: 0 0 320px;
  background-image: url('images/legal-pad.webp');
  background-size: cover;
  background-position: top left;
  min-height: 260px;
  padding: 24px 24px 32px 60px;
  scroll-snap-align: start;
  box-shadow: 3px 5px 20px rgba(0,0,0,0.45);
  border-radius: 2px 2px 4px 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.legal-scroll-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 5px 10px 28px rgba(0,0,0,0.55);
}
.scroll-stars {
  color: #c8960c;
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.scroll-text {
  font-family: 'Kalam', cursive;
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 400;
  color: #1a1209;
  line-height: 1.65;
  margin: 0 0 18px;
}
.scroll-author {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.scroll-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ─── CTA BANNER ─────────────────────────── */
.cta-banner {
  padding: 96px 0;
  background: var(--red-deep);
  border-top: 1px solid var(--amber-dim);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -36deg,
      rgba(245, 240, 232, 0.025) 0px,
      rgba(245, 240, 232, 0.025) 1px,
      transparent 1px,
      transparent 10px
    ),
    linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-inner h2 em { font-style: italic; color: var(--amber-light); }
.cta-inner p {
  color: rgba(245, 240, 232, 0.8);
  font-size: 1rem;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-banner .btn-primary {
  background: var(--bg-base);
  border-color: var(--bg-base);
}
.cta-banner .btn-primary:hover { background: var(--bg-surface); }

/* ─── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--amber-dim);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-tagline {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.footer-address {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-links {
  display: contents;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.footer-col a, .footer-col span {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.footer-disclaimer { font-style: italic; }

/* ─── CONSULTATION DRAWER ────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.consultation-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(480px, 100vw);
  max-width: 100%;
  background: var(--bg-panel);
  border-left: 1px solid var(--border-strong);
  border-radius: 0;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
.consultation-drawer.open {
  transform: translateX(0);
}
.drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 8px;
  transition: color var(--transition);
}
.drawer-close:hover { color: var(--text-primary); }
.drawer-inner {
  padding: 56px 36px 48px;
}
.drawer-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.drawer-inner h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.drawer-inner > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.drawer-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; }
.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus { border-color: var(--amber-dim); }
.form-input::placeholder { color: var(--text-muted); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }
.drawer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  margin-top: 8px !important;
}

.drawer-quiz-intro {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.drawer-quiz[hidden],
.drawer-result-panel[hidden] {
  display: none !important;
}
.quiz-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
  animation: fadeSlideIn 0.3s ease;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}
.quiz-question {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.3;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.quiz-option:hover {
  border-color: var(--amber);
  color: var(--text-primary);
  background: rgba(201, 168, 76, 0.06);
}
.quiz-option.selected {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(201, 168, 76, 0.08);
}
.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s ease;
}
.progress-dot.active { background: var(--amber); }
.progress-dot.done { background: var(--amber-dim); }
.quiz-result {
  text-align: center;
  padding: 16px 0;
  animation: fadeSlideIn 0.4s ease;
}
.quiz-result.urgent .result-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 12px;
}
.quiz-result.soft .result-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.quiz-result h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.result-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.result-phone:hover { color: var(--amber-light); }
.quiz-result p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.quiz-soft-lead {
  text-align: center;
  margin-bottom: 20px;
}
.drawer-result-panel .soft .drawer-form {
  text-align: left;
  margin-bottom: 8px;
}
.drawer-result-panel #drawer-result-close {
  margin-top: 8px;
}
.quiz-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: color 0.2s ease;
}
.quiz-back:hover { color: var(--text-secondary); }
.drawer-result-restart {
  margin-top: 12px !important;
}

/* ─── PRACTICE AREA + ATTORNEY SUBPAGES ───── */
.pa-hero {
  padding-top: calc(var(--nav-height) + 56px);
  padding-bottom: 72px;
  padding-left: 24px;
  padding-right: 24px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--amber-dim);
  text-align: center;
}
.pa-hero .pa-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.pa-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.12;
  max-width: 900px;
  margin: 0 auto 20px;
}
.pa-hero .pa-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 28px;
}
.pa-hero .pa-hero-cta {
  display: inline-block;
}
.pa-section {
  padding: 88px 0;
  background: var(--bg-base);
  border-top: 1px solid var(--amber-dim);
}
.pa-section.alt {
  background: var(--bg-surface);
}
.pa-section .section-inner {
  max-width: var(--max-width);
}
.pa-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}
.pa-overview-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}
.pa-overview-text p + p {
  margin-top: 1.1em;
}
.pa-handle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pa-handle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition: border-color var(--transition), transform 0.3s ease;
}
.pa-handle-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.pa-strategy {
  max-width: 900px;
  margin: 0 auto;
}
.pa-strategy-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 28px;
  margin-bottom: 36px;
  align-items: start;
}
.pa-strategy-step:last-child {
  margin-bottom: 0;
}
.pa-strategy-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--amber);
  font-size: 1.15rem;
}
.pa-strategy-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pa-strategy-step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  grid-column: 2;
}
.pa-faq {
  max-width: 760px;
  margin: 0 auto;
}
.pa-faq details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  margin-bottom: 10px;
  overflow: hidden;
}
.pa-faq summary {
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.pa-faq summary::-webkit-details-marker { display: none; }
.pa-faq summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
  font-size: 1.25rem;
  font-weight: 400;
}
.pa-faq details[open] summary::after {
  content: '−';
}
.pa-faq .pa-faq-body {
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin: 0 22px 18px;
}
.attorney-bio-page {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 96px;
  background: var(--bg-base);
}
.attorney-bio-block {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.attorney-bio-block:last-child {
  margin-bottom: 0;
}
.attorney-bio-block h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.attorney-bio-block .attorney-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.attorney-bio-block p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1em;
}

@media (max-width: 900px) {
  .pa-handle-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pa-handle-grid { grid-template-columns: 1fr; }
  .pa-strategy-step {
    grid-template-columns: 1fr;
  }
  .pa-strategy-step p {
    grid-column: 1;
  }
}

/* ─── INNER PAGE HERO ────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -36deg,
    rgba(245,240,232,0.015) 0px,
    rgba(245,240,232,0.015) 1px,
    transparent 1px,
    transparent 10px
  );
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  max-width: 720px;
  margin-left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
}
.page-hero .hero-eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

/* ─── PRACTICE AREA OVERVIEW ─────────────── */
.practice-overview {
  padding: 80px 0;
  background: var(--bg-base);
  border-top: 1px solid var(--amber-dim);
}
.practice-overview-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.practice-overview p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ─── CASE TYPES GRID ────────────────────── */
.case-types {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--amber-dim);
}
.case-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}
.case-type-card:hover {
  transform: translateY(-4px) translateX(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 8px 32px rgba(0,0,0,0.5);
}
.case-type-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.case-type-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ─── DEFENSE STRATEGY ───────────────────── */
.defense-strategy {
  padding: 80px 0;
  background: var(--bg-base);
  border-top: 1px solid var(--amber-dim);
}
.strategy-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.strategy-step {
  position: relative;
  padding-top: 16px;
  border-top: 2px solid var(--red-deep);
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}
.strategy-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.strategy-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── FAQ ACCORDION ──────────────────────── */
.faq-section {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--amber-dim);
}
.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
  background: none;
  border: none;
}
.faq-question:hover { color: var(--amber); }
.faq-question.open { color: var(--amber); }
.faq-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--amber-dim);
  transition: transform 0.3s ease;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 24px 20px;
  overflow-y: auto;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-section--alt {
  background: var(--bg-base);
}
.faq-page-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: center;
}
.faq-page-section-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 8px;
  text-align: center;
}
.faq-section .faq-list {
  margin-top: 32px;
}
.faq-jump-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  max-width: 720px;
  margin: 24px auto 0;
  padding: 0 24px;
}
.faq-jump-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid var(--amber-dim);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.faq-jump-nav a:hover {
  color: var(--amber-light);
  border-color: var(--amber-light);
}
.faq-section[id] {
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

/* ─── CASE RESULTS PAGE ─────────────────── */
.results-legal-banner {
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 20px 24px;
  background: rgba(122, 31, 31, 0.2);
  border: 1px solid rgba(160, 40, 40, 0.35);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  text-align: center;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
  transition: border-color var(--transition), transform 0.35s ease;
}
.result-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.result-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.result-card-tag a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--amber-dim);
  transition: color var(--transition), border-color var(--transition);
}
.result-card-tag a:hover {
  color: var(--amber-light);
  border-color: var(--amber-light);
}
.result-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.25;
}
.result-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 768px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ─── ATTORNEYS FULL PAGE ────────────────── */
.attorneys-full {
  padding: 80px 0;
  background: var(--bg-base);
  border-top: 1px solid var(--amber-dim);
}
.attorneys-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.attorney-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.attorney-full-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-strong);
  margin-bottom: 24px;
  display: block;
  flex-shrink: 0;
}
.attorney-full-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.attorney-full-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.attorney-divider {
  height: 1px;
  background: var(--amber-dim);
  margin-bottom: 24px;
  width: 100%;
  max-width: 280px;
}
.attorney-full-bio {
  align-self: stretch;
  text-align: left;
  width: 100%;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}
.attorney-full-bio p {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  margin-bottom: 1em;
}
.attorney-full-bio p:last-child {
  margin-bottom: 0;
}
.attorney-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  align-self: stretch;
  text-align: left;
  width: 100%;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.credential-item::before {
  content: '—';
  color: var(--amber);
  flex-shrink: 0;
}

/* ─── RESPONSIVE INNER PAGES ─────────────── */
@media (max-width: 768px) {
  .case-types-grid { grid-template-columns: 1fr; }
  .strategy-steps { grid-template-columns: 1fr; }
  .attorneys-full-grid { grid-template-columns: 1fr; }
  .page-hero-inner { margin-left: 24px; margin-right: 24px; }
}

/* ─── STICKY CALL BAR (mobile) ───────────── */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--red-deep);
  border-top: 1px solid var(--red-accent);
}
.sticky-call-btn {
  display: block;
  text-align: center;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-links { display: flex; gap: 32px; grid-column: 1 / -1; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-stats { max-width: 480px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .site-header { height: auto; min-height: var(--nav-height); }

  .hero-content {
    margin-left: 24px;
    margin-right: 24px;
    padding: 60px 0 100px;
  }
  .hero-scroll-hint { display: none; }

  .practice-grid { grid-template-columns: 1fr; }
  .attorneys-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-badges { gap: 20px; }

  .sticky-call-bar { display: block; }
  body { padding-bottom: 56px; }

  .why-stats { max-width: 100%; }
  .why-inner { padding: 0 24px; }
}

@media (max-width: 480px) {
  .trust-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .attorney-card { flex-direction: column; }
  .drawer-inner { padding: 48px 24px 40px; }
  .footer-links { grid-column: unset; }

  .practice-grid { grid-template-columns: 1fr; }
  .attorneys-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr; }

  .hero-headline { font-size: 2rem; }
  .page-hero h1 { font-size: 1.8rem; }
}

/* ─── QUIZ STYLES ────────────────────────── */
.quiz-steps { display: flex; flex-direction: column; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeSlideIn 0.3s ease; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}
.quiz-question {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.3;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.quiz-option:hover {
  border-color: var(--amber);
  color: var(--text-primary);
  background: rgba(201,168,76,0.06);
}
.quiz-option.selected {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(201,168,76,0.08);
}
.quiz-progress { display: flex; gap: 6px; margin-bottom: 28px; }
.progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s ease;
}
.progress-dot.active { background: var(--amber); }
.progress-dot.done { background: var(--amber-dim); }
.quiz-result { text-align: center; padding: 16px 0; animation: fadeSlideIn 0.4s ease; }
.quiz-result.urgent .result-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 12px;
}
.quiz-result.soft .result-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.quiz-result h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.result-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.result-phone:hover { color: var(--amber-light); }
.quiz-result p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.quiz-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: color 0.2s ease;
  display: block;
}
.quiz-back:hover { color: var(--text-secondary); }

/* ─── CURSOR GLOW ────────────────────────── */
#cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201,168,76,0.06) 0%,
    rgba(122,31,31,0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
  top: 0;
  left: 0;
  will-change: transform;
}

@media (max-width: 768px) {
  #cursor-glow { display: none; }
}

/* ─── AMBIENT PARTICLES ──────────────────── */
.ambient-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--amber);
  pointer-events: none;
  z-index: 3;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-120px) translateX(30px);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .ambient-particle { display: none; }
}
