/* ============================================================
   style.css — designed with the same care as the pixels above.
   If you're reading this, you have good taste.
   ============================================================ */

:root {
    --void: #000000;
    --ink: #f0f0f0;
    --pencil-sketch: #a0a0a0;
    --designer-orange: #ff6b4a;
    /* The signature warm coral — every designer needs a brand color */
    --frosted-glass: rgba(255, 255, 255, 0.03);
    --frost-edge: rgba(255, 255, 255, 0.05);
    --frost-gleam: rgba(255, 255, 255, 0.1);
    --column-rhythm: 1fr;
    --breathing-room: 1rem;
    --typeface: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--void);
    color: var(--ink);
    font-family: var(--typeface);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Background — the mood lighting nobody asked for but everyone appreciates */
.ambient-vibes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at 15% 50%, rgb(255 107 74 / 25%), #000000 45%);
    filter: blur(80px);
    transition: transform 0.1s ease-out;
    transform-origin: 15% 50%;
    transform: scale(0.8);
}

@media (max-width: 1023px) {
    .ambient-vibes {
        transform: scale(1);
    }
}

/* Dithering to reduce banding — yes, we care about gradients that much */
.ambient-vibes::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='1.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
}

/* Typography — Müller-Brockmann would approve */
h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.big-name-energy {
    font-size: clamp(3rem, 10vw, 10rem);
    line-height: 0.85;
    margin-bottom: 2rem;
    color: var(--ink);
    mix-blend-mode: normal;
    word-break: break-word;
    hyphens: auto;
}

h2 {
    font-size: 1.5rem;
    color: var(--pencil-sketch);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

p {
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--pencil-sketch);
    max-width: 60ch;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 767px) {
    p {
        max-width: 100%;
    }
}

.loud-and-clear p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    line-height: 1.4;
    color: var(--ink);
}

@media (max-width: 767px) {
    .loud-and-clear p {
        max-width: 100%;
    }
}

/* List Styling — em dashes, because bullet points are for amateurs */
.prose ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    max-width: 60ch;
}

@media (max-width: 767px) {
    .prose ul {
        max-width: 100%;
    }
}

.prose ul li {
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--pencil-sketch);
    line-height: 1.6;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.prose ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--designer-orange);
    font-weight: 400;
}

/* ADPList Reviews Container */
.adp-reviews-container {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    display: block;
}

.adp-reviews-container iframe {
    display: block;
    width: 100%;
}

@media (max-width: 480px) {
    .adp-reviews-container {
        display: none;
    }
}

/* Layout — the 12-column grid that holds everything together */
.the-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
    padding: 0 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

/* Certifications Section */
.certifications-section {
    grid-column: 1 / -1;
    padding: 2rem 1rem;
    border-top: 1px solid var(--frost-edge);
    border-bottom: 1px solid var(--frost-edge);
    margin: 2rem 0;
}

.cert-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--designer-orange);
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

.cert-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 900px;
}

.cert-item {
    font-size: 0.85rem;
    color: var(--pencil-sketch);
    font-weight: 300;
    letter-spacing: 0.01em;
}

.cert-divider {
    color: var(--designer-orange);
    opacity: 0.5;
    font-size: 0.8rem;
    display: none;
}

@media (min-width: 768px) {
    .certifications-section {
        padding: 3rem 2rem;
    }

    .cert-label {
        font-size: 0.75rem;
    }

    .cert-items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cert-item {
        font-size: 0.95rem;
    }

    .cert-divider {
        display: inline;
    }
}

/* The Grand Entrance — the hero section */
.the-grand-entrance {
    grid-column: 1 / -1;
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    isolation: isolate;
    padding-bottom: 0;
    width: 100%;
}

.above-the-fold {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: end;
    width: 100%;
    z-index: 2;
    position: relative;
    pointer-events: none;
}

.above-the-fold>* {
    pointer-events: auto;
}

.headshot-stage {
    grid-area: 1 / 1;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1;
    opacity: 0.9;
}

.the-face-behind-the-pixels {
    width: 50%;
    max-width: none;
    height: auto;
    display: block;
}

/* Chapters — each content section is a chapter in the story */
.chapter {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 2fr 10fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
    width: 100%;
}

.chapter .chapter-heading {
    text-align: right;
}

