/* ── Braswell Attorney — Trust-First Design System v2 ── */
/* Palette: Forest charcoal + warm cream + honest green + aged gold */
/* Type: Playfair Display (display) + Source Sans 3 (body) */

:root {
  --forest: #1c2b1e;
  --forest-mid: #243228;
  --forest-lt: #2e4035;
  --green: #2d6a35;
  --green-lt: #3a8445;
  --green-pale: #ebf3ec;
  --gold: #b8892a;
  --gold-lt: #d4a440;
  --cream: #f5f0e8;
  --cream-lt: #faf8f4;
  --warm-gray: #e8e2d8;
  --stone: #9c9488;
  --charcoal: #3a3530;
  --ink: #1a1714;
  --white: #ffffff;
  --red-urgent: #b5291a;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;

  --max-w: 1100px;
  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 4px rgba(28, 43, 30, 0.08);
  --shadow-md: 0 4px 20px rgba(28, 43, 30, 0.1);
  --shadow-lg: 0 8px 40px rgba(28, 43, 30, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream-lt);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--green);
  text-decoration: none;
}
a:hover {
  color: var(--green-lt);
  text-decoration: underline;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--forest);
  padding: 9px 24px;
  font-size: 13px;
  color: #8aaa8e;
  border-bottom: 1px solid var(--forest-lt);
}
.topbar .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a {
  color: #c8e8cc;
  font-weight: 600;
}
.topbar a:hover {
  color: var(--white);
  text-decoration: none;
}
.topbar .pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  color: #9aba9e;
}

/* ── NAV ── */
.sitenav {
  background: var(--cream-lt);
  border-bottom: 1px solid var(--warm-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.sitenav .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}
.logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  text-decoration: none;
}
.logo:hover {
  text-decoration: none;
  color: var(--forest);
}
.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 400;
  padding: 7px 12px;
  border-radius: var(--radius);
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--green-pale);
  color: var(--green);
  text-decoration: none;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: var(--white) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  transition:
    background 0.15s,
    transform 0.1s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--green-lt) !important;
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* ── HAMBURGER & MOBILE DRAWER ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background .15s;
}
.hamburger:hover { background: var(--green-pale); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-drawer {
  background: var(--cream-lt);
  border-top: 1px solid var(--warm-gray);
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.mobile-drawer.open { max-height: 700px; }
.mobile-drawer ul { list-style: none; margin: 0; padding: 0; }
.mobile-drawer li a {
  display: block;
  padding: 13px 20px;
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
  border-bottom: 1px solid var(--warm-gray);
  transition: background .12s, color .12s;
}
.mobile-drawer li:last-child a { border-bottom: none; }
.mobile-drawer li a:hover { background: var(--green-pale); color: var(--green); text-decoration: none; }
.mobile-drawer .drawer-lang a {
  color: var(--forest);
  font-weight: 600;
  background: var(--green-pale);
}

/* ── HERO ── */
.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--warm-gray);
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--gold) 50%,
    var(--green) 100%
  );
}
.hero .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
}

/* Attorney photo */
.attorney-photo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.photo-frame {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--forest-lt);
  border: 5px solid var(--white);
  outline: 2px solid var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  margin: 0 auto 16px;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-initials {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}
.photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--forest);
  color: #c8e8cc;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.photo-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 0;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-lt);
  border: 1px solid var(--warm-gray);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--charcoal);
}
.rating-badge .stars {
  color: var(--gold);
}

/* Hero copy */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  background: var(--green-pale);
  padding: 5px 12px;
  border-radius: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 10px;
}
.hero h1 .accent {
  color: var(--green);
}
.hero-promise {
  font-size: 16px;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  line-height: 1.6;
}
.hero-sub {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.1s,
    box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(45, 106, 53, 0.3);
  text-decoration: none;
  width: 100%;
  max-width: 360px;
}
.btn-call:hover {
  background: var(--green-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45, 106, 53, 0.4);
  color: var(--white);
  text-decoration: none;
}
.btn-call .free-tag {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 7px;
  border-radius: 10px;
}
.btn-secondary-link {
  font-size: 14px;
  color: var(--stone);
  text-align: center;
  max-width: 360px;
}
.btn-secondary-link a {
  color: var(--green);
  font-weight: 600;
}

