@font-face {
    font-family: "Leonardo WhatsApp";
    src: url("../fonts/whatsapp-icon.woff2?v=20260719") format("woff2");
    font-display: block;
    font-style: normal;
    font-weight: 400;
}

:root {
    --navy: #0b1d33;
    --navy-soft: #132b49;
    --navy-muted: #203b5c;
    --warm-graphite: #4b4742;
    --burgundy: #7a263a;
    --burgundy-dark: #601d2d;
    --gold: #bd9461;
    --cream: #f7f4ed;
    --cream-deep: #eee9de;
    --paper: #fffdf9;
    --ink: #172033;
    --muted: #69717d;
    --line: rgba(11, 29, 51, 0.14);
    --white-line: rgba(255, 255, 255, 0.15);
    --shadow: 0 30px 70px rgba(11, 29, 51, 0.14);
    --serif: Georgia, "Times New Roman", serif;
    --sans: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --visual-viewport-top: 0px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--burgundy);
    color: #fff;
}

a {
    color: inherit;
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--burgundy);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
    box-shadow: none !important;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2000;
    padding: 0.75rem 1rem;
    background: #fff;
    color: var(--navy);
    border: 2px solid var(--navy);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    top: var(--visual-viewport-top);
    background: rgba(255, 253, 249, 0.88);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 249, 0.96);
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(11, 29, 51, 0.06);
}

.navbar {
    min-height: 84px;
    padding: 0.7rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--navy);
    text-decoration: none;
}

.brand:hover {
    color: var(--navy);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--cream);
    background: var(--navy);
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 1.05rem;
    letter-spacing: -0.04em;
    box-shadow: inset 0 -3px 0 var(--gold);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.brand-text strong {
    font-family: var(--serif);
    font-size: 1.02rem;
    font-weight: 600;
}

.brand-text small {
    margin-top: 0.28rem;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.navbar-nav {
    gap: 0.15rem;
}

.nav-link {
    position: relative;
    padding: 0.75rem 0.9rem !important;
    color: var(--ink);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0.9rem;
    bottom: 0.45rem;
    left: 0.9rem;
    height: 1px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--burgundy);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.menu-line {
    width: 20px;
    height: 2px;
    background: var(--navy);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar-toggler[aria-expanded="true"] .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .menu-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    border-radius: 0;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    --bs-btn-bg: var(--burgundy);
    --bs-btn-border-color: var(--burgundy);
    --bs-btn-hover-bg: var(--burgundy-dark);
    --bs-btn-hover-border-color: var(--burgundy-dark);
    --bs-btn-active-bg: var(--burgundy-dark);
    --bs-btn-active-border-color: var(--burgundy-dark);
    box-shadow: 0 14px 30px rgba(122, 38, 58, 0.18);
}

.btn-outline-dark {
    --bs-btn-color: var(--navy);
    --bs-btn-border-color: rgba(11, 29, 51, 0.35);
    --bs-btn-hover-bg: var(--navy);
    --bs-btn-hover-border-color: var(--navy);
}

.btn-light {
    --bs-btn-color: var(--navy);
    --bs-btn-bg: var(--cream);
    --bs-btn-border-color: var(--cream);
    --bs-btn-hover-color: var(--navy);
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #fff;
}

.btn-lg {
    min-height: 56px;
    padding: 0.95rem 1.45rem;
}

.btn-nav {
    padding: 0.72rem 1.1rem;
    color: #fff !important;
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 595px;
    padding: 3rem 0 4rem;
    background:
        linear-gradient(90deg, transparent 49.94%, rgba(11, 29, 51, 0.045) 50%, transparent 50.06%),
        var(--cream);
    overflow: hidden;
    isolation: isolate;
}

.hero-section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--line);
}

.hero-accent {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(1px);
}

.hero-accent-one {
    top: 14%;
    left: -8rem;
    width: 26rem;
    height: 26rem;
    border: 1px solid rgba(189, 148, 97, 0.35);
}

.hero-accent-two {
    right: -4rem;
    bottom: 10%;
    width: 15rem;
    height: 15rem;
    background: rgba(122, 38, 58, 0.06);
}

.eyebrow {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1.2rem;
    color: var(--burgundy);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: currentColor;
}

