/* =========================================
   1. DESIGN SYSTEM & VARIABLES
   ========================================= */
:root {
    /* ✏️ SCHIMBĂ AICI: Palette-ul de culori */
    --bg-cream: #F5F2E8;
    --black: #121212;
    --white: #FFFDF7;
    --accent-yellow: #FFC247;
    --paper-yellow: #FFF9E6;
    --paper-tint: #F0EBD8;
    
    --border-thick: 3.5px solid var(--black);
    --border-sketch: 2.5px solid var(--black);
    --shadow-hard: 6px 6px 0px var(--black);
    --shadow-soft: 4px 4px 0px var(--black);
    
    --font-hand: 'Kalam', cursive;
    --font-mono: 'Space Mono', monospace;
    --font-sans: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-cream);
    color: var(--black);
    font-family: var(--font-hand);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* SKETCHY ICON BASE */
.sketch-icon {
    display: inline-block;
    vertical-align: middle;
    stroke: var(--black);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.sketch-icon.inline-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}

/* =========================================
   2. BACKGROUND & LAYOUT (Sketchboard Polish)
   ========================================= */
.canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Paper Grid + Subtle Soft Grain Texture */
.canvas-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(18, 18, 18, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(18, 18, 18, 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.85;
}

/* Soft Ambient Glow Highlights */
.canvas-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 12%, rgba(255, 194, 71, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(255, 194, 71, 0.1) 0%, transparent 40%);
}

/* Halftone Patches (Multi-region layout integration) */
.halftone-patch {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(var(--black) 18%, transparent 19%);
    opacity: 0.07;
}

.patch-top-left {
    top: 40px;
    left: -40px;
    width: 260px;
    height: 200px;
    background-size: 8px 8px;
    border-radius: 40% 60% 50% 50%;
}

.patch-header {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 150px;
    background-size: 10px 10px;
    border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;
}

.patch-hero-right {
    top: 260px;
    right: -30px;
    width: 310px;
    height: 240px;
    background-size: 9px 9px;
    opacity: 0.09;
    border-radius: 60% 40% 30% 70%;
}

.patch-process-left {
    top: 880px;
    left: -50px;
    width: 340px;
    height: 300px;
    background-size: 10px 10px;
    opacity: 0.08;
    border-radius: 30% 70% 60% 40%;
}

.patch-right {
    top: 48%;
    right: -50px;
    width: 280px;
    height: 220px;
    background-size: 9px 9px;
    opacity: 0.08;
}

.patch-about-right {
    top: 1520px;
    right: 2%;
    width: 260px;
    height: 220px;
    background-size: 8px 8px;
    opacity: 0.07;
}

.patch-bottom-left {
    bottom: 120px;
    left: -30px;
    width: 320px;
    height: 280px;
    background-size: 8px 8px;
    opacity: 0.1;
    border-radius: 40% 60% 30% 70%;
}

/* Margin Hand-written Annotations */
.bg-annotation {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(18, 18, 18, 0.32);
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 1;
}

.note-hero-left { top: 75px; left: 32px; transform: rotate(-90deg); transform-origin: left top; }
.note-hero-right { top: 120px; right: 40px; transform: rotate(4deg); }
.note-mid-right { top: 610px; right: 5%; transform: rotate(-3deg); }
.note-about-left { top: 1420px; left: 25px; transform: rotate(-90deg); transform-origin: left top; }
.note-contact-bg { bottom: 340px; right: 6%; transform: rotate(5deg); }

/* Floating Blueprint Fragment Hint */
.mini-blueprint-hint {
    position: absolute;
    top: 680px;
    right: 3%;
    width: 120px;
    opacity: 0.38;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: rotate(4deg);
    pointer-events: none;
}

.blueprint-svg {
    width: 100%;
    height: auto;
}

.blueprint-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: rgba(18, 18, 18, 0.6);
}

/* Vector Canvas SVG Layer */
.canvas-svg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1150px;
    padding: 0 24px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Responsive Hide for Extreme Side Background Details */
@media (max-width: 1024px) {
    .mini-blueprint-hint,
    .bg-annotation {
        display: none;
    }
}
/* =========================================
   3. NAVBAR
   ========================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0 12px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.logo {
    position: relative;
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    padding: 6px 16px;
    background: transparent;
    border: 3.5px solid transparent;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}
/* ==========================================
   CENTERED SKETCH TERMINAL CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header & Annotation */
