@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
  --navy: #0C1929;
  --navy-mid: #152841;
  --navy-soft: #1B3352;
  --cream: #FAF8F4;
  --warm-white: #FFFFFF;
  --sand: #F0EBE0;
  --sand-light: #F7F4EE;
  --red: #A32428;
  --red-deep: #8B1E22;
  --red-hover: #C42E33;
  --red-light: rgba(163,36,40,0.06);
  --gold: #B8945A;
  --gold-light: #D4AD6E;
  --text-dark: #1A1D24;
  --text-body: #4A4D56;
  --text-muted: #8A8D96;
  --text-light: #B0B3BA;
  --border: rgba(12,25,41,0.07);
  --border-strong: rgba(12,25,41,0.12);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 76px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.nav-logo-img { height: 56px; width: auto; max-width: 280px; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-name { font-family: var(--font-display); font-size: 18px; color: var(--navy); }
.nav-logo-label { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); }
.nav-center { display: flex; align-items: center; gap: 32px; }
.nav-center a {
  font-size: 14px; font-weight: 500; color: var(--text-body);
  text-decoration: none; transition: color 0.2s; position: relative;
}
.nav-center a:hover { color: var(--navy); }
.nav-center a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--red); transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-center a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 15px; font-weight: 700; color: var(--navy); text-decoration: none; }
.nav-cta {
  background: var(--red); color: white;
  padding: 11px 24px; border-radius: 6px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.2s; letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--red-hover); }

/* Mobile hamburger menu */
.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin: 0;
  min-width: 44px; min-height: 44px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--navy);
  transition: all 0.3s; display: block;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ===================== HERO ===================== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 720px; margin-top: 76px;
}
.hero-left {
  background: var(--warm-white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 56px 80px 80px;
  position: relative;
}
.hero-left::before {
  content: ''; position: absolute; left: 80px; top: 60px;
  width: 48px; height: 3px; background: var(--red);
}
.hero-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 24px; margin-top: 20px;
}
.hero h1 {
  font-family: var(--font-display); font-size: 52px; font-weight: 400;
  line-height: 1.14; color: var(--navy); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--red); }
.hero-sub {
  font-size: 17px; line-height: 1.75; color: var(--text-body);
  margin-bottom: 36px; max-width: 460px;
}
.hero-sub strong { color: var(--navy); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; align-items: center; margin-bottom: 44px; }
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white;
  padding: 16px 32px; border-radius: 6px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.25s; box-shadow: 0 4px 16px rgba(163,36,40,0.2);
  border: none; cursor: pointer;
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(163,36,40,0.25); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white;
  padding: 16px 28px; border-radius: 6px;
  font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.25s;
  border: none; cursor: pointer;
}
.btn-navy:hover { background: var(--navy-mid); }
.hero-trust-row { display: flex; gap: 24px; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-body);
}
.hero-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.hero-right {
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 80%, rgba(184,148,90,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(12,25,41,0.5) 0%, transparent 60%);
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,148,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,148,90,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-photo-area {
  position: relative; z-index: 2; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 0;
  overflow: hidden;
}
.hero-attorney-photo {
  width: 420px; max-width: 100%; height: auto; max-height: 100%;
  object-fit: contain; object-position: bottom center;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
  position: relative; z-index: 2;
}
.hero-scene-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  position: relative; z-index: 2;
}
.hero-stats-bar {
  position: absolute; bottom: 40px; left: 40px; right: 40px; z-index: 3;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px; overflow: hidden;
}
.hero-stat {
  background: rgba(12,25,41,0.7); backdrop-filter: blur(12px);
  padding: 20px; text-align: center;
}
.hero-stat-value { font-family: var(--font-display); font-size: 24px; color: var(--gold); }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; font-weight: 500; letter-spacing: 0.5px; }

