/* --- Custom Properties & Tokens --- */
/* --- CSS Variables --- */
:root {
    /* Deeper, softer luxurious black base */
    --bg-base: #060608; 
    --bg-surface: #0a0a0d;
    --bg-glass: rgba(21, 21, 24, 0.6);
    --text-primary: #f8f9fa;
    --text-secondary: #a1a1aa;
    --text-muted: #8b8b99;
    --accent: #60a5fa; /* Cinematic Blue */
    --accent-glow: rgba(96, 165, 250, 0.15);
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    /* Mix Serif and Sans */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Global --- */
/* --- Global Resets & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtly Grainy Texture Overlay for Film Look */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opactiy='0.03'/%3E%3C/svg%3E");
    opacity: 0.04;
}

/* Premium Minimal Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

::selection {
    background: var(--accent);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* --- Layout Utilities --- */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 10rem 0; /* Massive padding for breathing room */
}

/* --- Glassmorphism Utilities --- */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent)); /* Adjusted to use single accent for consistency */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 3rem;
}

/* --- Custom Cursor --- */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(96, 165, 250, 0.5); /* Adjusted to use accent color */
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    border-bottom: 1px solid var(--border-subtle);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent)); /* Adjusted to use single accent for consistency */
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-btn.primary:hover {
    box-shadow: 0 10px 20px -10px var(--accent);
    transform: translateY(-2px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.profile-pic {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 40px rgba(96, 165, 250, 0.15)); /* Adjusted to use accent color */
}

.about-text {
    max-width: 500px;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: 0;
}

.about-text p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-text {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.35;
    z-index: -2;
    filter: saturate(1.2) contrast(1.1);
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0) 0%, var(--bg-base) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(96, 165, 250, 0.1); /* Adjusted to use accent color */
    border: 1px solid rgba(96, 165, 250, 0.2); /* Adjusted to use accent color */
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

/* --- Marquee / Ticker Tape --- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--bg-surface);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.2rem 0;
    position: relative;
    z-index: 10;
    display: flex; /* Ensures the two content rows sit side-by-side */
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    align-items: center;
    flex-shrink: 0; /* Prevents text from squishing */
}

.marquee-content span {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.marquee-content .dot {
    color: var(--accent);
    margin: 0 2rem;
    font-size: 1.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }

}

/* --- Section Global Typography Overlap --- */
.bg-typography-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    letter-spacing: -0.05em;
}

/* --- Selected Work Section --- */
/* --- Typography System --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400; /* Let the serif curves breathe */
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

h1 { font-size: 5.5rem; font-style: italic; }
h2 { font-size: 4rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; letter-spacing: 0; margin-bottom: 0.5rem; font-style: italic; }

p {
    color: var(--text-muted);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
}

/* Primary: solid white fill */
.btn.primary,
.primary-btn {
    background: #ffffff;
    color: #0a0a0c;
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
}
.btn.primary:hover,
.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px -8px rgba(255,255,255,0.4), 0 0 0 1px rgba(255,255,255,0.2);
}

/* Secondary: glass border */
.btn.secondary,
.secondary-btn {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}
.btn.secondary:hover,
.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* --- Project Grid --- */
.project-grid {
    position: relative;
    z-index: 2;
}

.custom-video-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.grid-col-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 5rem; /* Align top edge with the horizontal video taking into account the staggered layout logic */
}

.grid-col-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.card-right {
    margin-top: 5rem;
}

@media (max-width: 900px) {
    .custom-video-grid {
        grid-template-columns: 1fr;
    }
    .card-right {
        margin-top: 0;
    }
}

.project-card {
    group: project-group;
}

.project-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-subtle);
}

.project-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    max-width: 520px; /* Constrain the width so the vertical video doesn't get overwhelmingly tall */
    margin: 0 auto 2rem 0; /* Align left but keep margin bottom */
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-surface);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.project-video-wrapper-horizontal {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    margin: 0 auto 2rem 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-surface);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.project-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: inherit;
}

.project-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