.contact-header {
    position: relative;
    margin-bottom: 24px;
    display: inline-block;
}

.contact-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hand-annotation {
    position: absolute;
    bottom: -22px;
    right: -15px;
    font-family: var(--font-hand, 'Kalam', cursive);
    font-size: 1.25rem;
    color: #444;
    transform: rotate(-4deg);
    white-space: nowrap;
}

/* Main Object Wrapper & Sketch Annotations */
.composer-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 32px auto 36px auto;
}

.sketch-tag {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--accent-pink, #FF6B6B);
    color: #FFF;
    font-family: var(--font-mono, 'Space Mono', monospace);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border: 1.5px solid #121212;
    box-shadow: 2px 2px 0px #121212;
    transform: rotate(3deg);
    z-index: 3;
}

.sketch-patch {
    position: absolute;
    top: -24px;
    left: -28px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(#121212 15%, transparent 16%);
    background-size: 12px 12px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

/* Terminal Window Object */
.terminal-window {
    position: relative;
    z-index: 1;
    background: #18181B;
    border: var(--border-width, 2.5px) solid var(--border-color, #121212);
    box-shadow: var(--shadow-hover, 6px 6px 0px #121212);
    border-radius: 6px;
    text-align: left;
    overflow: hidden;
}

.terminal-bar {
    background: #27272A;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #3F3F46;
    position: relative;
}

.win-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.d-red { background: #EF4444; }
.d-yellow { background: #F59E0B; }
.d-green { background: #10B981; }

.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono, 'Space Mono', monospace);
    font-size: 0.78rem;
    color: #A1A1AA;
    font-weight: 700;
}

/* Form Styles */
.terminal-form {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-family: var(--font-mono, 'Space Mono', monospace);
    font-size: 0.75rem;
    color: var(--accent-green, #4AF626);
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    background: #09090B;
    border: 1.5px solid #3F3F46;
    color: #FFF;
    padding: 12px 14px;
    font-family: var(--font-mono, 'Space Mono', monospace);
    font-size: 0.88rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--accent-green, #4AF626);
}

.form-field textarea {
    resize: vertical;
    min-height: 110px;
}

/* Large Yellow CTA */
.btn-send {
    margin-top: 6px;
    background: var(--accent-yellow, #FFE600);
    color: #121212;
    font-family: var(--font-mono, 'Space Mono', monospace);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 24px;
    border: 2px solid #121212;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 4px 4px 0px #FFF;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    text-align: center;
}

.btn-send:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #FFF;
    background: #FFF066;
}

.btn-send:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0px #FFF;
}

/* Text Links Underneath */
.contact-footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono, 'Space Mono', monospace);
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
}

.contact-footer-links a {
    color: var(--text-color, #121212);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
}
/* =========================================
   CINEMATIC EASTER EGG (Full-Bleed Scroll)
   ========================================= */

.cinematic-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
    /* Seamless vertical gradient blending into cream background */
    background: linear-gradient(
        to bottom, 
        transparent 0%, 
        #080809 22%, 
        #080809 78%, 
        transparent 100%
    );
    
    opacity: 0.2;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-section.is-active {
    opacity: 1;
}

/* Global dimming for canvas grid when section is active */
body.cinematic-mode .canvas-bg {
    opacity: 0.05;
    transition: opacity 1.2s ease;
}

/* Red / Orange Ambient Glow Behind Text */
.cinematic-glow {
    position: absolute;
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(235, 68, 50, 0.25) 0%, rgba(255, 140, 0, 0.08) 50%, transparent 75%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.8s ease 0.3s;
}

.cinematic-section.is-active .cinematic-glow {
    opacity: 1;
}

/* Quick Impact Flash */
.cinematic-flash {
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.cinematic-section.is-active .cinematic-flash {
    animation: flashImpact 0.35s cubic-bezier(0.1, 0.9, 0.2, 1) 1.5s forwards;
}

/* Centered Content Container */
.cinematic-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    width: 100%;
    max-width: 1000px;
}

.cinematic-section.is-active .cinematic-content {
    animation: cameraShake 0.3s ease-in-out 1.55s 1;
}

/* Line 1: ROMKA WILL RETURN IN... */
.cinematic-teaser {
    font-family: var(--font-mono, monospace);
    font-size: clamp(0.85rem, 1.8vw, 1.15rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(244, 244, 240, 0.65);
    opacity: 0;
    transform: translateY(12px);
    margin-bottom: 20px;
}

.cinematic-section.is-active .cinematic-teaser {
    animation: revealTeaser 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Line 2: THE NEXT PROJECT */
.cinematic-title {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 35px rgba(235, 68, 50, 0.4);
    opacity: 0;
    transform: scale(0.92);
    filter: blur(10px);
}

.cinematic-section.is-active .cinematic-title {
    animation: revealTitle 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 1.5s forwards;
}

/* Line 3: Handwritten Footnote Callback */
.cinematic-footnote {
    margin-top: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
}

.cinematic-section.is-active .cinematic-footnote {
    animation: revealFootnote 0.8s ease 2.4s forwards;
}

.handwritten-note {
    font-family: var(--font-mono, monospace);
    font-size: 0.95rem;
    color: #ffc247;
    font-style: italic;
}

.sketch-arrow-svg {
    width: 46px;
    height: 24px;
}

/* Dust / Ash Particles */
.dust-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dust {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
}

.cinematic-section.is-active .dust {
    animation: dustFloat 5.5s infinite linear;
}

.p1 { top: 70%; left: 20%; animation-delay: 0s; }
.p2 { top: 80%; left: 45%; animation-delay: 1s; }
.p3 { top: 60%; left: 75%; animation-delay: 2s; }
.p4 { top: 85%; left: 85%; animation-delay: 0.5s; }
.p5 { top: 75%; left: 12%; animation-delay: 2.8s; }
.p6 { top: 65%; left: 62%; animation-delay: 2.3s; }

/* Keyframe Animations */
@keyframes revealTeaser {
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0.48em;
    }
}

@keyframes revealTitle {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0px);
    }
}

@keyframes revealFootnote {
    to {
        opacity: 0.85;
        transform: translateY(0);
    }
}

@keyframes flashImpact {
    0% { opacity: 0; }
    30% { opacity: 0.2; }
    100% { opacity: 0; }
}

@keyframes cameraShake {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-3px, 2px); }
    40% { transform: translate(3px, -2px); }
    60% { transform: translate(-2px, -1px); }
    80% { transform: translate(2px, 1px); }
    100% { transform: translate(0, 0); }
}

@keyframes dustFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    30% {
        opacity: 0.45;
    }
    100% {
        opacity: 0;
        transform: translateY(-130px) scale(0.5);
    }
}
.contact-footer-links a:hover {
    color: var(--accent-blue, #4D96FF);
    text-decoration: underline;
}

.contact-footer-links .sep {
    color: #AAA;
}

@media (max-width: 600px) {
    .contact-header h2 {
        font-size: 2.1rem;
    }
    .sketch-patch {
        display: none;
    }
}
.logo-annotation {
    position: absolute;
    top: -12px;
    right: -25px;
    background: var(--white);
    border: 2px solid var(--black);
    padding: 2px 8px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 2px 2px 0px var(--black);
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transform: scale(0.5) rotate(15deg) translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 3;
}

.logo-wrapper:hover .logo {
    background: var(--accent-yellow);
    border: var(--border-thick);
    box-shadow: 6px 6px 0px var(--black);
    transform: translateY(-4px) rotate(-2deg);
}

.logo-wrapper:hover .logo-annotation {
    opacity: 1;
    transform: scale(1) rotate(8deg) translateY(0);
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.selection-box {
    position: absolute;
    inset: 2px;
    border: 2px dashed rgba(18, 18, 18, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: scale(0.9) rotate(-1deg);
    z-index: 0;
}

.handle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    border: 1.5px solid var(--black);
}
.handle.tl { top: -5px; left: -5px; }
.handle.tr { top: -5px; right: -5px; }
.handle.bl { bottom: -5px; left: -5px; }
.handle.br { bottom: -5px; right: -5px; }

.link-text {
    position: relative;
    z-index: 1;
    padding: 2px 16px;
    border: 3.5px solid transparent;
    transition: all 0.2s ease;
    border-radius: 4px 8px 6px 4px;
    background: transparent;
}

.nav-link:hover .selection-box {
    opacity: 1;
    transform: scale(1) rotate(1deg);
}

.nav-link:hover .link-text {
    background: var(--white);
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    transform: rotate(-2deg) translateY(-2px);
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    padding: 40px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.hero-line {
    position: relative;
    font-size: clamp(3rem, 7vw, 5.2rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    line-height: 1.15;
    z-index: 2;
}

.text-underline {
    position: relative;
    display: inline-block;
}

.text-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -5%;
    width: 110%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 25 0, 50 5 T 100 5' fill='none' stroke='%23121212' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    opacity: 0.6;
}

.badge-group {
    display: inline-flex;
    gap: 16px;
    padding: 0 12px;
    position: relative;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: var(--border-thick);
    padding: 10px 22px;
    border-radius: 8px 24px 12px 18px; 
    box-shadow: var(--shadow-hard);
    font-family: var(--font-mono);
    font-size: 1.45rem;
    font-weight: 700;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    position: relative;
}

.badge svg {
    width: 28px;
    height: 28px;
}

.badge.rot-1 { transform: rotate(-6deg); }
.badge.rot-2 { transform: rotate(4deg); background: #f0ebd8; } 
.badge.rot-3 { transform: rotate(-3deg); background: #e6e2ce; } 
.badge.rot-4 { transform: rotate(7deg); } 

.badge:hover {
    transform: translateY(-8px) scale(1.05) rotate(0deg);
    box-shadow: 8px 8px 0px var(--black);
    z-index: 10;
}

.figma-highlight {
    position: relative;
    display: inline-block;
    margin: 10px 32px;
}

.figma-dashed-border {
    position: absolute;
    inset: -14px;
    border: 2.5px dashed var(--black);
    opacity: 0.8;
    border-radius: 12px 6px 14px 8px;
    pointer-events: none;
    transform: rotate(-1deg);
}

.figma-box {
    background: var(--accent-yellow);
    border: var(--border-thick);
    padding: 10px 36px;
    border-radius: 8px 16px 10px 14px;
    box-shadow: 8px 8px 0px var(--black);
    display: inline-block;
    position: relative;
}

.hero-cursor {
    position: absolute;
    bottom: -55px;
    right: -40px;
    width: 54px;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.3));
    animation: floatCursor 3s ease-in-out infinite;
}

@keyframes floatCursor {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -6px) rotate(-5deg); }
}

/* =========================================
   5. WORK / PROCESS SECTION
   ========================================= */
.work-section {
    padding: 56px 0 64px;
    position: relative;
}

.work-header {
    text-align: center;
    margin-bottom: 28px;
}

.work-header h2 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
}

