/* variables & reset */

:root {
    --primary: #0A0A0A;
    --secondary: #ffffff;
    --accent: #0A0A0A;
    --text-dark: #0A0A0A;
    --text-light: white;
    --border: #0A0A0A;
}

/* utilities */

.sr-only-honey { display: none; }

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

button {
    font-family: Georgia, serif;
}


html {
    background: #0A0A0A;
}

body {
    font-family: elza-text, sans-serif;
    color: var(--text-dark);
    background: var(--secondary);
    overflow-x: hidden;
    line-height: 1.5rem;
    min-height: 100vh;
}

/* nav */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 10vh;
    max-height: 10vh;
    padding: 0 1.5rem 0 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    z-index: 1002;
    background: white;
    line-height: 1;
    transition: background 0.4s ease, opacity 0.4s ease;
}

.logo {
    font-family: elza, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0A0A0A;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
}
.logo img { filter: none; transition: filter 0.3s ease; height: 5vh; }
.logo-text {
    font-family: elza, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.014em;
    color: white;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #0A0A0A;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.014em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0A0A0A;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: rgba(0, 0, 0, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}


/* nav dark — for 0a0a0a background sections */
nav.nav-dark {
    background: #0A0A0A !important;
}
nav.nav-dark .logo { color: white !important; }
nav.nav-dark .logo img { filter: invert(1) !important; }
nav.nav-dark .nav-links a { color: white !important; }
nav.nav-dark .nav-links a::after { background: white !important; }
nav.nav-dark .nav-links a:hover { color: rgba(255, 255, 255, 0.7) !important; }
nav.nav-dark .hamburger span { background: white !important; }

/* nav menu-open — when mobile menu is active */
nav.menu-open {
    background: #0A0A0A !important;
}
nav.menu-open .logo { color: white !important; }
nav.menu-open .logo img { filter: invert(1) !important; }
nav.menu-open .hamburger span { background: white !important; }

/* hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0A0A0A;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* mobile menu */

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.mobile-menu-bg.active {
    opacity: 1;
}

.mobile-menu-bg.output {
    background: rgba(237, 30, 121, 0.9);
}

.mobile-menu-bg.about {
    background: rgba(233, 157, 77, 0.9);
}

.mobile-menu-bg.contact {
    background: rgba(41, 154, 211, 0.9);
}

.mobile-menu.active {
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: calc(100% - 5rem);
    margin-top: 5rem;
    gap: 3rem;
    padding-left: 0;
    position: relative;
    z-index: 1;
}

.mobile-nav-links a {
    font-family: elza, sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* buttons */

.btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
    text-shadow: 0 0 12px color-mix(in srgb, currentColor 60%, transparent);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: none;
}

.btn-primary:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
}

.btn-secondary:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.cta-buttons .btn {
    text-align: center;
}

/* page header */

.page-header {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40vh 1.5rem 0 1.5rem;
    background: var(--primary);
}

.page-header-content {
    width: 100%;
    max-width: 1200px;
}

.page-title {
    font-family: elza, sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.014em;
    color: white;
    text-transform: uppercase;
}

/* section titles */

.section-title {
    font-family: elza, sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600;
    text-align: left;
    margin-bottom: 1rem;
    letter-spacing: 0.014em;
    color: var(--primary);
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40vh 1.5rem 4rem 0;
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s ease-out;
}

.hero::after {
    display: none;
}

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: elza, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    margin-left: -0.04em;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.hero h1 .accent-text {
    color: var(--accent);
    display: block;
}

.hero p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.5rem;
}

/* features */

