:root {
    --color-dark: #1f1f1f;
    --color-text: #262626;
    --color-muted: #6f6962;
    --color-gold: #b48645;
    --color-gold-2: #d8b47d;
    --color-soft: #f7f2ea;
    --color-bg: #fbfaf8;
    --color-white: #ffffff;
    --shadow-card: 0 18px 44px rgba(37, 30, 22, 0.08);
    --shadow-soft: 0 12px 30px rgba(37, 30, 22, 0.10);
    --font-title: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', Arial, sans-serif;
    --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); line-height: 1.6; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }

.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(180,134,69,.13); transition: box-shadow .25s ease; }
.header.scrolled { box-shadow: 0 10px 24px rgba(0,0,0,.07); }
.nav-wrapper { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 18px; }
.brand-mark { width: 76px; height: 76px; object-fit: contain; }
.brand-divider { width: 1px; height: 54px; background: rgba(42,42,42,.42); }
.brand-text { display: flex; flex-direction: column; gap: 2px; text-transform: uppercase; letter-spacing: .08em; }
.brand-text strong { font-family: var(--font-title); font-size: clamp(.94rem, 1.8vw, 1.15rem); letter-spacing: .04em; font-weight: 600; }
.brand-text small { color: var(--color-gold); font-weight: 700; letter-spacing: .44em; text-align: center; }
.nav-list { display: flex; align-items: center; gap: clamp(18px, 3vw, 44px); list-style: none; }
.nav-list a { position: relative; padding: 10px 0; color: #3b3936; font-weight: 600; font-size: .95rem; }
.nav-list a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--color-gold); transition: width .22s ease; }
.nav-list a:hover, .nav-list a.active { color: var(--color-gold); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
.menu-toggle { display: none; border: 1px solid rgba(180,134,69,.26); background: var(--color-white); color: var(--color-dark); font-size: 1.45rem; width: 46px; height: 44px; cursor: pointer; }

.hero { display: grid; grid-template-columns: minmax(360px, .95fr) minmax(420px, 1.05fr); min-height: 650px; background: linear-gradient(90deg, #f0e7dc 0%, #fffdf9 56%, #fff 100%); }
.hero-image-panel { position: relative; overflow: hidden; }
.hero-image-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0) 55%, rgba(255,255,255,.74) 100%); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-content { display: flex; align-items: center; justify-content: center; padding: 72px 54px; }
.hero-inner { width: min(620px, 100%); text-align: center; }
.hero-icon { display: block; color: var(--color-gold); font-size: 2.15rem; margin-bottom: 12px; }
.eyebrow { position: relative; display: inline-flex; align-items: center; gap: 12px; color: var(--color-gold); font-size: .8rem; font-weight: 800; letter-spacing: .35em; text-transform: uppercase; }
.eyebrow::before, .eyebrow::after { content: ''; width: 38px; height: 1px; background: rgba(180,134,69,.58); }
.eyebrow.left::before { display: none; }
.hero-eyebrow { margin-bottom: 14px; font-size: .72rem; }
.hero h1, .practice-section h2, .about-content h2, .trust-copy h2, .method-section h2, .faq-section h2, .cta-section h2 { font-family: var(--font-title); color: var(--color-text); font-weight: 600; line-height: 1.08; }
.hero h1 { font-size: clamp(3rem, 5.8vw, 5rem); letter-spacing: -.025em; }
.hero-role { margin-top: 12px; color: var(--color-gold); font-size: 1.1rem; font-weight: 800; letter-spacing: .55em; text-transform: uppercase; }
.gold-line { display: block; width: 64px; height: 3px; margin: 22px 0; background: linear-gradient(90deg, var(--color-gold), var(--color-gold-2)); }
.gold-line.centered, .hero .gold-line { margin-left: auto; margin-right: auto; }
.hero-list { display: inline-flex; flex-direction: column; gap: 14px; margin-top: 8px; text-align: left; list-style: none; }
.hero-list li { position: relative; padding-left: 34px; color: #37322d; font-size: clamp(.96rem, 1.15vw, 1.08rem); }
.hero-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 21px; height: 21px; border: 1px solid rgba(180,134,69,.45); border-radius: 999px; color: var(--color-gold); font-size: .78rem; line-height: 19px; text-align: center; }
.hero-actions, .cta-actions { display: flex; justify-content: center; gap: 20px; margin-top: 38px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 58px; padding: 0 34px; border: 1px solid transparent; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; font-weight: 800; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--color-dark); color: var(--color-white); box-shadow: var(--shadow-soft); }
.btn-outline { color: var(--color-gold); background: transparent; border-color: rgba(180,134,69,.42); }
.btn-outline:hover { background: rgba(180,134,69,.08); }
.btn-gold { color: var(--color-white); background: linear-gradient(135deg, #a67434, #c79855); box-shadow: var(--shadow-soft); }
.dark-outline { color: var(--color-dark); border-color: rgba(31,31,31,.22); }
.hero-note { margin-top: 22px; color: var(--color-muted); font-size: .92rem; }

.section-heading { text-align: center; }
.practice-section, .method-section, .faq-section, .trust-section { padding: clamp(72px, 8vw, 104px) 0; }
.practice-section h2, .method-section h2, .faq-section h2, .cta-section h2, .trust-copy h2 { font-size: clamp(2.15rem, 4vw, 3.35rem); }
.section-intro { width: min(720px, 100%); margin: 0 auto; color: var(--color-muted); }
.practice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 18px; margin-top: 46px; }
.practice-card { min-height: 308px; padding: 30px 20px 24px; background: var(--color-white); border: 1px solid rgba(180,134,69,.15); box-shadow: var(--shadow-card); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; transition: transform .24s ease, box-shadow .24s ease; }
.practice-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(37,30,22,.12); }
.card-icon { font-size: 2rem; color: var(--color-gold); margin-bottom: 18px; filter: sepia(1) saturate(.65); }
.practice-card h3, .method-card h3, .trust-cards h3 { font-family: var(--font-title); font-size: 1.26rem; line-height: 1.15; margin-bottom: 15px; }
.practice-card p { color: var(--color-muted); font-size: .91rem; line-height: 1.55; flex: 1; }
.practice-link, .text-link { margin-top: 20px; color: var(--color-gold); font-weight: 800; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.practice-link { border: none; background: transparent; cursor: pointer; transition: transform .22s ease, color .22s ease; }
.practice-link:hover, .text-link:hover { color: var(--color-dark); transform: translateX(4px); }

.about-section { display: grid; grid-template-columns: .92fr 1.08fr; background: var(--color-white); }
.about-image { min-height: 510px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(56px, 7vw, 88px) clamp(46px, 7vw, 92px); }
.about-content h2 { max-width: 620px; font-size: clamp(2.15rem, 4vw, 3.5rem); }
.about-content p, .trust-copy p, .faq-layout > div:first-child p { max-width: 740px; color: var(--color-muted); margin-bottom: 16px; }

.trust-section { background: linear-gradient(135deg, #fbfaf8 0%, #f5efe6 100%); }
.trust-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 46px; align-items: center; }
.trust-copy h2 { margin: 16px 0 20px; }
.trust-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.trust-cards article, .method-card { background: rgba(255,255,255,.86); border: 1px solid rgba(180,134,69,.16); box-shadow: var(--shadow-card); padding: 28px; }
.trust-cards span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 999px; background: var(--color-soft); color: var(--color-gold); font-weight: 800; }
.icon-badge, .stat-icon-badge { display: inline-flex; align-items: center; justify-content: center; color: var(--color-gold); }
.icon-badge svg, .stat-icon-badge svg { width: 22px; height: 22px; }
.method-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.method-icon { width: 52px; height: 52px; border-radius: 999px; background: var(--color-soft); border: 1px solid rgba(180,134,69,.18); box-shadow: 0 10px 24px rgba(24,24,24,.05); }
.method-step { color: var(--color-gold); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700; }
.trust-cards p, .method-card p { color: var(--color-muted); font-size: .94rem; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; text-align: left; }

.stats-section { background: #1f1f1f; color: var(--color-white); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { min-height: 166px; padding: 20px 34px; text-align: center; border-right: 1px solid rgba(255,255,255,.18); }
.stat-item:last-child { border-right: none; }
.stat-item span { display: inline-flex; color: var(--color-gold); font-size: 2rem; margin-bottom: 12px; }
.stat-icon-badge { width: 56px; height: 56px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(210,174,109,.18); }
.stat-icon-badge svg { width: 28px; height: 28px; }
.stat-item strong { display: block; color: var(--color-gold-2); font-family: var(--font-title); font-size: clamp(1.6rem, 2.7vw, 2.35rem); line-height: 1; margin-bottom: 12px; }
.stat-item h3 { color: var(--color-gold-2); font-size: .86rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.stat-item p { color: rgba(255,255,255,.75); font-size: .9rem; }

.faq-section { background: var(--color-white); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 52px; align-items: start; }
.faq-layout h2 { margin: 16px 0 18px; }
.faq-list { display: grid; gap: 14px; }
details { border: 1px solid rgba(180,134,69,.18); background: var(--color-bg); box-shadow: 0 10px 26px rgba(37,30,22,.05); padding: 0 22px; }
summary { cursor: pointer; padding: 20px 0; font-weight: 800; color: var(--color-dark); }
summary::marker { color: var(--color-gold); }
details p { color: var(--color-muted); padding: 0 0 20px; }

.cta-section { position: relative; overflow: hidden; padding: clamp(70px, 8vw, 96px) 0; background: radial-gradient(circle at top left, rgba(180,134,69,.13), transparent 34%), linear-gradient(135deg, #fffdf8, #f8f2e9); }
.cta-box { text-align: center; }
.cta-text { width: min(620px, 100%); margin: 0 auto 14px; color: var(--color-muted); }
.phone-link { display: inline-block; margin-top: 12px; color: var(--color-dark); font-family: var(--font-title); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: .03em; }
.disclaimer { display: block; margin-top: 22px; color: var(--color-muted); }

.footer { background: var(--color-dark); color: rgba(255,255,255,.76); }
.footer-main { display: grid; grid-template-columns: 1.4fr .6fr .8fr; gap: 48px; padding: 46px 0; }
.footer-brand { display: flex; gap: 18px; align-items: center; }
.footer-logo { width: 88px; height: 88px; object-fit: contain; background: rgba(255,255,255,.94); padding: 7px; }
.footer h3 { font-family: var(--font-title); color: var(--color-white); letter-spacing: .03em; font-size: 1.18rem; }
.footer-brand p { color: var(--color-gold-2); text-transform: uppercase; letter-spacing: .36em; font-size: .82rem; }
.footer-brand small { display: block; margin-top: 16px; }
.footer-col h4 { color: var(--color-gold-2); text-transform: uppercase; letter-spacing: .13em; font-size: .84rem; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; margin-bottom: 8px; }
.footer-col a:hover, .footer-bottom button:hover { color: var(--color-gold-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.10); font-size: .82rem; }
.footer-bottom div { display: flex; gap: 16px; }
.footer-bottom button { border: none; background: transparent; color: rgba(255,255,255,.76); cursor: pointer; }

.modal-overlay { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(24,24,24,.68); }
.modal-overlay.show { display: flex; }
.modal-content { position: relative; width: min(740px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; background: var(--color-white); border: 1px solid rgba(180,134,69,.28); border-top: 5px solid var(--color-gold); box-shadow: 0 26px 70px rgba(0,0,0,.28); padding: clamp(32px, 5vw, 54px); animation: modalEntrada .24s ease; }
.modal-close { position: absolute; top: 18px; right: 20px; width: 42px; height: 42px; border: 1px solid rgba(180,134,69,.22); background: var(--color-bg); color: var(--color-dark); font-size: 1.7rem; line-height: 1; cursor: pointer; }
.modal-close:hover { color: var(--color-gold); }
.modal-tag { display: block; margin-bottom: 12px; color: var(--color-gold); font-size: .78rem; font-weight: 800; letter-spacing: .32em; text-transform: uppercase; }
.modal-content h2 { margin-bottom: 16px; max-width: 560px; font-family: var(--font-title); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; color: var(--color-text); }
.modal-content p, .legal-content li { color: #4f4b47; line-height: 1.75; }
.modal-content ul { margin: 22px 0; padding: 0; list-style: none; }
.modal-content li { position: relative; padding-left: 30px; margin-bottom: 12px; color: #3d3a37; line-height: 1.6; }
.modal-content li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--color-gold); font-weight: 800; }
.modal-closing { margin: 24px 0 24px; padding: 18px 20px; background: var(--color-soft); border-left: 4px solid var(--color-gold); font-style: italic; }
.legal-content h3 { font-family: var(--font-title); margin: 22px 0 8px; color: var(--color-dark); }
.legal-content ul { list-style: none; }
.whatsapp-floating { position: fixed; right: 24px; bottom: 24px; width: 58px; height: 58px; border-radius: 999px; border: none; background: #25d366; color: white; font-size: 1.5rem; cursor: pointer; box-shadow: 0 14px 32px rgba(0,0,0,.22); z-index: 30; }

@keyframes modalEntrada { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 1160px) {
    .practice-grid { grid-template-columns: repeat(3, 1fr); }
    .method-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 900px) {
    .container { width: min(100% - 32px, var(--container)); }
    .nav-wrapper { min-height: 88px; }
    .brand-mark { width: 58px; height: 58px; }
    .brand-divider { height: 42px; }
    .brand-text strong { max-width: 210px; line-height: 1.15; }
    .brand-text small { text-align: left; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav { position: absolute; top: 100%; left: 0; right: 0; display: none; background: var(--color-white); border-bottom: 1px solid rgba(180,134,69,.15); box-shadow: 0 18px 28px rgba(0,0,0,.06); }
    .nav.open { display: block; }
    .nav-list { width: min(100% - 32px, var(--container)); margin: 0 auto; padding: 18px 0 24px; flex-direction: column; align-items: flex-start; gap: 4px; }
    .hero, .about-section, .trust-grid, .faq-layout { grid-template-columns: 1fr; }
    .hero-image-panel { height: 340px; }
    .hero-image-panel::after { background: linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(255,255,255,.72) 100%); }
    .hero-content, .about-content { padding: 48px 24px; }
    .hero h1 { font-size: 3rem; }
    .practice-grid, .trust-cards, .method-grid, .stats-grid, .footer-main { grid-template-columns: 1fr; }
    .about-image { min-height: 350px; }
    .stat-item, .stat-item:nth-child(2) { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
    .stat-item:last-child { border-bottom: none; }
    .footer-main { gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
    .brand { gap: 10px; }
    .brand-divider { display: none; }
    .brand-text strong { font-size: .82rem; max-width: 175px; }
    .brand-text small { letter-spacing: .24em; font-size: .68rem; }
    .hero-content { padding: 42px 18px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-role { letter-spacing: .34em; }
    .hero-actions, .cta-actions { flex-direction: column; }
    .btn { width: 100%; padding: 0 20px; }
    .eyebrow { letter-spacing: .22em; font-size: .72rem; }
    .eyebrow::before, .eyebrow::after { width: 24px; }
    .modal-overlay { padding: 12px; }
    .modal-content { padding: 34px 22px 28px; }
    .modal-close { top: 10px; right: 10px; }
    .whatsapp-floating { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

.method-card h3 { margin-top: 0; }

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 26px;
}

.about-highlights article {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(180, 134, 69, 0.16);
    box-shadow: var(--shadow-card);
    padding: 20px 18px;
}

.about-highlights h3 {
    font-family: var(--font-title);
    font-size: 1.02rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.about-highlights p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.about-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.about-modal-content {
    max-width: 820px;
}

.about-modal-body h3 {
    font-family: var(--font-title);
    font-size: 1.18rem;
    margin-top: 22px;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.about-modal-body ul {
    margin: 0 0 18px 20px;
    padding: 0;
}

.about-modal-body li {
    margin-bottom: 8px;
    color: var(--color-muted);
    line-height: 1.65;
}

.about-quote {
    margin: 18px 0;
    padding: 16px 18px;
    background: var(--color-soft);
    border-left: 4px solid var(--color-gold);
    font-style: italic;
    color: var(--color-dark);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .about-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-actions .btn,
    .about-actions .text-link {
        width: 100%;
    }
}

.featured-card {
    border-color: rgba(177, 126, 67, 0.45);
    background: linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
}

.featured-card .card-icon {
    background: rgba(177, 126, 67, 0.14);
}

.specialties-section {
    padding: 92px 0;
    background: #fbfaf8;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
}

.specialty-card {
    background: var(--white);
    border: 1px solid rgba(177, 126, 67, 0.14);
    box-shadow: var(--shadow-soft);
    padding: 28px;
    min-height: 240px;
}

.specialty-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--black);
    margin-bottom: 14px;
}

.specialty-card p,
.specialty-card li {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.specialty-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.specialty-card li {
    position: relative;
    padding-left: 18px;
}

.specialty-card li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.highlighted-specialty {
    background: linear-gradient(135deg, #ffffff 0%, #f5efe6 100%);
    border-color: rgba(177, 126, 67, 0.35);
}

.strategy-specialty {
    background: var(--black);
    color: var(--white);
}

.strategy-specialty h3 {
    color: var(--white);
}

.strategy-specialty p {
    color: rgba(255, 255, 255, 0.72);
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.text-link:hover {
    transform: translateX(4px);
}

.internal-hero {
    min-height: 560px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(16, 16, 16, 0.72), rgba(16, 16, 16, 0.28)),
        url('assets/img/hero-legal-scale.png') center/cover no-repeat;
    color: var(--white);
    padding: 150px 0 90px;
}

.internal-hero .eyebrow,
.internal-hero h1,
.internal-hero p {
    color: var(--white);
}

.internal-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.9rem, 6vw, 5.2rem);
    line-height: 0.95;
    margin: 16px 0 20px;
    max-width: 760px;
}

.internal-hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.internal-content {
    padding: 92px 0;
    background: var(--cream);
}

.content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr;
    gap: 40px;
    align-items: start;
}

.content-panel {
    background: var(--white);
    border: 1px solid rgba(177, 126, 67, 0.14);
    box-shadow: var(--shadow-soft);
    padding: 40px;
}

.content-panel h2 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    font-size: 2.1rem;
    margin: 30px 0 14px;
}

.content-panel h2:first-child {
    margin-top: 0;
}

.content-panel p,
.content-panel li {
    color: var(--muted);
    line-height: 1.85;
}

.content-panel ul {
    margin: 16px 0 26px 18px;
}

.side-panel {
    position: sticky;
    top: 110px;
    background: var(--black);
    color: var(--white);
    padding: 32px;
    box-shadow: var(--shadow-dark);
}

.side-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.side-panel p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
    margin-bottom: 20px;
}

.side-list {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.side-list span {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.84);
}

.side-list span::before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
}

@media (max-width: 992px) {
    .specialties-grid,
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .side-panel {
        position: static;
    }
}

@media (max-width: 700px) {
    .specialties-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .specialty-card,
    .content-panel,
    .side-panel {
        padding: 24px;
    }

    .internal-hero {
        min-height: 480px;
        padding-top: 130px;
    }
}
