@font-face {
    font-family: 'knewave';
    src: url('fonts/knewave.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'parkinsans';
    src: url('fonts/Parkinsans.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'DMsans';
    src: url('fonts/DMSans.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'hammer';
    src: url('fonts/HammersmithOne.ttf') format('truetype');
    font-display: swap;
}

:root {
    --home-bg: #0c0c0c;
    --home-surface: rgba(34, 31, 39, 0.9);
    --home-surface-strong: rgba(63, 58, 74, 0.95);
    --home-text: #f2f2f2;
    --home-muted: #d9d4dc;
    --home-accent-coral: #ef4b3c;
    --home-accent-gold: #ffbd17;
    --home-accent-blue: #1973c0;
    --home-accent-green: #1dab49;
    --home-accent-pink: #f9b6b1;
    --home-accent-peach: #e8c5ac;
    --home-border: rgba(242, 242, 242, 0.14);
}

body {
    margin: 0;
    padding: 0;
    background-color: #242021;
    color: #333;
}

.home-page {
    background:
        radial-gradient(circle at top, rgba(249, 182, 177, 0.08), transparent 30%),
        linear-gradient(180deg, #171518 0%, #0c0c0c 100%);
    color: var(--home-text);
    min-height: 100vh;
    position: relative;
}

.home-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
    background-size: 240px 240px;
    opacity: 0.28;
    pointer-events: none;
    z-index: 0;
}

.home-page .wrapper {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    padding: 26px 28px 40px 28px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
    padding: 16px 18px;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    background: rgba(242, 242, 242, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.nav-mark {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--home-accent-gold), var(--home-accent-pink));
    color: #2d2628;
    font-family: 'hammer';
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(249, 182, 177, 0.24);
}

.nav-name {
    color: var(--home-text);
    font-family: 'hammer';
    font-size: 22px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.nav-link {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(242, 242, 242, 0.12);
    background: rgba(242, 242, 242, 0.04);
    color: var(--home-text);
    text-decoration: none;
    font-family: 'parkinsans';
    font-size: 14px;
    letter-spacing: 0.4px;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.nav-link:hover,
.nav-link.active {
    transform: translateY(-1px);
    background: rgba(249, 182, 177, 0.16);
    border-color: rgba(249, 182, 177, 0.38);
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 34px;
    padding: 34px;
    border-radius: 34px;
    border: 1px solid var(--home-border);
    background:
        linear-gradient(145deg, rgba(73, 68, 90, 0.98), rgba(53, 49, 67, 0.96));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.eyebrow {
    margin: 0 0 12px 0;
    font-family: 'parkinsans';
    font-size: 14px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--home-accent-gold);
}

.hero-copy h1 {
    margin: 0;
    max-width: 13ch;
    font-family: 'hammer';
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.2;
    color: #f4efe8;
}

.hero-description {
    max-width: 620px;
    margin: 18px 0 0 0;
    font-family: 'DMsans';
    font-size: 18px;
    line-height: 1.75;
    color: #ddd7df;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 164px;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'parkinsans';
    font-size: 15px;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.hero-button.primary {
    background: linear-gradient(135deg, #dc7ca0, #d56d94);
    color: #fffaf3;
    box-shadow: 0 14px 28px rgba(220, 124, 160, 0.26);
}

.hero-button.secondary {
    background: rgba(242, 242, 242, 0.05);
    border-color: rgba(242, 242, 242, 0.14);
    color: var(--home-text);
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    position: relative;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(249, 182, 177, 0.2);

    background-image:
        linear-gradient(rgba(249, 182, 177, 0.66), rgba(213, 109, 148, 0.58)),
        linear-gradient(rgba(12, 12, 12, 0.24), rgba(12, 12, 12, 0.24)),
        url("img/Featured_Image.png");
    background-size: cover;
    background-position: center;
    background-clip: padding-box;
    box-shadow: inset 0 1px 0 rgba(255, 248, 240, 0.18);
    overflow: hidden;
    
}

.hero-highlight h2 {
    margin: 0;
    font-family: 'hammer';
    font-size: 34px;
    color: #fffaf3;
}

.hero-highlight p {
    margin: 0;
    font-family: 'DMsans';
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 250, 243, 0.92);
}

.hero-highlight .featured-link-label {
    color: #fffaf3;
    text-decoration: none;
}

.hero-highlight .featured-tag {
    background-color: rgba(12, 12, 12, 0.36);
    color: #f2f2f2;
}


.hero-highlight > * {
    position: relative;
    z-index: 1;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.home-button {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 999;
    padding: 10px 18px;
    border-radius: 20px;
    background-color: #4b4458;
    color: #fffcec;
    font-family: 'parkinsans';
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffeefc;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.home-button:hover {
    transform: translateY(-2px);
    background-color: #6c6378;
}

.home-layout {
    display: block;
    margin-top: 0;
    margin-bottom: 40px;
    position: relative;
    padding: 30px;
    box-sizing: border-box;
}

.personal-column {
    width: 100%;
    max-width: none;
}

.home-page .home-layout::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(44, 41, 51, 0.94), rgba(27, 24, 31, 0.92));
    border: 1px solid var(--home-border);
    border-radius: 30px;
    z-index: -1;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
}

.home-header {
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: left;
    margin: 0 0 20px 0;
}

.subpage-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.subpage-header .title-image-subpage {
    display: block;        
    margin: 0 auto;       
    width: 460px;        
    max-width: 100%;
}

.home-header h2 {
    font-family: 'parkinsans';
    color: var(--home-text);
    font-size: 30px;
    margin: 0;
    text-align: left;
}

.home-header h4 {
    font-family: 'parkinsans';
    color: var(--home-accent-pink);
    font-size: 16px;
    margin: 8px 0 0 0;
    text-align: left;
}

.intro-scrapbook {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-top: 0;       
    width: 100%;
    max-width: 100%;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 28px;
    background: rgba(242, 242, 242, 0.04);
    border: 1px solid rgba(242, 242, 242, 0.08);
}

.intro-visual-column {
    display: flex;
    flex-direction: column;
    gap: 26px;
    flex: 0 0 300px;
}

.intro-photo-wrapper {
    position: relative;
    flex: 0 0 auto;
    transform: rotate(-4deg);
    margin-top: 6px;
}

.intro-photo-main {
    width: 230px;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.intro-copy-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1 1 auto;
    min-width: 0;
}

.intro-copy {
    font-family: 'DMsans';
    font-size: 17px;
    line-height: 1.85;
    color: var(--home-text);
    margin: 0;
    max-width: none;
}

.intro-degree {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #e8c5ac;
}

.intro-degree-title {
    margin: 0;
    font-family: 'DMsans';
    font-size: 15px;
    line-height: 1.45;
    color: #e8c5ac;
    white-space: nowrap;
}

.intro-degree-meta {
    margin: 0;
    font-family: 'DMsans';
    font-size: 14px;
    line-height: 1.55;
    color: rgba(232, 197, 172, 0.78);
}

.home-links {
    margin: 36px auto 60px auto;
    max-width: 900px;         
    text-align: center;
    padding: 22px 24px 0 24px;
}

.home-links .links-label {
    font-family: 'parkinsans';
    color: var(--home-text);
    font-size: 17px;
    letter-spacing: 1.3px;
    margin-bottom: 14px;
}

.home-links .links-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;           
}

.home-links .link-pill {
    padding: 10px 26px;
    border-radius: 999px;
    background-color: rgba(242, 242, 242, 0.06);
    color: var(--home-text);
    font-family: 'parkinsans';
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(242, 242, 242, 0.14);
    box-shadow: 0 10px 22px rgba(0,0,0,0.16);
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.home-links .link-pill:hover {
    background-color: rgba(25, 115, 192, 0.18);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .home-links .links-grid {
        justify-content: center;
    }

    .home-links .link-pill {
        flex: 0 0 100%;
    }
}

.work-heading {
    font-family: 'parkinsans';
    color: #c5a1c4;
    font-size: 22px;
    letter-spacing: 1.4px;
    margin-bottom: 4px;
    text-align: center;        
    width: 100%;
}


.featured-card {
    max-width: 460px;          
    width: 100%;                
    margin: 0 auto 8px auto;    
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 20px 24px;
    border-radius: 24px;
    background: radial-gradient(circle at top left, #ffb3d6, #93435e 45%, #4b4458 90%);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    color: #fffcec;
    border: 3px solid #ffeefc;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
    border-color: #f5c4ff;
}

.featured-tag {
    font-family: 'parkinsans';
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background-color: rgba(36, 32, 33, 0.6);
    padding: 4px 10px;
    border-radius: 999px;
    align-self: flex-start;
    margin-bottom: 8px;
}

.featured-card h3 {
    font-family: 'hammer';
    font-size: 22px;
    margin: 6px 0 10px 0;
    color: #fffcec;
}

.featured-card p {
    font-family: 'DMsans';
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.featured-link-label {
    font-family: 'parkinsans';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-top: auto;
    opacity: 0.9;
}

.featured-card:hover .featured-link-label {
    text-decoration: underline;
}

.home-explore {
    margin-top: 0;
    width: 100%;
    padding: 30px;
    border-radius: 28px;
    background: rgba(242, 242, 242, 0.04);
    border: 1px solid rgba(242, 242, 242, 0.08);
}

.explore-heading {
    font-family: 'parkinsans';
    color: var(--home-text);
    font-size: 26px;
    letter-spacing: 1.3px;
    margin: 0 0 18px 0;
}

.home-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
    justify-content: center;
}

.linkBoxes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin: 0;
}

.linkBox {
    position: relative;
    width: 230px;
    height: 52px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, rgba(239, 75, 60, 0.94), rgba(249, 182, 177, 0.9));
    border: 1px solid rgba(242, 242, 242, 0.12);
}

.linkBox a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.box-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fffaf3;
    font-family: 'parkinsans';
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.8px;
}

.linkBox:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(239, 75, 60, 0.22);
    transition: all 0.3s ease-in-out;
}

.audio-page .project-group-audio h2,
.html-page .project-group-html h2,
.vg-page .project-group-vg h2,
.mixed-page .project-group-mixed h2,
.photo-page .project-group-photo h2 {
    font-family: 'parkinsans';
    color: #c5a1c4;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    letter-spacing: 1.5px;
    font-size: 26px;
}

.audio-project-grid,
.html-project-grid,
.vg-project-grid,
.mixed-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

.html-project-showcase {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: minmax(150px, auto) minmax(150px, auto) auto;
    grid-template-areas:
        "left-top left-top left-top featured featured featured featured featured featured featured featured featured"
        "left-bottom left-bottom left-bottom featured featured featured featured featured featured featured featured featured"
        "bottom-center bottom-center bottom-center blurb blurb blurb blurb blurb blurb blurb blurb blurb";
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto 80px auto;
    align-items: stretch;
}

.audio-card,
.html-card,
.vg-card,
.mixed-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 20px 24px;
    border-radius: 24px;
    background: radial-gradient(circle at top left, #ffb3d6, #93435e 45%, #4b4458 90%);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    color: #fffcec;
    border: 3px solid #ffeefc;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.audio-card:hover,
.html-card:hover,
.vg-card:hover,
.mixed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
    border-color: #f5c4ff;
}

.html-card-left-top {
    grid-area: left-top;
}

.html-card-left-bottom {
    grid-area: left-bottom;
}

.html-card-featured {
    grid-area: featured;
    min-height: 324px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(145deg, rgba(201, 149, 177, 0.94), rgba(88, 78, 110, 0.96));
    border: 1px solid rgba(242, 242, 242, 0.14);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.html-card-featured h3 {
    font-size: 42px;
    line-height: 1.02;
    max-width: none;
    white-space: nowrap;
}

.html-card-featured .tag {
    align-self: flex-start;
}

.html-card-bottom-center {
    grid-area: bottom-center;
}

.html-card-compact {
    min-height: 180px;
}

.html-card-tall {
    min-height: 100%;
}

.html-card-compact h3,
.html-card-tall h3 {
    font-size: 28px;
}

.audio-card h3,
.html-card h3,
.vg-card h3,
.mixed-card h3 {
    font-family: 'hammer';
    font-size: 22px;
    margin: 6px 0 10px 0;
    color: #fffcec;
}

.audio-card p,
.html-card p,
.vg-card p,
.mixed-card p {
    font-family: 'DMsans';
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.tag {
    font-family: 'parkinsans';
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background-color: rgba(36, 32, 33, 0.5);
    padding: 4px 10px;
    border-radius: 999px;
    align-self: flex-start;
    margin-bottom: 6px;
}

.link-label {
    font-family: 'parkinsans';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-top: auto;
    opacity: 0.9;
}

.audio-card:hover .link-label,
.html-card:hover .link-label,
.vg-card:hover .link-label,
.mixed-card:hover .link-label {
    text-decoration: underline;
}

.audio-card *,
.html-card *,
.vg-card *,
.mixed-card * {
    position: relative;
    z-index: 1;
}

.audio-card::before,
.html-card::before,
.vg-card::before,
.mixed-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.24;
    transition: opacity 0.25s ease-in-out;
}

.audio-card:hover::before,
.html-card:hover::before,
.vg-card:hover::before,
.mixed-card:hover::before {
    opacity: 0.34;
}

.html-card {
    background: linear-gradient(145deg, rgba(73, 68, 90, 0.96), rgba(53, 49, 67, 0.94));
    border: 1px solid rgba(242, 242, 242, 0.14);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.html-card .tag {
    background-color: rgba(24, 24, 24, 0.34);
}


/*image cards! just copy and paste and then add an image to make a new box */

/*audio section*/ 
.audio-card-song::before {
    background-image:
        linear-gradient(rgba(147, 67, 94, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/audio_songanalysis.png");
}

.audio-card-whistle::before {
    background-image:
        linear-gradient(rgba(168, 110, 255, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/audio_whistle.png");
}

.audio-card-visualizer::before {
    background-image:
        linear-gradient(rgba(93, 182, 191, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/audio_visualizer.png");
}

/*HTML section*/ 
.html-card-typewriter::before {
    background-image:
        linear-gradient(rgba(147, 67, 94, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/typewriter.png");
}

.html-card-scrabble::before {
    background-image:
        linear-gradient(rgba(168, 110, 255, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/scrabble.png");
}

.html-card-macroura::before {
    background-image:
        linear-gradient(rgba(93, 182, 191, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/macroura.png");
}

.html-card-cycles::before {
    background-image:
        linear-gradient(rgba(213, 126, 75, 0.65), rgba(65, 40, 52, 0.85));
}

.html-blurb {
    grid-area: blurb;
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 24px 28px;
    border-radius: 24px;
    background: rgba(242, 242, 242, 0.04);
    border: 1px solid rgba(242, 242, 242, 0.08);
}

.html-blurb p {
    margin: 0;
    font-family: 'DMsans';
    font-size: 18px;
    line-height: 1.8;
    color: #f2f2f2;
}

/*Video Games*/ 
.vg-card-myers::before {
    background-image:
        linear-gradient(rgba(147, 67, 94, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/miguel.png");
}

.vg-card-dungeon::before {
    background-image:
        linear-gradient(rgba(168, 110, 255, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/dungeon.png");
}

.vg-card-dictator::before {
    background-image:
        linear-gradient(rgba(93, 182, 191, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/dictator.png");
}

.vg-card-goblins::before {
    background-image:
        linear-gradient(rgba(93, 182, 191, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/goblins.png");
}

.vg-card-AVOM::before {
    background-image:
        linear-gradient(rgba(147, 67, 94, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/AVOM.png");
}


/*Mixed Media section*/ 
.mixed-card-creation::before {
    background-image:
        linear-gradient(rgba(147, 67, 94, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/creation.png");
}

.mixed-card-chile::before {
    background-image:
        linear-gradient(rgba(168, 110, 255, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/chile.png");
}

.mixed-card-allisone::before {
    background-image:
        linear-gradient(rgba(93, 182, 191, 0.6), rgba(36, 32, 33, 0.8)),
        url("img/AllInOne.png");
}

.mixed-card-photo::before {
    background-image:
        linear-gradient(rgba(239, 75, 60, 0.45), rgba(36, 32, 33, 0.8)),
        url("img/Photography/IMG_0722.JPG");
}

.photo-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 32px auto;
    align-items: stretch;
}

.photo-intro-copy,
.photo-intro-feature {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(242, 242, 242, 0.08);
    background: rgba(242, 242, 242, 0.04);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.photo-intro-copy {
    padding: 30px;
    color: #fffcec;
}

.photo-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 189, 23, 0.9);
    color: #242021;
    font-family: 'parkinsans';
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.photo-intro-copy h3 {
    margin: 0 0 16px 0;
    font-family: 'hammer';
    font-size: 38px;
    line-height: 1.05;
    color: #fffcec;
}

.photo-intro-copy p {
    margin: 0;
    font-family: 'DMsans';
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 252, 236, 0.88);
}

.photo-intro-feature img,
.photo-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-gallery {
    column-count: 3;
    column-gap: 24px;
    max-width: 1100px;
    margin: 0 auto 80px auto;
}

.photo-tile {
    margin: 0;
    margin-bottom: 24px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(242, 242, 242, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    background: rgba(242, 242, 242, 0.04);
    break-inside: avoid;
}

.photo-lightbox-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.photo-tile img {
    height: auto;
}

.photo-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    z-index: 1000;
}

.photo-lightbox.is-open {
    display: flex;
}

.photo-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(12, 12, 12, 0.82);
    cursor: zoom-out;
}

.photo-lightbox-nav {
    position: absolute;
    top: 50%;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 242, 242, 0.24);
    border-radius: 50%;
    background: rgba(24, 24, 24, 0.58);
    z-index: 1;
    cursor: pointer;
    transform: translateY(-50%);
    color: #f2f2f2;
    font-family: 'hammer';
    font-size: 34px;
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.photo-lightbox-prev {
    left: 24px;
}

.photo-lightbox-next {
    right: 24px;
}

.photo-lightbox-nav:hover {
    background: rgba(249, 182, 177, 0.24);
    transform: translateY(-50%) scale(1.04);
}

.photo-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: min(92vw, 1200px);
    max-height: 88vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.photo-lightbox-close {
    position: absolute;
    top: 0;
    left: calc(100% + 16px);
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 242, 242, 0.24);
    border-radius: 50%;
    background: rgba(24, 24, 24, 0.6);
    color: #f2f2f2;
    font-family: 'hammer';
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.photo-lightbox-close:hover {
    background: rgba(249, 182, 177, 0.24);
    transform: scale(1.04);
}

.photo-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
}





.audio-section {
    margin-top: 20px;
}

.audioplayer {
    border-radius: 28px;
    background-color: #4b4458;
    padding: 32px;
    margin: 0 auto 80px auto;
    max-width: 1100px;
    box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

.audio-item {
    flex: 1 1 380px;
    max-width: 480px;
    color: #fffcec;
    font-family: 'DMsans';
    display: flex;
    flex-direction: column;
}

.audio-item h3 {
    font-family: 'hammer';
    font-size: 24px;
    color: #eae3d0;
    margin-bottom: 12px;
}

.audio-item p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.audio-item audio {
    width: 100%;
    outline: none;
    border-radius: 999px;
    margin-top: auto;
}

.personal-column { max-width: none; }
.work-column     { max-width: 520px; }

@media (max-width: 900px) {
    .site-nav {
        flex-direction: column;
        align-items: stretch;
        border-radius: 28px;
    }

    .nav-brand {
        align-self: flex-start;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .hero-panel {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .hero-copy h1 {
        max-width: 14ch;
    }

    .home-layout {
        padding: 22px;
    }

    .home-header {
        text-align: center;
    }

    .home-header h2,
    .home-header h4 {
        text-align: center;
    }

    .intro-scrapbook {
        flex-direction: column;
        align-items: center;
        margin-top: 0;
    }

    .intro-copy {
        text-align: left;
    }

    .featured-card,
    .home-explore {
        max-width: 500px;
        width: 100%;
    }

    .home-nav {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .home-page .wrapper {
        padding: 16px 16px 32px 16px;
    }

    .site-nav {
        padding: 14px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-link {
        width: 100%;
        text-align: center;
    }

    .nav-name {
        font-size: 18px;
    }

    .hero-panel {
        padding: 22px;
        border-radius: 26px;
    }

    .home-layout {
        padding: 18px;
    }

    .hero-copy h1 {
        font-size: 2.5rem;
        max-width: 100%;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-button {
        width: 100%;
    }

    .intro-scrapbook,
    .home-explore {
        padding: 22px;
    }

    .intro-photo-main {
        width: min(230px, 100%);
    }

    .linkBoxes {
        justify-content: center;
        gap: 20px;
    }

    .linkBox {
        width: 100%;
        max-width: 280px;
        height: 48px;
    }

    .box-content {
        font-size: 16px;
    }

    .audio-project-grid,
    .html-project-grid,
    .vg-project-grid,
    .mixed-project-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .photo-intro {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }

    .photo-gallery {
        column-count: 1;
        column-gap: 0;
        margin-bottom: 60px;
    }

    .photo-lightbox-nav {
        width: 52px;
        height: 52px;
        font-size: 28px;
    }

    .photo-lightbox-prev {
        left: 10px;
    }

    .photo-lightbox-next {
        right: 10px;
    }

    .photo-lightbox-close {
        top: -52px;
        left: auto;
        right: 0;
        width: 42px;
        height: 42px;
        font-size: 26px;
    }

    .photo-tile {
        margin-bottom: 20px;
    }

    .html-project-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "featured"
            "left-top"
            "left-bottom"
            "bottom-center"
            "blurb";
        gap: 20px;
        margin-bottom: 60px;
    }

    .html-card-featured {
        min-height: 260px;
    }

    .html-card-featured h3 {
        font-size: 30px;
    }

    .audioplayer {
        padding: 24px;
        margin-bottom: 60px;
    }

    .audio-item {
        max-width: 100%;
    }

    .home-links .links-grid {
        max-width: 100%;
    }

    .home-links .link-pill {
        flex: 0 0 100%;
    }
}
