@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700;800&family=Quicksand:wght@300..700&family=Instrument+Serif:ital@0;1&display=swap'); :root { --panel-width: 70%; --line-thickness: 2px; --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 20px; --space-6: 24px; --space-7: 32px; --space-8: 40px; --space-9: 48px; --space-10: 64px; --space-11: 80px; --radius-sm: 6px; --radius-md: 10px; --radius-lg: 14px; --radius-xl: 20px; --radius-pill: 999px; --bg-base: #090909; --bg-panel: #131313; --bg-surface: #111111; --bg-elevated: #1a1a1a; --bg-card: #0f0f0f; --line-color: #333333; --border-subtle: #1a1a1a; --border-default: #1e1e1e; --border-strong: #2a2a2a; --text-primary: #ffffff; --text-secondary: #cccccc; --text-light: #aaaaaa; --text-muted: #888888; --text-faint: #555555; --color-primary: #2563eb; --color-primary-hover: #1d4ed8; --color-primary-soft: rgba(37, 99, 235, 0.10); --color-primary-border: rgba(37, 99, 235, 0.30); --accent: #00aaff; --accent-dim: rgba(0, 170, 255, 0.10); --accent-border: rgba(0, 170, 255, 0.20); --color-success: #22c55e; --color-success-soft: rgba(34, 197, 94, 0.10); --color-success-border: rgba(34, 197, 94, 0.25); --color-danger: #f87171; --color-danger-soft: rgba(239, 68, 68, 0.10); --color-danger-border: rgba(239, 68, 68, 0.20); --font-display: 'Lexend', system-ui, sans-serif; --font-serif: 'Instrument Serif', Georgia, serif; --font-body: 'Quicksand', system-ui, sans-serif; --transition-fast: 0.15s ease; --transition-base: 0.2s ease; --transition-slow: 0.3s ease; --z-panel: 4; --z-overlay: 9998; --z-nav: 9999; scrollbar-width: thin; scrollbar-color: #252525 transparent; } ::-webkit-scrollbar { width: 5px; height: 5px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: #252525; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #333333; } *, *::before, *::after { box-sizing: border-box; } html, body { margin: 0; padding: 0; height: 100%; overflow-x: hidden; font-family: var(--font-body); background-color: var(--bg-base); color: var(--text-primary); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--text-primary); font-weight: 800; line-height: 1.1; margin: 0; } p { margin: 0; line-height: 1.7; color: var(--text-light); text-wrap: pretty; } button { font-family: inherit; cursor: pointer; } ul, ol { list-style: none; margin: 0; padding: 0; } a { color: inherit; text-decoration: none; } img { max-width: 100%; display: block; } .blue-text { color: var(--color-primary); font-weight: 700; } .panel-wrap { position: relative; overflow: hidden; } .panel-wrap::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: var(--z-panel); background: linear-gradient(to bottom, var(--line-color), var(--line-color)) calc((100% - var(--panel-width)) / 2) 0 / var(--line-thickness) 100% no-repeat, linear-gradient(to bottom, var(--line-color), var(--line-color)) calc((100% - var(--panel-width)) / 2 + var(--panel-width)) 0 / var(--line-thickness) 100% no-repeat; } .panel-wrap::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: var(--line-thickness); background: var(--line-color); pointer-events: none; z-index: var(--z-panel); } .panel-center { width: var(--panel-width); margin: 0 auto; background: var(--bg-panel); position: relative; overflow: hidden; } .panel-center::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.10; z-index: 2; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)'/%3E%3C/svg%3E"); background-repeat: repeat; } .panel-wrap-hero .panel-center { min-height: 100vh; display: flex; align-items: center; } .panel-wrap-hero .panel-content { text-align: center; } .panel-wrap-section .panel-center { min-height: auto; padding: 0; } .panel-content { position: relative; z-index: var(--z-panel); padding: var(--space-9); line-height: 1.6; width: 100%; } @media (max-width: 1024px) { :root { --panel-width: 80%; } } @media (max-width: 768px) { :root { --panel-width: 90%; } .panel-content { padding: var(--space-6); } } .img-wrap { display: inline-block; overflow: hidden; position: relative; line-height: 0; } .img-wrap img { display: block; max-width: 100%; height: auto; object-fit: cover; } .img-role--portrait { width: 260px; height: 320px; border-radius: 16px; flex-shrink: 0; } .img-role--portrait img { width: 100%; height: 100%; object-fit: cover; } .img-role--banner { width: 100%; height: 340px; border-radius: 12px; display: block; } .img-role--banner img { width: 100%; height: 100%; object-fit: cover; } .img-role--thumbnail { width: 80px; height: 80px; border-radius: 8px; flex-shrink: 0; } .img-role--thumbnail img { width: 100%; height: 100%; object-fit: cover; } .img-role--icon { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; } .img-role--icon img { width: 100%; height: 100%; object-fit: contain; } .img-role--background { position: absolute !important; inset: 0; width: 100%; height: 100%; border-radius: 0; z-index: 0; pointer-events: none; display: block; } .img-role--background img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; } .img-role--gallery { width: 100%; aspect-ratio: 4 / 3; border-radius: 10px; display: block; } .img-role--gallery img { width: 100%; height: 100%; object-fit: cover; } .img-role--logo { height: 48px; width: auto; border-radius: 0; flex-shrink: 0; } .img-role--logo img { height: 100%; width: auto; object-fit: contain; } .img-role--hero { width: 100%; max-width: 360px; height: 360px; border-radius: 20px; flex-shrink: 0; } .img-role--hero img { width: 100%; height: 100%; object-fit: cover; } .site-navigation { position: fixed; top: var(--space-5); left: 50%; transform: translateX(-50%); width: min(calc(100% - 48px), 960px); z-index: var(--z-nav); opacity: 1; visibility: visible; transition: opacity var(--transition-base), visibility var(--transition-base), top var(--transition-base); } .site-navigation.is-hidden { opacity: 0; visibility: hidden; top: -10px; pointer-events: none; } .navigation-inner { background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: var(--radius-pill); height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 28px; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09); } .navigation-logo { font-size: 15px; font-weight: 700; color: #0a0a0a; text-decoration: none; letter-spacing: -0.3px; white-space: nowrap; flex-shrink: 0; } .navigation-logo-dot { color: var(--color-primary); } .navigation-links { display: flex; align-items: center; gap: var(--space-7); list-style: none; margin: 0; padding: 0; } .navigation-link { font-size: 14px; font-weight: 500; color: #111111; text-decoration: none; letter-spacing: 0.01em; position: relative; white-space: nowrap; transition: color var(--transition-fast); } .navigation-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-primary); border-radius: 2px; transition: width var(--transition-base); } .navigation-link:hover, .navigation-link.is-active { color: var(--color-primary); } .navigation-link:hover::after, .navigation-link.is-active::after { width: 100%; } .navigation-right { display: flex; align-items: center; gap: var(--space-2); flex-shrink: 0; } .navigation-locale-toggle { display: flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-decoration: none; background: #f0f0f0; border-radius: var(--radius-pill); padding: 5px 13px; border: 1px solid transparent; line-height: 1; white-space: nowrap; user-select: none; transition: background var(--transition-fast), border-color var(--transition-fast); } .navigation-locale-toggle:hover { background: #e6f0ff; border-color: var(--color-primary-border); } .navigation-locale-inactive { color: #aaaaaa; font-weight: 500; } .navigation-locale-divider { color: #cccccc; font-weight: 300; margin: 0 1px; } .navigation-locale-active { color: var(--color-primary); font-weight: 700; } .navigation-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 36px; height: 36px; background: transparent; border: none; padding: 0; cursor: pointer; flex-shrink: 0; } .navigation-bar { display: block; width: 22px; height: 2px; background: #111111; border-radius: 2px; transform-origin: center; transition: transform var(--transition-base), opacity var(--transition-base), background var(--transition-base); } .navigation-hamburger.is-open .navigation-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #000000; } .navigation-hamburger.is-open .navigation-bar:nth-child(2) { opacity: 0; transform: scaleX(0); } .navigation-hamburger.is-open .navigation-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #000000; } .navigation-overlay { position: fixed; inset: 0; z-index: var(--z-overlay); background: #080c14; background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 70%), radial-gradient(ellipse 60% 50% at 100% 100%, rgba(0, 170, 255, 0.07) 0%, transparent 65%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-8); opacity: 0; visibility: hidden; transition: opacity var(--transition-slow), visibility var(--transition-slow); } .navigation-overlay.is-open { opacity: 1; visibility: visible; } .navigation-overlay-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; gap: 4px; } .navigation-overlay-links li { opacity: 0; transform: translateY(14px); } .navigation-overlay.is-open .navigation-overlay-links li { animation: navigationItemIn 0.4s ease forwards; } .navigation-overlay.is-open .navigation-overlay-links li:nth-child(1) { animation-delay: 0.05s; } .navigation-overlay.is-open .navigation-overlay-links li:nth-child(2) { animation-delay: 0.10s; } .navigation-overlay.is-open .navigation-overlay-links li:nth-child(3) { animation-delay: 0.15s; } .navigation-overlay.is-open .navigation-overlay-links li:nth-child(4) { animation-delay: 0.20s; } .navigation-overlay.is-open .navigation-overlay-links li:nth-child(5) { animation-delay: 0.25s; } .navigation-overlay.is-open .navigation-overlay-links li:nth-child(6) { animation-delay: 0.30s; } .navigation-overlay.is-open .navigation-overlay-links li:nth-child(7) { animation-delay: 0.35s; } @keyframes navigationItemIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } } .navigation-overlay-link { display: block; font-size: 38px; font-weight: 800; color: rgba(255, 255, 255, 0.80); text-decoration: none; letter-spacing: -0.8px; padding: 8px 24px; border-radius: 8px; position: relative; transition: color 0.18s, letter-spacing 0.18s; } .navigation-overlay-link::after { content: ''; position: absolute; bottom: 6px; left: 24px; width: 0; height: 3px; background: var(--color-primary); border-radius: 2px; transition: width 0.22s ease; } .navigation-overlay-link:hover, .navigation-overlay-link.is-active { color: var(--text-primary); } .navigation-overlay-link:hover { letter-spacing: -0.4px; } .navigation-overlay-link:hover::after, .navigation-overlay-link.is-active::after { width: calc(100% - 48px); } .navigation-overlay .navigation-locale-toggle { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); font-size: 12px; padding: 7px 18px; } .navigation-overlay .navigation-locale-toggle:hover { background: rgba(37, 99, 235, 0.25); border-color: rgba(37, 99, 235, 0.45); } .navigation-overlay .navigation-locale-inactive { color: rgba(255, 255, 255, 0.30); } .navigation-overlay .navigation-locale-divider { color: rgba(255, 255, 255, 0.15); } .navigation-overlay .navigation-locale-active { color: #60a5fa; } section[id], div[id].scroll-target { scroll-margin-top: 94px; } @media (max-width: 940px) { .site-navigation { width: min(calc(100% - 32px), 820px); top: 12px; } .navigation-inner { padding: 0 18px; } .navigation-links, .navigation-right > .navigation-locale-toggle { display: none; } .navigation-hamburger { display: flex; } section[id], div[id].scroll-target { scroll-margin-top: 78px; } } @media (max-width: 900px) { .navigation-links { gap: var(--space-5); } .navigation-inner { padding: 0 22px; } } @media (max-width: 400px) { .navigation-logo { font-size: 14px; } } .panel-wrap-hero .panel-center { padding-top: var(--space-7); } .hero-layout { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-4); } .hero-location { display: inline-flex; align-items: center; gap: var(--space-2); background: var(--bg-surface); border: 1px solid var(--border-strong); border-radius: var(--radius-pill); padding: 10px 24px; font-style: italic; font-size: 16px; color: rgba(255, 255, 255, 0.70); white-space: nowrap; } .hero-location-ping { position: relative; width: 10px; height: 10px; flex-shrink: 0; } .hero-location-ping::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--color-success); animation: heroPing 2s ease-out infinite; opacity: 0; } .hero-location-ping::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--color-success); } @keyframes heroPing { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(2.4); opacity: 0; } } .hero-mobile-break { display: none; } .hero-title { font-family: var(--font-display); font-size: clamp(48px, 8vw, 80px); line-height: 1.05; } .hero-subtitle { font-family: var(--font-serif); font-style: italic; font-size: clamp(32px, 5vw, 56px); font-weight: 400; color: rgba(255, 255, 255, 0.65); line-height: 1.15; } .hero-summary { font-size: 16px; color: var(--text-light); max-width: 540px; line-height: 1.7; } .hero-buttons { display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; margin-top: var(--space-2); } .hero-btn { display: inline-block; padding: 12px 28px; border-radius: 8px; font-size: 15px; font-weight: 500; text-decoration: none; transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base); white-space: nowrap; } .hero-btn-primary { background: var(--color-primary); color: var(--text-primary); border: 1.5px solid var(--color-primary); } .hero-btn-primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); } .hero-btn-secondary { background: transparent; color: var(--text-primary); border: 1.5px solid var(--text-primary); } .hero-btn-secondary:hover { background: var(--text-primary); color: #000000; } @media (max-width: 480px) { .panel-wrap-hero .panel-center { padding-top: 76px; } .hero-mobile-break { display: block; } .hero-location { font-size: 12px; padding: 9px 20px; gap: var(--space-2); } .hero-buttons { flex-direction: column; align-items: center; width: 100%; } .hero-btn { width: 100%; max-width: 320px; text-align: center; } } .featured-heading { margin-bottom: var(--space-7); } .featured-eyebrow { font-family: var(--font-serif); font-style: italic; font-size: 18px; font-weight: 400; color: rgba(255, 255, 255, 0.65); display: block; margin-bottom: 6px; line-height: 1; } .featured-title { font-size: clamp(24px, 3vw, 40px); margin: 0 0 var(--space-4); } .featured-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 60px; gap: var(--space-2); } .featured-cell { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--bg-card); cursor: pointer; grid-column: span 12; } .featured-cell-hero { grid-row: span 5; cursor: default; } .featured-cell-b, .featured-cell-c { grid-row: span 3; transition: box-shadow var(--transition-base); } .featured-cell-b:hover, .featured-cell-c:hover { box-shadow: inset 0 0 0 2px rgba(37, 99, 235, 0.6); } .featured-img-a, .featured-img-b { position: absolute; inset: 0; overflow: hidden; } .featured-img-a img, .featured-img-b img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.58); transform: scale(1.04); transition: transform 9s linear; } .featured-img-b { opacity: 0; transition: opacity 0.75s ease; } .featured-img-b.is-on { opacity: 1; } .featured-cell-b:hover .featured-img-a img, .featured-cell-b:hover .featured-img-b img, .featured-cell-c:hover .featured-img-a img, .featured-cell-c:hover .featured-img-b img { transform: scale(1.07); filter: brightness(0.75); } .featured-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 60%); } .featured-cell-hero .featured-overlay { background: linear-gradient(148deg, transparent 28%, rgba(0, 0, 0, 0.9) 100%); } .featured-body { position: absolute; inset: 0; z-index: 2; padding: 14px 16px; display: flex; flex-direction: column; justify-content: flex-end; gap: var(--space-1); } .featured-cell-hero .featured-body { padding: var(--space-7) 36px; } .featured-cell-hero .featured-body.is-no-btn { padding-bottom: var(--space-4); } .featured-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-primary); display: block; } .featured-cell-hero .featured-tag { font-size: 10px; } .featured-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); line-height: 1.15; margin: 0; } .featured-cell-hero .featured-name { font-size: clamp(22px, 2.6vw, 34px); font-weight: 800; margin-bottom: 2px; max-width: 16ch; } .featured-cell-hero .featured-name.is-size-md { font-size: clamp(20px, 2.3vw, 30px); max-width: 20ch; } .featured-cell-hero .featured-name.is-size-lg { font-size: clamp(17px, 1.9vw, 24px); max-width: 24ch; line-height: 1.2; } .featured-desc { font-size: 13px; color: rgba(255, 255, 255, 0.55); line-height: 1.65; max-width: 36ch; opacity: 0; max-height: 0; overflow: hidden; transition: opacity 0.35s ease 0.1s, max-height 0.4s ease 0.1s; margin: 0; } .featured-cell-hero .featured-desc { opacity: 1; max-height: 120px; margin-bottom: var(--space-4); } .featured-link { display: inline-flex; align-items: center; font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-primary); background: rgba(37, 99, 235, 0.7); padding: 8px 16px; border-radius: 8px; width: fit-content; opacity: 0; max-height: 0; overflow: hidden; pointer-events: none; transition: opacity 0.3s ease 0.2s, max-height 0.3s ease 0.2s, background var(--transition-base); text-decoration: none; } .featured-cell-hero .featured-link { opacity: 1; max-height: 48px; pointer-events: auto; } .featured-link:hover { background: var(--color-primary); } .featured-hero-text { transition: opacity 0.28s ease, transform 0.28s ease; } .featured-hero-text.is-out { opacity: 0; transform: translateY(8px); } .featured-small-text { transition: opacity 0.28s ease; } .featured-small-text.is-out { opacity: 0; } .featured-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255, 255, 255, 0.08); z-index: 5; border-radius: 0 0 var(--radius-lg) var(--radius-lg); } .featured-progress-bar { height: 100%; background: var(--color-primary); width: 0%; border-radius: 0 0 var(--radius-lg) var(--radius-lg); } @media (min-width: 769px) { .featured-grid { grid-auto-rows: 80px; gap: var(--space-3); } .featured-cell-hero { grid-column: span 7; grid-row: span 5; } .featured-cell-b { grid-column: span 5; grid-row: span 3; } .featured-cell-c { grid-column: span 5; grid-row: span 2; } } .about-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-7); align-items: start; } .about-photo-col { position: relative; max-width: 100%; } .about-photo-frame { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 1 / 1; background: var(--bg-elevated); position: relative; transition: transform var(--transition-base), box-shadow var(--transition-base); box-shadow: 12px 12px 0 var(--text-primary) inset, 8px 8px 0 #0e0e0e; } .about-photo-frame:hover { transform: translate(-4px, -4px); } .about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.6s ease; } .about-photo-frame:hover img { transform: scale(1.03); } .about-socials { position: absolute; top: 12px; right: -14px; display: flex; flex-direction: column; gap: var(--space-2); z-index: 4; } .about-social { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: #0a0a0a; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px; color: rgba(255, 255, 255, 0.55); text-decoration: none; cursor: pointer; font-family: inherit; font-size: inherit; padding: 0; transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-fast); position: relative; overflow: visible; } .about-social:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--text-primary); transform: translateX(-3px); } .about-social-copied { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); background: var(--color-success); color: var(--text-primary); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; white-space: nowrap; padding: 5px 10px; border-radius: 6px; pointer-events: none; opacity: 0; transition: opacity var(--transition-base); } .about-social-copied::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--color-success); } .about-social-email.is-copied { background: var(--color-success); border-color: var(--color-success); color: var(--text-primary); } .about-social-email.is-copied .about-social-copied { opacity: 1; } .about-text-col { display: flex; flex-direction: column; gap: var(--space-5); } .about-heading { margin-bottom: var(--space-1); } .about-eyebrow { font-family: var(--font-serif); font-style: italic; font-size: 18px; font-weight: 400; color: rgba(255, 255, 255, 0.65); display: block; margin-bottom: 6px; } .about-name { font-size: clamp(36px, 5vw, 60px); line-height: 1.05; } .about-text-col p { font-size: 16px; } @media (min-width: 901px) { .about-layout { grid-template-columns: 340px 1fr; gap: var(--space-10); } .about-socials { top: 16px; right: -20px; gap: 10px; } .about-social { width: 40px; height: 40px; border-radius: var(--radius-md); } } @media (min-width: 1025px) { .about-layout { gap: var(--space-10); } } @media (max-width: 480px) { .about-text-col p { font-size: 15px; } } .skills-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-7); align-items: start; } .skills-text-col { display: flex; flex-direction: column; gap: var(--space-5); width: 100%; text-align: center; } .skills-heading { margin-bottom: var(--space-1); } .skills-eyebrow { font-family: var(--font-serif); font-style: italic; font-size: 18px; font-weight: 400; color: rgba(255, 255, 255, 0.65); display: block; margin-bottom: 6px; } .skills-title { font-size: clamp(24px, 3vw, 40px); } .skills-marquee-area { overflow: hidden; display: flex; flex-direction: column; gap: var(--space-3); } .skills-marquee-wrap { position: relative; overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%); } .skills-marquee-row { display: flex; width: 100%; cursor: default; } .skills-marquee-row:hover .skills-marquee-track { animation-play-state: paused; } .skills-marquee-track { display: flex; gap: 10px; width: max-content; flex-shrink: 0; } .skills-marquee-row-left .skills-marquee-track { animation: skillsScrollLeft 12s linear infinite; } .skills-marquee-row-right .skills-marquee-track { animation: skillsScrollRight 15s linear infinite; } @keyframes skillsScrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } @keyframes skillsScrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } } .skills-chip { display: inline-flex; align-items: center; gap: var(--space-2); padding: 8px 18px; border-radius: var(--radius-pill); border: 1px solid var(--border-default); background: var(--bg-surface); font-family: var(--font-display); font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.75); white-space: nowrap; user-select: none; transition: border-color var(--transition-base), color var(--transition-base), background var(--transition-base); } .skills-chip:hover { border-color: var(--border-strong); background: #161616; color: var(--text-primary); } .skills-chip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; opacity: 0.85; } @media (min-width: 769px) { .skills-layout { grid-template-columns: 280px 1fr; gap: var(--space-10); } .skills-text-col { text-align: left; } } .work-heading-block { margin-bottom: var(--space-4); } .work-eyebrow { font-family: var(--font-serif); font-style: italic; font-size: 18px; font-weight: 400; color: rgba(255, 255, 255, 0.65); display: block; margin-bottom: 6px; line-height: 1; } .work-title { font-size: clamp(24px, 3vw, 40px); margin: 0 0 var(--space-7); } .work-empty { font-family: var(--font-display); font-size: 14px; color: var(--text-faint); padding: var(--space-6) 0; } .work-line { position: relative; padding-left: 40px; } .work-line::before { content: ''; position: absolute; left: 18px; top: 8px; bottom: 8px; width: 2px; background: rgba(255, 255, 255, 0.07); border-radius: 2px; } .work-line::after { content: ''; position: absolute; left: 18px; top: 8px; width: 2px; background: linear-gradient(to bottom, var(--color-primary) 0%, rgba(37, 99, 235, 0.4) 100%); border-radius: 2px; transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1; } .work-year-group { position: relative; } .work-year-group + .work-year-group::before { content: ''; display: block; height: 1px; background: rgba(255, 255, 255, 0.05); } .work-year-trigger { display: flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; padding: var(--space-5) 0; background: none; border: none; color: inherit; font-family: var(--font-display); width: 100%; text-align: left; position: relative; } .work-year-label-wrap { display: flex; align-items: baseline; gap: 10px; flex-shrink: 0; } .work-year-label { font-family: var(--font-display); font-size: clamp(38px, 5vw, 64px); font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: rgba(255, 255, 255, 0.05); transition: color var(--transition-slow); } .work-year-group.is-open .work-year-label { color: rgba(37, 99, 235, 0.2); } .work-year-meta { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; overflow: hidden; } .work-year-count { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); } .work-year-group.is-open .work-year-count { color: var(--text-muted); } .work-year-preview { display: flex; align-items: center; flex-wrap: nowrap; gap: 6px; overflow: hidden; max-height: 24px; transition: max-height var(--transition-slow), opacity var(--transition-slow); opacity: 1; } .work-year-group.is-open .work-year-preview { max-height: 0; opacity: 0; } .work-year-preview-tag { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.07); border-radius: var(--radius-pill); padding: 2px 8px; white-space: nowrap; flex-shrink: 0; max-width: 110px; overflow: hidden; text-overflow: ellipsis; } .work-year-preview-tag-extra { display: none; } .work-year-preview-more { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.22); white-space: nowrap; flex-shrink: 0; } .work-year-chevron { width: 16px; height: 16px; fill: none; stroke: var(--text-faint); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-left: auto; flex-shrink: 0; transition: transform var(--transition-slow), stroke var(--transition-slow); } .work-year-group.is-open .work-year-chevron { transform: rotate(180deg); stroke: var(--color-primary); } .work-year-content { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1); } .work-year-group.is-open .work-year-content { max-height: 4000px; } .work-items-wrap { padding: var(--space-1) 0 28px 0; display: grid; grid-template-columns: 1fr; gap: var(--space-2); } .work-item { position: relative; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.025); transition: border-color 0.25s ease, background 0.25s ease, transform var(--transition-base), box-shadow 0.25s ease; cursor: pointer; overflow: hidden; } .work-item-multi { border-left-color: rgba(37, 99, 235, 0.22); border-left-width: 2px; } .work-item-ongoing { border-left-color: rgba(34, 197, 94, 0.28); border-left-width: 2px; } .work-item:hover { border-color: rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.05); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35); } .work-item.is-expanded { border-color: rgba(37, 99, 235, 0.35); background: rgba(37, 99, 235, 0.06); box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15), 0 12px 40px rgba(0, 0, 0, 0.3); } .work-item-ongoing.is-expanded { border-color: rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.04); box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.12), 0 12px 40px rgba(0, 0, 0, 0.3); } .work-item-trigger { display: flex; align-items: center; gap: 10px; padding: 12px 13px; user-select: none; background: none; border: none; color: inherit; font-family: var(--font-display); width: 100%; cursor: pointer; text-align: left; } .work-item-icon { width: 38px; height: 38px; min-width: 38px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09); display: grid; place-items: center; flex-shrink: 0; overflow: hidden; transition: border-color 0.25s ease, box-shadow 0.25s ease; } .work-item:hover .work-item-icon, .work-item.is-expanded .work-item-icon { border-color: rgba(37, 99, 235, 0.35); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); } .work-item-ongoing:hover .work-item-icon, .work-item-ongoing.is-expanded .work-item-icon { border-color: rgba(34, 197, 94, 0.35); box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1); } .work-item-icon-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; border-radius: 9px; } .work-item-icon-emoji { font-size: 19px; line-height: 1; display: block; } .work-item-text { flex: 1; min-width: 0; text-align: left; padding-top: 2px; } .work-item-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.35; display: block; margin-bottom: 5px; overflow-wrap: break-word; } .work-item-meta-row { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; } .work-item-subtitle { font-family: var(--font-display); font-size: 11px; font-weight: 500; color: var(--text-faint); letter-spacing: 0.04em; } .work-item.is-expanded .work-item-subtitle { color: rgba(37, 99, 235, 0.75); } .work-item-ongoing.is-expanded .work-item-subtitle { color: rgba(34, 197, 94, 0.75); } .work-item-span-badge { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.05em; color: rgba(37, 99, 235, 0.7); background: rgba(37, 99, 235, 0.08); border: 1px solid rgba(37, 99, 235, 0.2); border-radius: var(--radius-pill); padding: 2px 8px; white-space: nowrap; } .work-item-span-badge-present { color: rgba(34, 197, 94, 0.8); background: rgba(34, 197, 94, 0.08); border-color: rgba(34, 197, 94, 0.25); } .work-item-caret { width: 14px; height: 14px; min-width: 14px; fill: none; stroke: rgba(255, 255, 255, 0.2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 3px; flex-shrink: 0; transition: transform var(--transition-slow), stroke var(--transition-slow); } .work-item.is-expanded .work-item-caret { transform: rotate(90deg); stroke: var(--color-primary); } .work-item-ongoing.is-expanded .work-item-caret { stroke: rgba(34, 197, 94, 0.8); } .work-item-body { max-height: 0; overflow: hidden; transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1); } .work-item.is-expanded .work-item-body { max-height: 800px; } .work-item-body-inner { padding: var(--space-3) var(--space-4) 18px; border-top: 1px solid rgba(37, 99, 235, 0.15); } .work-item-ongoing .work-item-body-inner { border-top-color: rgba(34, 197, 94, 0.15); } .work-item-summary { font-family: var(--font-display); font-size: 12.5px; line-height: 1.75; color: var(--text-muted); font-weight: 400; margin: 0; } @media (min-width: 601px) { .work-line { padding-left: 52px; } .work-year-trigger { gap: var(--space-4); } .work-year-label { font-size: clamp(42px, 6vw, 64px); } .work-year-preview-tag { max-width: none; } .work-year-preview-more { display: none; } .work-year-preview-tag-extra { display: inline-flex; } .work-item-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; } .work-item-icon-img { border-radius: 11px; } .work-item-trigger { gap: var(--space-4); padding: 14px var(--space-4); } } @media (min-width: 901px) { .work-year-label { font-size: clamp(42px, 6vw, 64px); } } .photography-heading { margin-bottom: var(--space-5); } .photography-heading-text { flex: 1; } .photography-eyebrow { font-family: var(--font-serif); font-style: italic; font-size: 18px; font-weight: 400; color: rgba(255, 255, 255, 0.65); display: block; margin-bottom: 6px; line-height: 1; } .photography-title { font-size: clamp(24px, 3vw, 40px); margin: 0 0 var(--space-5); } .photography-summary { font-size: 16px; color: var(--text-light); line-height: 1.7; margin: 0; max-width: 680px; } .photography-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2); align-items: start; } .photography-col { display: flex; flex-direction: column; gap: var(--space-2); } .photography-col-center, .photography-col-right { display: none; } .photography-cell { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--bg-card); cursor: pointer; } .photography-cell-portrait { aspect-ratio: 4 / 5; } .photography-cell-landscape { aspect-ratio: 16 / 10; } .photography-cell-square { aspect-ratio: 1 / 1; } .photography-cell-wide { aspect-ratio: 2 / 1; } .photography-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.35s ease; } .photography-img-empty { width: 100%; height: 100%; background: var(--bg-elevated); } .photography-cell:hover .photography-img { transform: scale(1.05); } .photography-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 70%); display: flex; align-items: flex-end; padding: 13px; opacity: 0; transition: opacity 0.35s ease; } .photography-cell:hover .photography-overlay { opacity: 1; } .photography-overlay-label { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--text-primary); } .photography-cta { padding-top: var(--space-7); } .photography-cta-inner { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-6); } .photography-cta-left { flex: 1; max-width: 100%; } .photography-cta-title { font-size: clamp(24px, 3vw, 40px); margin: 0 0 var(--space-5); } .photography-cta-body { font-size: 14px; color: rgba(255, 255, 255, 0.5); max-width: 100%; } @media (min-width: 641px) { .photography-grid { grid-template-columns: repeat(2, 1fr); } .photography-col-center { display: flex; margin-top: var(--space-7); } .photography-cta-inner { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: var(--space-7); } .photography-cta-left { max-width: 620px; } .photography-cta-body { font-size: 15px; max-width: 520px; } .photography-cta { padding-top: var(--space-9); } } @media (min-width: 1025px) { .photography-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } .photography-col { gap: 10px; } .photography-col-right { display: flex; } .photography-col-center { margin-top: 44px; } } .contact-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-9); align-items: start; } .contact-left { display: flex; flex-direction: column; } .contact-eyebrow { font-family: var(--font-serif); font-style: italic; font-size: 18px; font-weight: 400; color: rgba(255, 255, 255, 0.55); display: block; margin-bottom: var(--space-1); } .contact-heading { font-size: clamp(24px, 3vw, 40px); line-height: 1.05; margin: 0 0 14px; } .contact-sub { font-size: 16px; color: rgba(255, 255, 255, 0.5); line-height: 1.75; margin-bottom: var(--space-4); } .contact-icons { display: flex; gap: 10px; } .contact-icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--radius-md); background: var(--bg-surface); border: 1px solid var(--border-default); color: rgba(255, 255, 255, 0.5); text-decoration: none; cursor: pointer; font-family: inherit; font-size: inherit; transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base), transform var(--transition-fast); position: relative; overflow: visible; } .contact-icon:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--text-primary); transform: translateY(-2px); } .contact-icon-email.is-copied { background: var(--color-success); border-color: var(--color-success); color: var(--text-primary); } .contact-icon-tip { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--color-success); color: var(--text-primary); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; white-space: nowrap; padding: 4px 8px; border-radius: 5px; pointer-events: none; opacity: 0; transition: opacity var(--transition-base) ease; } .contact-icon-email.is-copied .contact-icon-tip { opacity: 1; } .contact-response { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; color: #444444; margin-top: 14px; } .contact-form { display: flex; flex-direction: column; gap: 14px; } .contact-form-row { display: grid; grid-template-columns: 1fr; gap: 14px; } .contact-form-group { display: flex; flex-direction: column; gap: 6px; } .contact-form-group-grow { flex: 0 0 auto; } .contact-form-group-grow .contact-form-textarea { height: 96px; min-height: unset; } .contact-form-label { font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: #555555; } .contact-form-input, .contact-form-textarea { background: transparent; border: none; border-bottom: 2px solid #2e2e2e; border-radius: 0; padding: 11px 0; color: var(--text-primary); font-size: 14px; font-family: var(--font-display); width: 100%; outline: none; transition: border-color var(--transition-base); -webkit-appearance: none; appearance: none; } .contact-form-input::placeholder, .contact-form-textarea::placeholder { color: #3a3a3a; } .contact-form-input:focus, .contact-form-textarea:focus { border-color: var(--color-primary); background: transparent; } .contact-form-textarea { resize: none; display: block; } .contact-form-msg { display: flex; align-items: center; gap: var(--space-2); padding: 12px 14px; border-radius: var(--radius-md); font-size: 13px; font-weight: 500; line-height: 1.4; } .contact-form-msg[hidden] { display: none; } .contact-form-msg-success { background: var(--color-success-soft); border: 1px solid var(--color-success-border); color: var(--color-success); } .contact-form-msg-error { background: var(--color-danger-soft); border: 1px solid var(--color-danger-border); color: var(--color-danger); } .contact-form-footer { display: flex; align-items: center; } .contact-form-btn { width: 100%; text-align: center; background: var(--color-primary); color: var(--text-primary); border: none; padding: 12px 28px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; font-family: var(--font-display); cursor: pointer; transition: background var(--transition-base), transform var(--transition-fast); } .contact-form-btn:hover { background: var(--color-primary-hover); transform: translateY(-1px); } .contact-form-btn:active { transform: translateY(0); } @media (min-width: 481px) { .contact-form-row { grid-template-columns: 1fr 1fr; } .contact-form-btn { width: auto; } } @media (min-width: 901px) { .contact-layout { grid-template-columns: 1fr 1.15fr; gap: var(--space-11); } .contact-form-group-grow .contact-form-textarea { height: 110px; } .contact-form-footer { margin-top: 2px; } } .footer-name-wrap { width: 100%; padding: 0 var(--space-4); text-align: center; margin-bottom: -0.14em; overflow: visible; } .footer-name { font-family: var(--font-display); font-size: clamp(28px, 8vw, 220px); font-weight: 800; line-height: 1; white-space: nowrap; display: block; width: 100%; text-align: center; color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.13); cursor: default; user-select: none; }