/* ===================== TRUST STRIP ===================== */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
}
.ts-item {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 22px 16px; color: white;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.ts-item:last-child { border-right: none; }
.ts-icon { font-size: 18px; }
.ts-text { font-size: 14px; font-weight: 600; letter-spacing: 0.3px; }

/* ===================== SHARED SECTION STYLES ===================== */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.sh-label {
  font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.sh-label::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.section-header.centered .sh-label { justify-content: center; }
.section-header.centered .sh-label::before { display: none; }
.sh-title { font-family: var(--font-display); font-size: 40px; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.sh-desc { font-size: 16px; color: var(--text-muted); max-width: 500px; line-height: 1.7; }
.section-header.centered .sh-desc { margin: 0 auto; }

/* ===================== PRACTICE AREAS ===================== */
.practice-areas { padding: 100px 80px; background: var(--cream); }
.pa-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pa-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: all 0.3s; cursor: pointer; position: relative;
}
.pa-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red); transform: scaleX(0); transition: transform 0.3s;
  transform-origin: left; z-index: 2;
}
.pa-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pa-card:hover::before { transform: scaleX(1); }
.pa-card-img {
  width: 100%; height: 140px; object-fit: cover;
  display: block; filter: saturate(0.85);
  transition: filter 0.3s;
}
.pa-card:hover .pa-card-img { filter: saturate(1); }
.pa-card-body { padding: 20px 16px; text-align: center; }
.pa-card h3 { font-family: var(--font-display); font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.pa-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.pa-link { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700; color: var(--red); text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; }

/* ===================== ATTORNEYS ===================== */
.attorneys { padding: 100px 0; background: var(--warm-white); }
.attorneys-inner { padding: 0 80px; }
.attorney-row {
  display: grid; grid-template-columns: 420px 1fr; gap: 56px;
  align-items: center; margin-bottom: 72px;
  padding-bottom: 72px; border-bottom: 1px solid var(--border);
}
.attorney-row:last-of-type { border-bottom: none; margin-bottom: 40px; padding-bottom: 0; }
.attorney-row.reverse { grid-template-columns: 1fr 420px; }
.attorney-row.reverse .attorney-photo-wrap { order: 2; }
.attorney-photo-wrap {
  border-radius: 12px; overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg); position: relative;
}
.attorney-photo-wrap::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(0,0,0,0.04); border-radius: 12px;
}
.attorney-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.attorney-name {
  font-family: var(--font-display); font-size: 34px; color: var(--navy);
  margin-bottom: 6px; line-height: 1.2;
}
.attorney-role {
  font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
}
.attorney-bio {
  font-size: 16px; color: var(--text-body); line-height: 1.8; margin-bottom: 24px;
}
.attorney-highlights { display: flex; gap: 20px; margin-bottom: 20px; }
.attorney-highlight {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text-body); line-height: 1.4;
}
.attorney-highlight .ah-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
  margin-top: 5px; flex-shrink: 0;
}
.attorney-creds {
  font-size: 13px; color: var(--text-light); font-style: italic; line-height: 1.6;
  padding-top: 16px; border-top: 1px solid var(--border);
}

.tagline-banner {
  margin: 0 80px; padding: 44px 60px;
  background: var(--navy); border-radius: 12px;
  text-align: center; position: relative; overflow: hidden;
}
.tagline-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(184,148,90,0.06) 0%, transparent 60%);
}
.tagline-banner p {
  font-family: var(--font-display); font-size: 30px; color: white;
  position: relative; z-index: 1;
}
.tagline-banner em { color: var(--gold); }

/* ===================== ABOUT / EDITORIAL SECTION ===================== */
.about-editorial {
  padding: 100px 80px; background: var(--sand-light);
}
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.about-img-wrap {
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img {
  width: 100%; height: 460px; object-fit: cover; display: block;
}
.about-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px; background: linear-gradient(transparent, rgba(12,25,41,0.7));
  font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500;
}
.about-text h3 {
  font-family: var(--font-display); font-size: 32px; color: var(--navy);
  margin-bottom: 20px; line-height: 1.25;
}
.about-text p {
  font-size: 16px; color: var(--text-body); line-height: 1.8; margin-bottom: 16px;
}
.about-text .about-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--red); text-decoration: none;
  margin-top: 8px;
}
.about-text .about-cta:hover { text-decoration: underline; }