/* Fallback gradients if no images are provided */
.placeholder-1 { background: linear-gradient(45deg, #1f2937, #374151); }
.placeholder-2 { background: linear-gradient(45deg, #312e81, #4c1d95); }

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.view-project {
    padding: 1rem 2rem;
    background: white;
    color: black;
    border-radius: 30px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .view-project {
    transform: translateY(0);
}

.project-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-tags span {
    font-size: 0.85rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* --- Skills Section --- */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.skills-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.skills-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.skill-card {
    padding: 2.5rem;
    border-radius: 24px;
    transition: var(--transition-fast);
}

.glass-section {
    position: relative;
    background: linear-gradient(180deg, rgba(21,21,24,0) 0%, rgba(59, 130, 246, 0.03) 50%, rgba(21,21,24,0) 100%);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}


.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.skill-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.skill-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Contact Section --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    border-radius: 32px;
    overflow: hidden; /* Prevent Calendly widget from clipping outside */
}

.contact-info-block h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-info-block p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-list a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--border-subtle);
    transition: var(--transition-fast);
}

.contact-list a:hover {
    color: var(--accent-purple);
    text-decoration-color: var(--accent-purple);
}

.booking-block {
    background: var(--bg-base);
    border-radius: 16px;
    overflow: hidden;
}

/* --- Footer --- */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- Scroll Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Contact Form Styles --- */
.contact-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(99, 179, 237, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.submit-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}


/* --- Section Background Injections --- */
.skills {
    position: relative;
    overflow: hidden;
}

.skills-section-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: url('./assets/profile_stylized.png');
    background-size: cover;
    background-position: center 20%;
    opacity: 0.04; /* Very subtle, cinematic face blending */
    mix-blend-mode: luminosity; /* Pulls all color out and makes it part of the texture */
    pointer-events: none;
    z-index: 0;
}

.skills .container {
    position: relative;
    z-index: 1; /* Keep content above face texture */
}

/* ============================================
   MOBILE & RESPONSIVE STYLES
   ============================================ */

/* --- Hamburger Nav Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}
.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Tablet: 992px --- */
@media screen and (max-width: 992px) {
    .project-grid,
    .skills-grid,
    .contact-wrapper,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .card-left, .card-right { margin-top: 0; }

    /* Stack the custom video grid vertically on tablet */
    .custom-video-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    .grid-col-left,
    .grid-col-right {
        margin-top: 0 !important;
        width: 100%;
    }
    .project-video-wrapper {
        max-width: 420px;
        margin: 0 auto 1.5rem;
    }
}

/* --- Mobile: 768px --- */
@media screen and (max-width: 768px) {
    /* Core Layout */
    .section { padding: 5rem 0; }
    .container { padding: 0 1.25rem; }

    /* Typography */
    .hero-title   { font-size: clamp(2.8rem, 11vw, 5rem); line-height: 1.1; }
    h2            { font-size: clamp(2rem, 8vw, 3rem); }
    h3            { font-size: 1.25rem; }
    .hero-subtitle { font-size: 1rem; letter-spacing: 0.05em; }
    .about-lead   { font-size: 1.5rem; }
    .section-desc { font-size: 1rem; }
    .bg-typography-large { font-size: 28vw; top: 20%; }

    /* --- Navigation --- */
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 12, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 100;
        backdrop-filter: blur(20px);
    }
    .nav-open .nav-links {
        display: flex;
    }
    .nav-links .nav-btn {
        font-size: 1.4rem;
        padding: 1rem 2.5rem;
    }

    /* --- Hero --- */
    .hero {
        align-items: flex-end;
        text-align: left;
        padding-bottom: 4rem;
    }
    .hero-content { padding: 0 1.25rem; }
    .hero-actions {
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
    }
    .hero-actions .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    /* --- Video Grid --- */
    .custom-video-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    .grid-col-left,
    .grid-col-right {
        margin-top: 0 !important;
        width: 100%;
    }
    .project-video-wrapper {
        aspect-ratio: 9 / 16;
        max-width: 100%;
        margin: 0 auto 1rem;
    }
    .project-video-wrapper-horizontal {
        aspect-ratio: 16 / 9;
        max-width: 100%;
        margin: 0 auto 1rem;
    }
    .project-card { margin-bottom: 1rem; }
    .project-info { padding: 0.5rem 0; }
    .project-info h3 { font-size: 1.2rem; }
    .project-info p  { font-size: 0.9rem; }

    /* --- About --- */
    .about-grid { gap: 2rem; }
    .about-image { max-width: 280px; margin: 0 auto; }
    .profile-pic { border-radius: 20px; }

    /* --- Skills --- */
    .skills-grid { gap: 2.5rem; }
    .skills-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .skill-card { padding: 1.75rem; border-radius: 18px; }
    .skill-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }

    /* --- Contact --- */
    .contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
        overflow: hidden;
    }
    .booking-block {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
        padding: 0 !important;
    }
    .contact-info-block h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .calendly-inline-widget {
        min-width: 0 !important;
        width: 100% !important;
        height: 580px !important;
    }

    /* --- Footer --- */
    .footer { padding: 2rem 0; }
    .footer p { font-size: 0.85rem; }

    /* --- Marquee --- */
    .marquee-content { gap: 1.5rem; font-size: 0.85rem; }
}

/* --- Small Mobile: 480px --- */
@media screen and (max-width: 480px) {
    .hero-title { font-size: clamp(2.2rem, 12vw, 3.2rem); }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .skills-cards { grid-template-columns: 1fr; }
    .skill-card { padding: 1.5rem; }
    .section-heading { letter-spacing: -0.02em; }
}
