/* =========================================================
   Arunabho Kanti Som — Portfolio
   Refined light theme · serif/sans hybrid · 3D surfaces
   ========================================================= */

:root {
    --bg: #ECEAE3;
    --bg-2: #E6E3DA;
    --bg-card: #F7F5F0;
    --bg-card-2: #FCFBF7;
    --ink: #0E0E0D;
    --ink-soft: #2A2A28;
    --muted: #6A6A65;
    --muted-2: #9A9893;
    --border: #DBD6CA;
    --border-strong: #C5BFB1;
    --green: #2BB673;
    --serif: 'Instrument Serif', 'Times New Roman', serif;
    --script: 'Caveat', 'Instrument Serif', cursive;
    --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --max: 1200px;
    --radius: 18px;
    --radius-sm: 14px;
    --radius-xs: 10px;

    /* Layered card shadow — the "3D" feel */
    --shadow-rest:
        inset 0 1px 0 rgba(255,255,255,0.85),
        inset 0 0 0 1px rgba(255,255,255,0.4),
        0 1px 2px rgba(15,15,15,0.04),
        0 6px 14px -6px rgba(15,15,15,0.06),
        0 18px 32px -16px rgba(15,15,15,0.14);
    --shadow-hover:
        inset 0 1px 0 rgba(255,255,255,1),
        inset 0 0 0 1px rgba(255,255,255,0.55),
        0 2px 4px rgba(15,15,15,0.06),
        0 14px 28px -10px rgba(15,15,15,0.12),
        0 32px 56px -16px rgba(15,15,15,0.22);

    --dot-bg: radial-gradient(circle, rgba(15,15,15,0.22) 1px, transparent 1.6px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, #F2F0E9 0%, transparent 60%),
        var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Page grain — very subtle film texture */
.grain {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Reveal-on-scroll */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Header ---------- */
.site-header {
    max-width: var(--max);
    margin: 0 auto;
    padding: 28px 36px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
}
.brand {
    font-family: var(--serif);
    font-size: 28px;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.brand span { color: var(--green); }
.site-nav a {
    margin-left: 30px;
    font-size: 14px;
    color: var(--muted);
    transition: color .2s ease;
    position: relative;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ===================== HERO ===================== */
.hero {
    position: relative;
    max-width: var(--max);
    margin: 36px auto 0;
    padding: 36px 36px 96px;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}
.stamp {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    font-variant-numeric: tabular-nums;
}
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 13px;
    color: var(--ink-soft);
    box-shadow: var(--shadow-rest);
}
.status-dot {
    width: 9px; height: 9px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.18);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.18); }
    50%      { box-shadow: 0 0 0 6px rgba(43, 182, 115, 0.06); }
}

/* The big stage with portrait + giant name */
.hero-stage {
    position: relative;
    margin: 72px 0 16px;
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    align-items: end;
    gap: 36px;
    min-height: 360px;
}

/* Faint cursive watermark */
.hero-script {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--script);
    font-size: clamp(160px, 26vw, 380px);
    color: rgba(14,14,13,0.045);
    letter-spacing: -0.02em;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    user-select: none;
}

.hero-portrait {
    position: relative;
    z-index: 2;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-rest);
    background: linear-gradient(180deg, #fafaf6 0%, #ecebe4 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}
.hero-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) contrast(1.04);
}

.hero-headline {
    position: relative;
    z-index: 1;
    padding-bottom: 18px;
}
.hero-name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(70px, 14vw, 200px);
    line-height: 0.86;
    letter-spacing: -0.045em;
    margin: 0;
    color: var(--ink);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.18em;
}
.hero-name .word-italic {
    font-style: italic;
    color: var(--ink);
    position: relative;
}
.hero-name .word-italic::after {
    content: ".";
    color: var(--green);
}

.hero-tag {
    margin: 22px 0 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.45;
    color: var(--muted);
    max-width: 320px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.hero-tag-arrow {
    font-family: var(--sans);
    font-style: normal;
    color: var(--ink);
    font-size: 16px;
    line-height: 1;
    margin-top: 6px;
}

/* Hero meta row (social + bio) */
.hero-meta {
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: start;
    max-width: 720px;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--ink);
    color: #fff;
    border-radius: 50%;
    transition: transform .25s ease, background .25s ease;
    box-shadow: 0 6px 16px -8px rgba(15,15,15,0.45);
}
.social-row a:hover { transform: translateY(-3px) scale(1.05); background: #000; }
.hero-bio {
    margin: 0;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 520px;
}

/* Discover & CTA — each on its own line */
.hero-discover {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}
.discover-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 3px;
    transition: color .25s, gap .25s;
}
.discover-link span {
    display: inline-block;
    transition: transform .35s ease;
}
.discover-link:hover { color: var(--ink); gap: 12px; }
.discover-link:hover span { transform: translateY(4px); }

