:root {
    --navy: #10364f;
    --navy-dark: #082638;
    --blue: #2d6f9f;
    --blue-soft: #dcecf4;
    --sky: #edf7fb;
    --gold: #f2c23e;
    --gold-soft: #fff4c9;
    --ink: #172630;
    --muted: #64747d;
    --line: #dce4e8;
    --white: #ffffff;
    --surface: #f7f9f9;
    --success: #157047;
    --error: #a33131;
    --shadow: 0 22px 60px rgba(15, 48, 68, .11);
    --shadow-soft: 0 12px 32px rgba(15, 48, 68, .08);
    --radius: 1.35rem;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    color: var(--navy-dark);
    line-height: 1.08;
    letter-spacing: -.035em;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.65rem); }
h3 { font-size: 1.4rem; }

::selection { color: var(--navy-dark); background: var(--gold); }

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin-inline: auto;
}

.narrow { max-width: 850px; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: .75rem;
    left: .75rem;
    padding: .75rem 1rem;
    color: var(--white);
    background: var(--navy-dark);
    border-radius: .5rem;
    transform: translateY(-160%);
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(16, 54, 79, .08);
    backdrop-filter: blur(16px);
    transition: box-shadow .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(12, 43, 61, .09); }

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--white);
    background: var(--navy);
    border-radius: 50% 50% 48% 52%;
    box-shadow: inset -8px -8px 0 rgba(0, 0, 0, .08);
    font-size: 1.55rem;
    font-weight: 900;
}

.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--navy-dark); font-size: 1.25rem; letter-spacing: -.02em; }
.brand-copy span { margin-top: .28rem; color: var(--blue); font-family: Georgia, serif; font-size: .94rem; font-style: italic; }