/* ===================== HOW IT WORKS ===================== */
.how-it-works { padding: 100px 80px; background: var(--sand-light); }
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 56px; position: relative;
}
.steps-row::before {
  content: ''; position: absolute; top: 36px;
  left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 0;
}
.step-card { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--warm-white); border: 3px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display); font-size: 28px; color: var(--red);
  box-shadow: var(--shadow-md);
}
.step-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; max-width: 300px; margin: 0 auto; }

/* ===================== RESULTS ===================== */
.results {
  padding: 100px 80px; background: var(--navy); color: white;
  position: relative; overflow: hidden;
}
.results::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(184,148,90,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(163,36,40,0.04) 0%, transparent 50%);
}
.results .sh-label { color: var(--gold); }
.results .sh-label::before { background: var(--gold); }
.results .sh-title { color: white; }
.results-content { position: relative; z-index: 1; }
.results-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px;
}
.result-card {
  text-align: center; padding: 40px 20px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; transition: all 0.3s;
}
.result-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(184,148,90,0.2); }
.result-value { font-family: var(--font-display); font-size: 44px; color: var(--gold); margin-bottom: 6px; }
.result-label { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500; }
.testimonials-row { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testimonial-card {
  padding: 32px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--font-display); font-size: 18px; font-style: italic;
  color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 16px;
}
.testimonial-author { font-size: 13px; color: var(--gold); font-weight: 600; }

/* ===================== AVENTURA BANNER ===================== */
.aventura-banner {
  position: relative; height: 280px; overflow: hidden;
}
.aventura-banner img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) saturate(0.9);
}
.aventura-banner-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; z-index: 2;
}
.aventura-banner-overlay h2 {
  font-family: var(--font-display); font-size: 36px; color: white;
  margin-bottom: 8px;
}
.aventura-banner-overlay p {
  font-size: 16px; color: rgba(255,255,255,0.7); max-width: 500px;
}

/* ===================== FAQ ===================== */
.faq { padding: 100px 80px; background: var(--cream); }
.faq-wrapper {
  display: grid; grid-template-columns: 340px 1fr; gap: 60px; margin-top: 56px;
}
.faq-intro h3 { font-family: var(--font-display); font-size: 28px; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.faq-intro p { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 24px; }
.faq-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white;
  padding: 14px 28px; border-radius: 6px;
  font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s;
  border: none; cursor: pointer;
}
.faq-cta:hover { background: var(--navy-mid); }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-q {
  font-family: var(--font-display); font-size: 18px; color: var(--navy);
  margin-bottom: 8px; display: flex; justify-content: space-between; align-items: flex-start;
  cursor: pointer;
}
.faq-q::after { content: '+'; color: var(--red); font-size: 22px; font-family: var(--font-body); flex-shrink: 0; margin-left: 16px; transition: transform 0.3s; }
.faq-item.active .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--text-body); line-height: 1.7; padding-right: 40px; max-height: 500px; overflow: hidden; transition: max-height 0.3s, opacity 0.3s; opacity: 1; }
.faq-item:not(.active) .faq-a { max-height: 0; opacity: 0; padding: 0; }

