/* ==========================================================
   Djalma Matos Advogado & Associados — Redesign completo
   Paleta: #7A1F1F (vermelho), #F5F5F5 (branco),
           #1F1F1F (preto), #D4AF37 (dourado)
========================================================== */

:root {
  --red:   #7A1F1F;
  --red2:  #5C1616;
  --white: #F5F5F5;
  --black: #1F1F1F;
  --gold:  #D4AF37;

  --red-tint:  rgba(122,31,31,.07);
  --gold-tint: rgba(212,175,55,.10);
  --gold-mid:  rgba(212,175,55,.40);

  --border:      rgba(31,31,31,.11);
  --border-gold: rgba(212,175,55,.38);

  --text:       #1F1F1F;
  --text-muted: rgba(31,31,31,.62);
  --text-dim:   rgba(31,31,31,.40);

  --on-dark:     #F0EDED;
  --on-dark-dim: rgba(240,237,237,.68);

  --container: 1120px;
  --r:  6px;
  --r2: 12px;
  --r3: 18px;

  --sh:   0 1px 4px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.07);
  --sh-m: 0 4px 18px rgba(0,0,0,.10), 0 12px 36px rgba(0,0,0,.11);
  --sh-l: 0 8px 30px rgba(0,0,0,.14), 0 24px 60px rgba(0,0,0,.16);
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 82px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  font-family: "Times New Roman", Times, serif;
  line-height: 1.6;
  background: #FAFAFA;
  color: var(--text);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

.form-trap {
  display: none !important;
  visibility: hidden;
  position: absolute;
  width: 0; height: 0; opacity: 0;
  pointer-events: none;
}

/* ── Container ───────────────────────────────── */
.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

/* ── Topbar ──────────────────────────────────── */
.topbar {
  background: var(--black);
  color: var(--on-dark-dim);
  font-size: 12px;
  letter-spacing: .15px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
}

/* ── Header ──────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,250,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border-gold), 0 2px 12px rgba(0,0,0,.05);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  min-height: 74px;
  position: relative;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: var(--r2);
  object-fit: cover;
  border: 1px solid var(--border-gold);
  box-shadow: var(--sh);
  background: #fff;
}
.brand-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: .1px;
  line-height: 1.25;
}
.brand-text small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: .25px;
}

/* Nav */
.nav {
  display: flex;
  flex: 1 1 0;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.nav::-webkit-scrollbar { display: none; }

.nav a {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  transition: color .15s, background .15s;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav a:hover {
  color: var(--red);
  background: var(--red-tint);
}
.nav a:hover::after { transform: scaleX(1); }

/* CTA */
.cta {
  flex: 0 0 auto;
  padding: 9px 18px;
  border-radius: var(--r2);
  background: var(--red);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  border: 1px solid rgba(122,31,31,.30);
  box-shadow: 0 4px 14px rgba(122,31,31,.22);
  transition: .16s ease;
  white-space: nowrap;
}
.cta:hover {
  background: var(--red2);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(122,31,31,.28);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--black);
  border-radius: 999px;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r2);
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: .16s ease;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn.primary {
  background: var(--red);
  color: var(--white);
  border-color: rgba(122,31,31,.25);
  box-shadow: 0 4px 16px rgba(122,31,31,.25);
}
.btn.primary:hover {
  background: var(--red2);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(122,31,31,.32);
}
.btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(245,245,245,.28);
}
.btn.ghost:hover {
  background: rgba(245,245,245,.10);
  color: var(--gold);
  border-color: rgba(212,175,55,.45);
  transform: translateY(-1px);
}
.btn.outline {
  background: transparent;
  color: var(--red);
  border-color: var(--border-gold);
}
.btn.outline:hover {
  background: var(--red-tint);
  transform: translateY(-1px);
}
.btn.outline-light {
  background: transparent;
  color: var(--on-dark-dim);
  border-color: rgba(245,245,245,.20);
  font-size: 13px;
  padding: 9px 16px;
}
.btn.outline-light:hover {
  background: rgba(245,245,245,.08);
  color: var(--gold);
  border-color: rgba(212,175,55,.35);
  transform: translateY(-1px);
}

