:root {
    --navy-950: #03244d;
    --navy-900: #073b7a;
    --navy-800: #0a4d99;
    --blue: #0b69c7;
    --green: #06a85f;
    --green-dark: #087b4b;
    --yellow: #ffd21a;
    --orange: #ff9f1a;
    --ink: #132238;
    --muted: #65758b;
    --line: #e1e9f2;
    --surface: #ffffff;
    --soft: #f4f8fc;
    --soft-green: #effaf5;
    --danger: #c62828;
    --shadow-sm: 0 8px 26px rgba(3, 36, 77, .08);
    --shadow: 0 22px 60px rgba(3, 36, 77, .14);
    --radius: 24px;
    --radius-sm: 15px;
    --header: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, video { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 18px; top: -60px; z-index: 1000; padding: 10px 14px; background: white; border-radius: 10px; box-shadow: var(--shadow); }
.skip-link:focus { top: 14px; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(225,233,242,.92);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(3,36,77,.11); background: rgba(255,255,255,.97); }
.header-inner { min-height: var(--header); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 152px; height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: .94rem; font-weight: 750; color: #405169; }
.main-nav a { position: relative; padding: 30px 0; transition: color .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--navy-900); }
.main-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 17px; width: 24px; height: 3px; margin: auto; border-radius: 99px; background: linear-gradient(90deg, var(--green), var(--yellow)); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 12px; background: var(--soft); }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--navy-900); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page-hero {
    position: relative;
    min-height: 440px;
    padding: calc(var(--header) + 90px) 0 80px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: white;
    background: var(--navy-950);
}
.page-hero--large { min-height: 720px; padding-top: calc(var(--header) + 130px); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(2,23,50,.92), rgba(3,45,89,.72) 52%, rgba(4,105,88,.48)); }
.hero-pattern { position: absolute; inset: 0; z-index: 2; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom, black, transparent 96%); }
.hero-content { position: relative; z-index: 3; max-width: 900px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(255,255,255,.10); font-size: .76rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(8px); }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(255,210,26,.15); }
.page-hero h1 { max-width: 940px; margin: 22px auto 16px; font-size: clamp(2.7rem, 6.5vw, 5.8rem); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.page-hero:not(.page-hero--large) h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); }
.page-hero p { max-width: 760px; margin: 0 auto; color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.8vw, 1.22rem); line-height: 1.75; }
.hero-actions { display: flex; justify-content: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 22px; border: 1px solid transparent; border-radius: 14px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: linear-gradient(135deg, var(--green), var(--green-dark)); box-shadow: 0 12px 30px rgba(6,168,95,.28); }
.button--secondary { color: white; background: linear-gradient(135deg, var(--navy-900), var(--blue)); box-shadow: 0 12px 30px rgba(7,59,122,.24); }
.button--ghost { color: white; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.11); backdrop-filter: blur(9px); }
.button--light { color: var(--navy-900); background: white; box-shadow: var(--shadow-sm); }
.button--outline { color: var(--navy-900); border-color: var(--line); background: transparent; }

.section { padding: 94px 0; }
.section--white { background: white; }
.section--soft { background: var(--soft); }
.section--navy { color: white; background: linear-gradient(135deg, var(--navy-950), var(--navy-900)); }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.kicker { display: inline-block; margin-bottom: 7px; color: var(--green-dark); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section--navy .kicker { color: var(--yellow); }
.section-heading h2 { margin: 0 0 12px; color: var(--navy-950); font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -.04em; text-wrap: balance; }
.section--navy .section-heading h2 { color: white; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.section--navy .section-heading p { color: rgba(255,255,255,.72); }

.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.intro-copy h2 { margin: 0 0 18px; color: var(--navy-950); font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.03; letter-spacing: -.05em; }
.intro-copy p { color: var(--muted); font-size: 1.05rem; line-height: 1.85; }
.intro-points { display: grid; gap: 13px; margin-top: 25px; }
.intro-point { display: flex; align-items: flex-start; gap: 12px; color: #3e5068; }
.intro-point i { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: var(--soft-green); color: var(--green-dark); font-style: normal; font-weight: 900; }
.intro-visual { position: relative; min-height: 440px; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); background: var(--navy-900); }
.intro-visual img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.intro-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,36,77,.68), transparent 55%); }
.intro-badge { position: absolute; left: 24px; bottom: 24px; z-index: 2; max-width: 250px; padding: 18px; border: 1px solid rgba(255,255,255,.24); border-radius: 18px; color: white; background: rgba(3,36,77,.78); backdrop-filter: blur(12px); }
.intro-badge strong { display: block; font-size: 1.3rem; }
.intro-badge span { color: rgba(255,255,255,.78); font-size: .88rem; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow-sm); }
.stat-card strong { display: block; color: var(--navy-900); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.05em; }
.stat-card span { color: var(--muted); font-weight: 700; }

