:root{--color-pink:#e91e8c;--color-pink-light:#f472b6;--color-pink-soft:#fce4f0;--color-turquoise:#14b8a6;--color-turquoise-light:#5eead4;--color-turquoise-soft:#ccfbf1;--color-white:#fff;--color-gray-50:#f9fafb;--color-gray-100:#f3f4f6;--color-gray-200:#e5e7eb;--color-gray-400:#9ca3af;--color-gray-600:#4b5563;--color-gray-800:#1f2937;--color-gray-900:#111827;--color-primary:var(--color-pink);--color-primary-light:var(--color-pink-light);--color-primary-soft:var(--color-pink-soft);--color-accent:var(--color-turquoise);--color-accent-light:var(--color-turquoise-light);--color-accent-soft:var(--color-turquoise-soft);--color-bg:var(--color-white);--color-bg-alt:var(--color-gray-50);--color-text:var(--color-gray-800);--color-text-muted:var(--color-gray-600);--font-sans:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--max-width:1120px;--header-height:64px;--radius:12px;--shadow-sm:0 1px 3px #00000014;--shadow-md:0 4px 12px #0000001a}*,:before,:after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}body{font-family:var(--font-sans);color:var(--color-text);background:var(--color-bg);-webkit-font-smoothing:antialiased;line-height:1.6}a{color:inherit;text-decoration:none}img,svg{max-width:100%;display:block}ul{list-style:none}.container{width:100%;max-width:var(--max-width);margin-inline:auto;padding-inline:1.5rem}.section{padding-block:4rem}.section--alt{background:var(--color-bg-alt)}.section__title{margin-bottom:.5rem;font-size:2rem;font-weight:700}.section__subtitle{color:var(--color-text-muted);margin-bottom:2rem;font-size:1.1rem}.btn{border-radius:var(--radius);cursor:pointer;border:none;align-items:center;gap:.5rem;padding:.75rem 1.5rem;font-size:1rem;font-weight:600;transition:transform .15s,box-shadow .15s;display:inline-flex}.btn:hover{box-shadow:var(--shadow-md);transform:translateY(-1px)}.btn--primary{background:var(--color-primary);color:var(--color-white)}.btn--accent{background:var(--color-accent);color:var(--color-white)}.gradient-text{background:linear-gradient(135deg, var(--color-primary), var(--color-accent));-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text}.card-grid{grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem;display:grid}.card{background:var(--color-white);border-radius:var(--radius);box-shadow:var(--shadow-sm);transition:box-shadow .2s,transform .2s;overflow:hidden}.card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)}.card__image{aspect-ratio:16/9;background:var(--color-gray-100);justify-content:center;align-items:center;width:100%;display:flex}.card__body{padding:1.25rem}.card__title{margin-bottom:.5rem;font-size:1.15rem;font-weight:600}.card__text{color:var(--color-text-muted);font-size:.95rem}@media (width<=768px){.section{padding-block:2.5rem}.section__title{font-size:1.5rem}.card-grid{grid-template-columns:1fr}}.nav{z-index:100;height:var(--header-height);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border-bottom:1px solid var(--color-gray-200);background:#ffffffd9;position:sticky;top:0}.nav__inner{justify-content:space-between;align-items:center;height:100%;display:flex}.nav__logo{font-size:1.25rem;font-weight:700}.nav__links{gap:2rem;display:flex}.nav__link{padding-block:.25rem;font-weight:500;transition:color .15s;position:relative}.nav__link:hover,.nav__link--active{color:var(--color-primary)}.nav__link--active:after{content:"";background:var(--color-primary);border-radius:1px;height:2px;position:absolute;bottom:-2px;left:0;right:0}.nav__toggle{cursor:pointer;background:0 0;border:none;padding:.5rem;display:none}.nav__toggle svg{display:block}@media (width<=768px){.nav__toggle{display:block}.nav__links{top:var(--header-height);background:var(--color-white);border-bottom:1px solid var(--color-gray-200);box-shadow:var(--shadow-md);flex-direction:column;gap:0;display:none;position:absolute;left:0;right:0}.nav__links--open{display:flex}.nav__link{padding:1rem 1.5rem}.nav__link--active:after{display:none}}.footer{background:var(--color-gray-900);color:var(--color-gray-400);margin-top:auto;padding-block:3rem}.footer__inner{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem;display:flex}.footer__brand{color:var(--color-white);font-size:1.1rem;font-weight:700}.footer__links{gap:1.5rem;display:flex}.footer__links a:hover{color:var(--color-primary-light)}@media (width<=768px){.footer__inner{text-align:center;flex-direction:column}}.hero{min-height:calc(100vh - var(--header-height));background:linear-gradient(160deg, var(--color-primary-soft) 0%, var(--color-white) 40%, var(--color-accent-soft) 100%);align-items:center;display:flex}.hero__inner{align-items:center;gap:3rem;display:flex}.hero__text{flex:1}.hero__text h1{margin-bottom:1rem;font-size:3rem;font-weight:800;line-height:1.15}.hero__text p{color:var(--color-text-muted);max-width:520px;margin-bottom:2rem;font-size:1.2rem}.hero__avatar{background:linear-gradient(135deg, var(--color-primary-soft), var(--color-accent-soft));width:280px;height:280px;box-shadow:var(--shadow-md);border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;display:flex;overflow:hidden}.hero__avatar img{object-fit:cover;object-position:center 90%;width:100%;height:100%}.highlights{text-align:center;grid-template-columns:repeat(3,1fr);gap:2rem;display:grid}.highlight__number{font-size:2.5rem;font-weight:800}.highlight__label{color:var(--color-text-muted);font-size:.95rem}@media (width<=768px){.hero__inner{text-align:center;flex-direction:column-reverse}.hero__text h1{font-size:2rem}.hero__text p{margin-inline:auto}.hero__avatar{width:180px;height:180px}.hero__actions{justify-content:center}.highlights{grid-template-columns:1fr;gap:1.5rem}}.page-header{background:linear-gradient(135deg, var(--color-primary-soft) 0%, var(--color-accent-soft) 100%);text-align:center;padding-block:3.5rem}.page-header h1{font-size:2.5rem;font-weight:800}.page-header p{color:var(--color-text-muted);margin-top:.5rem;font-size:1.1rem}.timeline{padding-left:2rem;position:relative}.timeline:before{content:"";background:linear-gradient(to bottom, var(--color-primary), var(--color-accent));width:2px;position:absolute;top:0;bottom:0;left:7px}.timeline__item{padding-bottom:2.5rem;position:relative}.timeline__item:last-child{padding-bottom:0}.timeline__dot{background:var(--color-primary);border:3px solid var(--color-white);width:16px;height:16px;box-shadow:var(--shadow-sm);border-radius:50%;position:absolute;top:4px;left:-2rem}.timeline__item:nth-child(2n) .timeline__dot{background:var(--color-accent)}.timeline__date{color:var(--color-primary);margin-bottom:.25rem;font-size:.85rem;font-weight:600}.timeline__item:nth-child(2n) .timeline__date{color:var(--color-accent)}.timeline__title{margin-bottom:.35rem;font-size:1.15rem;font-weight:600}.timeline__employer{color:var(--color-text-muted);margin-bottom:.5rem;font-size:.9rem;font-weight:500}.timeline__text{color:var(--color-text-muted);font-size:.95rem}.education-grid{grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:1.5rem;display:grid}.education-card{background:var(--color-white);border-radius:var(--radius);box-shadow:var(--shadow-sm);border-top:3px solid var(--color-accent);padding:1.5rem;transition:box-shadow .2s,transform .2s}.education-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)}.education-card__header{align-items:flex-start;gap:1rem;margin-bottom:.75rem;display:flex}.education-card__icon{flex-shrink:0;justify-content:center;align-items:center;width:48px;height:48px;display:flex}.education-card__icon svg{width:48px;height:48px}.education-card__title{margin-bottom:.2rem;font-size:1.05rem;font-weight:600}.education-card__meta{gap:.75rem;font-size:.85rem;display:flex}.education-card__source{color:var(--color-accent);font-weight:600}.education-card__year{color:var(--color-text-muted)}.education-card__text{color:var(--color-text-muted);font-size:.9rem}@media (width<=768px){.education-grid{grid-template-columns:1fr}}.interests-grid{grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1.5rem;display:grid}.interest-card{background:var(--color-white);border-radius:var(--radius);text-align:center;box-shadow:var(--shadow-sm);padding:1.5rem;transition:box-shadow .2s,transform .2s}.interest-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)}.interest-card__icon{justify-content:center;margin-bottom:1rem;display:flex}.interest-card__title{margin-bottom:.35rem;font-size:1.05rem;font-weight:600}.interest-card__text{color:var(--color-text-muted);font-size:.9rem}@media (width<=768px){.page-header h1{font-size:1.75rem}.interests-grid{grid-template-columns:1fr 1fr}}@media (width<=480px){.interests-grid{grid-template-columns:1fr}}.tab-bar{flex-wrap:wrap;justify-content:center;gap:.5rem;display:flex}.tab-btn{border:2px solid var(--color-gray-200);cursor:pointer;color:var(--color-text-muted);background:0 0;border-radius:9999px;padding:.6rem 1.25rem;font-size:.95rem;font-weight:600;transition:all .15s}.tab-btn:hover{border-color:var(--color-primary-light);color:var(--color-primary)}.tab-btn--active,.tab-btn--active:hover{background:var(--color-primary);color:var(--color-white);border-color:var(--color-primary)}.book-list{gap:1.25rem;display:grid}.book-item{background:var(--color-white);border-radius:var(--radius);box-shadow:var(--shadow-sm);align-items:flex-start;gap:1.25rem;padding:1.25rem;transition:box-shadow .2s;display:flex}.book-item:hover{box-shadow:var(--shadow-md)}.book-item__cover{background:var(--color-gray-100);border-radius:6px;flex-shrink:0;justify-content:center;align-items:center;width:64px;height:90px;display:flex}.book-item__info h3{margin-bottom:.25rem;font-size:1.05rem;font-weight:600}.book-item__info .author{color:var(--color-primary);margin-bottom:.5rem;font-size:.85rem}.book-item__info p{color:var(--color-text-muted);font-size:.9rem}.travel-grid{grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:1.5rem;display:grid}.travel-card{border-radius:var(--radius);box-shadow:var(--shadow-sm);background:var(--color-white);transition:box-shadow .2s,transform .2s;overflow:hidden}.travel-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)}.travel-card__image{aspect-ratio:3/2;justify-content:center;align-items:center;display:flex}.travel-card__photo{object-fit:contain;width:100%;height:100%}.travel-card__image--1{background:linear-gradient(135deg,#fce4f0,#e0f2fe)}.travel-card__image--2{background:linear-gradient(135deg,#ccfbf1,#fef3c7)}.travel-card__image--3{background:linear-gradient(135deg,#ede9fe,#fce4f0)}.travel-card__image--4{background:linear-gradient(135deg,#ccfbf1,#e0f2fe)}.travel-card__body{padding:1.25rem}.travel-card__body h3{margin-bottom:.35rem;font-size:1.1rem;font-weight:600}.travel-card__body p{color:var(--color-text-muted);font-size:.9rem}.volunteer-list{gap:1.5rem;display:grid}.volunteer-item{background:var(--color-white);border-radius:var(--radius);box-shadow:var(--shadow-sm);border-left:4px solid var(--color-accent);align-items:flex-start;gap:1.5rem;padding:1.5rem;transition:box-shadow .2s;display:flex}.volunteer-item:hover{box-shadow:var(--shadow-md)}.volunteer-item__icon{flex-shrink:0;justify-content:center;align-items:center;display:flex}.volunteer-item__info h3{margin-bottom:.15rem;font-size:1.05rem;font-weight:600}.volunteer-item__info .org{color:var(--color-accent);margin-bottom:.5rem;font-size:.85rem}.volunteer-item__info p{color:var(--color-text-muted);font-size:.9rem}@media (width<=768px){.travel-grid{grid-template-columns:1fr}.book-item,.volunteer-item{text-align:center;flex-direction:column;align-items:center}}