/* ── Hero ────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 70% 55% at 92% 8%, rgba(212,175,55,.14), transparent 58%),
    linear-gradient(155deg, var(--red2) 0%, var(--red) 55%, #8B2525 100%);
  color: var(--on-dark);
  padding: 72px 0 60px;
  border-top: 3px solid var(--gold);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 999px;
  flex-shrink: 0;
}

.hero-copy h1 {
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.3px;
  color: #fff;
  margin-bottom: 18px;
}
.hero-copy h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--on-dark-dim);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tags span {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--on-dark-dim);
}

/* Hero stat card */
.hero-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: var(--r3);
  padding: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 32px rgba(0,0,0,.20);
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 15px;
  color: var(--on-dark-dim);
  line-height: 1.65;
  margin-bottom: 22px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.metric {
  padding: 14px 8px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  text-align: center;
}
.metric strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}
.metric span {
  font-size: 11px;
  color: var(--on-dark-dim);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* ── Sections ────────────────────────────────── */
.section { padding: 72px 0; }

.section-tinted {
  background: #EEEBE7;
  border-top: 1px solid rgba(31,31,31,.08);
  border-bottom: 1px solid rgba(31,31,31,.08);
}

.section-header {
  margin-bottom: 40px;
  max-width: 680px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--red);
  margin-bottom: 10px;
}
.section-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  flex-shrink: 0;
}
.section-header h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: -.2px;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 10px;
}
.section-header h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-header > p:not(.section-label) {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── About ───────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-body .section-label { margin-bottom: 10px; }
.about-body h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.2px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.about-body h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.about-body > p:not(.section-label) {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}
.checklist {
  list-style: none;
  margin-bottom: 24px;
}
.checklist li {
  padding: 9px 0 9px 22px;
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.checklist li:first-child { border-top: 1px solid var(--border); }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.office-note {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--red-tint);
  border-radius: 0 var(--r2) var(--r2) 0;
  margin-bottom: 26px;
}
.office-note h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.office-note p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.office-note p + p { margin-top: 6px; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.about-photo {
  margin: 0;
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: var(--sh-m);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Team ────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.team-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r3);
  box-shadow: var(--sh);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  color: var(--text);
}
.team-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--sh-m);
  transform: translateY(-2px);
}
.team-photo {
  width: 96px;
  height: 96px;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}
.team-role {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.team-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Bio accordion */
.bio-accordion {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 6px;
}
.bio-accordion summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.bio-accordion summary::-webkit-details-marker,
.bio-accordion summary::marker { display: none; }
.bio-accordion summary::after {
  content: "\25BE";
  font-size: 11px;
  transition: transform .2s;
  display: inline-block;
}
.bio-accordion[open] > summary::after { transform: rotate(180deg); }
.bio-accordion summary:hover { color: var(--gold); }
.bio-accordion p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 10px;
}
.bio-accordion p + p { margin-top: 8px; }

/* Bio modal */
body.bio-modal-open { overflow: hidden; }
.bio-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31,31,31,.55);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.bio-overlay.show { opacity: 1; pointer-events: auto; }

.team-card.bio-expanded {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: min(860px, calc(100vw - 28px));
  max-height: 86vh;
  overflow-y: auto;
  grid-template-columns: 190px 1fr;
  padding: 28px;
  box-shadow: var(--sh-l);
  border-color: var(--border-gold);
  background: #fff;
}
.team-card.bio-expanded .team-photo {
  width: 190px;
  height: 190px;
}
.team-card.bio-expanded .bio-accordion {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* ── Practice Areas ──────────────────────────── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: practice;
}
.practice-card {
  counter-increment: practice;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--r2) var(--r2);
  box-shadow: var(--sh);
  transition: border-top-color .18s, box-shadow .18s, transform .18s;
}
.practice-card::before {
  content: counter(practice, upper-roman);
  display: block;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.practice-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--sh-m);
  transform: translateY(-2px);
}
.practice-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.practice-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Process Steps ───────────────────────────── */
.step-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  transition: border-color .18s, transform .18s;
}
.step-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-1px);
}
.step-num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  background: var(--red-tint);
  border: 1px solid rgba(122,31,31,.16);
  color: var(--red);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .5px;
}
.step-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Blog ────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.blog-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--sh-m);
  transform: translateY(-2px);
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-date {
  font-size: 12px;
  color: var(--text-dim);
}
.blog-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--red);
  padding: 2px 8px;
  background: var(--red-tint);
  border-radius: 999px;
}
.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}
.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.read-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: color .15s;
}
.read-link:hover { color: var(--gold); }

/* ── Videos ──────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.video-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--sh-m);
  transform: translateY(-2px);
}
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(31,31,31,.05);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-dim);
}
.video-placeholder-icon { font-size: 30px; line-height: 1; }
.video-placeholder p   { font-size: 13px; margin: 0; }
.video-body { padding: 16px; }
.video-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.video-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Contact ─────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 24px;
  align-items: start;
}

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r3);
  padding: 28px;
  box-shadow: var(--sh);
  display: grid;
  gap: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
label span {
  font-weight: 700;
  color: var(--text);
  letter-spacing: .1px;
}
input, textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: #FAFAFA;
  color: var(--text);
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px var(--gold-tint);
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
button[disabled] { opacity: .72; cursor: wait; }

.form-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.form-hint { font-size: 12px; color: var(--text-dim); }
.form-hint.success { color: #1a7a3a; }
.form-hint.error   { color: #a02828; }
.form-status { font-size: 14px; font-weight: 700; min-height: 22px; }
.form-status.success { color: #1a7a3a; }
.form-status.error   { color: #a02828; }
.form-status.loading { color: var(--red); }

/* Info aside */
.contact-info {
  background: var(--black);
  border-radius: var(--r3);
  padding: 28px;
  color: var(--on-dark);
  display: grid;
  gap: 16px;
  align-content: start;
}
.contact-info h3 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.contact-info > p {
  font-size: 14px;
  color: var(--on-dark-dim);
  line-height: 1.7;
}
.info-list {
  display: grid;
  gap: 14px;
}
.info-list dt {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--gold);
  margin-bottom: 1px;
}
.info-list dd {
  font-size: 13.5px;
  color: var(--on-dark-dim);
  line-height: 1.55;
  margin: 0;
}

/* WhatsApp button */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r2);
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: .16s ease;
  text-decoration: none;
}
.whatsapp-link:hover {
  background: #1ebe5b;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,.28);
}
.whatsapp-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.whatsapp-icon svg { width: 100%; height: 100%; display: block; }

.urgency-note {
  padding: 14px 16px;
  border-radius: var(--r);
  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.18);
}
.urgency-note strong {
  display: block;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 4px;
}
.urgency-note p {
  font-size: 13px;
  color: var(--on-dark-dim);
  margin: 0;
  line-height: 1.55;
}

/* ── FAQ ─────────────────────────────────────── */
.faq-list { display: grid; gap: 8px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  overflow: hidden;
  transition: border-color .18s;
}
.faq-item:hover,
.faq-item[open] { border-color: var(--border-gold); }

.faq-item > summary {
  padding: 16px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  user-select: none;
}
.faq-item > summary::-webkit-details-marker,
.faq-item > summary::marker { display: none; }
.faq-item > summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item > summary:hover { color: var(--red); }

.faq-answers {
  list-style: none;
  padding: 0 20px 16px;
  border-top: 1px solid var(--border);
}
.faq-answers li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  border-bottom: 1px solid var(--border);
}
.faq-answers li:last-child { border-bottom: none; }
.faq-answers strong {
  display: block;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 2px;
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--on-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding: 52px 0 40px;
  border-bottom: 1px solid rgba(245,245,245,.09);
}
.footer-brand strong {
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.footer-brand p {
  font-size: 13px;
  color: var(--on-dark-dim);
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-oab {
  font-size: 12px !important;
  color: var(--gold) !important;
  font-weight: 700;
  letter-spacing: .5px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col nav {
  display: grid;
  gap: 8px;
}
.footer-col nav a {
  font-size: 14px;
  color: var(--on-dark-dim);
  transition: color .15s;
}
.footer-col nav a:hover { color: var(--gold); }
.footer-col p {
  font-size: 13px;
  color: var(--on-dark-dim);
  line-height: 1.65;
  margin-bottom: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0;
}
.footer-bottom span {
  font-size: 12px;
  color: rgba(240,237,237,.38);
}
.footer-bottom a {
  font-size: 12px;
  color: var(--on-dark-dim);
  transition: color .15s;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── Floating WhatsApp ───────────────────────── */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.fab-whatsapp:hover {
  color: #fff;
  transform: scale(1.10) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}
.fab-whatsapp svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .cta { display: none; }
  .nav {
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 12px;
    background: #FAFAFA;
    border-bottom: 2px solid var(--border-gold);
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    display: none;
    z-index: 200;
    overflow-x: visible;
    white-space: normal;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav a:last-child { border-bottom: none; }
  .nav a::after { display: none; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .step-list { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 52px 0; }
  .hero { padding: 52px 0 44px; }
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 3px; }
  .team-grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .team-card.bio-expanded {
    grid-template-columns: 1fr;
    width: calc(100vw - 20px);
    padding: 18px;
  }
  .team-card.bio-expanded .team-photo {
    width: 120px;
    height: 120px;
  }
}