/* ===================== CONTACT / CTA ===================== */
.contact { padding: 100px 80px; background: var(--warm-white); }
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; margin-top: 56px;
}
.contact-left h3 {
  font-family: var(--font-display); font-size: 32px; color: var(--navy); margin-bottom: 8px;
}
.contact-left .cl-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.contact-phone-big {
  font-family: var(--font-display); font-size: 40px; color: var(--red);
  text-decoration: none; display: block; margin-bottom: 24px;
}
.contact-details { font-size: 15px; color: var(--text-body); line-height: 2.2; }
.contact-details a { color: var(--red); text-decoration: none; font-weight: 500; }
.contact-badges { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.contact-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--red-light); border: 1px solid rgba(163,36,40,0.08);
  border-radius: 6px; padding: 8px 14px; font-size: 12px; font-weight: 600; color: var(--red);
}
.contact-map {
  margin-top: 28px; height: 160px; border-radius: 10px;
  overflow: hidden; border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-form-card {
  background: var(--sand-light); border: 1px solid var(--border);
  border-radius: 14px; padding: 40px; position: relative; overflow: hidden;
}
.contact-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--red), var(--gold));
}
.contact-form-card h4 {
  font-family: var(--font-display); font-size: 24px; color: var(--navy); margin-bottom: 6px;
}
.contact-form-card .cf-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text-body); margin-bottom: 6px; display: block; letter-spacing: 0.3px; }
.form-input {
  width: 100%; padding: 13px 16px; border-radius: 8px;
  background: var(--warm-white); border: 1px solid var(--border-strong);
  color: var(--text-dark); font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(163,36,40,0.06); }
.form-input::placeholder { color: #C0C0C0; }
textarea.form-input { min-height: 100px; resize: vertical; }
.form-submit {
  width: 100%; padding: 15px; border-radius: 8px;
  background: var(--red); color: white; border: none;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.25s; letter-spacing: 0.3px;
  min-height: 44px;
}
.form-submit:hover { background: var(--red-hover); }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 12px; text-align: center; }

