:root {
    --navy: #0a1628;
    --navy-light: #132240;
    --gold: #c8962e;
    --gold-light: #e5b44a;
    --gold-dark: #a67a1f;
    --cream: #faf6ee;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-600: #6b7280;
    --gray-800: #1f2937;
    --red: #b91c1c;
    --red-light: #dc2626;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── TOP BAR ── */
.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar-names { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.firm-name-en { font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; }
.firm-name-es { font-weight: 600; color: var(--cream); }
.top-bar-divider { color: var(--gold); opacity: 0.5; }
.top-bar-contact { display: flex; gap: 20px; }
.top-bar-contact a { color: var(--cream); text-decoration: none; font-weight: 600; }
.top-bar-contact a:hover { color: var(--gold); }

/* ── NAVIGATION ── */
.main-nav {
    background: var(--white);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
    flex-wrap: wrap;
}
.nav-logo {
    text-decoration: none;
    padding: 12px 0;
}
.logo-en {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: 0.3s;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: block;
    padding: 20px 14px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--gold);
}
.has-dropdown:hover .dropdown {
    display: block;
}
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-top: 3px solid var(--gold);
    z-index: 999;
    list-style: none;
}
.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
    transition: 0.2s;
}
.dropdown li a:hover {
    background: var(--cream);
    color: var(--gold-dark);
    padding-left: 24px;
}
.nav-phones {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-phone {
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--navy);
    padding: 2px 10px;
    border-radius: 3px;
    transition: 0.2s;
}
.nav-phone:hover { color: var(--gold); }
.nav-phone.es { color: var(--red); }
.nav-phone.es:hover { color: var(--red-light); }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3a5c 100%);
    color: var(--white);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,150,46,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
    display: inline-block;
    background: rgba(200,150,46,0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 3px;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    max-width: 800px;
}
.hero h1 .gold { color: var(--gold-light); }
.hero-es-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-style: italic;
}
.hero p.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 650px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
}
.hero-stat .num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
}
.hero-stat .label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
}
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,150,46,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}
.btn-red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-red:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}

/* ── SECTIONS ── */
section { padding: 70px 0; }
.section-light { background: var(--gray-100); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--white); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header .gold-line {
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 16px auto;
    border-radius: 2px;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ── CARDS GRID ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.card {
    background: var(--white);
    border-radius: 6px;
    padding: 36px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 4px solid var(--gold);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}
.card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.card h3 a {
    color: var(--navy);
    text-decoration: none;
}
.card h3 a:hover { color: var(--gold-dark); }
.card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.card .btn {
    padding: 10px 22px;
    font-size: 0.82rem;
}

/* ── CITY GRID ── */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.city-card {
    background: var(--white);
    border-radius: 6px;
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}
.city-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    color: var(--gold-dark);
}
.city-card small {
    display: block;
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 4px;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--red) 0%, #7f1d1d 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
}
.cta-sub {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 24px;
}
.cta-phones {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.cta-btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    letter-spacing: 1px;
}
.cta-btn:first-child {
    background: var(--white);
    color: var(--red);
}
.cta-btn.es {
    background: var(--gold);
    color: var(--navy);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.cta-note {
    font-size: 0.88rem;
    opacity: 0.85;
}

/* ── CONTENT PAGE ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 50px 0 55px;
    text-align: center;
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 8px;
}
.page-hero .hero-es-name {
    font-size: 1.2rem;
}
.page-hero p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 12px auto 0;
}

.content-section {
    padding: 60px 0;
}
.content-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy);
    margin: 40px 0 16px;
}
.content-section h2:first-of-type { margin-top: 0; }
.content-section p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}
.content-section ul {
    margin: 16px 0 16px 24px;
}
.content-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ── SIDEBAR ── */
.sidebar {
    position: sticky;
    top: 80px;
}
.sidebar-box {
    background: var(--cream);
    border-radius: 6px;
    padding: 28px 24px;
    margin-bottom: 24px;
    border-left: 4px solid var(--gold);
}
.sidebar-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.sidebar-box p {
    font-size: 0.92rem;
    margin-bottom: 12px;
    color: var(--gray-600);
}
.sidebar-box a.btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.88rem;
    margin-bottom: 8px;
}