.hero-cta {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

/* ===================== CTA PILL ===================== */
.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 9px 22px 9px 9px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        0 8px 22px -10px rgba(0,0,0,0.55);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.cta-pill:hover {
    transform: translateY(-3px);
    background: #000;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.22),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        0 18px 32px -14px rgba(0,0,0,0.65);
}
.cta-pill.dark { background: #111; color: #fff; }
.cta-pill.small { padding: 7px 16px 7px 7px; font-size: 13px; }
.cta-pill.large { padding: 12px 28px 12px 12px; font-size: 15px; }
.cta-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    flex: 0 0 auto;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}
.cta-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }

/* ===================== SECTION primitives ===================== */
.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 120px 36px;
    position: relative;
}
.section-head {
    margin-bottom: 64px;
    position: relative;
}
.section-head.center { text-align: center; }

/* Dotted halftone backdrop behind section headings */
.section-head::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -55%);
    width: min(520px, 80%);
    height: 240px;
    background-image: var(--dot-bg);
    background-size: 14px 14px;
    -webkit-mask-image: radial-gradient(ellipse 55% 50% at 50% 50%, #000 0%, transparent 75%);
            mask-image: radial-gradient(ellipse 55% 50% at 50% 50%, #000 0%, transparent 75%);
    opacity: 0.85;
    z-index: -1;
    pointer-events: none;
}

/* Refined kicker pill */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--ink);
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 14px 6px 12px;
    margin-bottom: 20px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 4px 10px -6px rgba(15,15,15,0.18);
    letter-spacing: 0.005em;
}
.kicker-dot {
    width: 6px; height: 6px;
    background: var(--ink);
    border-radius: 50%;
    flex: 0 0 auto;
}
.kicker-star {
    font-family: var(--sans);
    font-style: normal;
    color: var(--muted-2);
    font-size: 12px;
    line-height: 1;
    margin-left: 2px;
}

.section-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(32px, 4.4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--ink);
}
.section-title em {
    font-style: italic;
    color: var(--ink);
    position: relative;
}
.section-title em::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ink) 30%, var(--ink) 70%, transparent);
    opacity: 0.25;
}

/* ===================== SURFACE (3D cards) ===================== */
.surface {
    position: relative;
    background:
        linear-gradient(180deg, #FFFFFF 0%, #F8F6F0 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-rest);
    transition:
        transform .35s cubic-bezier(.2,.7,.2,1),
        box-shadow .35s cubic-bezier(.2,.7,.2,1),
        border-color .35s ease;
    overflow: hidden;
}
.surface::before {
    /* Top-left specular highlight */
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 10% 0%, rgba(255,255,255,0.75), transparent 55%);
    pointer-events: none;
    opacity: 0.9;
    z-index: 1;
}
.surface::after {
    /* Faint bottom edge depth */
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(15,15,15,0.025));
    pointer-events: none;
    z-index: 1;
}
.surface > * { position: relative; z-index: 2; }
.surface:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-strong);
}

/* ===================== PROJECTS ===================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.project-card { display: flex; flex-direction: column; }
.project-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.project-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.project-card:hover .project-thumb img { transform: scale(1.04); }
.project-meta { padding: 24px 26px 28px; }
.project-meta h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 26px;
    margin: 0 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    letter-spacing: -0.015em;
}
.project-meta .year {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.chip {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(15,15,15,0.04);
    border: 1px solid rgba(15,15,15,0.08);
    border-radius: 999px;
    font-size: 12px;
    color: var(--ink-soft);
    backdrop-filter: blur(4px);
}
.project-summary {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 16px;
}
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 2px;
    transition: color .25s, border-color .25s, gap .25s;
}
.project-link span { display: inline-block; transition: transform .25s; }
.project-link:hover { color: var(--green); border-color: var(--green); gap: 10px; }
.project-link:hover span { transform: translateX(3px); }

/* ===================== BENEFITS ===================== */
.benefits-stack {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.benefit-card {
    display: flex;
    gap: 20px;
    padding: 24px 26px;
    align-items: flex-start;
}
.benefit-icon {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, #fff, #f0eee7);
    color: var(--ink);
    flex: 0 0 auto;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 4px 10px -6px rgba(15,15,15,0.12);
}
.benefit-card h4 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15.5px;
    margin: 0 0 6px;
    color: var(--ink);
}
.benefit-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.65;
}

/* ===================== SERVICES ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card { padding: 24px 24px 26px; }
.service-icon {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, #fff, #f0eee7);
    color: var(--ink);
    margin-bottom: 20px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 4px 10px -6px rgba(15,15,15,0.12);
}
.service-card h4 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15.5px;
    margin: 0 0 8px;
    color: var(--ink);
}
.service-card p {
    font-size: 13.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* Center the small "Get in touch" pill below the services title */
