
/* ═══════════════════════════════════════════
TOKENS
═══════════════════════════════════════════ */
:root {
--ink: #2e1408;
--burgundy: #8b3a20;
--burgundy2: #a84e2e;
--burg-glow: rgba(139,58,32,0.18);
--brown-dk: #5a3820;
--brown-md: #7a5030;
--brown-lt: #a07050;
--parchment: #e8d8c0;
--parch-dk: #d4c0a0;
--parch-lt: #f2e8d4;
--sand: #c89050;
--sand-dim: #7a5030;
--cream: #f8f0e0;
--rope: #c89050;
--copper: #8b3a20;
--aged: rgba(90,56,32,0.08);
--f-display: 'Cormorant Garamond', Georgia, serif;
--f-body: 'Jost', sans-serif;
--f-mono: 'DM Mono', monospace;
--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* ═══════════════════════════════════════════
RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; margin: 0; padding: 0; width: 100%; }
body {
margin: 0;
padding: 0;
width: 100%;
max-width: 100%;
background: var(--parch-lt);
color: var(--ink);
font-family: var(--f-body);
font-weight: 300;
overflow-x: hidden;
cursor: default;
}
/* Parchment texture overlay */
body::before {
content: '';
position: fixed; inset: 0;
background-image:
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 1000;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
/* ═══════════════════════════════════════════
CUSTOM CURSOR
═══════════════════════════════════════════ */
.cursor {
position: fixed;
width: 8px; height: 8px;
background: var(--burgundy);
border-radius: 50%;
pointer-events: none;
z-index: 9999;
transform: translate(-50%,-50%);
transition: transform 0.1s, width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), background 0.3s;
mix-blend-mode: multiply;
}
.cursor-ring {
position: fixed;
width: 36px; height: 36px;
border: 1.5px solid var(--burgundy);
border-radius: 50%;
pointer-events: none;
z-index: 9998;
transform: translate(-50%,-50%);
transition: transform 0.18s var(--ease-smooth), width 0.4s var(--ease-spring), height 0.4s var(--ease-spring), opacity 0.3s;
opacity: 0.5;
}
/* ═══════════════════════════════════════════
NAV
═══════════════════════════════════════════ */
nav {
position: fixed; top: 0; left: 0; right: 0;
z-index: 500;
display: flex; align-items: center; justify-content: space-between;
padding: 0 56px;
height: 68px;
background: rgba(250,244,232,0.85);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--parch-dk);
}
.nav-sig {
font-family: var(--f-display);
font-size: 22px;
font-weight: 600;
color: var(--burgundy);
letter-spacing: 0.01em;
line-height: 1;
}
.nav-sig span {
color: var(--brown-lt);
font-weight: 300;
font-style: italic;
}
.nav-links {
display: flex; gap: 40px; list-style: none;
}
.nav-links a {
font-family: var(--f-mono);
font-size: 11px;
color: var(--sand-dim);
letter-spacing: 0.14em;
text-transform: uppercase;
transition: color 0.25s;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute; bottom: -3px; left: 0; right: 0;
height: 1px;
background: var(--burgundy);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { transform: scaleX(1); }
/* ═══════════════════════════════════════════
HERO
═══════════════════════════════════════════ */
#hero {
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
width: 100%;
margin: 0;
padding: 0;
}
/* Hero panels bleed full width — true edge-to-edge, no gaps */
.hero-top,
.hero-right {
width: 100vw;
max-width: 100vw;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
box-sizing: border-box;
}
/* Top panel — dark */
.hero-top {
background: #3a2010;
display: flex;
align-items: center;
justify-content: center;
padding: 100px 64px 80px;
position: relative;
overflow: hidden;
}
/* Worn wood grain lines */
.hero-top::before {
content: '';
position: absolute; inset: 0;
background: repeating-linear-gradient(
170deg,
transparent,
transparent 40px,
rgba(255,255,255,0.012) 40px,
rgba(255,255,255,0.012) 41px
);
}
/* Vignette */
.hero-top::after {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse at 30% 60%, rgba(107,31,42,0.25) 0%, transparent 65%);
}
.hero-top-content {
position: relative; z-index: 1;
}
.hero-eyebrow {
font-family: var(--f-mono);
font-size: 10px;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--rope);
margin-bottom: 24px;
opacity: 0;
animation: riseUp 0.9s 0.2s var(--ease-smooth) forwards;
}
.hero-name {
font-family: var(--f-display);
font-weight: 300;
line-height: 0.95;
letter-spacing: -0.01em;
opacity: 0;
animation: riseUp 0.9s 0.35s var(--ease-smooth) forwards;
}
.hero-name .first {
display: block;
font-size: clamp(72px, 9vw, 110px);
color: var(--copper);
}
.hero-name .last {
display: block;
font-size: clamp(72px, 9vw, 110px);
color: var(--rope);
/*font-style: italic;*/
}
.hero-title-block {
margin-top: 36px;
padding-top: 28px;
border-top: 1px solid rgba(184,144,96,0.3);
opacity: 0;
animation: riseUp 0.9s 0.5s var(--ease-smooth) forwards;
}
.hero-title {
font-family: var(--f-body);
font-size: 13px;
font-weight: 300;
color: var(--parch-dk);
letter-spacing: 0.06em;
line-height: 1.9;
}
.hero-title strong {
color: var(--sand);
font-weight: 400;
}
/* Bottom panel — parchment */
.hero-right {
background: #e8d8c0;
display: flex;
align-items: center;
justify-content: center;
padding: 100px 64px 80px;
position: relative;
}
/* Map-like grid lines */
.hero-right::before {
content: '';
position: absolute; inset: 0;
background-image:
linear-gradient(rgba(90,50,20,0.06) 1px, transparent 1px),
linear-gradient(90deg, rgba(90,50,20,0.06) 1px, transparent 1px);
background-size: 48px 48px;
}
/* Aged corner stain */
.hero-right::after {
content: '';
position: absolute;
bottom: 0; right: 0;
width: 280px; height: 280px;
background: radial-gradient(circle at 100% 100%, rgba(107,31,42,0.08) 0%, transparent 70%);
}
.hero-right-content {
position: relative; z-index: 1;
max-width: 560px;
}
.hero-stat-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 28px;
opacity: 0;
animation: riseUp 0.9s 0.6s var(--ease-smooth) forwards;
}
.hero-stat {
display: flex;
flex-direction: column;
gap: 4px;
padding-bottom: 28px;
border-bottom: 1px solid var(--parch-dk);
}
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num {
font-family: var(--f-display);
font-size: 52px;
font-weight: 600;
color: var(--burgundy);
line-height: 1;
letter-spacing: -0.02em;
}
.stat-label {
font-family: var(--f-mono);
font-size: 10px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--sand-dim);
}
.hero-cta-row {
display: flex; gap: 14px; flex-wrap: wrap;
margin-top: 40px;
opacity: 0;
animation: riseUp 0.9s 0.75s var(--ease-smooth) forwards;
}
.btn-burg {
font-family: var(--f-mono);
font-size: 11px;
padding: 13px 26px;
background: var(--burgundy);
color: var(--parch-lt);
letter-spacing: 0.12em;
text-transform: uppercase;
border: none;
border-radius: 2px;
cursor: pointer;
transition: background 0.25s, transform 0.2s var(--ease-spring);
}
.btn-burg:hover { background: var(--burgundy2); transform: translateY(-2px); }
.btn-ghost {
font-family: var(--f-mono);
font-size: 11px;
padding: 13px 26px;
background: transparent;
color: var(--brown-md);
letter-spacing: 0.12em;
text-transform: uppercase;
border: 1px solid var(--parch-dk);
border-radius: 2px;
cursor: pointer;
transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--burgundy); color: var(--burgundy); }
/* Scroll hint */
.scroll-hint {
position: absolute;
bottom: 32px; left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
opacity: 0;
animation: fadeIn 1s 1.2s ease forwards;
}
.scroll-line {
width: 1px; height: 48px;
background: linear-gradient(to bottom, var(--rope), transparent);
animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label {
font-family: var(--f-mono);
font-size: 9px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--sand-dim);
writing-mode: vertical-rl;
}
/* ═══════════════════════════════════════════
SECTION SHELL
═══════════════════════════════════════════ */
section { position: relative; }
.sec-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 56px;
}
.sec-label {
font-family: var(--f-mono);
font-size: 10px;
letter-spacing: 0.24em;
text-transform: uppercase;
color: var(--burgundy);
margin-bottom: 10px;
}
.sec-title {
font-family: var(--f-display);
font-size: clamp(42px, 5vw, 68px);
font-weight: 400;
color: var(--brown-dk);
line-height: 1.05;
letter-spacing: -0.01em;
}
.sec-title em {
font-style: italic;
color: var(--burgundy);
}
.sec-sub {
font-size: 15px;
color: var(--sand-dim);
max-width: 520px;
line-height: 1.8;
margin-top: 16px;
font-weight: 300;
}
/* ═══════════════════════════════════════════
WORK SECTION
═══════════════════════════════════════════ */
#work {
background: #f2e8d4;
padding: 120px 0;
}
.work-header {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 40px;
margin-bottom: 64px;
flex-wrap: wrap;
}
.filter-row {
display: flex; gap: 6px; flex-wrap: wrap;
}
.filt {
font-family: var(--f-mono);
font-size: 10px;
padding: 7px 16px;
border-radius: 20px;
border: 1px solid var(--parch-dk);
background: transparent;
color: var(--sand-dim);
cursor: pointer;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: all 0.25s;
}
.filt.on, .filt:hover {
background: var(--burgundy);
border-color: var(--burgundy);
color: var(--parch-lt);
}
/* Vertically stacked cards — always single column, full viewport width with margins */
.bento {
display: flex;
flex-direction: column;
gap: 16px;
width: calc(100% - 3rem);
margin-left: auto;
margin-right: auto;
}
.card {
position: relative;
overflow: hidden;
border-radius: 4px;
cursor: pointer;
background: var(--parchment);
width: 100%;
height: 320px;
}
/* Remove span-based sizing — all cards are equal width and height in stacked layout */
.card-sm, .card-md, .card-lg, .card-xl, .card-tall {
grid-column: unset;
grid-row: unset;
height: 320px;
}
/* Card inner layers */
.card-bg {
position: absolute; inset: 0;
transition: transform 0.6s var(--ease-smooth);
}
.card:hover .card-bg { transform: scale(1.04); }
.card-overlay {
position: absolute; inset: 0;
background: linear-gradient(to top, rgba(26,15,10,0.85) 0%, rgba(26,15,10,0.1) 60%, transparent 100%);
transition: opacity 0.4s;
}
.card-overlay-hover {
position: absolute; inset: 0;
background: rgba(107,31,42,0.18);
opacity: 0;
transition: opacity 0.35s;
display: flex; align-items: center; justify-content: center;
}
.card:hover .card-overlay-hover { opacity: 1; }
.view-pill {
font-family: var(--f-mono);
font-size: 10px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--parch-lt);
border: 1px solid rgba(242,232,213,0.6);
padding: 8px 18px;
border-radius: 20px;
backdrop-filter: blur(8px);
background: rgba(107,31,42,0.3);
}
.card-body {
position: absolute;
bottom: 0; left: 0; right: 0;
padding: 24px;
z-index: 2;
}
.card-type {
font-family: var(--f-mono);
font-size: 9px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--rope);
margin-bottom: 6px;
}
.card-title {
font-family: var(--f-display);
font-size: 22px;
font-weight: 600;
color: var(--parch-lt);
line-height: 1.2;
margin-bottom: 8px;
}
.card-desc {
font-size: 12px;
color: rgba(242,232,213,0.72);
line-height: 1.6;
font-weight: 300;
display: none;
}
.card:hover .card-desc { display: block; }
.card-chips {
display: flex; flex-wrap: wrap; gap: 5px;
margin-top: 10px;
}
.chip {
font-family: var(--f-mono);
font-size: 9px;
padding: 3px 8px;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 2px;
color: rgba(242,232,213,0.7);
letter-spacing: 0.06em;
}
/* Card background patterns */
.bg-web {
background:
linear-gradient(135deg, #1e2d3d 0%, #0f1a28 100%);
}
.bg-web::after {
content: '';
position: absolute; inset: 0;
background-image: linear-gradient(rgba(184,144,96,0.06) 1px, transparent 1px),
linear-gradient(90deg, rgba(184,144,96,0.06) 1px, transparent 1px);
background-size: 32px 32px;
}
.bg-fintech {
background: linear-gradient(135deg, #0d1f1a 0%, #0a1510 100%);
}
.bg-fintech::after {
content: '';
position: absolute; inset: 0;
background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(74,170,154,0.04) 20px, rgba(74,170,154,0.04) 21px);
}
.bg-motion {
background: linear-gradient(135deg, #1a0a14 0%, #2a0f1e 100%);
}
.bg-motion::after {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse at 50% 50%, rgba(139,47,62,0.3) 0%, transparent 60%);
}
.bg-brand {
background: linear-gradient(160deg, #1a140a 0%, #2e1e0e 100%);
}
.bg-brand::after {
content: '';
position: absolute; inset: 0;
background: repeating-linear-gradient(170deg, transparent, transparent 60px, rgba(184,144,96,0.05) 60px, rgba(184,144,96,0.05) 61px);
}
.bg-reel {
background: linear-gradient(135deg, #0f0a1a 0%, #1a1030 100%);
}
.bg-reel::after {
content: '';
position: absolute; inset: 0;
background: radial-gradient(circle at 50% 30%, rgba(107,31,42,0.4) 0%, transparent 55%);
}
.bg-ux {
background: linear-gradient(135deg, #1e1a10 0%, #2e2414 100%);
}
/* Placeholder browser mockup */
.browser-mock {
position: absolute;
top: 20px; left: 20px; right: 20px;
background: rgba(255,255,255,0.06);
border-radius: 6px;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.08);
}
.browser-bar {
height: 24px;
background: rgba(0,0,0,0.3);
display: flex; align-items: center;
padding: 0 10px; gap: 5px;
}
.bdot { width: 7px; height: 7px; border-radius: 50%; opacity: 0.6; }
.bd-r { background: #c94c4c; }
.bd-y { background: #c9a84c; }
.bd-g { background: #4caf7d; }
.browser-url {
flex: 1; height: 12px;
background: rgba(255,255,255,0.07);
border-radius: 2px; margin-left: 8px;
}
.browser-content {
padding: 16px;
display: flex; gap: 10px;
}
.bcol {
flex: 1;
display: flex; flex-direction: column; gap: 6px;
}
.brow {
height: 6px; border-radius: 2px;
background: rgba(255,255,255,0.08);
}
.brow.w60 { width: 60%; }
.brow.w80 { width: 80%; }
.brow.w40 { width: 40%; }
.brow.w90 { width: 90%; }
/* Video placeholder */
.reel-mock {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.play-ring {
width: 72px; height: 72px;
border-radius: 50%;
border: 2px solid rgba(242,232,213,0.4);
display: flex; align-items: center; justify-content: center;
transition: border-color 0.3s, transform 0.3s var(--ease-spring);
}
.card:hover .play-ring {
border-color: var(--rope);
transform: scale(1.1);
}
.play-tri {
width: 0; height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 16px solid rgba(242,232,213,0.7);
margin-left: 4px;
transition: border-left-color 0.3s;
}
.card:hover .play-tri { border-left-color: var(--rope); }
.reel-label {
font-family: var(--f-mono);
font-size: 9px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: rgba(242,232,213,0.4);
}
/* ═══════════════════════════════════════════
DEMO REEL SECTION
═══════════════════════════════════════════ */
#reel {
padding: 140px 0;
background: #3a2010;
overflow: hidden;
position: relative;
}
#reel::before {
content: '';
position: absolute; inset: 0;
background: repeating-linear-gradient(
160deg,
transparent,
transparent 80px,
rgba(255,255,255,0.008) 80px,
rgba(255,255,255,0.008) 81px
);
}
#reel::after {
content: '';
position: absolute;
top: -200px; right: -200px;
width: 600px; height: 600px;
border-radius: 50%;
background: radial-gradient(circle, rgba(107,31,42,0.2) 0%, transparent 65%);
}
.reel-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
position: relative; z-index: 1;
}
.reel-text .sec-title { color: var(--parch-lt); }
.reel-text .sec-title em { color: var(--rope); }
.reel-text .sec-sub { color: var(--sand); }
.reel-text .sec-label { color: var(--rope); }
.reel-note {
margin-top: 28px;
padding: 16px 20px;
border-left: 2px solid var(--burgundy);
background: rgba(107,31,42,0.15);
border-radius: 0 4px 4px 0;
}
.reel-note p {
font-family: var(--f-mono);
font-size: 11px;
color: var(--sand);
line-height: 1.7;
letter-spacing: 0.04em;
}
.reel-note span { color: var(--rope); }
.reel-player {
position: relative;
aspect-ratio: 16/9;
background: #0a0608;
border-radius: 6px;
overflow: hidden;
border: 1px solid rgba(184,144,96,0.15);
box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,144,96,0.08);
}
.reel-player-bg {
position: absolute; inset: 0;
background: radial-gradient(ellipse at 50% 40%, rgba(107,31,42,0.35) 0%, transparent 65%);
}
.reel-filmstrip {
position: absolute;
top: 0; left: 0; right: 0;
height: 28px;
background: rgba(0,0,0,0.6);
display: flex; align-items: center;
gap: 3px; padding: 0 8px;
overflow: hidden;
}
.reel-hole {
width: 12px; height: 12px;
border-radius: 2px;
border: 1.5px solid rgba(255,255,255,0.12);
flex-shrink: 0;
}
.reel-center {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
display: flex; flex-direction: column;
align-items: center; gap: 18px;
text-align: center;
}
.reel-play-btn {
width: 80px; height: 80px;
border-radius: 50%;
background: rgba(107,31,42,0.6);
border: 2px solid rgba(184,144,96,0.4);
display: flex; align-items: center; justify-content: center;
cursor: pointer;
transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
backdrop-filter: blur(8px);
}
.reel-play-btn:hover {
background: var(--burgundy);
border-color: var(--rope);
transform: scale(1.08);
}
.reel-play-tri {
width: 0; height: 0;
border-top: 14px solid transparent;
border-bottom: 14px solid transparent;
border-left: 22px solid rgba(242,232,213,0.9);
margin-left: 6px;
}
.reel-title-overlay {
font-family: var(--f-display);
font-size: 18px;
font-weight: 600;
color: var(--parch-lt);
letter-spacing: 0.04em;
}
.reel-sub-overlay {
font-family: var(--f-mono);
font-size: 10px;
color: var(--sand);
letter-spacing: 0.2em;
text-transform: uppercase;
}
.reel-timecode {
position: absolute;
bottom: 12px; left: 16px;
font-family: var(--f-mono);
font-size: 11px;
color: rgba(184,144,96,0.5);
letter-spacing: 0.12em;
}
/* ═══════════════════════════════════════════
ABOUT SECTION
═══════════════════════════════════════════ */
#about {
padding: 140px 0;
background: #e8d8c0;
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 100px;
align-items: start;
}
.about-text p {
font-size: 15.5px;
color: var(--brown-md);
line-height: 1.9;
margin-bottom: 20px;
font-weight: 300;
}
.about-text p strong {
color: var(--burgundy);
font-weight: 500;
}
.about-divider {
width: 48px; height: 2px;
background: var(--burgundy);
margin: 36px 0;
}
.skill-stack {
display: flex;
flex-direction: column;
gap: 24px;
}
/*.skill-row { }*/
.skill-row-label {
font-family: var(--f-mono);
font-size: 9px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--burgundy);
margin-bottom: 10px;
}
.skill-pills {
display: flex; flex-wrap: wrap; gap: 7px;
}
.pill {
font-family: var(--f-mono);
font-size: 10px;
padding: 5px 12px;
border-radius: 2px;
background: var(--cream);
border: 1px solid var(--parch-dk);
color: var(--brown-md);
letter-spacing: 0.06em;
transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.pill:hover {
background: var(--burgundy);
border-color: var(--burgundy);
color: var(--parch-lt);
}
/* ═══════════════════════════════════════════
EXPERIENCE TIMELINE
═══════════════════════════════════════════ */
#experience {
padding: 140px 0;
background: #f2e8d4;
}
.timeline {
position: relative;
max-width: 820px;
}
.timeline::before {
content: '';
position: absolute;
left: 0; top: 6px; bottom: 0;
width: 1px;
background: linear-gradient(to bottom, var(--burgundy), var(--parch-dk));
}
.tl-item {
display: grid;
grid-template-columns: 160px 1fr;
gap: 40px;
padding: 0 0 56px 0;
position: relative;
}
.tl-item::before {
content: '';
position: absolute;
left: -5px; top: 4px;
width: 11px; height: 11px;
border-radius: 50%;
background: var(--burgundy);
border: 2px solid var(--cream);
box-shadow: 0 0 0 3px rgba(107,31,42,0.15);
z-index: 1;
}
.tl-dates {
font-family: var(--f-mono);
font-size: 11px;
color: var(--sand-dim);
padding-top: 3px;
padding-left: 20px;
letter-spacing: 0.06em;
}
.tl-role {
font-family: var(--f-display);
font-size: 22px;
font-weight: 600;
color: var(--brown-dk);
margin-bottom: 4px;
line-height: 1.2;
}
.tl-co {
font-family: var(--f-mono);
font-size: 11px;
color: var(--burgundy);
letter-spacing: 0.1em;
margin-bottom: 12px;
}
.tl-desc {
font-size: 14px;
color: var(--brown-md);
line-height: 1.75;
font-weight: 300;
}
/* ═══════════════════════════════════════════
CONTACT
═══════════════════════════════════════════ */
#contact {
padding: 160px 0;
background: #3a2010;
position: relative;
overflow: hidden;
text-align: center;
}
#contact::before {
content: '';
position: absolute; inset: 0;
background: repeating-linear-gradient(
170deg,
transparent,
transparent 60px,
rgba(255,255,255,0.008) 60px,
rgba(255,255,255,0.008) 61px
);
}
#contact::after {
content: '';
position: absolute;
bottom: -300px; left: 50%;
transform: translateX(-50%);
width: 700px; height: 700px;
border-radius: 50%;
background: radial-gradient(circle, rgba(107,31,42,0.3) 0%, transparent 65%);
}
.contact-inner {
position: relative; z-index: 1;
max-width: 680px;
margin: 0 auto;
}
.contact-inner .sec-title { color: var(--parch-lt); }
.contact-inner .sec-title em { color: var(--rope); }
.contact-inner .sec-label { color: var(--rope); }
.contact-tagline {
font-size: 16px;
color: var(--sand);
line-height: 1.8;
margin-top: 16px;
font-weight: 300;
}
.contact-links {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 56px;
align-items: center;
}
.contact-link {
display: flex; align-items: center; gap: 14px;
font-family: var(--f-mono);
font-size: 12px;
padding: 16px 32px;
border: 1px solid rgba(184,144,96,0.2);
border-radius: 3px;
color: var(--sand);
background: rgba(255,255,255,0.03);
backdrop-filter: blur(8px);
transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.25s var(--ease-spring);
width: 360px;
letter-spacing: 0.06em;
}
.contact-link:hover {
border-color: var(--burgundy);
color: var(--parch-lt);
background: rgba(107,31,42,0.2);
transform: translateX(4px);
}
.contact-link .ci { font-size: 17px; }
/* ═══════════════════════════════════════════
FOOTER
═══════════════════════════════════════════ */
footer {
padding: 28px 56px;
background: #2e1408;
display: flex; align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 12px;
}
.foot-copy {
font-family: var(--f-mono);
font-size: 10px;
color: var(--sand-dim);
letter-spacing: 0.1em;
}
.foot-built {
font-family: var(--f-mono);
font-size: 10px;
color: var(--sand-dim);
letter-spacing: 0.06em;
}
.foot-built span { color: var(--burgundy); }
/* ═══════════════════════════════════════════
SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.up { opacity: 1; transform: none; }
/* ═══════════════════════════════════════════
ANIMATIONS
═══════════════════════════════════════════ */
@keyframes riseUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes scrollPulse {
0%, 100% { opacity: 0.3; transform: scaleY(1); }
50% { opacity: 1; transform: scaleY(1.15); }
}
/* ═══════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════ */
/* ─────────────────────────────────────────────
BREAKPOINT 1 — Mobile (≤ 768px)
───────────────────────────────────────────── */
@media (max-width: 768px) {
nav { padding: 0 24px; }
.nav-links { display: none; }
.sec-inner { padding: 0 24px; }
#work, #reel, #about, #experience, #contact { padding: 80px 0; }
.bento {
width: calc(100% - 2rem); /* 1rem each side on small screens */
}
.hero-top { padding: 90px 24px 48px; }
.hero-right { padding: 48px 24px 64px; }
.card, .card-sm, .card-md, .card-lg, .card-xl, .card-tall { height: 260px; }
.tl-item { grid-template-columns: 1fr; gap: 8px; }
.tl-item::before { display: none; }
.timeline::before { display: none; }
.tl-dates { padding-left: 0; }
.contact-link { width: 100%; }
footer { padding: 24px; }
.about-grid { grid-template-columns: 1fr; gap: 56px; }
.reel-inner { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
BREAKPOINT 2 — Tablet (769px – 1024px)
───────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
nav { padding: 0 32px; }
.sec-inner { padding: 0 32px; }
.bento {
width: calc(100% - 4rem); /* 2rem each side */
}
.hero-top { padding: 110px 40px 72px; }
.hero-right { padding: 64px 40px 80px; }
.card, .card-sm, .card-md, .card-lg, .card-xl, .card-tall { height: 300px; }
.about-grid { grid-template-columns: 1fr; gap: 56px; }
.reel-inner { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
BREAKPOINT 3 — Desktop (1025px – 1200px)
───────────────────────────────────────────── */
@media (min-width: 1025px) and (max-width: 1200px) {
nav { padding: 0 48px; }
.sec-inner { padding: 0 48px; }
.bento {
width: calc(100% - 6rem); /* 3rem each side */
}
.hero-top { padding: 110px 64px 80px; }
.hero-right { padding: 72px 64px 80px; }
.card, .card-sm, .card-md, .card-lg, .card-xl, .card-tall { height: 320px; }
.about-grid { grid-template-columns: 1fr 1fr; }
.reel-inner { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────
BREAKPOINT 4 — Ultrawide (1201px +)
───────────────────────────────────────────── */
@media (min-width: 1201px) {
nav { padding: 0 56px; }
.sec-inner { padding: 0 56px; }
.bento {
width: calc(100% - 7rem); /* 3.5rem each side — generous breathing room */
max-width: 1800px;
}
.hero-top { padding: 110px 80px 80px; }
.hero-right { padding: 80px 80px 80px; }
.card, .card-sm, .card-md, .card-lg, .card-xl, .card-tall { height: 360px; }
.about-grid { grid-template-columns: 1fr 1fr; }
.reel-inner { grid-template-columns: 1fr 1fr; }
}