.area-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.area-card { position: relative; min-height: 260px; display: flex; align-items: end; overflow: hidden; border-radius: 22px; color: white; box-shadow: var(--shadow-sm); }
.area-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.area-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,25,55,.92), rgba(2,25,55,.05) 70%); }
.area-card:hover img { transform: scale(1.07); }
.area-card div { position: relative; z-index: 2; padding: 20px; }
.area-card h3 { margin: 0; font-size: 1.25rem; }
.area-card p { margin: 5px 0 0; color: rgba(255,255,255,.72); font-size: .82rem; }

.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.project-card { grid-column: span 4; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.project-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.project-card--wide { grid-column: span 6; }
.project-cover { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #dce5ef; }
.project-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card:hover .project-cover img { transform: scale(1.055); }
.project-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,36,77,.46), transparent 60%); }
.project-category { position: absolute; left: 16px; top: 16px; z-index: 2; padding: 7px 11px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: white; background: rgba(3,36,77,.72); backdrop-filter: blur(10px); font-size: .72rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.project-body { padding: 22px; }
.project-body h3 { margin: 0 0 9px; color: var(--navy-950); font-size: 1.28rem; line-height: 1.25; }
.project-body p { min-height: 72px; margin: 0 0 18px; color: var(--muted); font-size: .92rem; }
.project-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; color: #7b8b9f; font-size: .78rem; font-weight: 700; }
.project-open { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 12px; color: var(--navy-900); background: var(--soft); font-weight: 800; }
.project-open:hover { border-color: rgba(6,168,95,.5); background: var(--soft-green); }

.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.filter-tabs { display: flex; gap: 9px; padding: 7px; overflow-x: auto; border-radius: 17px; background: #eaf0f6; scrollbar-width: none; }
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-button { min-width: max-content; padding: 11px 15px; border: 0; border-radius: 12px; color: #607086; background: transparent; font-weight: 800; }
.filter-button:hover, .filter-button.active { color: var(--navy-900); background: white; box-shadow: 0 7px 20px rgba(3,36,77,.09); }
.search-field { min-width: 300px; height: 52px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: var(--shadow-sm); }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; }
.search-field svg { width: 20px; fill: none; stroke: var(--muted); stroke-width: 2; }
.empty-state { padding: 60px 20px; text-align: center; color: var(--muted); border: 1px dashed #cdd8e5; border-radius: 22px; background: white; }
.empty-state h3 { color: var(--navy-950); }

.document-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.document-card { display: flex; flex-direction: column; min-height: 260px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.document-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.document-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 17px; color: white; background: linear-gradient(135deg, var(--navy-900), var(--blue)); font-weight: 900; text-transform: uppercase; }
.document-card h3 { margin: 18px 0 8px; color: var(--navy-950); font-size: 1.05rem; line-height: 1.35; }
.document-card p { margin: 0 0 20px; color: var(--muted); font-size: .86rem; }
.document-actions { display: flex; gap: 10px; margin-top: auto; }
.document-actions a { flex: 1; min-height: 42px; display: grid; place-items: center; border-radius: 11px; font-weight: 800; font-size: .86rem; }
.document-actions a:first-child { color: var(--navy-900); background: var(--soft); }
.document-actions a:last-child { color: white; background: var(--navy-900); }

.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; align-items: center; padding: 48px; border-radius: 30px; color: white; background: linear-gradient(128deg, var(--navy-950), var(--navy-900) 60%, #087e72); box-shadow: var(--shadow); }
.cta-panel::before { content: ""; position: absolute; width: 240px; height: 80px; right: -50px; top: -20px; border-radius: 50px; transform: rotate(25deg); background: var(--yellow); opacity: .95; }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel h2 { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; letter-spacing: -.04em; }
.cta-panel p { margin: 0; color: rgba(255,255,255,.76); }
.cta-actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }

.partner-card { padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow-sm); }
.partner-card img { width: 100%; display: block; object-fit: contain; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.info-panel, .form-card { border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: var(--shadow-sm); }
.info-panel { padding: 30px; }
.info-panel h2, .form-card h2 { margin: 0 0 8px; color: var(--navy-950); font-size: 1.65rem; }
.info-panel > p, .form-card > p { margin: 0 0 24px; color: var(--muted); }
.contact-list { display: grid; gap: 14px; }
.contact-item { display: grid; grid-template-columns: 46px 1fr; gap: 13px; align-items: center; padding: 13px; border-radius: 15px; background: var(--soft); }
.contact-item i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--navy-900), var(--blue)); font-style: normal; font-weight: 900; }
.contact-item strong { display: block; color: var(--navy-950); }
.contact-item span, .contact-item a { color: var(--muted); font-size: .9rem; word-break: break-word; }
.form-card { padding: 32px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: #3d5068; font-size: .84rem; font-weight: 800; }
.form-field input, .form-field textarea, .form-field select { width: 100%; border: 1px solid var(--line); border-radius: 13px; outline: 0; color: var(--ink); background: #fbfdff; transition: border .2s, box-shadow .2s; }
.form-field input, .form-field select { height: 50px; padding: 0 14px; }
.form-field textarea { min-height: 150px; padding: 14px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: rgba(6,168,95,.65); box-shadow: 0 0 0 4px rgba(6,168,95,.09); }
.checkbox { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .82rem; }
.checkbox input { margin-top: 4px; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.alert { margin-bottom: 20px; padding: 14px 16px; border-radius: 13px; font-weight: 700; }
.alert--success { color: #0a6d43; border: 1px solid #bde7d2; background: #edfbf4; }
.alert--error { color: #9b1c1c; border: 1px solid #f3bcbc; background: #fff0f0; }
.alert--info { color: var(--navy-900); border: 1px solid #cbdff4; background: #eef6ff; }

.join-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: start; }
.pix-card { position: sticky; top: 110px; padding: 30px; border-radius: 26px; color: white; background: linear-gradient(145deg, var(--navy-950), var(--navy-900)); box-shadow: var(--shadow); }
.pix-card h2 { margin: 0 0 8px; font-size: 1.75rem; }
.pix-card > p { color: rgba(255,255,255,.73); }
.pix-box { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; margin: 24px 0; padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(255,255,255,.08); }
.pix-box img { width: 150px; padding: 8px; border-radius: 14px; background: white; }
.pix-code { display: grid; gap: 9px; min-width: 0; }
.pix-code code { max-height: 120px; overflow: auto; padding: 11px; border-radius: 10px; color: #dcecff; background: rgba(0,0,0,.20); font-size: .68rem; word-break: break-all; }
.copy-button { min-height: 42px; border: 0; border-radius: 11px; color: var(--navy-950); background: var(--yellow); font-weight: 900; }
.bank-details { display: grid; gap: 8px; margin-top: 20px; color: rgba(255,255,255,.76); font-size: .86rem; }
.bank-details strong { color: white; }

.project-modal { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 24px; background: rgba(1,18,40,.80); backdrop-filter: blur(10px); }
.project-modal.open { display: grid; }
.modal-dialog { width: min(980px, 100%); max-height: calc(100vh - 48px); overflow: auto; border-radius: 26px; background: white; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.modal-media { position: relative; aspect-ratio: 16/8.5; overflow: hidden; background: #dce5ef; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-close { position: absolute; right: 16px; top: 16px; z-index: 2; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: white; background: rgba(3,36,77,.75); font-size: 1.4rem; }
.modal-nav { position: absolute; top: 50%; width: 44px; height: 44px; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: white; background: rgba(3,36,77,.70); font-size: 1.4rem; }
.modal-prev { left: 14px; }
.modal-next { right: 14px; }
.modal-content { padding: 28px; }
.modal-content .project-category-inline { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--green-dark); background: var(--soft-green); font-size: .74rem; font-weight: 850; text-transform: uppercase; }
.modal-content h2 { margin: 14px 0 10px; color: var(--navy-950); font-size: 2rem; line-height: 1.1; }
.modal-content p { margin: 0; color: var(--muted); line-height: 1.8; }
.modal-thumbs { display: flex; gap: 9px; padding: 0 28px 28px; overflow-x: auto; }
.modal-thumb { flex: 0 0 auto; width: 76px; height: 58px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 10px; background: transparent; }
.modal-thumb.active { border-color: var(--green); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }

.site-footer { color: #d5dfeb; background: #021b39; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 50px; padding: 62px 0; }
.footer-brand img { width: 170px; padding: 8px; border-radius: 12px; background: white; }
.footer-brand p { max-width: 380px; color: #9eb0c5; }
.footer-grid h2 { margin: 0 0 14px; color: white; font-size: 1rem; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 9px; }
.footer-grid a, .footer-grid span { color: #aebed0; font-size: .9rem; }
.footer-grid a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom .container { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #879bb2; font-size: .82rem; }
.footer-bottom a:hover { color: white; }

@media (max-width: 1050px) {
    .area-grid { grid-template-columns: repeat(3, 1fr); }
    .project-card { grid-column: span 6; }
    .document-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    :root { --header: 72px; }
    .container { width: min(100% - 28px, 1180px); }
    .brand img { width: 132px; height: 50px; }
    .menu-toggle { display: block; }
    .main-nav { position: fixed; left: 14px; right: 14px; top: 78px; display: none; padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); }
    .main-nav.open { display: grid; }
    .main-nav a { padding: 12px 14px; border-radius: 11px; }
    .main-nav a:hover, .main-nav a.active { background: var(--soft); }
    .main-nav a.active::after { display: none; }
    .page-hero { min-height: 380px; padding-top: calc(var(--header) + 65px); }
    .page-hero--large { min-height: 640px; }
    .intro-grid, .contact-layout, .join-grid, .cta-panel { grid-template-columns: 1fr; }
    .intro-grid { gap: 34px; }
    .cta-actions { justify-content: flex-start; }
    .toolbar { align-items: stretch; flex-direction: column; }
    .search-field { min-width: 0; width: 100%; }
    .pix-card { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .section { padding: 70px 0; }
    .page-hero h1 { letter-spacing: -.045em; }
    .area-grid, .document-grid, .stats-grid { grid-template-columns: 1fr; }
    .project-grid { gap: 18px; }
    .project-card, .project-card--wide { grid-column: 1 / -1; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field--full, .checkbox { grid-column: auto; }
    .cta-panel { padding: 30px 24px; }
    .intro-visual, .intro-visual img { min-height: 330px; }
    .pix-box { grid-template-columns: 1fr; }
    .pix-box img { margin-inline: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom .container { padding: 14px 0; align-items: flex-start; flex-direction: column; }
    .modal-dialog { max-height: calc(100vh - 24px); }
    .project-modal { padding: 12px; }
    .modal-content { padding: 22px; }
    .modal-thumbs { padding: 0 22px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
    .hero-video { display: none; }
}