.prose {
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Say Hello Section */
.say-hello-section {
    grid-column: 1 / -1;
    margin-top: 4rem;
}

/* Tablet and up — adjust grid columns */
@media (min-width: 768px) {
    .chapter {
        grid-column: 2 / -2;
    }

    .say-hello-section {
        grid-column: 3 / 11;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .the-layout {
        padding: 0 4rem 4rem;
    }

    .the-face-behind-the-pixels {
        width: 50%;
    }

    .chapter {
        grid-column: 2 / -3;
        grid-template-columns: 3fr 9fr;
        gap: 2rem;
        margin-bottom: 6rem;
    }

    .say-hello-section {
        grid-column: 4 / 10;
    }
}

/* Mobile adjustments — smaller screens */
@media (max-width: 767px) {
    .the-layout {
        padding: 0 1rem 2rem;
        gap: 3rem;
    }

    .chapter {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .chapter .chapter-heading {
        text-align: left;
    }

    .say-hello-section {
        grid-column: 1 / -1;
        margin-top: 2rem;
    }

    .the-grand-entrance {
        min-height: 70vh;
    }
}

/* Very small screens — ensure everything is fluid */
@media (max-width: 550px) {
    .the-layout {
        padding: 0 0.75rem 1.5rem;
        gap: 2rem;
    }

    .chapter {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .career-timeline {
        gap: 0.75rem;
    }

    .frosted-panel {
        padding: 1rem;
    }

    .open-letter {
        padding: 1.5rem;
        gap: 1rem;
    }

    .digital-handshakes {
        gap: 0.5rem;
    }

    .digital-handshakes a {
        padding: 0.75rem;
        font-size: 0.75rem;
    }
}

/* Profile Image Placeholder */
.profile-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 400px;
    background: var(--frosted-glass);
    border: 1px solid var(--frost-edge);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pencil-sketch);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.profile-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 45%, var(--frost-gleam) 50%, transparent 55%);
    opacity: 0.1;
}

/* Frosted Panel — glassmorphism with personality */
.frosted-panel {
    background: var(--frosted-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--frost-edge);
    border-top: 1px solid var(--frost-gleam);
    border-radius: 16px;
    padding: 2rem;
    box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 var(--frost-gleam);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
}

.frosted-panel:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px -4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
    .frosted-panel {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 12px;
        padding: 1.5rem;
    }
}

/* Bragging Rights — the certification badge */
.bragging-rights {
    margin-bottom: 1.5rem;
    display: inline-block;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 1023px) {
    .bragging-rights {
        margin-top: 4rem;
        width: 50%;
        max-width: 50%;
    }
}

.humble-brag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--pencil-sketch);
    font-weight: 400;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: var(--frosted-glass);
    border: 1px solid var(--frost-edge);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0.8;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

.badge-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.elevator-pitch {
    margin-bottom: 4rem;
    padding-left: 0;
    max-width: 600px;
    width: 100%;
}

.elevator-pitch p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.3;
    color: var(--pencil-sketch);
    margin-bottom: 1.5rem;
    max-width: 100%;
}

@media (max-width: 767px) {
    .elevator-pitch {
        margin-bottom: 2rem;
    }
}

.mic-drop {
    color: var(--ink);
    font-weight: 600;
}

/* Little Orange Button — the smaller CTA */
.little-orange-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
    color: var(--designer-orange);
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.12), rgba(255, 107, 74, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 74, 0.3);
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(255, 107, 74, 0.08);
    min-height: 44px;
}

@media (min-width: 768px) {
    .little-orange-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
}

.little-orange-button:hover {
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.22), rgba(255, 107, 74, 0.1));
    border-color: rgba(255, 107, 74, 0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.15);
}

.btn-icon-small {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.little-orange-button .btn-icon-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.little-orange-button .btn-icon-orange {
    filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(2449%) hue-rotate(336deg) brightness(101%) contrast(101%);
    opacity: 1;
}

.little-orange-button .btn-icon-white {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    opacity: 0;
}

.little-orange-button:hover .btn-icon-orange {
    opacity: 0;
}

.little-orange-button:hover .btn-icon-white {
    opacity: 1;
}

/* Career Timeline — the plot twists */
.career-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.plot-twist {
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
}

@media (max-width: 480px) {
    .career-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .plot-twist {
        padding: 1rem;
    }

    .plot-twist .timestamp {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
    }

    .plot-twist h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }

    .plot-twist p {
        font-size: 0.9rem;
        line-height: 1.3;
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .career-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
}

.timestamp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--designer-orange);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

/* Brain Dumps Section — insights, talks, and things that keep him up at night */
.brain-dumps-section {
    grid-column: 1 / -1;
    padding: 3rem 0;
    margin: 3rem 0;
}

.brain-dumps-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.brain-dumps-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.shower-thought {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--pencil-sketch);
    font-weight: 300;
}