.eyebrow-light {
    color: #dfbd93;
}

.hero-copy h1 {
    max-width: 720px;
    margin: 0;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(3rem, 4.7vw, 4.65rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.96;
}

.hero-copy h1 span {
    color: var(--burgundy);
    font-style: italic;
}

.hero-role {
    max-width: 640px;
    margin: 1.5rem 0 0;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(1.2rem, 1.8vw, 1.65rem);
    line-height: 1.25;
}

.hero-intro {
    max-width: 620px;
    margin: 1.15rem 0 0;
    color: #505966;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.hero-actions .btn {
    display: inline-flex;
    gap: 1.8rem;
    align-items: center;
    justify-content: space-between;
}

.hero-location {
    margin: 1.15rem 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 650;
}

.hero-location span {
    margin: 0 0.45rem;
    color: var(--gold);
}

.portrait-wrap {
    position: relative;
    max-width: 390px;
    margin: 0 auto;
}

.portrait-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.92;
    background: #ddd8ce;
    border: 10px solid rgba(255, 253, 249, 0.92);
    border-radius: 47% 47% 1.35rem 1.35rem;
    box-shadow: var(--shadow);
}

.portrait-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(11, 29, 51, 0.12);
    border-radius: inherit;
    pointer-events: none;
}

.portrait-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 26%;
}

.portrait-note {
    position: absolute;
    right: -1rem;
    bottom: 1.7rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    min-width: 174px;
    padding: 0.95rem 1.1rem;
    color: #fff;
    background: var(--navy);
    box-shadow: 0 18px 40px rgba(11, 29, 51, 0.22);
}