.features {
    padding: 10rem 1.5rem 30rem 1.5rem;
    background: var(--secondary);
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* cta section */

.cta-section {
    padding: 2rem 1.5rem 4.6rem 1.5rem;
    background: var(--primary);
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    margin-left: 50vw;
}

.hero-content .btn {
    width: 8rem;
    text-align: center;
}

.cta-section h2 {
    font-family: elza, sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600;
    margin-bottom: 2rem;
    margin-left: -0.04em;
    text-transform: uppercase;
    letter-spacing: 0.014em;
    position: relative;
    z-index: 1;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.cta-section .btn-primary {
    background: #0A0A0A;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: none;
}

.cta-section .btn-primary:hover {
    background: #0A0A0A;
    color: #C66A3A;
    transform: translateY(-2px);
    box-shadow: none;
}

/* footer */

.footer-base .logo img,
.footer-dark .logo img {
    height: 3.75vh;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.footer-linkedin {
    display: flex;
    align-items: center;
    color: #0A0A0A;
    transition: opacity 0.3s ease;
}

.footer-linkedin:hover {
    opacity: 0.5;
}

.footer-linkedin svg {
    height: 3.75vh;
    width: auto;
}

.footer-dark .footer-linkedin {
    color: white;
}

.poem-label {
    position: absolute;
    font-family: 'Elza', sans-serif;
    line-height: 1;
    color: #0a0a0a;
    cursor: pointer;
    pointer-events: auto;
}
.poem-label.title { font-size: 2rem; font-weight: 900; }
.poem-label.author { font-size: 1.95rem; font-weight: 300; }
.poem-label.back { font-size: 1.95rem; font-weight: 900; text-decoration: none; }
.poem-label.header-wrap { pointer-events: none; }

.footer-base {
    background: white;
    color: #0A0A0A;
    height: 20vh;
    max-height: 20vh;
    padding: 0 1.5rem 10vh 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.footer-dark {
    background: #0A0A0A;
    color: white;
    height: 20vh;
    max-height: 20vh;
    padding: 0 1.5rem 10vh 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.footer-dark .footer-links a {
    color: white;
}

.footer-dark .footer-links a:hover {
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-logo {
    font-family: elza, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.footer-copyright {
    font-family: elza, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0A0A0A;
    opacity: 1;
    text-transform: uppercase;
}

.footer-email {
    font-size: 1rem;
    color: #0A0A0A;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-email:hover {
    opacity: 0.5;
}

.footer-dark .footer-copyright {
    color: white;
}

.footer-dark .footer-email {
    color: white;
}

.footer-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.footer-links a {
    color: #0A0A0A;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0A0A0A;
}


.copyright {
    color: var(--text-light);
    font-size: 1rem;
}

/* output image header */

.output-image-header {
    position: relative;
    width: 100%;
}


/* slider */

.projects-slider {
    padding: 0;
    background: white;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}


.slider-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 4rem 1.5rem 0 1.5rem;
}

.home-page .slider-header {
    padding-top: 40vh;
}

.slider-header .section-title {
    margin-bottom: 0;
    text-align: left;
    color: var(--primary);
    transform: translateY(-2rem);
}

.project-page .slider-header {
    padding: 6rem 1.5rem 0 1.5rem;
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.slider-container {
    width: 100%;
    height: 60vh;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}


.slider-track {
    display: flex;
    height: 100%;
}

.project-slide {
    min-width: 100vw;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    position: relative;
}

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

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
    cursor: pointer;
    background: white;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    transition: background 0.4s ease;
    z-index: 1;
}


.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding-bottom: 2.5rem;
    padding-left: 0;
}

.projects-slider .project-year {
    font-family: elza, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
    background: #0A0A0A;
    padding: 0.2em 0.4em 0.2em 0;
    width: fit-content;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.projects-slider .project-category {
    display: none;
}

.projects-slider .project-title {
    font-family: elza, sans-serif;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-left: 0;
    line-height: 1.1;
    letter-spacing: 0.014em;
    white-space: nowrap;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    background: #0A0A0A;
    padding: 0.2em 0.4em 0.2em 0;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.projects-slider .project-7 .project-title {
    width: fit-content;
}

/* edge zones */

.edge-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.edge-zone-left {
    left: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.15) 0%, transparent 100%);
}

.edge-zone-right {
    right: 0;
    background: linear-gradient(-90deg, rgba(0,0,0,0.15) 0%, transparent 100%);
}

.edge-zone:hover {
    opacity: 1;
}

.edge-zone.disabled {
    pointer-events: none;
    opacity: 0 !important;
}

/* scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease-out,
                transform 0.5s ease-out;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* slider arrows — hidden across project pages */
.slider-arrow { display: none !important; }

/* preview-viewer next button — CSS-drawn triangle matching dot height (10px) */
.pv-next {
    width: 0;
    height: 0;
    background: none;
    padding: 0;
    border-style: solid;
    border-width: 5px 0 5px 9px;
    border-color: transparent transparent transparent var(--primary);
    font-size: 0;
    cursor: pointer;
    margin-left: 0.75rem;
    align-self: center;
    transition: opacity 0.2s ease;
}
.pv-next:hover { opacity: 0.6; }

/* slider progress */

.slider-progress {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    height: 1rem;
    background: #0A0A0A;
    z-index: 10;
    overflow: hidden;
}

.slider-progress-fill {
    height: 100%;
    background: #e99d4d;
    width: 0%;
    transition: width 0.3s ease;
}

/* output page */

.projects-section {
    background: var(--primary);
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 0;
    line-height: 0;
}

.project-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    border: none;
}

.project-thumbnail {
    width: 100%;
    height: 35vh;
    position: relative;
    overflow: hidden;
    display: block;
}

.project-thumbnail-bg {
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-card .project-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
    padding: 0;
    z-index: 2;
}

.project-info-header {
    width: 100%;
    text-align: left;
    line-height: 1;
    display: block;
}

.project-title-wrapper {
    overflow: visible;
    width: 100%;
}

.project-card .project-year,
.project-card .project-category {
    display: none;
}

.project-card .project-title {
    font-family: elza, sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600;
    letter-spacing: 0.014em;
    color: white;
    white-space: nowrap;
    display: inline-block;
    text-transform: uppercase;
    line-height: 1;
    vertical-align: bottom;
}

.project-card:hover .project-title {
    text-decoration: none;
}

.view-arrow {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

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

.view-arrow svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.thumbnail-animation {
    display: none;
}

.anim-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.anim-shape-1 {
    width: 40px;
    height: 40px;
}

.anim-shape-2 {
    width: 70px;
    height: 70px;
}

.anim-shape-3 {
    width: 100px;
    height: 100px;
}

/* contact page */

.contact-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40vh 1.5rem 8rem 1.5rem;
    gap: 4rem;
    background: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.5rem;
    color: white;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.contact-value {
    font-size: 1rem;
    color: white;
}

.contact-value a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
}

.social-link {
    width: 24px;
    height: 24px;
    color: white;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.social-link svg {
    width: 100%;
    height: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.form-input,
.form-textarea {
    padding: 1rem 1rem 1rem 1rem;
    font-family: elza-text, sans-serif;
    color: #0A0A0A;
    font-size: 1rem;
    border: none;
    background: white;
    transition: border-color 0.3s ease;
}

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

.form-input:focus,
.form-textarea:focus {
    outline: 2px solid rgba(10, 10, 10, 0.3);
    outline-offset: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(10, 10, 10, 0.4);
}


.form-submit {
    padding: 0.8rem 1.8rem;
    font-family: elza, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    background: white;
    color: var(--primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: none;
    text-shadow: 0 0 12px color-mix(in srgb, currentColor 60%, transparent);
}

.form-submit:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* about page */

.about-page .page-title {
    margin-left: -0.04em;
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.5rem;
    color: white;
    font-weight: 400;
    max-width: 500px;
}

.intro-text .accent {
    text-decoration: none;
}

/* concentrations */

.concentrations-section {
    padding: 12rem 1.5rem 4rem 1.5rem;
    background: var(--primary);
    color: white;
    min-height: 100vh;
}

/* values */

.values-section {
    padding: 12rem 1.5rem 12rem 1.5rem;
    background: var(--secondary);
}

.values-header {
    margin-bottom: 4rem;
}

.values-header h2 {
    font-family: elza, sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--primary);
    line-height: 1.1;
}

/* resume */

.resume-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.resume-column {
    display: flex;
    flex-direction: column;
}

.resume-category {
    font-family: elza-text, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #0A0A0A;
    text-transform: none;
    letter-spacing: 0.05em;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    line-height: 1.5rem;
}

.resume-item {
    padding-bottom: 3rem;
}

.resume-date {
    font-size: 1rem;
    color: #0A0A0A;
    margin-bottom: 0;
    line-height: 1.5rem;
}

.resume-title {
    font-family: elza-text, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 0;
    line-height: 1.5rem;
}

.resume-description {
    font-size: 1rem;
    font-weight: 300;
    color: #0A0A0A;
    line-height: 1.5rem;
}

/* project pages */

.project-hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 65vh 0 0 0;
    position: relative;
    background: var(--secondary);
    overflow: hidden;
}

.project-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}


.project-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100vw;
    overflow: hidden;
    animation: heroContentFadeIn 0.5s ease-out both;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-hero .project-year {
    font-family: elza, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: block;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.2em 0.5em 0.2em 0;
    background-color: var(--primary);
    color: white;
}

.project-hero-title {
    font-family: elza, sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    margin-left: -0.07em;
    padding: 0.05em 0.2em 0.05em 0;
    white-space: nowrap;
    display: inline-block;
    text-transform: uppercase;
    background-color: var(--primary);
    text-shadow: 0 0 12px color-mix(in srgb, currentColor 60%, transparent);
}

.project-category {
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.project-hero .project-category {
    display: block;
    width: fit-content;
    padding: 0.2em 0.5em 0.2em 0;
    background-color: var(--primary);
    color: white;
}

.project-info {
    min-height: 100vh;
    padding: 40vh 1.5rem 8rem 0;
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.project-info-fullwidth {
    padding-left: 0;
    padding-right: 1.5rem;
    padding-bottom: 12rem;
}

.project-info-fullwidth .project-info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100%;
}

.project-info-fullwidth .project-info-split {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.project-info-fullwidth .project-meta {
    flex-direction: row;
    gap: 4rem;
}

.project-info-split .project-meta {
    flex-direction: column;
}

.project-info-fullwidth .meta-item {
    flex: 1;
}

.project-info-fullwidth .meta-value {
    font-size: 1rem;
    line-height: 1.5rem;
}

/* scroll reveal for fullwidth sections */

.project-info-fullwidth .project-info-grid > * {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.project-info-fullwidth .project-info-grid > .revealed {
    opacity: 1;
    transform: translateY(0);
}

.project-info-fullwidth .project-info-grid > *:nth-child(2) {
    transition-delay: 0.15s;
}

.project-info-fullwidth .project-info-grid > *:nth-child(3) {
    transition-delay: 0.3s;
}

.project-info-grid {
    display: grid;
    grid-template-columns: auto 2fr;
    gap: 8rem;
    max-width: 100%;
    overflow: visible;
}

.project-info-grid > * {
    min-width: 0;
    overflow-wrap: break-word;
}

.project-info-grid img,
.process-header img {
    max-width: 100%;
    height: auto;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-self: start;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.image-label {
    font-family: elza-text, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.project-info:not(.project-info-fullwidth) .image-label {
    color: var(--text-dark);
}

.meta-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.1em;
    color: #0A0A0A;
    line-height: 1.5rem;
}

.meta-value {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.5rem;
}

.project-description h2 {
    font-family: elza, sans-serif;
    font-size: clamp(3rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 3.65rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--primary);
    max-width: 35vw;
}

.project-description p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    max-width: 35vw;
}

.project-description p:first-of-type {
    margin-bottom: 2.25rem;
}

/* placeholder box */

.placeholder-box {
    width: 100%;
    max-width: 400px;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.placeholder-box iframe {
    width: 100%;
    height: 100%;
}

/* project footer */

.project-page .footer-logo {
    color: #0A0A0A;
}

/* process section */

.project-process {
    min-height: 100vh;
    padding: 40vh 1.5rem 8rem 0;
    background: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.project-process > * {
    position: relative;
    z-index: 1;
}

.process-header {
    max-width: 1400px;
    margin: 0 0 8rem 0;
    position: relative;
}

.process-header > .process-textbox {
    border: none;
    padding: 1.5rem 1.5rem 7rem 0;
    height: 14rem;
}

.process-header > img {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
}

.process-header h2 {
    font-family: elza, sans-serif;
    font-size: clamp(3rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.process-header p {
    font-size: 1rem;
    font-weight: 600;
    max-width: 600px;
    line-height: 1.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    padding: 1.5rem 0;
    border-top: 2px solid rgba(255, 255, 255, 1);
}

.step-number {
    font-family: elza, sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 3rem;
}

.step-title {
    font-family: elza, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5rem;
}

.step-description {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
}

/* preview modal */

.preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.preview-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70vw;
    max-height: 70vh;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.process-label {
    font-family: elza, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    margin-top: 0.5rem;
}

/* project-specific base styles */

.aud-image {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.collage-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
    position: absolute;
    top: -15vh;
    left: 0;
    z-index: 1;
}

.concept-car-container {
    position: absolute;
    bottom: 0;
    right: 2rem;
    width: 36%;
    z-index: 1;
}

.concept-car-label {
    text-align: right;
}

/* responsive 1024 */

@media (max-width: 1024px) {
    .project-image.project-5 img {
        top: 0 !important;
        right: -40% !important;
        width: 130% !important;
        height: 130% !important;
        object-fit: contain;
    }

    .home-page .slider-header {
        padding-top: 45vh;
    }

    .project-overlay {
        bottom: 0;
    }

    .nav-links {
        margin-top: 0;
    }

    .contact-grid {
        gap: 4rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 100%;
    }

    .process-header {
        margin-bottom: 4rem;
        width: 100%;
        max-width: 100%;
    }

    /* tablet projects */

    .project-info {
        padding: 40vh 1.5rem 8rem 0;
    }

    .project-info-grid {
        gap: 5rem;
    }

    .project-description h2,
    .project-description p {
        max-width: 100%;
    }

    .project-info .project-description {
        grid-column: span 2;
    }

    .project-info-fullwidth .project-info-split {
        grid-template-columns: 1fr;
    }

    .project-info-fullwidth .project-meta {
        flex-direction: column;
        gap: 2rem;
    }

    .project-info-fullwidth {
        padding-bottom: 10rem;
    }

    .project-process {
        padding-left: 0;
        padding-right: 1.5rem;
        padding-bottom: 16rem;
        background-size: 600% !important;
        background-position: center 70% !important;
    }

    .process-header > .process-textbox {
        align-self: flex-start !important;
        padding-left: 0 !important;
    }

    .projects-slider .project-year {
        width: fit-content;
    }

    .slider-arrow {
        font-size: 4rem;
        bottom: calc(3rem + 1rem + 1rem + 2rem);
    }

    .output-image-header {
        height: 40vh !important;
        background-position: center center !important;
    }



    .cta-section {
        padding: 40vh 1.5rem 30vh 1.5rem;
    }
}

/* responsive 768 */

@media (max-width: 768px) {
    .project-image.project-5 img {
        top: 0 !important;
        right: 0 !important;
        width: 150% !important;
        height: 150% !important;
        object-fit: contain;
    }
    .project-overlay {
        bottom: 0;
    }
    nav {
        height: 10vh;
        max-height: 10vh;
        padding: 1.5rem 1.5rem 1.5rem 0;
        box-sizing: border-box;
    }

    .logo {
        font-size: 1.5rem;
        margin-top: 0 !important;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    h1, h2, h3, h4, h5, h6, .section-title {
        font-weight: 600;
    }

    /* hero */

    .hero {
        padding: 40vh 1.5rem 4rem 1.5rem;
    }

    .hero h1 {
        font-size: clamp(1.2rem, 4.5vw, 1.75rem);
        line-height: 1.3;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .section-title {
        font-size: 4rem;
        line-height: 1.1;
    }

    /* features */

    .features {
        padding: 8rem 1.5rem 20rem 1.5rem;
    }

    /* cta */

    .output-image-header {
        height: 40vh !important;
        background-size: auto 100vh !important;
        background-position: left center !important;
    }

    .cta-section {
        padding: 40vh 1.5rem 25vh 1.5rem;
    }

    .cta-section .btn {
        margin-left: 42vw !important;
    }

    .cta-content {
        transform: translateY(5vh);
    }

    .cta-section h2 {
        font-size: 4rem;
        line-height: 1.1;
    }

    /* slider */

    .slider-header {
        padding: 4rem 1.5rem 0 1.5rem;
    }

    .slider-progress {
        left: 0;
        right: 0;
    }

    .projects-slider .project-year {
        padding-left: 0;
        width: fit-content;
    }

    .projects-slider .project-title {
        padding-left: 0;
    }

    .projects-slider .project-7 .project-title {
        width: fit-content;
    }

    .projects-slider {
        background: #0A0A0A;
    }

    /* page header */

    .page-header {
        padding: 40vh 1.5rem 2rem 1.5rem;
    }

    .page-title {
        font-size: 3rem;
    }

    /* about */

    .intro-text {
        font-size: 1rem;
    }

    .concentrations-section {
        padding: 4rem 1.5rem 8rem 1.5rem;
    }

    .values-section {
        padding: 8rem 1.5rem 8rem 1.5rem;
    }

    .resume-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* contact */

    .contact-section {
        padding: 40vh 1.5rem 20rem 1.5rem;
        min-height: auto;
        align-items: flex-start;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-intro {
        font-size: 1rem;
    }

    /* output */

    .projects-section {
        margin-left: -50vw;
        left: 50%;
        width: 100vw;
        min-height: auto;
    }

    /* project pages */

    .project-hero {
        padding: 60vh 0 0 0;
    }

    .project-hero .project-year,
    .project-hero-title,
    .project-category {
        padding-left: 0;
    }

    .project-info {
        padding: 40vh 1.5rem 8rem 0;
    }

    .project-info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
    }

    .project-meta,
    .project-description {
        padding-right: 1.5rem;
    }

    .project-description h2,
    .project-description p {
        max-width: 100%;
    }

    .project-info .project-description {
        grid-column: span 2;
    }

    .project-description p:last-child {
        padding-bottom: 3rem;
    }

    #bebopPreview, #zcPreview, #chPreview, #coPreview, #postPreview, .letter-preview {
        width: 90vw !important;
        max-width: 90vw !important;
        max-height: none !important;
    }

    .project-info-fullwidth .project-info-split {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .project-info-fullwidth .project-info-split-alt {
        grid-template-columns: 1fr;
    }

    .project-info-fullwidth .project-meta {
        flex-direction: column;
        gap: 2rem;
    }

    .project-info-fullwidth {
        padding-bottom: 10rem;
    }

    .project-info-split .placeholder-box {
        order: 3;
    }

    .project-info-split-alt {
        grid-template-columns: 1fr;
    }

    .project-process {
        padding: 40vh 1.5rem 16rem 0;
        background-size: cover !important;
        background-position: center center !important;
    }

    .process-header {
        margin-bottom: 4rem !important;
    }

    .project-meta {
        width: calc(100% + 1.5rem);
        margin-right: -1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    /* footer */

    footer {
        padding: 3rem 1.5rem 2rem 1.5rem;
    }

    .footer-base,
    .footer-dark {
        height: 20vh;
        max-height: 20vh;
        box-sizing: border-box;
        padding: 0 1.5rem 10vh 0;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero {
        background-position: left center !important;
    }

    .cta-section {
        background-position: left center !important;
    }
}

/* responsive landscape */

@media (orientation: landscape) {
    .hero,
    .projects-slider,
    .features,
    .cta-section {
        min-height: 100vh;
    }

    .contact-section {
        min-height: 100vh;
    }

    .contact-grid {
        max-width: none;
        margin: 0;
        grid-template-columns: 1fr 2fr;
    }

    .contact-section .page-header-content {
        max-width: none;
    }
}

/* landscape projects */

@media (orientation: landscape) {
    .project-page .project-hero,
    .project-page .project-info,
    .project-page .project-info-fullwidth,
    .project-page .project-process,
    .project-page .projects-slider {
        min-height: 100vh;
    }

    .project-page .project-process {
        padding-top: 40vh;
    }

    .project-page .process-header {
        max-width: none;
        margin: 0 0 8rem 0;
    }

    .project-page .process-steps {
        max-width: none;
        margin: 0;
    }

    .project-page .project-info-grid {
        max-width: none;
        margin: 0;
    }

    .project-page .project-info-fullwidth .project-info-grid {
        max-width: none;
        margin: 0;
    }

    .project-page .project-info-fullwidth .project-info-split {
        grid-template-columns: 1fr 1fr;
    }

    .project-page .project-info-fullwidth .project-info-split-alt {
        grid-template-columns: 2fr 1fr;
    }

    .project-page .placeholder-box {
        max-width: 400px;
    }
}


/* ============================================
   RESPONSIVE — Large Desktop (1440px+)
   ============================================ */

@media (min-width: 1025px) {
    .slider-arrow {
        bottom: calc(3rem + 1rem + 1rem + 2rem) !important;
    }
}

@media (min-width: 1440px) {

    /* --- Scale everything up 20% via root font-size --- */
    html {
        font-size: 19.2px;
    }

    /* --- Pin navbar to current sizes (no scaling) --- */
    nav {
        height: 10vh;
        max-height: 10vh;
        padding: 0 1.5rem 0 0;
        font-size: 16px;
    }

    .footer-base,
    .footer-dark {
        height: 20vh;
        max-height: 20vh;
        padding: 0 1.5rem 10vh 0;
    }

    .logo {
        font-size: 16px;
    }

    .logo img {
        height: 5vh;
    }

    .nav-links {
        gap: 48px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 16px;
    }

    .hamburger {
        width: 30px;
        height: 20px;
    }

    .hamburger span {
        height: 2px;
    }

    /* --- Pin outside padding to 32px (current 2rem value) --- */
    .page-header {
        padding-left: 32px;
        padding-right: 32px;
    }

    .hero {
        padding-left: 0;
        padding-right: 32px;
    }

    .features {
        padding-left: 32px;
        padding-right: 32px;
    }

    .slider-header {
        padding-left: 32px;
        padding-right: 32px;
    }

    .project-page .slider-header {
        padding-left: 32px;
        padding-right: 32px;
    }

    .cta-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    footer {
        padding-left: 32px;
        padding-right: 32px;
    }

    .contact-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .values-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .project-info {
        padding-left: 0;
        padding-right: 32px;
    }

    .project-info-fullwidth {
        padding-left: 0;
        padding-right: 32px;
    }

    .project-process {
        padding-left: 0;
        padding-right: 32px;
    }

    .project-hero .project-year {
        padding-left: 0;
    }

    .project-hero-title {
        padding-left: 0;
    }

    .project-category {
        padding-left: 0;
    }

    .projects-slider .project-year {
        padding-left: 0;
    }

    .projects-slider .project-title {
        padding-left: 0;
        font-size: clamp(3rem, 5vw, 7rem);
    }

    .project-overlay {
        padding-left: 0;
    }

    /* --- Increase max-width containers by 20% --- */
    .page-header-content {
        max-width: 1440px;
    }

    .hero-content {
        max-width: 1440px;
    }

    .contact-grid {
        max-width: 1440px;
    }

    .process-header {
        max-width: 1680px;
    }

    .process-steps {
        max-width: 1680px;
    }

    .section-subtitle {
        max-width: 720px;
    }

    .hero p {
        max-width: 720px;
    }

    .cta-section p {
        max-width: 720px;
    }

    .process-header p {
        max-width: 720px;
    }

    .contact-intro {
        max-width: 480px;
    }

    .intro-text {
        max-width: 600px;
    }

    /* --- Increase icon/element px dimensions by 20% --- */
    .view-arrow {
        width: 36px;
        height: 36px;
    }

    .view-arrow svg {
        width: 17px;
        height: 17px;
    }

    .anim-shape-1 {
        width: 48px;
        height: 48px;
    }

    .anim-shape-2 {
        width: 84px;
        height: 84px;
    }

    .anim-shape-3 {
        width: 120px;
        height: 120px;
    }

    /* --- Increase placeholder dimensions by 20% --- */
    .placeholder-box {
        max-width: 480px;
        height: 720px;
    }

    .btn,
    .form-submit {
        padding: 20px 48px !important;
        font-size: 20px !important;
    }

    .hero-content .btn {
        width: auto !important;
    }

    .faces-image {
        grid-column: 3;
        grid-row: 1;
    }
}

