/*
 * The Law Office of Clark Daniel Dray
 * Base Stylesheet v3.0 — Design Refresh
 *
 * Usage: <link rel="stylesheet" href="styles.css">
 *
 * This stylesheet provides consistent styling across all pages.
 * Includes: colors, typography, buttons, sections, cards, and common components.
 *
 * Updated: 2026-02-11
 * Changes from v2.0:
 *   - Typography: Playfair Display + Source Sans 3
 *   - Warmer greens, warmer grays, amber accent
 *   - Pill buttons with hover lift micro-interactions
 *   - Grain texture overlay
 *   - Scroll-triggered reveal animations
 *   - SVG icons replace emoji
 *   - Refined card treatments (review quotes, step timeline, service chips)
 *   - Gradient CTA band and stakes section
 *   - Footer background changed to gray-50
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Primary Greens — slightly warmer */
  --green-900: #1a3f18;
  --green-800: #215420;
  --green-700: #2d6a28;
  --green-600: #3a7f34;
  --green-500: #4a9943;
  --green-400: #65b85e;
  --green-100: #e6f2e5;
  --green-50: #f2f8f1;

  /* Accent Blues */
  --blue-900: #162d4a;
  --blue-800: #1e3d63;
  --blue-700: #2a5488;
  --blue-600: #3a6faa;
  --blue-100: #e8eff7;

  /* Neutrals — slightly warmer */
  --gray-900: #1a1a1a;
  --gray-800: #2d2d2d;
  --gray-700: #484848;
  --gray-600: #5c5c5c;
  --gray-500: #757575;
  --gray-400: #999999;
  --gray-300: #c0c0c0;
  --gray-200: #e2e0dd;
  --gray-100: #f4f3f1;
  --gray-50: #faf9f7;
  --white: #ffffff;

  /* Warm accent */
  --amber: #c5872e;
  --amber-light: #e8a94a;
  --gold: #c5872e;
  --gold-light: #e8a94a;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;

  /* Layout */
  --max-w: 1100px;
  --max-w-narrow: 720px;
  --radius: 3px;
  --radius-lg: 6px;
  --radius-pill: 100px;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  color: var(--gray-700);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--green-700);
}

/* ============================================
   GRAIN TEXTURE OVERLAY
   ============================================ */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   ANIMATION SYSTEM
   ============================================ */
/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger-children .reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.stagger-children.visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.visible .reveal-child:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible .reveal-child:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible .reveal-child:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.visible .reveal-child:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.visible .reveal-child:nth-child(5) { transition-delay: 0.33s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .stagger-children .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gray-900);
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.65rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
  color: var(--gray-600);
}

p:last-child {
  margin-bottom: 0;
}

/* Section Labels */
.section-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 8px;
}

/* Section Headings */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gray-900);
  line-height: 1.22;
  margin-bottom: 18px;
  font-weight: 500;
}

/* ============================================
   LAYOUT
   ============================================ */
.section {
  padding: 72px 28px;
  position: relative;
}

.section-sm {
  padding: var(--space-2xl) var(--space-lg);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Background Colors */
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-50); }
.bg-green-light { background: var(--green-50); }
.bg-green { background: var(--green-700); color: var(--white); }
.bg-dark { background: var(--green-900); color: rgba(255,255,255,0.78); }
.bg-dark .section-heading { color: var(--white); }

.bg-dark h1, .bg-dark h2, .bg-dark h3,
.bg-green h1, .bg-green h2, .bg-green h3 {
  color: var(--white);
}

.bg-dark p, .bg-green p {
  color: rgba(255,255,255,0.8);
}

.bg-green .section-label {
  color: var(--amber-light);
}

/* ============================================
   BUTTONS — Pill shape, micro-interactions
   ============================================ */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
  position: relative;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-700);
  color: var(--white);
}

.btn-green {
  background: var(--green-700);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-800);
  color: var(--white);
}

.btn-dark {
  background: var(--gray-900);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gray-800);
  color: var(--white);
}