.portrait-note strong {
    color: #dfbd93;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}

.portrait-note span {
    font-size: 0.73rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    line-height: 1.25;
    text-transform: uppercase;
}

.trust-strip {
    color: #fff;
    background: var(--navy);
}

.trust-item {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    min-height: 84px;
    padding: 1.15rem 1.35rem;
    border-right: 1px solid var(--white-line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item span:last-child {
    max-width: 150px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1.3;
    text-transform: uppercase;
}

.trust-number {
    color: #dfbd93;
    font-family: var(--serif);
    font-size: 1.2rem;
}

.section {
    position: relative;
    padding: 6rem 0;
    scroll-margin-top: 84px;
}

.section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.6vw, 3.55rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.03;
}

.section-heading > p:not(.eyebrow) {
    max-width: 660px;
    margin: 1.5rem auto 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.section-heading-centered {
    max-width: 880px;
    margin: 0 auto 3.25rem;
    text-align: center;
}

.section-heading-centered .eyebrow {
    justify-content: center;
}

.heading-rule {
    width: 72px;
    height: 1px;
    margin-top: 2rem;
    background: var(--gold);
}

.sticky-heading {
    position: sticky;
    top: 125px;
}

.section-profile {
    background: var(--paper);
}

.profile-copy {
    max-width: 800px;
}

.profile-copy p {
    margin-bottom: 1.4rem;
    color: #505966;
    font-size: 1.05rem;
}

.profile-copy .lead {
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(1.65rem, 2.7vw, 2.45rem);
    line-height: 1.35;
}

.profile-copy blockquote {
    position: relative;
    margin: 3rem 0 0;
    padding: 2.1rem 2.5rem 2.1rem 3rem;
    background: var(--cream);
    border-left: 4px solid var(--burgundy);
}

.profile-copy blockquote::before {
    content: "“";
    position: absolute;
    top: -0.25rem;
    left: 0.9rem;
    color: rgba(122, 38, 58, 0.22);
    font-family: var(--serif);
    font-size: 5rem;
    line-height: 1;
}

.profile-copy blockquote p {
    position: relative;
    margin: 0;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.45;
}

.section-specialties {
    background: var(--cream);
}

.specialty-card {
    position: relative;
    margin-top: 1.75rem;
    padding: clamp(2rem, 3.5vw, 3.5rem);
    border: 1px solid rgba(11, 29, 51, 0.12);
}

.specialty-primary {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.specialty-secondary {
    background: var(--paper);
}

.specialty-index {
    display: block;
    margin-bottom: 3rem;
    color: #dfbd93;
    font-family: var(--serif);
    font-size: 1.35rem;
}

.specialty-intro h3 {
    margin: 0 0 1.4rem;
    font-family: var(--serif);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.specialty-intro > p:not(.eyebrow) {
    max-width: 470px;
    margin-bottom: 1.8rem;
    color: inherit;
    opacity: 0.76;
}

.specialty-primary .eyebrow {
    color: #dfbd93;
}

.text-link {
    display: inline-flex;
    gap: 1.4rem;
    align-items: center;
    padding-bottom: 0.35rem;
    color: var(--burgundy);
    border-bottom: 1px solid currentColor;
    font-size: 0.81rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-decoration: none;
    text-transform: uppercase;
}

.specialty-primary .text-link {
    color: #f2d7b6;
}

.text-link:hover {
    gap: 1.8rem;
    color: var(--gold);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-list li {
    display: grid;
    grid-template-columns: 1.4rem 1fr;
    gap: 0.6rem;
    align-items: start;
    min-height: 76px;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(11, 29, 51, 0.13);
    font-size: 0.92rem;
    font-weight: 650;
    line-height: 1.45;
}

.service-list li:nth-child(odd) {
    border-right: 1px solid rgba(11, 29, 51, 0.13);
}

.specialty-primary .service-list li {
    border-color: var(--white-line);
}

.service-list span {
    color: var(--gold);
    font-weight: 900;
}

.section-trajectory {
    color: #fff;
    background: var(--navy);
}

.section-trajectory .section-heading h2 {
    color: #fff;
}

.section-trajectory .section-heading > p:not(.eyebrow) {
    margin-left: 0;
    color: rgba(255, 255, 255, 0.68);
}

.timeline {
    border-top: 1px solid var(--white-line);
}

.timeline-item {
    position: relative;
    padding: 2rem 1.5rem 2.1rem 8.4rem;
    border-bottom: 1px solid var(--white-line);
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 2.65rem;
    left: 6.8rem;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-year {
    position: absolute;
    top: 2.2rem;
    left: 0;
    color: #dfbd93;
    font-family: var(--serif);
    font-size: 0.92rem;
}

.timeline-item h3 {
    margin: 0 0 0.45rem;
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
}

.timeline-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.93rem;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4rem;
    border: 1px solid var(--white-line);
}

.education-card {
    min-height: 205px;
    padding: 2rem;
    border-right: 1px solid var(--white-line);
}

.education-card:last-child {
    border-right: 0;
}

.education-card > span {
    color: #dfbd93;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.education-card h3 {
    margin: 2.4rem 0 0.6rem;
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 400;
}

.education-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.87rem;
}

.principles-section {
    background: var(--paper);
}

.principle-card {
    height: 100%;
    min-height: 245px;
    padding: 2rem;
    background: var(--cream);
    border-top: 3px solid transparent;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.principle-card:hover {
    border-color: var(--burgundy);
    transform: translateY(-5px);
}

.principle-card > span {
    display: inline-block;
    color: var(--burgundy);
    font-family: var(--serif);
    font-size: 1rem;
}

.principle-card h3 {
    margin: 3.3rem 0 1rem;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
}

.principle-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.faq-section {
    background: var(--cream);
}

.faq-section .section-heading > p:not(.eyebrow) {
    margin-right: 0;
    margin-left: 0;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2rem;
    gap: 1.5rem;
    align-items: center;
    padding: 1.55rem 0;
    color: var(--navy);
    cursor: pointer;
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.3;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    color: var(--burgundy);
    border: 1px solid rgba(122, 38, 58, 0.35);
    border-radius: 50%;
    font-family: var(--sans);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
    color: #fff;
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.faq-answer {
    max-width: 700px;
    padding: 0 3.5rem 1.55rem 0;
    color: #505966;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--burgundy);
    font-weight: 700;
}

.faq-callout {
    display: flex;
    gap: 1.5rem 2rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.25rem;
    padding: 1.5rem;
    background: var(--paper);
    border-left: 3px solid var(--gold);
}

.faq-callout p {
    max-width: 520px;
    margin: 0;
    color: #505966;
}

.faq-callout strong {
    color: var(--navy);
}

.contact-section {
    overflow: hidden;
    color: #fff;
    background: var(--warm-graphite);
    isolation: isolate;
}

.contact-accent {
    position: absolute;
    z-index: -1;
    top: -18rem;
    right: -9rem;
    width: 46rem;
    height: 46rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.contact-accent::after {
    content: "";
    position: absolute;
    inset: 6rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
}

.contact-section h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    font-weight: 400;
    letter-spacing: -0.055em;
}

.contact-lead {
    max-width: 560px;
    margin: 1.4rem 0 2rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.contact-section .btn {
    display: inline-flex;
    gap: 2rem;
    align-items: center;
}

.contact-list {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    font-style: normal;
}

.contact-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.35rem 1rem;
    padding: 1.4rem 3rem 1.4rem 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    text-decoration: none;
}

.contact-item:hover {
    color: #fff;
}

.contact-item > span:last-child:not(.contact-subtext) {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 1.35rem;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.contact-item:hover > span:last-child:not(.contact-subtext) {
    transform: translate(3px, calc(-50% - 3px));
}

.contact-label {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-item strong {
    font-family: var(--serif);
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    font-weight: 400;
    overflow-wrap: anywhere;
}

.contact-subtext {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
}

.contact-location {
    padding-right: 0;
}

.site-footer {
    padding: 3.2rem 0 2.2rem;
    color: #fff;
    background: #071423;
}

.footer-top,
.footer-bottom {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    color: #fff;
}

.footer-brand:hover {
    color: #fff;
}

.footer-brand .brand-mark {
    color: var(--navy);
    background: var(--cream);
}

.footer-brand .brand-text small {
    color: rgba(255, 255, 255, 0.56);
}

.footer-brand-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.back-top {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.back-top:hover {
    color: #dfbd93;
}

.footer-bottom {
    margin-top: 2.4rem;
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.53);
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 0.73rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-meta {
    display: grid;
    gap: 0.65rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.footer-links a:hover {
    color: #dfbd93;
}

.legal-note {
    max-width: 650px;
    text-align: right;
}

.footer-acacia {
    flex: 0 0 auto;
    width: 27px;
    height: auto;
    opacity: 0.78;
}

.legal-page {
    background: var(--cream);
}

.legal-hero {
    padding: 5.5rem 0 5rem;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(189, 148, 97, 0.13), transparent 28rem),
        var(--navy);
}

.legal-hero .eyebrow {
    margin-bottom: 1.4rem;
}

.legal-hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 1;
}

.legal-hero > .container > p:last-child {
    max-width: 620px;
    margin: 1.3rem 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
}

.legal-section {
    padding: 4.5rem 0 6rem;
}

.legal-document {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4.5rem);
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(11, 29, 51, 0.08);
}

.legal-updated {
    margin-bottom: 2rem;
    color: var(--burgundy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-document .legal-intro {
    margin-bottom: 2.75rem;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.3vw, 1.75rem);
    line-height: 1.5;
}

.legal-document h2 {
    margin: 2.2rem 0 0.75rem;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
}

.legal-document p {
    color: #505966;
}

.legal-document a {
    color: var(--burgundy);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.legal-contact-card {
    display: grid;
    gap: 0.25rem;
    margin-top: 2.75rem;
    padding: 1.5rem;
    background: var(--cream);
    border-left: 3px solid var(--burgundy);
}

.legal-contact-card p {
    margin: 0 0 0.35rem;
    color: var(--navy);
}

.legal-contact-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.legal-document .legal-source {
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
}

.floating-whatsapp {
    position: fixed;
    right: 1.25rem;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    z-index: 1000;
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    padding: 0.85rem 1rem;
    color: #fff;
    background: #176b48;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    box-shadow: 0 16px 35px rgba(11, 29, 51, 0.22);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.floating-whatsapp:hover {
    color: #fff;
    background: #115c3d;
}

.whatsapp-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Leonardo WhatsApp";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    font-synthesis: none;
    line-height: 1;
}

.whatsapp-icon::before {
    content: "\F05A3";
}

@media (max-width: 1199.98px) {
    .hero-section {
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 4.8vw, 4rem);
    }

    .portrait-note {
        right: -0.4rem;
    }
}

@media (max-width: 991.98px) {
    .site-header,
    .site-header.is-scrolled {
        background: var(--paper);
    }

    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transform: translate3d(0, 0, 0);
        will-change: top;
    }

    .navbar-collapse {
        margin-top: 0.8rem;
        padding: 1rem;
        background: var(--paper);
        border: 1px solid var(--line);
        box-shadow: 0 18px 36px rgba(11, 29, 51, 0.09);
    }

    .nav-link {
        padding: 0.75rem 0.2rem !important;
    }

    .nav-link::after {
        right: 0;
        left: 0;
    }

    .btn-nav {
        display: block;
        margin-top: 0.6rem;
        text-align: center;
    }

    .hero-section {
        min-height: 536px;
        padding: 2.1rem 0 3.5rem;
    }

    .hero-copy {
        max-width: 620px;
    }

    .portrait-wrap {
        max-width: 320px;
    }

    .trust-item {
        border-bottom: 1px solid var(--white-line);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .sticky-heading {
        position: static;
    }

    .specialty-index {
        margin-bottom: 1.6rem;
    }

    .section-trajectory .section-heading > p:not(.eyebrow) {
        max-width: 720px;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .education-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--white-line);
    }

    .education-card:last-child {
        border-bottom: 0;
    }

    .education-card h3 {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .brand-text small {
        display: none;
    }

    .hero-section {
        display: block;
        min-height: auto;
        padding: 2rem 0 3.5rem;
        background: var(--cream);
    }

    .hero-copy h1 {
        font-size: clamp(2.55rem, 10vw, 3.6rem);
        line-height: 1;
    }

    .hero-role {
        margin-top: 1.15rem;
        font-size: 1.18rem;
    }

    .hero-intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-section .row {
        --bs-gutter-y: 1.75rem;
    }

    .portrait-wrap {
        max-width: 300px;
        margin-top: 0;
    }

    .hero-location {
        display: none;
    }

    .portrait-note {
        right: 0;
        bottom: 1.5rem;
        min-width: 175px;
    }

    .trust-item {
        min-height: 110px;
        padding: 1.15rem 0.85rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .section-heading-centered {
        margin-bottom: 3rem;
        text-align: left;
    }

    .section-heading-centered .eyebrow {
        justify-content: flex-start;
    }

    .profile-copy blockquote {
        padding: 1.8rem 1.4rem 1.8rem 2.1rem;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .service-list li:nth-child(odd) {
        border-right: 0;
    }

    .timeline-item {
        padding: 4rem 0 1.8rem 2rem;
    }

    .timeline-year {
        top: 1.5rem;
        left: 2rem;
    }

    .timeline-item::before {
        top: 4.65rem;
        left: 0.2rem;
    }

    .contact-item {
        padding-right: 2rem;
    }

    .faq-callout {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-note {
        text-align: left;
    }

    .legal-hero {
        padding: 4rem 0 3.5rem;
    }

    .legal-section {
        padding: 2rem 0 4.5rem;
    }
}

@media (max-width: 767.98px) {
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }
}

@media (max-width: 479.98px) {
    .navbar {
        min-height: 76px;
    }

    .hero-section {
        padding-top: 2.5rem;
    }

    .brand {
        gap: 0.6rem;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .brand-text strong {
        font-size: 0.91rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .portrait-frame {
        border-width: 8px;
        border-radius: 44% 44% 1rem 1rem;
    }

    .portrait-wrap {
        max-width: 265px;
    }

    .portrait-note {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 1rem);
        margin: -1.4rem auto 0;
    }

    .trust-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .section-heading h2 {
        font-size: 2.5rem;
    }

    .specialty-card {
        padding: 1.7rem 1.35rem;
    }

    .faq-item summary {
        gap: 1rem;
        padding: 1.3rem 0;
        font-size: 1.18rem;
    }

    .faq-answer {
        padding-right: 0;
    }

    .legal-document {
        padding: 1.5rem 1.25rem 2rem;
    }

    .floating-whatsapp {
        right: 0.8rem;
        bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
        justify-content: center;
        width: 52px;
        height: 52px;
        padding: 0;
        transform: translate3d(0, 0, 0);
        will-change: transform;
    }

    .floating-whatsapp > span:last-child {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .whatsapp-icon {
        font-size: 1.65rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