/* Review quote in hero */
.hero-review {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  max-width: 480px;
}
.hero-review .stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 4px;
}
.hero-review blockquote {
  font-size: 14px;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 5px;
}
.hero-review cite {
  font-size: 12px;
  color: var(--stone);
  font-style: normal;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--forest);
  padding: 18px 24px;
}
.trust-strip .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8aaa8e;
  padding: 6px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-item:last-child {
  border-right: none;
}
.trust-item strong {
  color: #d0ecd4;
  font-weight: 600;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 24px;
}
.section.bg-cream {
  background: var(--cream);
}
.section.bg-white {
  background: var(--white);
}
.section.bg-forest {
  background: var(--forest);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}
.section.bg-forest .section-eyebrow {
  color: var(--gold);
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 14px;
}
.section.bg-forest h2.section-title {
  color: var(--white);
}

.section-intro {
  font-size: 18px;
  color: var(--stone);
  max-width: 600px;
  margin-bottom: 52px;
  line-height: 1.6;
}
.section.bg-forest .section-intro {
  color: #8aaa8e;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  gap: 20px;
}
.card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--green);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}
.card p {
  font-size: 15px;
  color: var(--stone);
}
.card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

/* Practice area cards */
.pa-card {
  background: var(--forest-mid);
  border: 1px solid var(--forest-lt);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.pa-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.pa-card a {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.pa-card a:hover {
  color: #c8e8cc;
  text-decoration: none;
}
.pa-card p {
  font-size: 13px;
  color: #6a8a6e;
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--forest-lt);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.about-photo-placeholder .initial {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}
.about-photo-placeholder .hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 0 20px;
}
.about-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.credential-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.credential {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.credential-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 8px;
  flex-shrink: 0;
}
.credential p {
  font-size: 15px;
  color: var(--charcoal);
}
.credential p span {
  font-weight: 600;
  color: var(--ink);
}

/* ── CHECKLIST ── */
.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--charcoal);
}
.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%232D6A35' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ── STEPS (how it works) ── */
.steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--warm-gray);
  position: relative;
}
.step:last-child {
  border-bottom: none;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}
.step p {
  font-size: 15px;
  color: var(--stone);
}

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.section.bg-forest .testimonial {
  background: var(--forest-mid);
  border-color: var(--forest-lt);
  border-top-color: var(--gold);
}
.testimonial .stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}
.section.bg-forest .testimonial blockquote {
  color: #c8d8ca;
}
.testimonial cite {
  font-size: 13px;
  color: var(--stone);
  font-style: normal;
  font-weight: 600;
}
.testimonial .verified {
  font-size: 11px;
  color: var(--green);
  font-weight: 400;
  margin-left: 6px;
}
.section.bg-forest .testimonial .verified {
  color: var(--gold);
}

/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.faq-q:hover {
  background: var(--cream);
}
.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 16px;
  line-height: 1;
  transition:
    transform 0.2s,
    background 0.15s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--green);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 2px 22px 20px;
}

/* ── INTAKE FORM ── */
.intake-card {
  background: var(--forest);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: sticky;
  top: 84px;
  box-shadow: var(--shadow-lg);
}
.intake-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.intake-card .sub {
  font-size: 13px;
  color: #6a8a6e;
  margin-bottom: 22px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #6a8a6e;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--forest-lt);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.15s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4a6a4e;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-lt);
}
.form-group select option {
  background: var(--forest-mid);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.btn-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.1s;
  font-family: var(--font-body);
}
.btn-submit:hover {
  background: var(--green-lt);
  transform: translateY(-1px);
}
.form-note {
  font-size: 12px;
  color: #4a6a4e;
  margin-top: 10px;
  line-height: 1.5;
  text-align: center;
}