.btn-call {
  background: var(--white);
  color: var(--green-700);
  border: 1.5px solid var(--green-600);
  font-weight: 600;
}
.btn-call:hover {
  background: var(--green-50);
  color: var(--green-700);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--white);
  padding: 14px 28px;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 62px;
  width: auto;
}

.logo-square { display: none; }

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-cta {
  background: var(--green-700);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.header-cta:hover {
  background: var(--green-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45,106,40,0.25);
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header-phone-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-phone-number {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.header-phone-number:hover {
  color: var(--green-700);
}

.header-phone-number svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ============================================
   TRUST BADGE STRIP
   ============================================ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 28px;
  position: relative;
}

.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.trust-strip-inner img {
  height: 100px;
  width: auto;
}

.trust-strip-inner img.trust-logo-wide {
  height: auto;
  max-height: 64px;
  max-width: 260px;
}

.trust-strip-sep {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

/* ============================================
   CARDS
   ============================================ */
.card-elevated {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

/* ============================================
   REVIEW CARDS
   ============================================ */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}
.review-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
/* Subtle quote mark decoration */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--green-100);
  line-height: 1;
  pointer-events: none;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gray-800);
}

.review-stars {
  color: var(--amber);
  font-size: 0.82rem;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin: 0;
}

/* ============================================
   STEP CARDS (Process) — Timeline style
   ============================================ */
.step-card {
  text-align: center;
  padding: 0 28px 0;
  background: transparent;
  border: none;
  position: relative;
  z-index: 1;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(45,106,40,0.2);
  transition: transform 0.3s ease;
}
.step-card:hover .step-num {
  transform: scale(1.08);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 10px;
  font-weight: 500;
}

.step-card p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 40px 20px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green-700);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--amber);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '\2212';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
}

.faq-answer.active {
  max-height: 600px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--gray-500);
}

/* ============================================
   CTA BAND — Gradient
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, #2d7332 100%);
  padding: 44px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band.grain::after { opacity: 0.03; }
/* Subtle radial glow */
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.cta-band .section-heading {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.cta-band-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.cta-band-buttons .btn {
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   FOOTER — Gray-50 background
   ============================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  color: var(--gray-600);
  padding: 60px 28px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}

.footer-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: 8px;
  font-weight: 400;
}
.footer-info p { font-size: 0.92rem; line-height: 1.55; margin-bottom: 4px; color: var(--gray-600); }
.footer-info a { color: var(--gray-700); transition: color 0.2s; }
.footer-info a:hover { color: var(--green-700); }
.footer-info a.btn { color: var(--white); }
.footer-info a.btn:hover { color: var(--white); }

.footer h3 {
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.footer p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 4px;
  color: var(--gray-600);
}

.footer a {
  color: var(--gray-700);
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--green-700);
}

/* Preserve white text on buttons inside footer */
.footer a.btn {
  color: var(--white);
}
.footer a.btn:hover {
  color: var(--white);
}

.footer-phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 14px 0;
  letter-spacing: 0.01em;
}

.footer-phone-big {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 14px 0;
  letter-spacing: 0.01em;
}

.footer-map-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-map-col iframe {
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.footer-cta-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-cta-side h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gray-900);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.footer-cta-side p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.footer-bottom a {
  color: var(--gray-600);
}

.footer-bottom a:hover {
  color: var(--gray-700);
}

.footer-disclaimer {
  max-width: var(--max-w);
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.footer-disclaimer p {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--gray-600);
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 24px; }
  .trust-strip-inner img { height: 72px; }
  .trust-strip-inner img.trust-logo-wide { max-height: 48px; max-width: 200px; }
  .trust-strip-sep { display: none; }
  .header-phone-label { display: none; }
  .logo-img { height: 54px; }
}

@media (max-width: 768px) {
  .logo-wide { display: none; }
  .logo-square { display: block; height: 44px; }
  .header-phone {
    background: var(--white);
    border: 2px solid var(--green-700);
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    flex-direction: row;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }
  .header-phone-number {
    font-size: 0.82rem;
    color: var(--green-700);
  }
  .header-phone-number svg { fill: var(--green-700); }
  .header-cta { padding: 9px 16px; font-size: 0.82rem; }
  .header-right { gap: 10px; }
}