/* -----------------------------------------
   SKETCHBOARD CANVAS (asymmetric story)
   idea (small) -> building (big) -> shipped (medium)
   tightened into one connected left-to-right diagonal
   ----------------------------------------- */
.process-canvas {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 0 12px;
}

/* subtle halftone dot patch behind the build window */
.process-canvas::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 360px;
    height: 280px;
    transform: translateX(-46%) rotate(-6deg);
    background-image: radial-gradient(var(--black) 16%, transparent 17%);
    background-size: 12px 12px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.stage {
    position: relative;
    z-index: 1;
}

/* shared window chrome dots */
.win-dots { display: inline-flex; gap: 5px; }
.win-dots span { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: #FF5F56; }
.dot-y { background: #FFBD2E; }
.dot-g { background: #27C93F; }

/* ---------- STAGE 01 · YOUR IDEA (small, slightly enlarged) ---------- */
.stage-idea {
    align-self: flex-start;
    margin-left: 9%;
    transform: rotate(-4deg);
}

.sticky-note {
    position: relative;
    width: 246px;
    background: var(--paper-yellow);
    border: var(--border-sketch);
    box-shadow: var(--shadow-soft);
    border-radius: 4px 10px 6px 8px;
    padding: 22px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.note-tape {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    width: 70px;
    height: 20px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.14);
}

.idea-title {
    font-family: var(--font-hand);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.05;
}

.idea-scribble {
    font-family: var(--font-hand);
    font-size: 1.05rem;
    color: rgba(18, 18, 18, 0.6);
}

.idea-doodle {
    width: 100%;
    height: auto;
    margin-top: 4px;
    opacity: 0.8;
}

/* ---------- STAGE 02 · BUILDING (biggest / dominant centerpiece) ---------- */
.stage-build {
    align-self: center;
    width: min(600px, 100%);
    margin: 2px 0;
    transform: rotate(0.6deg);
}

.build-title {
    display: block;
    text-align: center;
    font-family: var(--font-hand);
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 14px;
    transform: rotate(-1.2deg);
}

.dev-window {
    position: relative;
    background: #FFFDF7;
    border: var(--border-thick);
    box-shadow: 8px 8px 0px var(--black);
    border-radius: 10px;
    overflow: visible;
}

.dev-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    background: var(--black);
    color: var(--white);
    border-radius: 7px 7px 0 0;
}

.dev-filename {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dev-branch {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent-yellow);
    opacity: 0.9;
    white-space: nowrap;
}

.dev-main {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    border-bottom: 2px dashed rgba(18, 18, 18, 0.18);
}

.dev-editor {
    padding: 14px 16px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    line-height: 1.85;
    border-right: 2px dashed rgba(18, 18, 18, 0.18);
    overflow: hidden;
}

.code-row { white-space: pre; }
.code-row .ln {
    display: inline-block;
    width: 16px;
    color: rgba(18, 18, 18, 0.3);
    user-select: none;
}
.tk-kw  { color: #8A2BE2; font-weight: 700; }
.tk-fn  { color: #0066FF; font-weight: 700; }
.tk-var { color: #D97706; font-weight: 700; }
.tk-str { color: #059669; }

.caret {
    display: inline-block;
    width: 7px;
    height: 1.05em;
    margin-left: 2px;
    vertical-align: text-bottom;
    background: var(--black);
    animation: blinkCaret 1.1s steps(1) infinite;
}
@keyframes blinkCaret {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}

.dev-preview {
    position: relative;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #FBF8EF;
}

.mini-url {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: #555;
    background: var(--white);
    border: 1.5px solid var(--black);
    border-radius: 4px;
    padding: 2px 6px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-canvas {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 10px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 5px;
}

.mini-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-yellow);
    border: 2px solid var(--black);
}
.mini-bar { height: 6px; border-radius: 3px; background: rgba(18, 18, 18, 0.75); }
.mini-bar.b1 { width: 85%; }
.mini-bar.b2 { width: 55%; opacity: 0.5; }
.mini-btn {
    width: 46px;
    height: 15px;
    margin-top: 2px;
    border-radius: 4px;
    background: var(--black);
}

.dev-mini-arrow {
    position: absolute;
    bottom: 6px;
    right: 8px;
    width: 34px;
    height: 26px;
    opacity: 0.5;
}

.dev-terminal {
    padding: 10px 16px 14px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    line-height: 1.7;
    background: #16160f;
    color: #E9E4D0;
    border-radius: 0 0 7px 7px;
}
.term-prompt { color: var(--accent-yellow); font-weight: 700; margin-right: 4px; }
.term-ok { color: #6EE7A8; }

.build-progress {
    margin-top: 8px;
    height: 8px;
    border: 1.5px solid #000;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}
.build-progress-fill {
    display: block;
    width: 78%;
    height: 100%;
    background: var(--accent-yellow);
}

/* floating debug cards */
.debug-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 5px;
    padding: 4px 9px;
    box-shadow: 3px 3px 0px var(--black);
    z-index: 4;
    white-space: nowrap;
}
.dc-dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-ok { background: #27C93F; }
.dot-warn { background: #FFBD2E; }

.card-api { top: -16px; right: 30px; transform: rotate(4deg); }
.card-pct { bottom: 46px; right: -26px; transform: rotate(-5deg); background: var(--accent-yellow); }
.card-bug { bottom: -16px; left: 26px; transform: rotate(-3deg); }

/* handwritten annotations scattered around the window */
.scribble {
    position: absolute;
    font-family: var(--font-hand);
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(18, 18, 18, 0.85);
    white-space: nowrap;
    pointer-events: none;
    z-index: 5;
}
.s-hmm   { top: 40px; left: -50px; transform: rotate(-8deg); }
.s-wait  { top: -30px; left: 32%; transform: rotate(5deg); }
.s-works { bottom: 34px; right: -38px; transform: rotate(-6deg); }
.s-ship  { bottom: -34px; right: 32%; transform: rotate(4deg); }

/* ---------- FLOW ARROWS (hand-drawn, short + connecting) ---------- */
.flow-arrow {
    width: 118px;
    height: 54px;
    z-index: 2;
}
.arrow-a {
    align-self: flex-start;
    margin: -14px 0 -14px 12%;
    transform: rotate(-4deg);
}
.arrow-b {
    align-self: flex-end;
    margin: -14px 12% -14px 0;
    transform: rotate(3deg);
}

/* ---------- STAGE 03 · YOUR PRODUCT (medium, elevated importance) ---------- */
.stage-ship {
    align-self: flex-end;
    margin-right: 7%;
    transform: rotate(-2.2deg);
    text-align: center;
}

.ship-title {
    display: block;
    font-family: var(--font-hand);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
    transform: rotate(1.5deg);
}

.product-window {
    position: relative;
    width: min(384px, 100%);
    margin: 0 auto;
    background: var(--white);
    border: var(--border-thick);
    box-shadow: 8px 8px 0px var(--black);
    border-radius: 8px;
    overflow: visible;
}

.product-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #EAE6D8;
    border-bottom: 2px solid var(--black);
    border-radius: 6px 6px 0 0;
}

.product-url {
    flex: 1;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    color: #555;
    background: var(--white);
    border: 1.5px solid var(--black);
    border-radius: 4px;
    padding: 2px 8px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-body {
    padding: 30px 22px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.product-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.product-logo {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--accent-yellow);
    border: 2.5px solid var(--black);
    box-shadow: 2px 2px 0 var(--black);
}
.product-h1 { width: 72%; height: 12px; border-radius: 4px; background: var(--black); }
.product-h2 { width: 48%; height: 9px; border-radius: 4px; background: rgba(18, 18, 18, 0.4); }

.product-cta {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--black);
    color: var(--white);
    padding: 9px 24px;
    border-radius: 6px;
    box-shadow: 4px 4px 0 var(--accent-yellow);
}

/* hand-drawn stamp (bigger, more present) */
.shipped-stamp {
    position: absolute;
    bottom: -20px;
    right: -18px;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #E63946;
    border: 3.5px double #E63946;
    border-radius: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.92);
    transform: rotate(-13deg);
    box-shadow: 2px 2px 0 rgba(230, 57, 70, 0.18);
    z-index: 6;
    pointer-events: none;
}

.ship-caption {
    display: block;
    margin-top: 16px;
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: rgba(18, 18, 18, 0.78);
    transform: rotate(-1.5deg);
}

/* =========================================
   RESPONSIVE: collapse the sketchboard
   ========================================= */
@media (max-width: 760px) {
    .process-canvas { padding: 4px 0 16px; }
    .process-canvas::before { display: none; }

    .stage-idea,
    .stage-build,
    .stage-ship {
        align-self: center;
        margin-left: 0;
        margin-right: 0;
        transform: rotate(0deg);
    }
    .stage-build { width: 100%; max-width: 560px; }
    .stage-ship  { width: 100%; max-width: 380px; }

    .flow-arrow {
        align-self: center;
        margin: 0 0 2px;
        transform: rotate(74deg);
        width: 96px;
        height: 48px;
    }

    /* keep floating bits from pushing the layout wide */
    .card-pct { right: -6px; }
    .s-hmm   { left: -4px; }
    .s-works { right: -4px; }
}

@media (max-width: 540px) {
    .dev-main { grid-template-columns: 1fr; }
    .dev-editor {
        border-right: none;
        border-bottom: 2px dashed rgba(18, 18, 18, 0.18);
    }
    .dev-preview { min-height: 116px; }

    .build-title { font-size: 1.7rem; }
    .card-api { right: 12px; }
    .card-pct { right: 0; bottom: 58px; }
    .card-bug { left: 12px; }
    .scribble { font-size: 1rem; }
    .s-hmm   { top: 30px; left: 0; }
    .s-works { right: 0; }
    .s-wait  { left: 26%; }
    .s-ship  { right: 26%; }
}

/* =========================================
   6. ABOUT SECTION STYLES
   ========================================= */
.about-section {
    padding: 60px 0 80px;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 54px;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--black);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 4px;
    transform: rotate(-2deg);
    margin-bottom: 14px;
}

.about-header h2 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.sketch-gear {
    width: 44px;
    height: 44px;
    stroke: var(--black);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.15));
    animation: slowRotate 25s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 36px;
    margin-bottom: 70px;
    align-items: start;
}

/* BIO CARD */
.bio-card {
    background: #FFFDF7;
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    border-radius: 4px 16px 2px 14px;
    padding: 36px 36px 32px 36px;
    position: relative;
    transform: rotate(-1.2deg);
}

.bio-card h3 {
    font-family: var(--font-hand);
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bio-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.75;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 400;
}

.marker-highlight {
    background: linear-gradient(100deg, rgba(255, 194, 71, 0.45) 0%, rgba(255, 194, 71, 0.8) 100%);
    padding: 1px 6px;
    border-radius: 3px 8px 2px 6px;
    font-weight: 600;
}

.tape-effect {
    position: absolute;
    top: -16px;
    left: 35%;
    width: 120px;
    height: 30px;
    background: rgba(240, 235, 216, 0.88);
    border: 1px solid rgba(0,0,0,0.15);
    transform: rotate(-3deg);
    box-shadow: 1px 2px 4px rgba(0,0,0,0.08);
}

.tape-effect-2 {
    position: absolute;
    bottom: -14px;
    right: 40px;
    width: 90px;
    height: 26px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0,0,0,0.12);
    transform: rotate(4deg);
}

.folded-corner {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent var(--bg-cream) transparent;
    z-index: 3;
}

.folded-corner-shadow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: #e5e0cf;
    border-top: 2.5px solid var(--black);
    border-left: 2.5px solid var(--black);
    z-index: 2;
    border-radius: 2px 0 0 0;
}

/* QUICK PROFILE */
.facts-card {
    background: #FFFCF0;
    border: var(--border-thick);
    box-shadow: 7px 7px 0px var(--black);
    border-radius: 8px 14px 10px 18px;
    padding: 32px 28px 48px 28px;
    position: relative;
    transform: rotate(2deg);
}

.facts-card h3 {
    font-family: var(--font-hand);
    font-size: 2rem;
    margin-bottom: 22px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pushpin-container {
    position: absolute;
    top: -22px;
    right: 28px;
    width: 38px;
    height: 44px;
    z-index: 5;
    filter: drop-shadow(3px 4px 2px rgba(0,0,0,0.25));
}

.fact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.fact-item {
    font-family: var(--font-mono);
    font-size: 0.92rem;
    line-height: 1.45;
    padding-bottom: 10px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.fact-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 2'%3E%3Cpath d='M0 1 Q 30 0, 60 1.5 T 100 1' fill='none' stroke='%23121212' stroke-width='1.5' stroke-dasharray='4, 3' opacity='0.4'/%3E%3C/svg%3E") repeat-x center;
}

.fact-item .label {
    font-weight: 700;
    margin-right: 6px;
    color: var(--black);
    white-space: nowrap;
}

.fact-item .val {
    color: #2a2a2a;
}

.annotation-utm {
    position: absolute;
    bottom: -14px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-hand);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    background: var(--accent-yellow);
    border: 2.5px solid var(--black);
    padding: 4px 12px;
    border-radius: 6px;
    box-shadow: 3px 3px 0px var(--black);
    transform: rotate(-3deg);
    z-index: 10;
    white-space: nowrap;
}

.annotation-utm svg {
    stroke: var(--black);
    width: 16px;
    height: 16px;
}

/* =========================================
   7. TECH STACK
   ========================================= */
.stack-wrapper {
    position: relative;
    margin-top: 20px;
}

.stack-title-area {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.stack-title-area h3 {
    font-family: var(--font-hand);
    font-size: 2.3rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.stack-title-area h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: -10%;
    width: 120%;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8'%3E%3Cpath d='M0 4 Q 50 0, 100 4' fill='none' stroke='%23FFC247' stroke-width='6' stroke-linecap='round' opacity='0.7'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
}

.stack-note-sticker {
    position: absolute;
    top: -20px;
    right: 12%;
    background: #FFD166;
    border: 2px solid var(--black);
    padding: 3px 10px;
    border-radius: 4px;
    font-family: var(--font-hand);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 3px 3px 0px var(--black);
    transform: rotate(8deg);
    z-index: 4;
}

.sticky-scatter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    align-items: stretch;
    position: relative;
    padding: 10px 0;
}

.sticky-sheet {
    background: var(--white);
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    border-radius: 6px 14px 8px 12px;
    padding: 22px 22px 24px 22px;
    position: relative;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1 1 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
}

.sticky-sheet:hover {
    transform: translateY(-8px) scale(1.02) rotate(0deg) !important;
    box-shadow: 10px 10px 0px var(--black);
    z-index: 10;
}

.sheet-backend {
    background: #FFFDF7;
    transform: rotate(-1.8deg);
    border-color: var(--black);
    flex: 1.2 1 310px;
}

.sheet-frontend {
    background: var(--paper-yellow);
    transform: rotate(2.2deg);
}

.sheet-devops {
    background: var(--paper-tint);
    transform: rotate(-1.2deg);
}

.sheet-languages {
    background: #FFFDF7;
    transform: rotate(1.8deg);
}

.sheet-tools {
    background: #FFFCF0;
    transform: rotate(-2.5deg);
}

.sheet-tape {
    position: absolute;
    top: -12px;
    left: 30%;
    width: 70px;
    height: 22px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.12);
    transform: rotate(-2deg);
}