/* ===================== FOOTER ===================== */
.footer { padding: 56px 80px 28px; background: var(--navy); color: white; }
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.5fr; gap: 36px;
  margin-bottom: 36px;
}
.footer-brand-name { font-family: var(--font-display); font-size: 20px; color: white; margin-bottom: 14px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); text-decoration: none; font-size: 13px; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-contact-line { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 8px; line-height: 1.5; }
.footer-contact-line a { color: var(--gold); text-decoration: none; }
.footer-bottom {
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-disclaimer {
  font-size: 10px !important;
  color: rgba(255,255,255,0.15) !important;
  line-height: 1.6;
  margin-top: 12px !important;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
}

/* ===================== NAVBAR SHADOW ON SCROLL ===================== */
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

/* ===================== RESPONSIVE: TABLET (768-1023px) ===================== */
@media (max-width: 1023px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-right {
    gap: 12px;
  }

  .nav-phone {
    font-size: 13px;
    display: none;
  }

  .nav-cta {
    padding: 9px 18px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 60px 40px;
  }

  .hero-left::before {
    left: 40px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-right {
    min-height: 500px;
  }

  .hero-attorney-photo {
    width: 280px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .ts-item {
    padding: 16px 12px;
  }

  .ts-text {
    font-size: 12px;
  }

  .practice-areas {
    padding: 80px 40px;
  }

  .pa-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .attorneys-inner {
    padding: 0 40px;
  }

  .attorney-row {
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .attorney-row.reverse {
    grid-template-columns: 1fr 300px;
  }

  .attorney-name {
    font-size: 28px;
  }

  .attorney-bio {
    font-size: 14px;
  }

  .tagline-banner {
    margin: 0 40px;
    padding: 36px 40px;
  }

  .tagline-banner p {
    font-size: 24px;
  }

  .about-editorial {
    padding: 80px 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img {
    height: 360px;
  }

  .how-it-works {
    padding: 80px 40px;
  }

  .steps-row::before {
    left: 0;
    right: 0;
  }

  .results {
    padding: 80px 40px;
  }

  .results-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-row {
    grid-template-columns: 1fr;
  }

  .faq {
    padding: 80px 40px;
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact {
    padding: 80px 40px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding: 40px 40px 20px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* ===================== RESPONSIVE: MOBILE (max-width: 767px) ===================== */
@media (max-width: 767px) {
  body {
    max-width: 100%;
  }

  .navbar {
    padding: 0 16px;
    height: 60px;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .nav-logo {
    order: 1;
    gap: 8px;
  }

  .nav-logo-img {
    height: 36px;
  }

  .nav-center {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 99;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav-center.active {
    transform: translateX(0);
  }

  .nav-center a {
    padding: 16px 0;
    font-size: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
  }

  .nav-right {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 99;
    order: 3;
    margin-top: 0;
  }

  .nav-center.active ~ .nav-right {
    transform: translateX(0);
    position: static;
    margin-top: auto;
  }

  .nav-phone {
    display: block;
    font-size: 14px;
    min-height: 44px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    min-height: 44px;
  }

  .hero {
    min-height: auto;
    margin-top: 60px;
  }

  .hero-left {
    padding: 40px 20px;
  }

  .hero-left::before {
    display: none;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }

  .btn-red,
  .btn-navy {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-trust-row {
    flex-direction: column;
    gap: 12px;
  }

  .hero-trust-item {
    font-size: 12px;
  }

  .hero-right {
    min-height: 400px;
    display: none;
  }

  .hero-attorney-photo {
    display: none;
  }

  .hero-stats-bar {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .ts-item {
    padding: 16px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .ts-item:nth-child(even) {
    border-right: none;
  }

  .ts-item:nth-child(n+3) {
    border-bottom: none;
  }

  .ts-text {
    font-size: 11px;
  }

  .ts-icon {
    font-size: 16px;
  }

  .practice-areas {
    padding: 60px 16px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .sh-title {
    font-size: 28px;
  }

  .sh-desc {
    font-size: 14px;
  }

  .pa-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pa-card-img {
    height: 120px;
  }

  .attorneys {
    padding: 60px 0;
  }

  .attorneys-inner {
    padding: 0 16px;
  }

  .attorney-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 36px;
  }

  .attorney-row.reverse {
    grid-template-columns: 1fr;
  }

  .attorney-row.reverse .attorney-photo-wrap {
    order: 0;
  }

  .attorney-photo-wrap {
    aspect-ratio: auto;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 260px;
  }

  .attorney-photo {
    object-position: center top;
  }

  .attorney-name {
    font-size: 24px;
  }

  .attorney-bio {
    font-size: 14px;
    line-height: 1.6;
  }

  .attorney-highlights {
    flex-direction: column;
    gap: 12px;
  }

  .tagline-banner {
    margin: 0 16px;
    padding: 28px 20px;
  }

  .tagline-banner p {
    font-size: 20px;
  }

  .about-editorial {
    padding: 60px 16px;
  }

  .about-img {
    height: 280px;
  }

  .about-text h3 {
    font-size: 24px;
  }

  .about-text p {
    font-size: 14px;
  }

  .how-it-works {
    padding: 60px 16px;
  }

  .steps-row {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .steps-row::before {
    display: none;
  }

  .step-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .step-card h3 {
    font-size: 18px;
  }

  .step-card p {
    font-size: 13px;
  }

  .results {
    padding: 60px 16px;
  }

  .results-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .result-card {
    padding: 24px 12px;
  }

  .result-value {
    font-size: 32px;
  }

  .testimonials-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .aventura-banner {
    height: 180px;
  }

  .aventura-banner-overlay h2 {
    font-size: 24px;
  }

  .aventura-banner-overlay p {
    font-size: 14px;
  }

  .faq {
    padding: 60px 16px;
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-intro h3 {
    font-size: 22px;
  }

  .faq-intro p {
    font-size: 14px;
  }

  .faq-q {
    font-size: 16px;
    min-height: 44px;
  }

  .faq-a {
    font-size: 13px;
    padding-right: 16px;
  }

  .contact {
    padding: 60px 16px;
  }

  .contact-left h3 {
    font-size: 24px;
  }

  .contact-phone-big {
    font-size: 28px;
  }

  .contact-details {
    font-size: 13px;
  }

  .contact-map {
    height: 200px;
    margin-top: 16px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px 16px;
  }

  .contact-form-card h4 {
    font-size: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-label {
    font-size: 11px;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 13px;
    min-height: 44px;
  }

  .form-submit {
    padding: 14px;
    font-size: 14px;
  }

  .footer {
    padding: 40px 16px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col-title {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-contact-line {
    font-size: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .footer-bottom p {
    font-size: 10px;
  }
}