@media (max-width: 600px) {
  .section { padding: 52px 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .cta-band-buttons { flex-direction: column; align-items: center; }
}

/* === Content Page Components === */

/* Hero */
.hero{background:radial-gradient(ellipse at 15% 40%,rgba(42,100,68,.10) 0%,transparent 50%),radial-gradient(ellipse at 85% 20%,rgba(197,135,46,.06) 0%,transparent 45%),linear-gradient(168deg,#f7f6f3 0%,#f0eeea 35%,#eae8e4 70%,#e8e6e2 100%);padding:0 24px;position:relative;overflow:hidden}
.hero.grain::after{z-index:1}
.hero::before{content:'';position:absolute;top:-20%;right:8%;width:1px;height:140%;background:linear-gradient(to bottom,transparent,rgba(197,135,46,.15),transparent);transform:rotate(12deg);pointer-events:none;z-index:1}
.hero-inner{max-width:var(--max-w);margin:0 auto;padding:56px 0 60px;position:relative;z-index:2;display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}
.hero h1{font-family:var(--font-display);font-size:clamp(2.1rem,4.8vw,3rem);color:var(--gray-900);line-height:1.18;margin-bottom:16px;font-weight:500}
.hero-sub{font-size:1.08rem;color:var(--gray-600);max-width:560px;line-height:1.65;margin-bottom:28px}
.hero-cta-row{display:flex;gap:14px;align-items:stretch;flex-wrap:wrap}
.hero-cta-row .btn{min-width:280px;display:flex;align-items:center;justify-content:center}
@keyframes scaleIn{from{opacity:0;transform:scale(.92)}to{opacity:1;transform:scale(1)}}
.hero-photo{position:relative;opacity:0;animation:scaleIn .8s ease-out .3s forwards}
.hero-photo img{max-width:100%;height:auto;display:block;border-radius:var(--radius-lg);box-shadow:0 20px 60px rgba(0,0,0,.12),0 4px 16px rgba(0,0,0,.06)}
.hero-photo::before{content:'';position:absolute;top:-12px;right:-12px;bottom:12px;left:12px;border:2px solid var(--amber);border-radius:var(--radius-lg);opacity:.2;z-index:-1}

/* Prose content */
.prose h2{font-family:var(--font-display);font-size:clamp(1.4rem,2.8vw,1.75rem);color:var(--gray-900);margin-bottom:16px;font-weight:400}
.prose h3{font-family:var(--font-display);font-size:1.15rem;color:var(--gray-900);margin-bottom:10px;font-weight:500}
.prose p{font-size:1rem;line-height:1.7;color:var(--gray-600);margin-bottom:14px}
.prose p:last-child{margin-bottom:0}
.prose strong{color:var(--gray-800)}
.prose ul{margin:0 0 16px 20px;padding:0}
.prose ul li{font-size:1rem;line-height:1.7;color:var(--gray-600);margin-bottom:6px}

/* Two-column content grid */
.content-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}

/* Checklist cards */
.check-list{list-style:none;margin:0;padding:0}
.check-list li{font-size:.95rem;color:var(--gray-600);line-height:1.55;padding:8px 0 8px 28px;position:relative;border-bottom:1px solid var(--gray-100)}
.check-list li:last-child{border-bottom:none}
.check-list li::before{content:'\2713';position:absolute;left:0;color:var(--green-600);font-weight:700}

/* Comparison grid */
.compare-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.compare-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:28px 24px;box-shadow:0 2px 8px rgba(0,0,0,.05);transition:transform .25s ease,box-shadow .25s ease}
.compare-card:hover{transform:translateY(-3px);box-shadow:0 8px 28px rgba(0,0,0,.08)}
.compare-card.highlighted{border-top:3px solid var(--green-600)}
.compare-card h3{font-family:var(--font-display);font-size:1.15rem;color:var(--gray-900);margin-bottom:14px;font-weight:500;display:flex;align-items:center;gap:10px}
.compare-list{list-style:none;margin:0;padding:0}
.compare-list li{font-size:.93rem;color:var(--gray-600);line-height:1.55;padding:8px 0;border-bottom:1px solid var(--gray-100);padding-left:24px;position:relative}
.compare-list li:last-child{border-bottom:none}
.compare-list li::before{content:'';position:absolute;left:0;top:14px;width:8px;height:8px;border-radius:50%}
.compare-card:not(.highlighted) .compare-list li::before{background:var(--gray-300)}
.compare-card.highlighted .compare-list li::before{background:var(--green-500)}

/* Feature grid */
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.feature-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:28px 24px;text-align:center;box-shadow:0 2px 8px rgba(0,0,0,.05);border-top:3px solid var(--amber);transition:transform .25s ease,box-shadow .25s ease}
.feature-card:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(0,0,0,.1)}
.feature-icon{width:36px;height:36px;margin:0 auto 14px;display:flex;align-items:center;justify-content:center;color:var(--green-700)}
.feature-icon svg{width:32px;height:32px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.feature-card h3{font-family:var(--font-display);font-size:1.05rem;color:var(--gray-900);margin-bottom:10px;font-weight:400}
.feature-card p{font-size:.93rem;line-height:1.6;color:var(--gray-500);margin:0}

/* Dark section law grid */
.law-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}
.law-copy h2{font-family:var(--font-display);font-size:clamp(1.4rem,2.8vw,1.75rem);color:var(--white);margin-bottom:16px;font-weight:400}
.law-copy p{font-size:1rem;line-height:1.7;color:rgba(255,255,255,.8);margin-bottom:14px}
.law-box{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:32px}
.law-box h3{font-family:var(--font-display);font-size:1.1rem;color:var(--white);margin-bottom:16px;font-weight:400}
.law-list{list-style:none;margin:0;padding:0}
.law-list li{font-size:.93rem;color:rgba(255,255,255,1);line-height:1.55;padding:8px 0 8px 24px;position:relative;border-bottom:1px solid rgba(255,255,255,.08)}
.law-list li:last-child{border-bottom:none}
.law-list li::before{content:'\2713';position:absolute;left:0;color:var(--green-400);font-weight:700}