.sheet-header {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding-bottom: 6px;
    border-bottom: 2px dashed rgba(18,18,18,0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.pill-featured {
    font-family: var(--font-mono);
    font-size: 0.92rem;
    font-weight: 700;
    background: var(--accent-yellow);
    color: var(--black);
    border: 2.2px solid var(--black);
    padding: 6px 14px;
    border-radius: 6px 10px 8px 6px;
    box-shadow: 3px 3px 0px var(--black);
    transition: transform 0.15s ease;
}

.pill-featured:hover {
    transform: translateY(-2deg) rotate(-2deg);
    background: #FFB319;
}

.pill-secondary {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 400;
    background: rgba(255,255,255,0.85);
    color: rgba(18,18,18,0.85);
    border: 1.5px solid var(--black);
    padding: 4px 10px;
    border-radius: 5px;
    box-shadow: 1.5px 1.5px 0px var(--black);
}
/* =========================================
   CONTACT SECTION (NEOBRUTALIST)
   ========================================= */
.contact-section {
    padding: 70px 0 90px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

/* Left Card: Info & Socials */
.contact-info-card {
    background: var(--accent-green);
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    border-radius: 10px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--black);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.contact-info-card p {
    font-size: 0.98rem;
    color: #222;
    line-height: 1.6;
}

.direct-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px dashed var(--black);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.detail-icon {
    font-size: 1.2rem;
    background: var(--white);
    border: var(--border-thin);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: 2px 2px 0px var(--black);
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: #444;
}

.detail-value {
    font-family: var(--font-mono);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
}

.detail-value:hover {
    text-decoration: underline;
}

.social-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.social-pill {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--white);
    color: var(--black);
    padding: 6px 14px;
    border: var(--border-thin);
    border-radius: 20px;
    text-decoration: none;
    box-shadow: var(--shadow-small);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-pill:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--black);
}

/* Right Card: Terminal Form */
.contact-form-card {
    background: var(--white);
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
    border-radius: 10px;
    overflow: hidden;
}

.form-topbar {
    background: var(--black);
    color: var(--white);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.contact-form {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    font-family: var(--font-main);
    font-size: 0.95rem;
    padding: 10px 14px;
    border: var(--border-thin);
    border-radius: 6px;
    background: var(--paper-yellow);
    color: var(--black);
    outline: none;
    box-shadow: 2px 2px 0px var(--black);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background: var(--white);
    box-shadow: 4px 4px 0px var(--black);
    transform: translate(-1px, -1px);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: 8px;
    text-align: center;
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   8. MEDIA QUERIES
   ========================================= */
/* NOTE: the Work / Process section handles its own stacking
   inside "5. WORK / PROCESS SECTION" above. */
@media (max-width: 820px) {
    .hero { padding: 30px 10px; }
    .hero-line { gap: 12px; }
    .about-grid { grid-template-columns: 1fr; }
    .sticky-sheet { max-width: 100%; transform: rotate(0deg) !important; }
}