.section-head .cta-pill.small { margin-top: 20px; }

/* ===================== PROCESS ===================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.process-card { padding: 24px; }
.process-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px;
}
.process-num {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.01em;
}
.process-icon {
    width: 32px; height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-soft);
    background: linear-gradient(180deg, #fff, #f0eee7);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 3px 8px -4px rgba(15,15,15,0.18);
}
.process-card h4 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15.5px;
    margin: 0 0 8px;
    color: var(--ink);
}
.process-card p {
    font-size: 13.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ===================== EXPERIENCE ===================== */
.experience-list {
    max-width: 920px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.experience-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    transition: background .35s ease, padding .35s ease;
    position: relative;
}
.experience-row::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.experience-row:hover::before { opacity: 1; }

.experience-when {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.exp-year {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--ink);
    line-height: 1.3;
}
.exp-place {
    font-size: 12px;
    color: var(--muted);
}

.experience-what h4 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 17px;
    margin: 0 0 14px;
    color: var(--ink);
    letter-spacing: -0.005em;
}
.experience-what .exp-co {
    font-weight: 400;
    color: var(--muted);
}
.experience-what ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}
.experience-what li { margin-bottom: 6px; }
.experience-what li::marker { color: var(--border-strong); }

/* ===================== INSPIRATION ===================== */
.inspiration-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 48px 44px;
    text-align: center;
}
.quote-mark {
    font-family: var(--serif);
    font-size: 96px;
    line-height: 0.6;
    color: var(--border-strong);
    display: block;
    margin-bottom: 6px;
}
.inspiration-card blockquote { margin: 0 0 22px; }
.inspiration-card blockquote p {
    font-family: var(--serif);
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.32;
    color: var(--ink);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.inspiration-card cite {
    font-style: normal;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.inspiration-note {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================== CTA ===================== */
.cta-section { padding-bottom: 48px; }
.cta-card {
    padding: 72px 36px 64px;
    text-align: center;
}
.cta-card::after {
    /* Dotted halftone behind CTA */
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--dot-bg);
    background-size: 14px 14px;
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000, transparent 75%);
            mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000, transparent 75%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.cta-card > * { position: relative; z-index: 2; }
.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 16px 6px 6px;
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 4px 10px -6px rgba(15,15,15,0.18);
}
.cta-tag .cta-avatar { width: 26px; height: 26px; }
.cta-card .section-title { margin-bottom: 28px; }

/* ===================== FOOTER ===================== */
.site-footer {
    max-width: var(--max);
    margin: 32px auto 0;
    padding: 40px 36px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--muted);
}
.footer-mail { color: var(--ink); transition: color .25s; }
.footer-mail:hover { color: var(--green); }
.footer-social {
    display: flex;
    gap: 14px;
    justify-content: center;
}
.footer-social a {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--ink);
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 2px 6px -3px rgba(15,15,15,0.18);
}
.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 8px 18px -6px rgba(15,15,15,0.32);
}
.footer-top {
    justify-self: end;
    transition: color .25s, gap .25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-top:hover { color: var(--ink); gap: 10px; }
.footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted-2);
    font-size: 12px;
    margin-top: 16px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .hero-stage { grid-template-columns: minmax(180px, 240px) 1fr; gap: 28px; }
}

@media (max-width: 960px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: 1fr; }
    .hero-stage {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        min-height: 0;
    }
    .hero-portrait {
        max-width: 240px;
        margin: 0 auto;
    }
    .hero-tag { margin-left: auto; margin-right: auto; }
    .hero-name { justify-content: center; }
    .hero-meta { grid-template-columns: 1fr; }
    .social-row { justify-content: center; }
    .hero-bio { margin-left: auto; margin-right: auto; text-align: center; }
}

@media (max-width: 720px) {
    .site-header { padding: 22px 22px 0; flex-wrap: wrap; gap: 12px; }
    .site-nav a { margin-left: 0; margin-right: 20px; }
    .hero { padding: 28px 22px 72px; margin-top: 22px; }
    .hero-script { font-size: clamp(120px, 30vw, 220px); }
    .section { padding: 80px 22px; }
    .experience-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 28px 0;
    }
    .experience-when { flex-direction: row; gap: 10px; align-items: baseline; }
    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 22px;
    }
    .footer-social { justify-content: center; }
    .footer-top { justify-self: center; }
    .projects-grid { gap: 20px; }
    .services-grid, .process-grid { grid-template-columns: 1fr; }
    .inspiration-card { padding: 32px 24px; }
    .cta-card { padding: 48px 24px; }
}

/* Honor reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; opacity: 1; transform: none; }
    .status-dot { animation: none; }
    * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