/* ── CASE ESTIMATOR ── */
.estimator {
  background: var(--cream);
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 20px;
}
.estimator h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.est-row {
  margin-bottom: 14px;
}
.est-row label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 6px;
}
.est-row input[type="range"] {
  width: 100%;
  accent-color: var(--green);
}
.est-row select {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--charcoal);
  background: var(--white);
}
.est-result {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 14px;
  text-align: center;
}
.est-result .range {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #c8e8cc;
}
.est-result .note {
  font-size: 11px;
  color: #6a8a6e;
  margin-top: 4px;
}

/* ── STATS ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--warm-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
}
.stat-item {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--stone);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--green);
  padding: 56px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin-bottom: 28px;
}
.cta-band .btn-call {
  max-width: 320px;
  margin: 0 auto;
  font-size: 18px;
  background: var(--white);
  color: var(--green);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.cta-band .btn-call:hover {
  background: var(--cream);
  color: var(--green);
}
.cta-band .no-fee {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream-lt);
  border-bottom: 1px solid var(--warm-gray);
  padding: 10px 24px;
}
.breadcrumb .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 12px;
  color: var(--stone);
}
.breadcrumb a {
  color: var(--green);
}
.breadcrumb span.sep {
  margin: 0 7px;
}

/* ── FOOTER ── */
footer {
  background: var(--forest);
  border-top: 3px solid var(--green);
  padding: 60px 24px 32px;
  color: #6a8a6e;
  font-size: 14px;
}
footer .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
footer h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8d8ca;
  margin-bottom: 16px;
}
footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
footer ul a {
  color: #6a8a6e;
  font-size: 14px;
}
footer ul a:hover {
  color: #c8e8cc;
  text-decoration: none;
}
.footer-disclaimer {
  font-size: 11px;
  color: #3a5a3e;
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #3a5a3e;
}
.footer-bottom a {
  color: #3a5a3e;
}
.footer-bottom a:hover {
  color: #6a8a6e;
  text-decoration: none;
}

/* ── URGENCY NOTE ── */
.urgency-note {
  background: #fef9ec;
  border: 1px solid #e8c84a;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  color: #7a5a10;
  margin-top: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* ── STICKY MOBILE CTA ── */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--forest);
  border-top: 2px solid var(--green);
  padding: 10px 16px 10px;
  z-index: 200;
  gap: 8px;
}
@media (max-width: 640px) {
  .sticky-mobile {
    display: flex;
  }
  .sticky-mobile a {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-body);
  }
  .sticky-mobile .call-btn {
    background: var(--green);
    color: var(--white);
  }
  .sticky-mobile .form-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #c8e8cc;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  body {
    padding-bottom: 72px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero .inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero .inner > div:first-child {
    order: 2;
  }
  .hero .inner > div:last-child {
    order: 1;
  }
  .attorney-photo {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
  }
  .photo-frame {
    width: 160px;
    height: 160px;
  }
  .photo-initials {
    font-size: 32px;
  }
  .photo-badges {
    align-items: flex-start;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .intake-card {
    position: static;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    max-width: 280px;
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .topbar .pill {
    display: none;
  }
  .topbar {
    padding: 7px 16px;
    font-size: 12px;
  }
  .sitenav .inner {
    height: 56px;
    padding: 0 16px;
    gap: 10px;
  }
  .logo {
    font-size: 16px;
    white-space: nowrap;
  }
  .logo span {
    display: none;
  }
  .nav-cta {
    display: none !important;
  }
  .nav-lang {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 32px 20px 28px;
  }
  .hero .inner {
    gap: 24px;
  }
  .hero h1 {
    font-size: clamp(26px, 7vw, 36px);
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .hero-promise {
    font-size: 15px;
  }
  .attorney-photo {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .photo-frame {
    width: 160px;
    height: 160px;
  }
  .photo-badges {
    align-items: center;
  }
  .btn-call {
    font-size: 16px;
    padding: 14px 24px;
  }
  .hero-review {
    max-width: 100%;
  }
  .urgency-note {
    font-size: 13px;
  }
  .section {
    padding: 44px 20px;
  }
  footer .inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item {
    padding: 6px 14px;
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
