:root{--color-bg: #faf8f5;--color-surface: #fff;--color-text: #1c1917;--color-text-muted: #57534e;--color-accent: #b45309;--color-accent-hover: #92400e;--color-border: #e7e5e4;--font-sans: "DM Sans", system-ui, sans-serif;--font-display: "Fraunces", Georgia, serif;--max-width: 1100px;--space-xs: .5rem;--space-sm: 1rem;--space-md: 1.5rem;--space-lg: 2rem;--space-xl: 3rem;--space-2xl: 4rem;--radius: 12px;--shadow: 0 4px 20px rgba(28, 25, 23, .06);--shadow-hover: 0 12px 40px rgba(28, 25, 23, .1)}*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{font-family:var(--font-sans);font-size:1rem;line-height:1.6;color:var(--color-text);background:var(--color-bg);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.app{min-height:100vh;display:flex;flex-direction:column}.header{position:sticky;top:0;z-index:10;display:flex;align-items:center;justify-content:space-between;padding:var(--space-md) var(--space-lg);max-width:var(--max-width);margin:0 auto;width:100%;background:#faf8f5e6;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);border-bottom:1px solid var(--color-border)}.header__logo{font-family:var(--font-display);font-weight:600;font-size:1.25rem;color:var(--color-text);text-decoration:none}.header__logo:hover{color:var(--color-accent)}.header__nav{display:flex;gap:var(--space-lg)}.header__nav a{color:var(--color-text-muted);text-decoration:none;font-weight:500;font-size:.9375rem}.header__nav a:hover{color:var(--color-accent)}main{flex:1;width:100%;max-width:var(--max-width);margin:0 auto;padding:0 var(--space-lg) var(--space-2xl)}.hero{padding:var(--space-2xl) 0;text-align:center}.hero__title{font-family:var(--font-display);font-size:clamp(2rem,5vw,3rem);font-weight:600;line-height:1.2;color:var(--color-text);margin-bottom:var(--space-md)}.hero__name{color:var(--color-accent)}.hero__tagline{font-size:1.125rem;color:var(--color-text-muted);max-width:36ch;margin:0 auto;margin-bottom:var(--space-xl)}.hero__ask{display:flex;gap:var(--space-xs);max-width:28rem;margin:0 auto}.hero__ask-input{flex:1;font:inherit;font-size:.9375rem;padding:var(--space-sm) var(--space-md);border:1px solid var(--color-border);border-radius:var(--radius);background:var(--color-surface);color:var(--color-text);transition:border-color .2s ease,box-shadow .2s ease}.hero__ask-input::placeholder{color:var(--color-text-muted);opacity:.8}.hero__ask-input:hover{border-color:var(--color-text-muted)}.hero__ask-input:focus{outline:none;border-color:var(--color-accent);box-shadow:0 0 0 3px #b4530926}.hero__ask-input:disabled{opacity:.7;cursor:not-allowed}.hero__ask-btn{font:inherit;font-size:.9375rem;font-weight:500;padding:var(--space-sm) var(--space-md);border:none;border-radius:var(--radius);background:var(--color-accent);color:#fff;cursor:pointer;white-space:nowrap;transition:background .2s ease}.hero__ask-btn:hover:not(:disabled){background:var(--color-accent-hover)}.hero__ask-btn:disabled{opacity:.8;cursor:not-allowed}.hero__ask-response{max-width:32rem;margin:var(--space-md) auto 0;padding:var(--space-md);font-size:.9375rem;color:var(--color-text-muted);background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius);box-shadow:var(--shadow)}.hero__ask-response--error{color:var(--color-accent-hover);border-color:#b453094d;background:#b453090f}.projects{padding:var(--space-2xl) 0}.projects__heading{font-family:var(--font-display);font-size:1.5rem;font-weight:600;margin-bottom:var(--space-xl);color:var(--color-text)}.projects__grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:var(--space-lg)}.project-card{background:var(--color-surface);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:box-shadow .2s ease,transform .2s ease;display:flex;flex-direction:column}.project-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-2px)}.project-card__image,.project-card__placeholder{width:100%;aspect-ratio:16 / 10;object-fit:cover;background:var(--color-border)}.project-card__placeholder{display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:2rem;font-weight:600;color:var(--color-text-muted);opacity:.5}.project-card__body{padding:var(--space-md);display:flex;flex-direction:column;gap:var(--space-sm);flex:1}.project-card__title{font-family:var(--font-display);font-size:1.25rem;font-weight:600;color:var(--color-text)}.project-card__description{font-size:.9375rem;color:var(--color-text-muted);line-height:1.5;flex:1}.project-card__tags{list-style:none;display:flex;flex-wrap:wrap;gap:var(--space-xs)}.project-card__tags li{font-size:.75rem;font-weight:500;padding:.25rem .5rem;background:var(--color-bg);color:var(--color-text-muted);border-radius:6px}.project-card{cursor:pointer}.project-card__cta{font-size:.875rem;font-weight:500;color:var(--color-accent);margin-top:var(--space-xs)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;background:#1c19178c;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:100;display:flex;align-items:center;justify-content:center;padding:var(--space-md)}.modal{background:var(--color-surface);border-radius:var(--radius);box-shadow:0 24px 64px #1c191733;max-width:720px;width:100%;max-height:90vh;overflow-y:auto;position:relative}.modal__close{position:sticky;top:var(--space-md);float:right;margin:var(--space-md) var(--space-md) 0 0;background:var(--color-bg);border:1px solid var(--color-border);border-radius:50%;width:2rem;height:2rem;font-size:.875rem;cursor:pointer;color:var(--color-text-muted);display:flex;align-items:center;justify-content:center;z-index:1;transition:background .15s ease,color .15s ease}.modal__close:hover{background:var(--color-border);color:var(--color-text)}.modal__image{width:100%;aspect-ratio:16 / 7;object-fit:cover;display:block}.modal__carousel{position:relative;background:#111;line-height:0}.modal__carousel-img{width:100%;max-height:420px;object-fit:contain;display:block}.modal__carousel-btn{position:absolute;top:50%;transform:translateY(-50%);background:#ffffff26;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);border:none;color:#fff;font-size:2rem;line-height:1;width:2.75rem;height:2.75rem;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .15s ease;z-index:1}.modal__carousel-btn:hover:not(:disabled){background:#ffffff4d}.modal__carousel-btn:disabled{opacity:.2;cursor:default}.modal__carousel-btn--prev{left:var(--space-sm)}.modal__carousel-btn--next{right:var(--space-sm)}.modal__carousel-dots{position:absolute;bottom:var(--space-sm);left:50%;transform:translate(-50%);display:flex;gap:6px}.modal__carousel-dot{width:8px;height:8px;border-radius:50%;border:none;background:#fff6;cursor:pointer;padding:0;transition:background .15s ease}.modal__carousel-dot--active{background:#fff}.modal__body{padding:var(--space-lg)}.modal__title{font-family:var(--font-display);font-size:1.625rem;font-weight:600;color:var(--color-text);margin-bottom:var(--space-sm)}.modal__tags{list-style:none;display:flex;flex-wrap:wrap;gap:var(--space-xs);margin-bottom:var(--space-md)}.modal__tags li{font-size:.75rem;font-weight:500;padding:.25rem .625rem;background:var(--color-bg);color:var(--color-text-muted);border-radius:6px;border:1px solid var(--color-border)}.modal__section{margin-top:var(--space-lg)}.modal__section-heading{font-size:.75rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--color-accent);margin-bottom:var(--space-sm)}.modal__text{font-size:.9375rem;color:var(--color-text-muted);line-height:1.7;margin-bottom:var(--space-sm)}.modal__text:last-child{margin-bottom:0}.modal__code{background:#1c1917;color:#d6d3d1;font-family:SF Mono,Fira Code,Fira Mono,Consolas,monospace;font-size:.8125rem;line-height:1.65;padding:var(--space-md);border-radius:8px;overflow-x:auto;white-space:pre}.footer{padding:var(--space-2xl) 0 var(--space-xl);text-align:center;border-top:1px solid var(--color-border);margin-top:var(--space-2xl)}.footer__heading{font-family:var(--font-display);font-size:1.25rem;font-weight:600;margin-bottom:var(--space-sm);color:var(--color-text)}.footer__text{color:var(--color-text-muted);font-size:.9375rem;margin-bottom:var(--space-md)}.footer__text a{color:var(--color-accent);text-decoration:none}.footer__text a:hover{text-decoration:underline}.footer__copy{font-size:.8125rem;color:var(--color-text-muted);opacity:.8}@media (max-width: 640px){.header{padding:var(--space-sm) var(--space-md)}main{padding:0 var(--space-md) var(--space-2xl)}.projects__grid{grid-template-columns:1fr}}