/* Warning callout */
.warning-callout{background:#fef7e6;border:1px solid var(--gold-light);border-left:4px solid var(--gold);border-radius:var(--radius);padding:28px 32px}
.warning-callout h2{font-family:var(--font-display);font-size:1.3rem;color:var(--gray-900);margin-bottom:12px;font-weight:400}
.warning-callout p{font-size:1rem;line-height:1.65;color:var(--gray-600);margin-bottom:10px}
.warning-callout p:last-child{margin-bottom:0}
.warning-callout strong{color:var(--gray-800)}

/* FAQ (content page variant) */
.faq-list{max-width:760px;margin:32px auto 0}
.faq-q{width:100%;background:none;border:none;text-align:left;padding:18px 36px 18px 0;font-family:var(--font-body);font-size:1rem;font-weight:600;color:var(--gray-800);cursor:pointer;position:relative;line-height:1.4;transition:color .15s}
.faq-q:hover{color:var(--green-700)}
.faq-q::after{content:'+';position:absolute;right:0;top:50%;transform:translateY(-50%);font-size:1.3rem;color:var(--amber);font-weight:300;transition:transform .3s ease}
.faq-q.active::after{content:'\2212';transform:translateY(-50%) rotate(180deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .3s ease}
.faq-a.active{max-height:600px;padding-bottom:18px}
.faq-a p{font-size:.95rem;line-height:1.68;color:var(--gray-500);margin-bottom:10px}
.faq-a p:last-child{margin-bottom:0}

/* Consult card */
.consult-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:40px 36px;box-shadow:0 4px 16px rgba(0,0,0,.07)}
.consult-card h2{font-family:var(--font-display);font-size:1.3rem;color:var(--gray-900);margin-bottom:8px;font-weight:400}
.consult-card>p{font-size:.98rem;color:var(--gray-500);margin-bottom:18px}
.consult-list{list-style:none;margin:0 0 24px;padding:0}
.consult-list li{font-size:.95rem;color:var(--gray-600);line-height:1.55;padding:6px 0 6px 24px;position:relative}
.consult-list li::before{content:'\2713';position:absolute;left:0;color:var(--green-600);font-weight:700}
.consult-note{font-size:.88rem;color:var(--gray-400);font-style:italic;margin-top:12px;text-align:center}

/* Clark quote */
.clark-quote{display:flex;gap:24px;align-items:flex-start;background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:32px;box-shadow:0 2px 12px rgba(0,0,0,.05)}
.clark-quote img{width:72px;height:72px;border-radius:50%;object-fit:cover;flex-shrink:0}
.clark-quote blockquote{font-size:1rem;line-height:1.7;color:var(--gray-600);font-style:italic;margin:0 0 10px}
.clark-quote .quote-attr{font-size:.88rem;font-weight:700;color:var(--gray-800);font-style:normal}

/* Value band */
.value-band{background:var(--green-700);padding:48px 24px}
.value-band-inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr 1fr;gap:28px;align-items:start}
.value-band h2{font-family:var(--font-display);font-size:1.65rem;color:var(--white);font-weight:400;line-height:1.3;font-style:italic}
.value-col{border-top:2px solid rgba(255,255,255,.3);padding-top:16px}
.value-col h3{font-family:var(--font-display);font-size:1.05rem;color:var(--white);font-weight:400;margin-bottom:10px}
.value-col p{font-size:.88rem;line-height:1.6;color:rgba(255,255,255,.8);margin:0}