.site-navigation ul {
    display: flex;
    align-items: center;
    gap: .2rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-navigation a {
    display: block;
    padding: .7rem .72rem;
    color: var(--navy);
    border-radius: .55rem;
    font-size: .89rem;
    font-weight: 720;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.site-navigation a[aria-current="page"] {
    color: var(--navy-dark);
    background: var(--gold-soft);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    padding: 0;
    background: var(--sky);
    border: 0;
    border-radius: .7rem;
}

.menu-toggle > span:not(.sr-only) {
    width: 21px;
    height: 2px;
    display: block;
    margin: 4px auto;
    background: var(--navy);
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(125deg, #0a2e47 0%, #195578 55%, #4e9bc0 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -28%;
    width: 65%;
    height: 55%;
    background: linear-gradient(14deg, #618948, #8cad65 55%, transparent 56%);
    border-radius: 60% 0 0 0;
    opacity: .45;
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .18; }
.hero-orb-one { width: 420px; height: 420px; top: -210px; left: -120px; background: var(--gold); }
.hero-orb-two { width: 300px; height: 300px; right: 33%; bottom: -190px; border: 70px solid var(--white); }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .95fr 1.2fr;
    align-items: center;
    gap: 1.2rem;
    padding-block: 5rem 2rem;
}

.hero-copy { max-width: 580px; }
.hero h1 { margin-bottom: 1.7rem; color: var(--white); }
.hero h1 em { color: var(--gold); font-family: Georgia, serif; font-weight: 400; }
.hero-lead { max-width: 650px; font-size: clamp(1.15rem, 1.7vw, 1.35rem); line-height: 1.55; opacity: .96; }

.eyebrow {
    margin-bottom: 1rem;
    color: var(--blue);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow-light { color: var(--gold); }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem; margin-top: 2rem; }
.button-row-center { justify-content: center; }

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .8rem 1.25rem;
    border: 2px solid transparent;
    border-radius: .7rem;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-dark); background: var(--gold); box-shadow: 0 12px 30px rgba(242, 194, 62, .2); }
.button-primary:hover { background: #ffd252; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.08); }
.button-ghost:hover { background: rgba(255,255,255,.15); }
.button-dark { color: var(--white); background: var(--navy); }
.button-light { color: var(--navy-dark); background: var(--white); }
.button-outline { color: var(--navy); border-color: var(--navy); background: transparent; }

.hero-values {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem 1.4rem;
    padding: 0;
    margin: 2.5rem 0 0;
    list-style: none;
    font-size: .83rem;
    font-weight: 760;
}

.hero-values li { position: relative; }
.hero-values li:not(:last-child)::after { content: ""; position: absolute; width: 4px; height: 4px; top: .66rem; right: -.8rem; background: var(--gold); border-radius: 50%; }

.hero-visual { position: relative; align-self: end; min-height: 520px; }
.hero-visual > img { position: absolute; z-index: 2; right: -4%; bottom: 0; width: min(720px, 110%); filter: drop-shadow(0 28px 30px rgba(0,0,0,.28)); }
.hero-sun { position: absolute; right: 7%; top: 5%; width: 370px; height: 370px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.hero-label { position: absolute; z-index: 3; right: 0; bottom: 1.4rem; display: grid; padding: .85rem 1.1rem; color: var(--navy-dark); background: var(--white); border-left: 6px solid var(--gold); box-shadow: var(--shadow); }
.hero-label strong { font-size: .9rem; }
.hero-label span { color: var(--muted); font-size: .8rem; }

.section { padding-block: clamp(4.5rem, 8vw, 7.5rem); }
.section-tinted { background: var(--surface); }
.section-intro { background: var(--white); }
.compact-section { padding-block: 5rem; }

.intro-grid,
.section-heading,
.split-feature,
.contact-layout,
.documents-page-grid,
.legal-layout {
    display: grid;
    gap: clamp(2.2rem, 6vw, 6rem);
}

.intro-grid { grid-template-columns: .9fr 1.1fr; align-items: start; }
.intro-grid h2 { margin-bottom: 0; }
.prose { font-size: 1.05rem; }
.prose-large { font-size: 1.25rem; }
.prose p { color: #41535e; }
.prose a { color: var(--blue); font-weight: 700; }
.prose h2 { margin-top: 2.8rem; font-size: 2rem; }
.prose section:first-child h2 { margin-top: 0; }

.text-link {
    display: inline-flex;
    gap: .55rem;
    align-items: center;
    color: var(--navy);
    border-bottom: 2px solid var(--gold);
    font-weight: 820;
    text-decoration: none;
}

.section-heading { grid-template-columns: 1fr .7fr; align-items: end; margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 500px; margin-bottom: .2rem; color: var(--muted); font-size: 1.08rem; }

.priority-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.priority-card { position: relative; min-height: 280px; padding: 2rem; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.priority-card::before { content: ""; position: absolute; width: 110px; height: 110px; right: -60px; bottom: -60px; background: var(--gold-soft); border-radius: 50%; transition: transform .3s ease; }
.priority-card:hover::before { transform: scale(1.6); }
.card-number { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 2.1rem; color: var(--navy); background: var(--gold-soft); border-radius: 50%; font-weight: 900; }
.priority-card h3 { max-width: 250px; margin-bottom: .8rem; }
.priority-card p { color: var(--muted); }
.priority-card a { position: absolute; z-index: 2; bottom: 1.75rem; left: 2rem; color: var(--navy); font-size: .87rem; font-weight: 850; text-decoration: none; }
.centered-action { display: flex; justify-content: center; margin-top: 2.5rem; }

.split-feature { grid-template-columns: 1.15fr .85fr; align-items: stretch; }
.feature-panel { padding: clamp(2.3rem, 5vw, 4rem); color: var(--white); background: var(--navy); border-radius: var(--radius); }
.feature-panel h2 { max-width: 700px; color: var(--white); }
.feature-panel > p:not(.eyebrow) { max-width: 630px; color: rgba(255,255,255,.8); font-size: 1.08rem; }
.feature-panel .button { margin-top: 1rem; }
.latest-documents { padding: 1.2rem 0; }
.document-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.document-row:hover strong { color: var(--blue); }
.document-row strong, .document-row small { display: block; }
.document-row small { margin-top: .2rem; color: var(--muted); }
.document-icon { width: 46px; height: 55px; display: grid; place-items: center; color: var(--navy); background: var(--gold-soft); border-radius: .45rem; font-size: .7rem; font-weight: 900; }

.section-cta { padding-top: 1rem; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(2.2rem, 5vw, 4rem); background: var(--sky); border-radius: var(--radius); }
.cta-box h2 { margin-bottom: .5rem; }
.cta-box p:last-child { margin-bottom: 0; color: var(--muted); }

.page-hero { padding-block: clamp(5rem, 10vw, 8rem); background: linear-gradient(145deg, var(--sky), #fff); }
.page-hero h1 { margin-bottom: 1.4rem; }
.page-hero p:last-child { max-width: 760px; margin-bottom: 0; color: #536a77; font-size: clamp(1.1rem, 2vw, 1.3rem); }
.page-hero-gold { background: linear-gradient(135deg, #fff7da, #fff 75%); }
.page-hero-blue { color: var(--white); background: linear-gradient(135deg, var(--navy-dark), var(--blue)); }
.page-hero-blue h1 { color: var(--white); }
.page-hero-blue p:last-child { color: rgba(255,255,255,.82); }
.page-hero-small { padding-block: 4.5rem; }
.page-hero-small h1 { margin-bottom: 0; font-size: clamp(2.8rem, 6vw, 4.8rem); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.member-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.member-photo { position: relative; width: 100%; height: 310px; display: block; padding: 0; overflow: hidden; background: var(--sky); border: 0; cursor: pointer; }
.member-photo img { position: absolute; top: 50%; right: 0; width: 175%; max-width: none; height: 175%; object-fit: cover; object-position: right center; transform: translateY(-50%); transition: transform .45s ease; }
.member-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(transparent, rgba(8,38,56,.78)); opacity: 0; transition: opacity .25s ease; }
.member-photo span { position: absolute; z-index: 2; right: 1rem; bottom: 1rem; left: 1rem; color: var(--white); font-size: .82rem; font-weight: 850; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.member-photo:hover img, .member-photo:focus-visible img { transform: translateY(-50%) scale(1.035); }
.member-photo:hover::after, .member-photo:focus-visible::after, .member-photo:hover span, .member-photo:focus-visible span { opacity: 1; }
.member-photo:hover span, .member-photo:focus-visible span { transform: translateY(0); }
.member-copy { padding: 1.5rem 1.6rem 1.7rem; }
.member-copy h2 { margin-bottom: .65rem; font-size: 1.75rem; }
.member-copy p { margin-bottom: 0; color: var(--muted); font-size: .96rem; }

.profile-dialog { width: min(1050px, calc(100% - 2rem)); max-height: calc(100vh - 2rem); padding: 0; overflow: hidden auto; background: var(--white); border: 0; border-radius: 1rem; box-shadow: 0 35px 100px rgba(0,0,0,.4); }
.profile-dialog::backdrop { background: rgba(3, 20, 30, .78); backdrop-filter: blur(5px); }
.profile-dialog img { width: 100%; }
.dialog-bar { position: sticky; z-index: 2; top: 0; display: flex; align-items: center; justify-content: space-between; padding: .7rem 1rem; background: var(--white); border-bottom: 1px solid var(--line); }
.dialog-bar h2 { margin: 0; font-size: 1.2rem; }
.dialog-close { width: 42px; height: 42px; padding: 0; color: var(--navy); background: var(--sky); border: 0; border-radius: 50%; font-size: 1.7rem; cursor: pointer; }

.commitments-section { padding-top: 2rem; }
.commitments-list { counter-reset: commitment; }
.commitment { display: grid; grid-template-columns: 150px 1fr; gap: clamp(2rem, 6vw, 6rem); padding-block: clamp(3.5rem, 7vw, 6rem); border-bottom: 1px solid var(--line); }
.commitment:last-child { border-bottom: 0; }
.commitment-number { color: var(--gold); font-size: clamp(4rem, 8vw, 7rem); font-weight: 900; line-height: .9; letter-spacing: -.08em; }
.commitment-copy { max-width: 780px; }
.commitment-copy h2 { margin-bottom: 1.2rem; }
.commitment-copy > p:last-child { margin-bottom: 0; color: #40545f; font-size: 1.18rem; }
.quote-section { color: var(--white); background: var(--navy); }
.quote-section blockquote { margin: 0; color: var(--white); font-family: Georgia, serif; font-size: clamp(2rem, 4.5vw, 4rem); font-style: italic; line-height: 1.28; text-align: center; }

.news-layout { display: grid; grid-template-columns: 1.45fr .7fr; gap: 2rem; align-items: start; }
.news-list { display: grid; gap: 1.2rem; }
.news-card { display: grid; grid-template-columns: 105px 1fr; gap: 2rem; padding: clamp(1.6rem, 4vw, 2.6rem); border: 1px solid var(--line); border-radius: var(--radius); }
.news-card h2 { margin-bottom: .8rem; font-size: clamp(1.6rem, 3vw, 2.35rem); }
.news-card p:not(.eyebrow) { color: var(--muted); }
.news-date { display: flex; align-items: start; gap: .55rem; }
.news-date strong { color: var(--navy); font-size: 3rem; line-height: .9; }
.news-date span { color: var(--muted); font-size: .72rem; font-weight: 850; line-height: 1.25; letter-spacing: .06em; text-transform: uppercase; }
.news-card-featured { grid-template-columns: 90px 1fr; color: var(--white); background: var(--navy); border: 0; }
.news-card-featured h2 { color: var(--white); }
.news-card-featured p:not(.eyebrow) { color: rgba(255,255,255,.76); }
.news-mark { width: 72px; height: 72px; display: grid; place-items: center; color: var(--navy); background: var(--gold); border-radius: 50%; font-size: 2rem; font-weight: 900; }
.social-panel { position: sticky; top: 7rem; padding: 2.3rem; color: var(--white); background: linear-gradient(145deg, #1b6dc1, #134b89); border-radius: var(--radius); box-shadow: var(--shadow); }
.social-panel h2 { color: var(--white); }
.social-panel p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.social-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 2.5rem; color: #1769aa; background: var(--white); border-radius: 50%; font-family: Arial, sans-serif; font-size: 2rem; font-weight: 900; }

.documents-page-grid { grid-template-columns: .65fr 1.35fr; align-items: start; }
.documents-intro { position: sticky; top: 7rem; }
.documents-intro h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.documents-intro p:last-child { color: var(--muted); }
.document-cards { display: grid; gap: 1.2rem; }
.document-card { padding: clamp(1.7rem, 4vw, 2.7rem); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.document-card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.document-card-top time { color: var(--muted); font-size: .88rem; font-weight: 750; }
.document-badge { padding: .3rem .55rem; color: var(--navy); background: var(--gold); border-radius: .35rem; font-size: .7rem; font-weight: 900; }
.document-card h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
.document-card > p { color: var(--muted); }
.document-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.document-actions > span { margin-right: auto; color: var(--muted); font-size: .82rem; }
.document-actions a { color: var(--navy); font-size: .86rem; font-weight: 850; text-decoration: none; }
.centered-copy { text-align: center; }
.centered-copy > p { max-width: 650px; margin-right: auto; margin-left: auto; color: var(--muted); }

.contact-layout { grid-template-columns: .75fr 1.25fr; align-items: start; }
.contact-details h2 { margin-bottom: 2rem; font-size: clamp(2rem, 4vw, 3.2rem); }
.contact-method { display: grid; grid-template-columns: 50px 1fr; align-items: center; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-method > span:first-child { width: 45px; height: 45px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-weight: 900; }
.contact-method small, .contact-method strong { display: block; }
.contact-method small { color: var(--muted); }
.contact-method strong { color: var(--navy); }
.contact-note { margin-top: 2rem; color: var(--muted); font-size: .86rem; }
.form-card { padding: clamp(1.6rem, 5vw, 3.2rem); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.contact-form { display: grid; gap: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field label { color: var(--navy-dark); font-size: .9rem; font-weight: 800; }
.field label span { color: var(--error); }
.field input, .field textarea { width: 100%; padding: .82rem .9rem; color: var(--ink); background: var(--white); border: 1px solid #b8c7ce; border-radius: .55rem; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(45,111,159,.13); }
.checkbox-field { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: .7rem; color: #445761; font-size: .88rem; }
.checkbox-field input { width: 1.15rem; height: 1.15rem; margin-top: .22rem; accent-color: var(--navy); }
.checkbox-field a { color: var(--blue); font-weight: 700; }
.button-submit { justify-self: start; }
.required-note { margin: 0; color: var(--muted); font-size: .78rem; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; }
.alert { padding: 1rem 1.2rem; margin-bottom: 1.4rem; border-radius: .65rem; }
.alert p, .alert ul { margin: .35rem 0 0; }
.alert-success { color: #0d5235; background: #e1f5eb; border: 1px solid #adddc7; }
.alert-error { color: #752020; background: #fff0ef; border: 1px solid #efc0bc; }

.legal-layout { grid-template-columns: 240px 1fr; align-items: start; }
.legal-nav { position: sticky; top: 7rem; display: grid; padding: 1.4rem; background: var(--surface); border-radius: 1rem; }
.legal-nav strong { margin-bottom: .7rem; color: var(--navy); }
.legal-nav a { padding: .45rem 0; color: var(--muted); font-size: .9rem; text-decoration: none; }
.legal-nav a:hover { color: var(--blue); }
.legal-copy section { padding-bottom: 2.2rem; border-bottom: 1px solid var(--line); }
.legal-copy address { padding: 1.2rem; background: var(--surface); border-left: 4px solid var(--gold); font-style: normal; }

.not-found { min-height: 72vh; display: grid; place-items: center; padding-block: 5rem; background: var(--sky); }
.not-found h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
.error-code { display: block; margin-bottom: -2rem; color: rgba(16,54,79,.08); font-size: clamp(8rem, 22vw, 16rem); font-weight: 950; line-height: .8; }

.site-footer { margin-top: 3rem; padding-top: 4.5rem; color: rgba(255,255,255,.72); background: var(--navy-dark); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr; gap: 4rem; padding-bottom: 3.5rem; }
.brand-footer .brand-mark { color: var(--navy-dark); background: var(--gold); }
.brand-footer .brand-copy strong { color: var(--white); }
.brand-footer .brand-copy span { color: var(--gold); }
.footer-grid > div:first-child > p { max-width: 420px; margin: 1.5rem 0 0; }
.site-footer h2 { margin-bottom: 1rem; color: var(--white); font-size: .92rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-links { padding: 0; margin: 0; list-style: none; }
.footer-links li + li { margin-top: .55rem; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-block: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.footer-bottom p { margin: 0; }

.whatsapp-button { position: fixed; z-index: 80; right: 1.25rem; bottom: 1.25rem; display: flex; align-items: center; gap: .55rem; padding: .75rem 1rem; color: var(--white); background: #1e9e59; border-radius: 999px; box-shadow: 0 12px 30px rgba(0,0,0,.22); font-size: .85rem; font-weight: 850; text-decoration: none; }
.whatsapp-button svg { width: 22px; height: 22px; fill: currentColor; }
.whatsapp-button:hover { background: #17894b; }

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

@media (max-width: 1060px) {
    .site-navigation a { padding-inline: .5rem; font-size: .82rem; }
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; padding-bottom: 0; }
    .hero-copy { max-width: 760px; }
    .hero-visual { width: min(750px, 100%); min-height: 480px; margin: 0 auto; }
    .hero-visual > img { right: 50%; width: min(700px, 100%); transform: translateX(50%); }
    .priority-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .news-layout { grid-template-columns: 1fr; }
    .social-panel { position: static; }
}

@media (max-width: 820px) {
    .header-inner { min-height: 76px; }
    .menu-toggle { display: block; }
    .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
    .site-navigation { position: fixed; z-index: 90; inset: 76px 0 auto; max-height: 0; overflow: hidden; background: var(--white); box-shadow: 0 20px 35px rgba(8,38,56,.12); transition: max-height .3s ease; }
    .site-navigation.is-open { max-height: calc(100vh - 76px); overflow-y: auto; border-top: 1px solid var(--line); }
    .site-navigation ul { display: grid; gap: 0; width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; padding-block: .8rem 1.3rem; }
    .site-navigation a { padding: .9rem 0; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1rem; }
    .site-navigation a:hover, .site-navigation a:focus-visible, .site-navigation a[aria-current="page"] { background: transparent; }
    .intro-grid, .section-heading, .split-feature, .contact-layout, .documents-page-grid, .legal-layout { grid-template-columns: 1fr; }
    .section-heading { align-items: start; }
    .documents-intro, .legal-nav { position: static; }
    .legal-nav { grid-template-columns: repeat(2, 1fr); column-gap: 1rem; }
    .legal-nav strong { grid-column: 1 / -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 1.5rem), var(--container)); }
    .brand-copy span { display: none; }
    .hero-grid { padding-top: 4rem; }
    .hero h1 { font-size: clamp(3.2rem, 17vw, 4.8rem); }
    .hero-values { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem 1rem; }
    .hero-values li::after { display: none; }
    .hero-visual { min-height: 340px; }
    .hero-sun { width: 250px; height: 250px; right: 10%; }
    .hero-label { right: .3rem; bottom: .7rem; }
    .button-row .button { width: 100%; }
    .priority-grid, .team-grid { grid-template-columns: 1fr; }
    .priority-card { min-height: 260px; }
    .member-photo { height: 360px; }
    .commitment { grid-template-columns: 1fr; gap: 1.4rem; }
    .commitment-number { font-size: 4.5rem; }
    .news-card, .news-card-featured { grid-template-columns: 1fr; gap: 1.2rem; }
    .field-row { grid-template-columns: 1fr; }
    .cta-box { display: grid; }
    .cta-box .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { display: grid; gap: .5rem; }
    .whatsapp-button span { display: none; }
    .whatsapp-button { width: 52px; height: 52px; justify-content: center; padding: 0; }
    .legal-nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
    .site-header, .site-footer, .whatsapp-button, .button { display: none !important; }
    body { color: #000; font-size: 11pt; }
    .page-hero, .section { padding-block: 1.5rem; background: #fff !important; }
    a { color: #000; text-decoration: underline; }
}