/* ── ABOUT PAGE ── */
.attorney-profile {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.attorney-photo {
    width: 300px;
    min-width: 280px;
    background: var(--navy);
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    color: var(--white);
    border-bottom: 4px solid var(--gold);
}
.attorney-photo .initials {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1;
}
.attorney-photo img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 16px;
}
.attorney-photo h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 4px;
}
.attorney-photo p {
    font-size: 0.88rem;
    opacity: 0.8;
}
.attorney-bio { flex: 1; min-width: 300px; }
.attorney-bio h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 16px;
}
.attorney-bio p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.stat-boxes {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.stat-box {
    background: var(--cream);
    border-radius: 6px;
    padding: 24px 28px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    border-top: 3px solid var(--gold);
}
.stat-box .num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-dark);
    display: block;
}
.stat-box .label {
    font-size: 0.85rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-card {
    background: var(--cream);
    border-radius: 6px;
    padding: 32px 28px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
}
.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.contact-info-card p { margin-bottom: 6px; }
.contact-info-card a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
}
.contact-info-card a:hover { text-decoration: underline; }

.map-container {
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ── FAQ ── */
.faq-item {
    background: var(--white);
    border-radius: 6px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}
.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cream);
    transition: 0.2s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--gold); font-weight: 300; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    padding: 16px 24px;
    max-height: 500px;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 4px;
}
.footer-es-name {
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.footer-address {
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    font-size: 0.92rem;
}
.footer-phones a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.footer-phones a:hover { color: var(--gold); }
.footer-col h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.88rem;
    transition: 0.2s;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
    margin-top: 40px;
    padding: 20px 24px;
    background: rgba(0,0,0,0.2);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.2rem; }
    .hero { padding: 50px 0 60px; }
    .content-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .attorney-profile { flex-direction: column; }
    .attorney-photo { width: 100%; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links { display: none; width: 100%; flex-direction: column; }
    .main-nav.open .nav-links { display: flex; }
    .nav-links > li > a { padding: 12px 0; }
    .dropdown { position: static; box-shadow: none; border-top: none; padding-left: 16px; }
    .has-dropdown:hover .dropdown { display: none; }
    .has-dropdown.open .dropdown { display: block; }
    .nav-phones { flex-direction: row; gap: 12px; padding: 10px 0; }
    .hero h1 { font-size: 1.8rem; }
    .page-hero h1 { font-size: 1.8rem; }
    .hero-stats { gap: 20px; }
    .hero-stat .num { font-size: 1.6rem; }
    .section-header h2 { font-size: 1.7rem; }
    .footer-inner { grid-template-columns: 1fr; }
    .top-bar-inner { flex-direction: column; text-align: center; }
    .top-bar-names { justify-content: center; }
    .city-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .city-grid { grid-template-columns: 1fr; }
    .cta-phones { flex-direction: column; align-items: center; }
    .hero-ctas { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .cta-btn { width: 100%; text-align: center; }
    .stat-boxes { flex-direction: column; }
}

/* ── BREADCRUMBS ── */
.breadcrumbs { padding: 12px 0; font-size: 0.82rem; color: #666; }
.breadcrumbs a { color: var(--gold-dark); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 6px; color: #999; }

/* ── TABLE OF CONTENTS ── */
.toc-box { background: var(--cream); border: 2px solid var(--gold); border-radius: 12px; padding: 24px 28px; margin: 24px 0 32px; }
.toc-box h3 { margin: 0 0 12px; font-family: var(--heading); color: var(--navy); font-size: 1.1rem; }
.toc-box ol { margin: 0; padding-left: 20px; }
.toc-box li { margin: 4px 0; }
.toc-box a { color: var(--navy); text-decoration: none; font-size: 0.92rem; }
.toc-box a:hover { color: var(--gold-dark); text-decoration: underline; }

/* ── LEGAL REFERENCE BOX ── */
.law-box { background: #f0f4f8; border-left: 4px solid var(--navy); padding: 20px 24px; margin: 20px 0; border-radius: 0 8px 8px 0; }
.law-box h4 { margin: 0 0 8px; color: var(--navy); font-size: 0.95rem; }
.law-box p { margin: 4px 0; font-size: 0.9rem; color: #444; }
.law-box code { background: #e2e8f0; padding: 1px 6px; border-radius: 3px; font-size: 0.85rem; }

/* ── EXAMPLE SCENARIO ── */
.example-box { background: #fffbeb; border-left: 4px solid var(--gold); padding: 20px 24px; margin: 20px 0; border-radius: 0 8px 8px 0; font-size: 0.92rem; }
.example-box strong { color: var(--navy); }

/* ── AVVO BADGE ── */
.avvo-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a5c2a 0%, #0d4a1f 100%);
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #2d8a42;
}
.avvo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,92,42,0.4);
}
.avvo-badge .avvo-score {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: #4cdf6b;
}
.avvo-badge .avvo-info {
    display: flex;
    flex-direction: column;
}
.avvo-badge .avvo-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}
.avvo-badge .avvo-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.avvo-badge-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a5c2a 0%, #0d4a1f 100%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.2s;
}
.avvo-badge-sm:hover { transform: translateY(-1px); }
.avvo-badge-sm .avvo-score-sm {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    color: #4cdf6b;
}

/* ── NAV LOGOS ── */
.nav-logos {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    flex-shrink: 0;
}
.nav-logo-link {
    display: block;
    text-decoration: none;
    line-height: 0;
    transition: opacity 0.2s;
}
.nav-logo-link:hover { opacity: 0.85; }
@media (max-width: 900px) {
    .nav-logos { gap: 6px; }
    .nav-logos svg { max-width: 180px; height: auto; }
}
@media (max-width: 600px) {
    .nav-logos { flex-direction: column; gap: 4px; align-items: flex-start; }
    .nav-logos svg { max-width: 200px; }
}

/* ── HERO LOGOS ── */
.hero-logos {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.hero-logos svg { border-radius: 4px; }
@media (max-width: 600px) {
    .hero-logos { flex-direction: column; gap: 12px; }
    .hero-logos svg { max-width: 100% !important; width: 100% !important; }
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
    display: flex;
    gap: 0;
    border: 2px solid var(--gold);
    border-radius: 4px;
    overflow: hidden;
    margin-left: 12px;
}
.lang-toggle a {
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.2s;
    color: var(--navy);
    background: var(--white);
}
.lang-toggle a.active {
    background: var(--gold);
    color: var(--navy);
}
.lang-toggle a:hover:not(.active) {
    background: var(--cream);
}

/* ── SPANISH-SPECIFIC ACCENTS ── */
.es-highlight {
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}
.es-highlight h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--white);
}
.es-highlight p {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
}
.trust-badge {
    text-align: center;
    padding: 20px;
}
.trust-badge .badge-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}
.trust-badge .badge-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    counter-reset: step;
}
.process-step {
    background: var(--white);
    border-radius: 6px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    counter-increment: step;
}
.process-step::before {
    content: counter(step);
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 44px;
    margin: 0 auto 16px;
}
.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ── MAP EMBED ── */
.map-embed {
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}
.map-embed iframe {
    display: block;
    width: 100%;
    border: 0;
}
.map-container iframe {
    display: block;
    width: 100%;
    border: 0;
}

/* ── ACCESSIBILITY: SKIP LINK ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 4px;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }
