:root{--navy: #1a3557;--navy-dark: #112340;--blue: #2563eb;--blue-light: #dbeafe;--teal: #0d9488;--teal-light: #ccfbf1;--gray-50: #f8fafc;--gray-100: #f1f5f9;--gray-200: #e2e8f0;--gray-400: #94a3b8;--gray-600: #475569;--gray-800: #1e293b;--white: #ffffff;--font-sans: "Inter", system-ui, sans-serif;--font-serif: "Merriweather", Georgia, serif;--radius: 8px;--shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);--shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);--transition: .15s ease}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}body{font-family:var(--font-sans);font-size:16px;line-height:1.6;color:var(--gray-800);background:var(--white)}a{color:var(--blue);text-decoration:none}a:hover{text-decoration:underline}img{max-width:100%;display:block}address{font-style:normal;line-height:1.8}ul{list-style:none}.container{max-width:1100px;margin:0 auto;padding:0 1.5rem}.mt-sm{margin-top:1rem}.mt-md{margin-top:2rem}.app{display:flex;flex-direction:column;min-height:100vh}.main-content{flex:1}.loading-screen,.error-screen{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:100vh;gap:1rem;color:var(--gray-600)}.loading-spinner{width:40px;height:40px;border:3px solid var(--gray-200);border-top-color:var(--blue);border-radius:50%;animation:spin .8s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.error-screen h2{color:var(--navy)}.error-screen code{background:var(--gray-100);padding:.15em .4em;border-radius:4px;font-size:.9em}.error-hint{color:var(--gray-400);font-size:.9em}.nav{position:sticky;top:0;z-index:100;background:var(--navy);box-shadow:0 2px 8px #0003}.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;height:64px}.nav-brand{display:flex;align-items:center;gap:.6rem;color:var(--white);font-weight:700;font-size:1.05rem;white-space:nowrap;text-decoration:none}.nav-brand:hover{text-decoration:none;opacity:.9}.nav-brand-icon{font-size:1.4rem}.nav-links{display:flex;align-items:center;gap:.25rem;flex-wrap:wrap}.nav-link{color:#fffc;font-size:.875rem;padding:.4rem .65rem;border-radius:var(--radius);transition:background var(--transition),color var(--transition);white-space:nowrap}.nav-link:hover,.nav-link.active{background:#ffffff1f;color:var(--white);text-decoration:none}.nav-link.active{font-weight:600}.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.5rem}.nav-toggle span{display:block;width:24px;height:2px;background:var(--white);border-radius:2px}.btn{display:inline-flex;align-items:center;justify-content:center;padding:.6rem 1.4rem;border-radius:var(--radius);font-weight:600;font-size:.95rem;cursor:pointer;transition:opacity var(--transition),background var(--transition);text-decoration:none;line-height:1}.btn:hover{text-decoration:none;opacity:.88}.btn-primary{background:var(--teal);color:var(--white)}.btn-outline{background:transparent;color:var(--white);border:2px solid rgba(255,255,255,.6)}.btn-outline:hover{border-color:var(--white)}.badge{display:inline-block;padding:.2rem .65rem;border-radius:999px;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.04em}.badge-active{background:#dcfce7;color:#15803d}.badge-past{background:var(--gray-200);color:var(--gray-600)}.badge-grant{background:#fef9c3;color:#854d0e}.badge-award{background:#fde8d8;color:#9a3412}.badge-event{background:var(--blue-light);color:#1e40af}.badge-hiring{background:var(--teal-light);color:#0f766e}.badge-visit{background:#f3e8ff;color:#6b21a8}.badge-default{background:var(--gray-100);color:var(--gray-600)}.tag{display:inline-block;background:var(--gray-100);color:var(--gray-600);border-radius:4px;font-size:.78rem;padding:.15rem .5rem;margin:.15rem .1rem 0 0}.filter-bar{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2rem}.filter-btn{background:var(--gray-100);color:var(--gray-600);border:none;border-radius:999px;padding:.35rem .9rem;font-size:.85rem;cursor:pointer;transition:background var(--transition),color var(--transition)}.filter-btn:hover{background:var(--gray-200)}.filter-btn.active{background:var(--navy);color:var(--white)}.section{padding:4rem 0}.section-alt{background:var(--gray-50)}.section-title{font-family:var(--font-serif);font-size:1.5rem;color:var(--navy);margin-bottom:1.25rem}.page{padding:3rem 0 5rem}.page-title{font-family:var(--font-serif);font-size:2rem;color:var(--navy);margin-bottom:.5rem}.page-subtitle{color:var(--gray-600);font-size:1.05rem;margin-bottom:2.5rem}.hero{background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 60%,#1e4976 100%);color:var(--white);padding:6rem 0 5rem}.hero-inner{max-width:780px}.hero-label{font-size:.85rem;text-transform:uppercase;letter-spacing:.08em;color:#ffffffa6;margin-bottom:.75rem}.hero-title{font-family:var(--font-serif);font-size:clamp(1.75rem,4vw,2.8rem);line-height:1.25;margin-bottom:1.25rem}.hero-desc{font-size:1.1rem;color:#ffffffd9;margin-bottom:2rem;max-width:650px;line-height:1.7}.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}.focus-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.25rem}.focus-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1.5rem;box-shadow:var(--shadow);transition:box-shadow var(--transition)}.focus-card:hover{box-shadow:var(--shadow-md)}.focus-icon{font-size:2rem;display:block;margin-bottom:.75rem}.focus-card h3{font-size:1rem;font-weight:600;color:var(--navy);margin-bottom:.5rem}.focus-card p{font-size:.9rem;color:var(--gray-600)}.quick-view{display:grid;grid-template-columns:1fr 1fr;gap:3rem}.news-list{display:flex;flex-direction:column;gap:.75rem}.news-item{display:flex;flex-direction:column;gap:.2rem}.news-date{font-size:.8rem;color:var(--gray-400)}.news-headline{font-weight:500;color:var(--navy);font-size:.95rem}.news-headline:hover{color:var(--blue)}.partner-list{display:flex;flex-direction:column;gap:.4rem}.partner-item{padding:.35rem .6rem;background:var(--gray-50);border-left:3px solid var(--teal);border-radius:0 4px 4px 0;font-size:.9rem;color:var(--gray-800)}.project-grid{display:flex;flex-direction:column;gap:1.5rem}.project-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1.75rem;box-shadow:var(--shadow)}.project-card--past{border-left:4px solid var(--gray-400)}.project-card:not(.project-card--past){border-left:4px solid var(--teal)}.project-header{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem}.project-period{font-size:.85rem;color:var(--gray-400)}.project-title{font-size:1.2rem;font-weight:700;color:var(--navy);margin-bottom:.3rem}.project-funder{font-size:.85rem;color:var(--gray-600);margin-bottom:.75rem}.project-summary{color:var(--gray-800);margin-bottom:1rem;line-height:1.65}.project-tags{margin-bottom:.75rem}.project-leads{font-size:.85rem;color:var(--gray-600);margin-top:.5rem}.project-tools{margin:.75rem 0}.project-tools strong{font-size:.9rem}.project-tools ul{margin-top:.3rem;padding-left:1rem;list-style:disc}.project-tools li{font-size:.9rem;margin-top:.2rem}.project-outcomes{margin:.75rem 0}.project-outcomes strong{font-size:.9rem}.project-outcomes ul{margin-top:.3rem;padding-left:1rem;list-style:disc}.project-outcomes li{font-size:.9rem;margin-top:.25rem;color:var(--gray-700, #374151)}.pub-year-group{margin-bottom:2.5rem}.pub-year{font-size:1.4rem;font-family:var(--font-serif);color:var(--navy);border-bottom:2px solid var(--gray-200);padding-bottom:.5rem;margin-bottom:1.25rem}.pub-list{display:flex;flex-direction:column;gap:1.25rem}.pub-item{border-left:3px solid var(--blue-light);padding-left:1rem}.pub-authors{font-size:.88rem;color:var(--gray-600);margin-bottom:.2rem}.pub-title{font-weight:600;font-size:1rem;color:var(--navy);margin-bottom:.25rem}.pub-title a{color:var(--navy)}.pub-title a:hover{color:var(--blue)}.pub-journal{font-size:.88rem;color:var(--gray-600);margin-bottom:.4rem}.pub-doi{font-size:.82rem;color:var(--gray-400)}.team-section{margin-bottom:3rem}.team-group-title{font-family:var(--font-serif);font-size:1.3rem;color:var(--navy);margin-bottom:1.25rem;padding-bottom:.5rem;border-bottom:2px solid var(--gray-200)}.team-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.25rem}.team-grid--pi{grid-template-columns:repeat(auto-fill,minmax(340px,1fr))}.member-card{display:flex;gap:1rem;background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1.25rem;box-shadow:var(--shadow)}.member-card--large{flex-direction:column;align-items:flex-start}.member-avatar{flex-shrink:0;width:52px;height:52px;border-radius:50%;background:var(--navy);color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1.1rem;overflow:hidden}.member-card--large .member-avatar{width:72px;height:72px;font-size:1.4rem}.member-avatar img{width:100%;height:100%;object-fit:cover}.member-info{flex:1;min-width:0}.member-name{font-weight:700;color:var(--navy);margin-bottom:.15rem}.member-role{font-size:.85rem;color:var(--teal);font-weight:500;margin-bottom:.15rem}.member-title{font-size:.82rem;color:var(--gray-600);margin-bottom:.5rem}.member-bio{font-size:.88rem;color:var(--gray-700, #374151);margin-bottom:.5rem;line-height:1.5}.member-interests{margin-bottom:.5rem}.member-email,.member-scholar{display:block;font-size:.82rem;margin-top:.25rem}.alumni-list{display:flex;flex-direction:column;gap:.5rem}.alumni-item{padding:.6rem 1rem;background:var(--gray-50);border-radius:var(--radius);font-size:.92rem}.alumni-position{color:var(--gray-600)}.news-feed{display:flex;flex-direction:column;gap:1.5rem}.news-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1.5rem;box-shadow:var(--shadow)}.news-card-header{display:flex;align-items:center;gap:.75rem;margin-bottom:.6rem}.news-date{font-size:.82rem;color:var(--gray-400)}.news-card-title{font-size:1.1rem;font-weight:700;color:var(--navy);margin-bottom:.5rem}.news-card-body{font-size:.95rem;color:var(--gray-600);line-height:1.65}.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}.contact-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:1.75rem;box-shadow:var(--shadow)}.contact-card h2{font-size:1.1rem;font-weight:700;color:var(--navy);margin-bottom:1rem;padding-bottom:.5rem;border-bottom:2px solid var(--gray-200)}.contact-card--wide{grid-column:1 / -1}.contact-details{display:flex;flex-direction:column;gap:.6rem}.contact-details li{display:flex;align-items:center;gap:.6rem;font-size:.95rem}.contact-icon{width:1.2rem;text-align:center;flex-shrink:0}.map-container{margin-top:1rem;border-radius:var(--radius);overflow:hidden}.map-container iframe{width:100%;height:240px;border:0}.footer{background:var(--navy-dark);color:#ffffffbf;padding:3rem 0 0;margin-top:4rem}.footer-inner{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem;padding-bottom:2.5rem}.footer-col strong{display:block;color:var(--white);margin-bottom:.75rem;font-size:.95rem}.footer-col p{font-size:.88rem;line-height:1.7}.footer-links{display:flex;flex-direction:column;gap:.4rem}.footer-links a{color:#ffffffb3;font-size:.88rem}.footer-links a:hover{color:var(--white);text-decoration:none}.footer-col a{color:#ffffffb3}.footer-col a:hover{color:var(--white);text-decoration:none}.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:1rem 1.5rem;text-align:center;font-size:.82rem;color:#ffffff73}@media (max-width: 768px){.nav-toggle{display:flex}.nav-links{display:none;position:absolute;top:64px;left:0;right:0;background:var(--navy-dark);flex-direction:column;align-items:flex-start;padding:.75rem 1rem 1rem;gap:.15rem}.nav-links.open{display:flex}.nav{position:relative}.hero{padding:4rem 0 3rem}.quick-view,.contact-grid,.team-grid--pi{grid-template-columns:1fr}.contact-card--wide{grid-column:auto}}@media (max-width: 480px){.focus-grid{grid-template-columns:1fr}.hero-actions{flex-direction:column}.btn{width:100%}}