/* Reviews */
.reviews-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.rc-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.rc-name{font-weight:700;font-size:.88rem;color:var(--gray-800)}
.rc-stars{color:var(--amber);font-size:.92rem;letter-spacing:1px}
.reviews-proof{margin-top:20px;font-size:.88rem;color:var(--gray-500);text-align:center}
.rp-stars{color:var(--amber);font-size:.92rem;letter-spacing:1px}

/* Stagger 6th child */
.stagger-children.visible .reveal-child:nth-child(6){transition-delay:.4s}

/* === Utility Classes === */
.container-prose{max-width:760px;margin:0 auto}
.section-intro{max-width:620px;margin:0 auto 36px}
.img-card{width:100%;border-radius:var(--radius-lg);box-shadow:0 4px 20px rgba(0,0,0,.08)}
.btn-block{width:100%;display:block}
.text-center{text-align:center}
.subhead-green{color:var(--green-700);margin-bottom:14px}
.subhead-gray{color:var(--gray-500);margin-bottom:14px}
.hint-text{color:var(--gray-500);font-size:.95rem}

@media(prefers-reduced-motion:reduce){.hero-photo{opacity:1!important;animation:none!important}}

@media(max-width:900px){.hero-inner{grid-template-columns:1fr;gap:28px;text-align:center}.hero-sub{margin-left:auto;margin-right:auto}.hero-cta-row{justify-content:center}.hero-photo{max-width:500px;margin:0 auto}.hero-photo::before{display:none}.feature-grid{grid-template-columns:1fr 1fr}.law-grid{grid-template-columns:1fr}.content-grid{grid-template-columns:1fr}.compare-grid{grid-template-columns:1fr}.value-band-inner{grid-template-columns:1fr 1fr;gap:24px}.value-band-inner>div:first-child{grid-column:1/-1}.reviews-grid{grid-template-columns:1fr 1fr}.clark-quote{flex-direction:column;align-items:center;text-align:center}}
@media(max-width:600px){.hero-inner{padding:44px 0 40px}.feature-grid{grid-template-columns:1fr}.value-band-inner{grid-template-columns:1fr}.reviews-grid{grid-template-columns:1fr}.hero-cta-row{flex-direction:column;align-items:center}}
