@import"https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap";:root{--color-primary: #3B3B8E;--color-primary-dark: #2D2D6E;--color-primary-light: #5858A8;--color-secondary: #2A9D8F;--color-secondary-dark: #1F7A6F;--color-secondary-light: #5BC0BE;--color-accent: #F7941D;--color-accent-soft: #FFF4E6;--color-cream: #F8FCFC;--color-warm-white: #FDFFFE;--color-text: #1A1A2E;--color-text-light: #4A4A68;--color-text-muted: #7A7A96;--gradient-hero: linear-gradient(135deg, #3B3B8E 0%, #5BC0BE 50%, #F7941D 100%);--gradient-overlay: linear-gradient(180deg, rgba(59, 59, 142, .9) 0%, rgba(45, 45, 110, .95) 100%);--gradient-warm: linear-gradient(135deg, #F8FCFC 0%, #E8F6F5 100%);--shadow-sm: 0 2px 8px rgba(59, 59, 142, .06);--shadow-md: 0 4px 20px rgba(59, 59, 142, .08);--shadow-lg: 0 8px 40px rgba(59, 59, 142, .12);--shadow-hover: 0 12px 48px rgba(59, 59, 142, .2);--space-xs: .5rem;--space-sm: 1rem;--space-md: 1.5rem;--space-lg: 2rem;--space-xl: 3rem;--space-2xl: 4rem;--space-3xl: 6rem;--radius-sm: 8px;--radius-md: 12px;--radius-lg: 20px;--radius-xl: 32px;--radius-full: 9999px;--transition-fast: .15s ease;--transition-base: .25s ease;--transition-slow: .4s ease}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{font-size:16px;scroll-behavior:smooth}body{font-family:Outfit,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;font-weight:400;line-height:1.7;color:var(--color-text);background:var(--color-warm-white);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}h1,h2,h3,h4,h5,h6{font-family:Playfair Display,Georgia,serif;font-weight:600;line-height:1.3;color:var(--color-text)}h1{font-size:clamp(2.5rem,5vw,4rem)}h2{font-size:clamp(2rem,4vw,3rem)}h3{font-size:clamp(1.5rem,3vw,2rem)}h4{font-size:clamp(1.25rem,2vw,1.5rem)}p{max-width:70ch;color:var(--color-text-light)}a{color:var(--color-primary);text-decoration:none;transition:color var(--transition-fast)}a:hover{color:var(--color-primary-dark)}img{max-width:100%;height:auto;display:block}button{font-family:inherit;cursor:pointer;border:none;background:none}.container{width:100%;max-width:1280px;margin:0 auto;padding:0 var(--space-md)}@media(min-width:768px){.container{padding:0 var(--space-lg)}}.section{padding:var(--space-3xl) 0}.section--compact{padding:var(--space-2xl) 0}.btn{display:inline-flex;align-items:center;justify-content:center;gap:var(--space-xs);padding:1rem 2rem;font-family:Outfit,sans-serif;font-size:1rem;font-weight:600;border-radius:var(--radius-full);transition:all var(--transition-base);text-decoration:none}.btn--primary{background:var(--color-primary);color:#fff;box-shadow:0 4px 16px #3b3b8e4d}.btn--primary:hover{background:var(--color-primary-dark);color:#fff;transform:translateY(-2px);box-shadow:var(--shadow-hover)}.btn--secondary{background:var(--color-secondary);color:#fff;box-shadow:0 4px 16px #2a9d8f4d}.btn--secondary:hover{background:var(--color-secondary-dark);color:#fff;transform:translateY(-2px)}.btn--outline{background:transparent;color:var(--color-primary);border:2px solid var(--color-primary)}.btn--outline:hover{background:var(--color-primary);color:#fff}.btn--white{background:#fff;color:var(--color-secondary);box-shadow:var(--shadow-md)}.btn--white:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);color:var(--color-secondary)}.card{background:#fff;border-radius:var(--radius-lg);padding:var(--space-lg);box-shadow:var(--shadow-sm);transition:all var(--transition-base)}.card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)}.section-header{text-align:center;margin-bottom:var(--space-2xl)}.section-header__subtitle{display:inline-block;font-size:.875rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--color-primary);margin-bottom:var(--space-sm)}.section-header__title{margin-bottom:var(--space-sm)}.section-header__description{max-width:600px;margin:0 auto;font-size:1.125rem}input,textarea,select{font-family:inherit;font-size:1rem;padding:1rem 1.25rem;border:2px solid #E8E2DC;border-radius:var(--radius-md);background:#fff;width:100%;transition:all var(--transition-fast)}input:focus,textarea:focus,select:focus{outline:none;border-color:var(--color-primary);box-shadow:0 0 0 4px #3b3b8e1a}label{display:block;font-weight:500;margin-bottom:var(--space-xs);color:var(--color-text)}.text-center{text-align:center}.text-primary{color:var(--color-primary)}.text-secondary{color:var(--color-secondary)}.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}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideInLeft{0%{opacity:0;transform:translate(-30px)}to{opacity:1;transform:translate(0)}}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}@keyframes pulse{0%,to{transform:scale(1)}50%{transform:scale(1.05)}}.animate-fade-in-up{animation:fadeInUp .6s ease forwards}.animate-fade-in{animation:fadeIn .4s ease forwards}.blob{position:absolute;border-radius:50% 40% 60% 50%/60% 50% 40%;background:var(--gradient-hero);opacity:.1;animation:float 6s ease-in-out infinite;pointer-events:none}.grid{display:grid;gap:var(--space-lg)}.grid--2{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}.grid--3{grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}.grid--4{grid-template-columns:repeat(auto-fit,minmax(250px,1fr))}@media(min-width:1024px){.grid--2{grid-template-columns:repeat(2,1fr)}.grid--3{grid-template-columns:repeat(3,1fr)}.grid--4{grid-template-columns:repeat(4,1fr)}}a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{outline:3px solid var(--color-primary);outline-offset:2px}.app.svelte-12qhfyh{min-height:100vh;display:flex;flex-direction:column}main.svelte-12qhfyh{flex:1}.header.svelte-12qhfyh{position:fixed;top:0;left:0;right:0;z-index:1000;padding:var(--space-sm) 0;background:#fffdfbf2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);box-shadow:var(--shadow-sm);transition:all var(--transition-base)}.nav.svelte-12qhfyh{display:flex;align-items:center;justify-content:space-between;gap:var(--space-lg)}.logo.svelte-12qhfyh,.footer__logo.svelte-12qhfyh{display:flex;align-items:center;gap:var(--space-sm);text-decoration:none}.logo__image.svelte-12qhfyh{height:48px;width:auto;object-fit:contain}@media(min-width:768px){.logo__image.svelte-12qhfyh{height:56px}}.nav__links.svelte-12qhfyh{display:none;list-style:none;gap:var(--space-xs)}@media(min-width:1024px){.nav__links.svelte-12qhfyh{display:flex}}.nav__link.svelte-12qhfyh{display:block;padding:.5rem 1rem;font-size:.9375rem;font-weight:500;color:var(--color-text-light);text-decoration:none;border-radius:var(--radius-full);transition:all var(--transition-fast)}.nav__link.svelte-12qhfyh:hover{color:var(--color-primary);background:#e07b3914}.nav__link--active.svelte-12qhfyh{color:var(--color-primary);background:#e07b391a}.nav__cta.svelte-12qhfyh{display:none;padding:.75rem 1.5rem;font-size:.875rem}@media(min-width:1024px){.nav__cta.svelte-12qhfyh{display:inline-flex}}.nav__toggle.svelte-12qhfyh{display:flex;flex-direction:column;gap:5px;padding:8px;background:none;border:none;cursor:pointer}@media(min-width:1024px){.nav__toggle.svelte-12qhfyh{display:none}}.nav__toggle-bar.svelte-12qhfyh{width:24px;height:2px;background:var(--color-text);border-radius:2px;transition:all var(--transition-fast)}.nav__toggle-bar--open.svelte-12qhfyh:nth-child(1){transform:rotate(45deg) translate(5px,5px)}.nav__toggle-bar--open.svelte-12qhfyh:nth-child(2){opacity:0}.nav__toggle-bar--open.svelte-12qhfyh:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}@media(max-width:1023px){.nav__links.svelte-12qhfyh{display:flex;position:fixed;top:0;right:0;width:280px;height:100vh;padding:100px var(--space-lg) var(--space-lg);background:#fff;flex-direction:column;gap:var(--space-xs);transform:translate(100%);transition:transform var(--transition-base);box-shadow:var(--shadow-lg);z-index:999;visibility:hidden}.nav__links--open.svelte-12qhfyh{transform:translate(0);visibility:visible}.nav__link.svelte-12qhfyh{font-size:1.125rem;padding:.75rem 1rem}}.nav__overlay.svelte-12qhfyh{position:fixed;inset:0;background:#00000080;z-index:998;border:none;cursor:pointer;animation:svelte-12qhfyh-fadeIn .25s ease}@keyframes svelte-12qhfyh-fadeIn{0%{opacity:0}to{opacity:1}}.footer.svelte-12qhfyh{margin-top:auto;position:relative}.footer__wave.svelte-12qhfyh{position:relative;height:100px;margin-bottom:-1px}.footer__wave.svelte-12qhfyh svg:where(.svelte-12qhfyh){width:100%;height:100%}.footer__content.svelte-12qhfyh{background:var(--color-secondary);color:#fff;padding:var(--space-2xl) 0 var(--space-lg)}.footer__grid.svelte-12qhfyh{display:grid;gap:var(--space-xl)}@media(min-width:768px){.footer__grid.svelte-12qhfyh{grid-template-columns:repeat(2,1fr)}}@media(min-width:1024px){.footer__grid.svelte-12qhfyh{grid-template-columns:1.5fr 1fr 1.2fr 1fr}}.footer__logo-image.svelte-12qhfyh{height:60px;width:auto;object-fit:contain;filter:brightness(1.1)}.footer__description.svelte-12qhfyh{margin-top:var(--space-md);color:#fffc;font-size:.9375rem}.footer__foundation.svelte-12qhfyh{margin-top:var(--space-sm);color:#ffffffe6;font-size:.875rem}.footer__title.svelte-12qhfyh{font-family:Outfit,sans-serif;font-size:1rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--color-accent);margin-bottom:var(--space-md)}.footer__links.svelte-12qhfyh ul:where(.svelte-12qhfyh){list-style:none}.footer__links.svelte-12qhfyh li:where(.svelte-12qhfyh){margin-bottom:var(--space-xs)}.footer__links.svelte-12qhfyh a:where(.svelte-12qhfyh){color:#fffc;font-size:.9375rem;transition:color var(--transition-fast)}.footer__links.svelte-12qhfyh a:where(.svelte-12qhfyh):hover{color:#fff}.footer__contact.svelte-12qhfyh address:where(.svelte-12qhfyh){font-style:normal}.footer__contact.svelte-12qhfyh p:where(.svelte-12qhfyh){display:flex;gap:var(--space-sm);align-items:flex-start;margin-bottom:var(--space-md);color:#fffc;font-size:.9375rem}.footer__contact.svelte-12qhfyh svg:where(.svelte-12qhfyh){flex-shrink:0;margin-top:2px;color:var(--color-accent)}.footer__contact.svelte-12qhfyh a:where(.svelte-12qhfyh){color:#fffc}.footer__contact.svelte-12qhfyh a:where(.svelte-12qhfyh):hover{color:#fff}.footer__donate.svelte-12qhfyh p:where(.svelte-12qhfyh){color:#fffc;font-size:.9375rem;margin-bottom:var(--space-md)}.footer__bottom.svelte-12qhfyh{margin-top:var(--space-2xl);padding-top:var(--space-lg);border-top:1px solid rgba(255,255,255,.1);text-align:center}.footer__bottom.svelte-12qhfyh p:where(.svelte-12qhfyh){color:#fff9;font-size:.875rem;margin:0 auto}.footer__bottom.svelte-12qhfyh p:where(.svelte-12qhfyh):last-child{margin-top:var(--space-xs)}