.mixtape {
    margin-bottom: 4rem;
}

.mixtape-label {
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--designer-orange);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    padding-left: 2rem;
}

.scroll-container {
    overflow: visible;
    padding: 1rem 2rem 1rem;
}

@media (max-width: 767px) {
    .brain-dumps-section {
        padding: 2rem 0;
        margin: 2rem 0;
    }

    .brain-dumps-header {
        margin-bottom: 2rem;
        padding-left: 1rem;
    }

    .mixtape-label {
        font-size: 0.85rem;
        padding-left: 1rem;
    }

    .scroll-container {
        padding: 1rem 1rem 1rem;
    }

    .mixtape {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .brain-dumps-section {
        padding: 4rem 0;
        margin: 4rem 0;
    }

    .brain-dumps-header {
        margin-bottom: 4rem;
    }
}

/* Greatest Hits — the card grid */
.greatest-hits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.hit-single {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .greatest-hits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .greatest-hits {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hit-single:hover {
    transform: translateY(-4px);
    border-color: var(--designer-orange);
}

/* Album Art — thumbnail for each card */
.album-art {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--frosted-glass);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hit-single:hover .album-art img {
    transform: scale(1.05);
}

/* Press Play — video play button */
.press-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 74, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    padding-left: 4px;
    transition: all 0.3s ease;
}

.hit-single:hover .press-play {
    background: rgba(255, 107, 74, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.article-thumb {
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.1), rgba(255, 107, 74, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-icon {
    font-size: 3rem;
    opacity: 0.8;
}

/* Liner Notes — card text content */
.liner-notes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.liner-notes h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    text-transform: none;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card-meta {
    font-size: 0.75rem;
    color: var(--pencil-sketch);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}



/* Open Letter — the contact card */
.open-letter {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.open-letter h2 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.open-letter p {
    max-width: 100%;
    color: var(--pencil-sketch);
}

@media (max-width: 767px) {
    .open-letter {
        padding: 2rem;
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .open-letter {
        padding: 4rem;
    }
}

/* Action Station — CTA group */
.action-station {
    width: 100%;
    margin-top: 1rem;
}

/* Big Orange Button — you know you want to click it */
.big-orange-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.15), rgba(255, 107, 74, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 74, 0.3);
    color: var(--designer-orange);
    padding: 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 74, 0.1);
    min-height: 44px;
}

@media (min-width: 768px) {
    .big-orange-button {
        padding: 1.5rem;
    }
}

.big-orange-button:hover {
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.25), rgba(255, 107, 74, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 74, 0.2);
    border-color: rgba(255, 107, 74, 0.5);
    color: #fff;
}

.btn-icon-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.btn-icon-orange {
    filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(2449%) hue-rotate(336deg) brightness(101%) contrast(101%);
    opacity: 1;
}

.btn-icon-white {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    opacity: 0;
}

.big-orange-button:hover .btn-icon-orange {
    opacity: 0;
}

.big-orange-button:hover .btn-icon-white {
    opacity: 1;
}

/* Digital Handshakes — social links */
.digital-handshakes {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
}

.digital-handshakes a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--frosted-glass);
    border: 1px solid var(--frost-edge);
    border-radius: 12px;
    color: var(--pencil-sketch);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    min-height: 44px;
}

.digital-handshakes a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--pencil-sketch);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(64%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(94%) contrast(88%);
    transition: filter 0.3s ease;
}

.digital-handshakes a:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(96%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(103%) contrast(93%);
}

@media (min-width: 768px) {
    .digital-handshakes {
        gap: 1rem;
    }

    .digital-handshakes a {
        padding: 1.2rem;
        font-size: 0.9rem;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }
}

/* Footer — not much to see here, move along */
footer {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

footer p {
    font-size: 0.7rem;
    color: var(--pencil-sketch);
    opacity: 0.45;
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 300;
    max-width: 100%;
}

@media (min-width: 768px) {
    footer {
        padding: 4rem 0;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Reduce blur on mobile for performance */
@media (max-width: 767px) {
    .ambient-vibes {
        filter: blur(60px);
    }

    /* Fix for very small screens */
    .humble-brag {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Animations — the grand reveal */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.above-the-fold>* {
    animation: fadeIn 1s ease-out forwards;
}

.above-the-fold h1 {
    animation-delay: 0.1s;
}

.elevator-pitch {
    animation-delay: 0.3s;
    opacity: 0;
}

.career-timeline {
    animation-delay: 0.5s;
    opacity: 0;
}
