/* Disable auto-linked styling on mobile */
a[href^="tel"],
a[href^="sms"],
a[href^="mailto"],
a[href="#"],
a[href="#hero"],
a[href="../index.html#hero"] {
    color: inherit !important;
    text-decoration: none !important;
}

/* Font Face */
@font-face {
    font-family: 'Styro';
    src: url('../font/Styro-Black.woff2') format('woff2'),
         url('../font/Styro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: 'Avenir', 'Arial', sans-serif;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

.loading-logo sup {
    font-size: 0.4em;
    vertical-align: super;
}

.loading-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto 1rem;
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.loading-percent {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
}

@keyframes loadingPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Body hidden during loading */
body.is-loading .sections-container,
body.is-loading .navbar,
body.is-loading .fullscreen-menu {
    visibility: hidden;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    overflow-x: hidden;
    background: #000;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Smooth scrolling with snap */
.sections-container {
    height: 100vh;
    height: 100dvh;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scroll-padding: 0;
}

/* Smooth scroll for all elements */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
.sections-container::-webkit-scrollbar {
    display: none;
}

.sections-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Section Base */
.section {
    height: 100vh;
    height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 46, 0.6);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
	backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: fixed;
    top: 3.6vh;
    right: 1.85vw;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    z-index: 10002;
	background: transparent;
	border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.menu-close:hover {
	color: #fff;
}

.menu-content {
    width: 90%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 0;
}

.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-links li {
    margin-bottom: 15px;
    overflow: hidden;
}

.menu-link {
    display: inline-block;
    font-size: 5vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    transform: translateY(100%);
	opacity: 0;
}

.fullscreen-menu.active .menu-link {
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.menu-links li:nth-child(1) .menu-link {
    animation-delay: 0.1s;
}

.menu-links li:nth-child(2) .menu-link {
    animation-delay: 0.15s;
}

.menu-links li:nth-child(3) .menu-link {
    animation-delay: 0.2s;
}

.menu-links li:nth-child(4) .menu-link {
    animation-delay: 0.25s;
}

.menu-links li:nth-child(5) .menu-link {
    animation-delay: 0.3s;
}

.menu-links li:nth-child(6) .menu-link {
    animation-delay: 0.35s;
}

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

.menu-link:hover {
    color: #fff;
    transform: translateX(20px);
	opacity: 100%;
}

.menu-link.active {
    color: #fff;
	opacity: 25%;
}

.menu-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 40px;
    padding-bottom: 20px;
}

.menu-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.menu-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.menu-info a {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-decoration: none;
    display: block;
}

.menu-info a:hover {
    color: #fff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 5.5vh;
    padding-left: 2.35vw;
    padding-right: 2.5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

.logo sup {
    font-size: 10px;
}

.hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Project Section */
.project-section {
    background: linear-gradient(135deg, #0f0f1a 0%, #16162a 100%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5vw;
    position: relative;
    overflow: hidden;
}

.project-section .project-heading,
.project-section-vertical .project-heading {
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-section .project-heading.animate,
.project-section-vertical .project-heading.animate {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.project-bg-title {
    position: absolute;
    font-family: 'Avenir', sans-serif;
    font-size: 25vw;
    font-weight: 900;
    color: #fff;
    opacity: 0.03;
    white-space: nowrap;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -0.02em;
    pointer-events: none;
}

.project-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.project-container {
    max-width: 1400px;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5vw;
    align-items: center;
    margin: 0 auto;
    padding-left: 10vw;
    position: relative;
    z-index: 1;
}

.project-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.project-text-vertical {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-text-vertical.animate {
    opacity: 1;
    transform: translateX(0);
}

.project-heading {
    font-family: 'Avenir', sans-serif;
    font-size: 8vw;
    font-weight: 900;
    color: #ff0000;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%) translateX(-100px);
    letter-spacing: -0.02em;
    z-index: 2;
}

.project-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.project-section-vertical .project-heading {
    left: auto;
    right: 3%;
    writing-mode: sideways-rl;
    transform: translateY(-50%) translateX(100px);
}

.project-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-image-wrapper.animate {
    opacity: 1;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Project Section Vertical (9/16) */
.project-section-vertical {
    background: linear-gradient(225deg, #0f0f1a 0%, #16162a 100%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5vw;
    position: relative;
    overflow: hidden;
}

.project-container-vertical {
    max-width: 1400px;
    width: 90%;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5vw;
    align-items: center;
    margin: 0 auto;
    padding-right: 10vw;
    position: relative;
    z-index: 1;
}

.project-text-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-image-wrapper-vertical {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-image-wrapper-vertical.animate {
    opacity: 1;
    transform: translateX(0);
}

.project-image-vertical {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom right, #d90000 0%, #ff0000 100%);
    overflow: hidden;
    width: 100%;
}

.hero-content {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    will-change: transform;
}

.hero-title {
    font-family: 'Styro', sans-serif;
    font-size: 50vw;
    font-weight: 100;
    letter-spacing: 0px;
    line-height: 1;
    margin: 0;
    padding: 0;
    width: 200%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    transform: scaleY(1.25);
}

.hero-letter {
    display: inline-block;
    background-image: url('../media/hero.webp');
    background-size: 500% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    padding-top: 2.2vh;
    opacity: 0;
}

/* A harfi - İlk %20 (0-20%) */
.hero-letter-1 {
    background-position: 0% 50%;
}

/* J harfi - İkinci %20 (20-40%) */
.hero-letter-2 {
    background-position: 25% 50%;
}

/* A harfi - Üçüncü %20 (40-60%) */
.hero-letter-3 {
    background-position: 50% 50%;
}

/* N harfi - Dördüncü %20 (60-80%) */
.hero-letter-4 {
    background-position: 75% 50%;
}

/* S harfi - Beşinci %20 (80-100%) */
.hero-letter-5 {
    background-position: 100% 50%;
}

/* Soldan gelen harfler (D, O) */
.hero-letter-left {
    transform: translateX(-200%);
    transform-origin: center;
}

.hero-letter-left.animate {
    animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-200%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Yukarıdan gelen harf (G) */
.hero-letter-top {
    transform: translateY(-200%);
    transform-origin: center;
}

.hero-letter-top.animate {
    animation: slideInFromTop 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-200%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Sağdan gelen harfler (R, U) */
.hero-letter-right {
    transform: translateX(200%);
    transform-origin: center;
}

.hero-letter-right.animate {
    animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(200%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-line {
    display: block;
    background: url('../media/hero.webp') center center / 100vw 100vh;
    background-attachment: fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    padding-top: 2.2vh;
    transform: translateX(100%);
    transform-origin: center;
    opacity: 0;
}

.hero-line.animate {
    animation: slideInFromRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-subtitle {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-subtitle span {
    font-family: 'Avenir', sans-serif;
    position: absolute;
    bottom: 3vh;
    font-size: 6vw;
    font-weight: 900;
    color: #ff0000;
}

.hero-subtitle span:first-child {
    writing-mode: sideways-lr;
    text-orientation: mixed;
    position: absolute;
    left: 1%;
    top: 47%;
    transform: translateY(-50%) translateX(-200px);
    letter-spacing: -0.02em;
    opacity: 0;
}

.hero-subtitle span:first-child.animate {
    animation: slideInFromBottom 1s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(-50%) translateX(-200px);
        opacity: 0;
    }
    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

.hero-subtitle span:last-child {
    writing-mode: sideways-rl;
    text-orientation: mixed;
    position: absolute;
    right: 1%;
    top: 51%;
    transform: translateY(-50%) translateX(200px);
    letter-spacing: -0.02em;
    opacity: 0;
}

.hero-subtitle span:last-child.animate {
    animation: slideInSubtitleRight 1s cubic-bezier(0.4, 0, 0.2, 1) 2.3s forwards;
}

@keyframes slideInSubtitleRight {
    0% {
        transform: translateY(-50%) translateX(200px);
        opacity: 0;
    }
    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

/* Scroll Indicator — hidden on desktop */
.scroll-indicator {
    display: none;
    position: absolute;
    bottom: 4vh;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    animation: scrollIndicatorFadeIn 1s ease 3.2s forwards;
    transition: opacity 0.4s ease;
}

.scroll-indicator.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: bounceDown 1.6s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

.scroll-text {
    font-family: 'Avenir', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

@keyframes scrollIndicatorFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #ff0000 0%, #d90000 100%);
    width: 100%;
}

.about-content {
    max-width: 1400px;
    width: 90%;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 4vw;
    align-items: center;
}

.about-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-title {
    font-family: 'Avenir', sans-serif;
    font-size: 10vh;
    font-weight: 900;
    line-height: 1.15;
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
}

.title-line {
    display: flex;
    align-items: baseline;
    position: relative;
    white-space: nowrap;
    max-width: 100%;
}

.title-line:last-child {
    justify-content: flex-start;
}

.highlight-box {
    display: inline-block;
    height: 8vh;
    background: #fff;
    border-radius: 2vh;
    flex: 1;
    min-width: 0;
    vertical-align: middle;
    transform: translateY(3.75px);
}

.highlight-rocket {
    background: url('../media/kiss.webp') center 10% / cover;
    background-size: cover;
    margin-left: 20px;
}

.highlight-lebron {
    background: url('../media/rap.webp') center center / cover;
    background-size: cover;
    margin-right: 20px;
}

.highlight-coffee {
    background: url('../media/match.webp') center center / cover;
    background-size: cover;
    margin: 0 20px;
}

.contact-btn {
    padding: 18px 50px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #fff;
    color: #ff0000;
}

.about-right p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
}

/* Work Section */
.work-section {
    background: linear-gradient(to bottom, #0f0f1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.work-bg-title {
    position: absolute;
    font-family: 'Avenir', sans-serif;
    font-size: 6vw;
    font-weight: 900;
    color: #fff;
    opacity: 0.015;
    white-space: nowrap;
    z-index: 0;
    letter-spacing: -0.02em;
    pointer-events: none;
}

/* Top row */
.work-bg-1 {
    top: 5%;
    left: 5%;
}

.work-bg-2 {
    top: 5%;
    left: 30%;
}

.work-bg-3 {
    top: 5%;
    left: 55%;
}

.work-bg-4 {
    top: 5%;
    right: 5%;
}

/* Second row */
.work-bg-5 {
    top: 25%;
    left: 15%;
}

.work-bg-6 {
    top: 25%;
    left: 45%;
}

.work-bg-7 {
    top: 25%;
    right: 15%;
}

/* Third row */
.work-bg-8 {
    top: 45%;
    left: 5%;
}

.work-bg-9 {
    top: 45%;
    left: 35%;
}

.work-bg-10 {
    top: 45%;
    right: 5%;
}

/* Fourth row */
.work-bg-11 {
    top: 65%;
    left: 20%;
}

.work-bg-12 {
    top: 65%;
    left: 50%;
}

.work-bg-13 {
    top: 65%;
    right: 20%;
}

/* Bottom row */
.work-bg-14 {
    bottom: 5%;
    left: 15%;
}

.work-bg-15 {
    bottom: 5%;
    right: 15%;
}

.work-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5vw;
    position: relative;
    z-index: 1;
}

.work-title {
    font-size: clamp(90px, 10vw, 180px);
    font-weight: 900;
    color: #ff0000;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: -0.02em;
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.work-title.animate {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.work-grid {
    display: flex;
    gap: 20px;
    height: 75vh;
    max-height: 750px;
    width: 100vw;
    max-width: 1000px;
    margin-left: 15vw;
}

.work-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.work-card:hover {
    transform: translateY(-12px);
}

.work-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.work-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0, 0.4, 0.2, 1);
    position: relative;
}

.work-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 40%, 
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: opacity 0.4s ease;
}

.work-card:hover .work-card-image {
    transform: scale(1.5);
}

.work-card:hover .work-card-image::before {
    opacity: 0.9;
}

.work-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: all 0.4s ease;
}

.work-card-content {
    width: 100%;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-card-content {
    transform: translateY(-8px);
}

.work-card-number {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ff0000;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.8;
}

.work-card-title {
    font-size: 2.5vw;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.work-card-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to top, #d90000 0%, #ff0000 100%);
    width: 100%;
}

.contact-content {
    max-width: 1400px;
    width: 90%;
    text-align: center;
}

.contact-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 80px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.contact-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-item h4 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.contact-item p {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
}

.contact-item a {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    text-decoration: none;
    display: block;
}

.contact-item a:hover {
    opacity: 0.8;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(350%);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

/* =============================================
   RESPONSIVE DESIGN
   Breakpoints: 2560 / 1440 / 1024 / 768 / 425 / 375 / 320
   Base styles = 1440px design
   ============================================= */

/* ===================================
   2560px — Ultra-wide Desktop
   =================================== */
@media (min-width: 2561px) {

    .navbar {
        padding: 6vh 3vw;
    }

    .logo {
        font-size: 22px;
    }

    .logo sup {
        font-size: 12px;
    }

    .hamburger {
        width: 36px;
        height: 24px;
    }

    .hamburger span {
        height: 5px;
    }

    /* Menu */
    .menu-content {
        max-width: 1800px;
    }

    .menu-link {
        font-size: 4vw;
    }

    .menu-info h4 {
        font-size: 16px;
    }

    .menu-info p {
        font-size: 20px;
    }

    /* Hero */
    .hero-title {
        font-size: 42vw;
    }

    .hero-subtitle span {
        font-size: 5vw;
    }

    /* About */
    .about-content {
        max-width: 1800px;
    }

    .about-title {
        font-size: 11vh;
    }

    .highlight-box {
        height: 9vh;
        border-radius: 2.5vh;
    }

    .about-right p {
        font-size: 22px;
    }

    .contact-btn {
        padding: 22px 60px;
        font-size: 18px;
    }

    /* Work */
    .work-title {
        font-size: clamp(120px, 10vw, 220px);
    }

    .work-grid {
        max-width: 1200px;
    }

    .work-card-title {
        font-size: 2vw;
    }

    /* Contact */
    .contact-content {
        max-width: 1800px;
    }

    .contact-title {
        font-size: clamp(80px, 8vw, 180px);
    }

    .contact-item h4 {
        font-size: 24px;
    }

    .contact-item p {
        font-size: 22px;
    }

    /* Project (Workshop) */
    .project-container {
        max-width: 1800px;
    }

    .project-container-vertical {
        max-width: 1800px;
    }

    .project-description {
        font-size: 22px;
    }
}

/* ===================================
   1440px — Standard Desktop (base target, minor tweaks)
   =================================== */
@media (max-width: 1440px) {

    .navbar {
        padding: 4.5vh 2.2vw;
    }

    .about-title {
        font-size: 9vh;
    }

    .highlight-box {
        height: 7.5vh;
        border-radius: 2vh;
    }

    .work-grid {
        max-width: 950px;
        margin-left: 14vw;
    }

    .work-card-title {
        font-size: 2.2vw;
    }
}

/* ===================================
   1024px — Tablet Landscape
   =================================== */
@media (max-width: 1025px) {

    /* Navbar */
    .navbar {
        padding: 3vh 3vw;
    }

    .logo {
        font-size: 16px;
    }

    .logo sup {
        font-size: 9px;
    }

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

    .hamburger span {
        height: 4px;
    }

    /* Fullscreen Menu */
    .menu-close {
        top: 3vh;
        right: 3vw;
        font-size: 42px;
        width: 44px;
        height: 44px;
    }

    .menu-content {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 85%;
    }

    .menu-link {
        font-size: 8vw;
    }

    .menu-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
        padding-bottom: 0;
    }

    .menu-info h4 {
        font-size: 13px;
    }

    .menu-info p {
        font-size: 16px;
    }

    /* Hero */
    .hero-title {
        font-size: 44vw;
        transform: scaleY(1.6);
    }

    .hero-subtitle span {
        font-size: 5.5vw;
    }

    .hero-subtitle span:first-child {
        left: 1%;
        top: 45%;
    }

    .hero-subtitle span:last-child {
        right: 1%;
        top: 53%;
    }

    .scroll-indicator {
        display: flex;
    }

    .scroll-arrow {
        width: 36px;
        height: 36px;
    }

    .scroll-text {
        font-size: 24px;
        letter-spacing: 3px;
    }

    /* About Section */
    .about-section {
        overflow: hidden;
    }

    .about-content {
        grid-template-columns: 1fr;
        width: 85%;
        gap: 3vh;
        padding: 10vh 0 5vh;
        overflow: hidden;
    }

    .about-title {
        font-size: clamp(50px, 10vw, 88px);
        width: 100%;
    }

    .title-line {
        white-space: nowrap;
        overflow: hidden;
    }

    .highlight-box {
        height: clamp(33px, 9vw, 66px);
        border-radius: clamp(8px, 2vw, 16px);
        flex-shrink: 1;
        min-width: 1px;
    }

    .highlight-rocket {
        margin-left: 10px;
    }

    .highlight-lebron {
        margin-right: 10px;
    }

    .highlight-coffee {
        margin: 0 10px;
    }

    .about-right p {
        font-size: clamp(14px, 1.8vw, 18px);
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .contact-btn {
        margin-top: 8px;
        padding: 14px 40px;
        font-size: clamp(13px, 1.5vw, 16px);
        letter-spacing: 2px;
        width: 100%;
        text-align: center;
    }

    /* Work Section */
    .work-content {
        flex-direction: column;
        padding: 4vh 5vw;
    }

    .work-title {
        position: static;
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 0;
        font-size: 14vw;
        text-align: center;
    }

    .work-title.animate {
        opacity: 1;
        transform: none;
    }

    .work-grid {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        height: 60vh;
        max-height: none;
        justify-content: center;
    }

    .work-card-title {
        font-size: 2.5vw;
    }

    /* Project Sections (Workshop) */
    .project-section,
    .project-section-vertical {
        padding: 0;
        overflow: hidden;
    }

    .project-heading {
        position: absolute;
        writing-mode: horizontal-tb;
        font-size: clamp(36px, 8vw, 70px);
        transform: none;
        text-align: left;
        top: 10vh;
        left: 6vw;
        right: auto;
        margin: 0;
        z-index: 3;
    }

    .project-heading.animate {
        transform: none;
    }

    .project-section-vertical .project-heading {
        right: auto;
        left: 6vw;
        writing-mode: horizontal-tb;
    }

    .project-bg-title {
        font-size: 28vw;
        opacity: 0.04;
    }

    .project-container {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 0;
        width: 100%;
        height: 100%;
        justify-content: flex-end;
        overflow: hidden;
        position: relative;
    }

    .project-image-wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        border-radius: 0;
        box-shadow: none;
        max-height: none;
        z-index: 0;
        /* Override base animation — image is always visible as background */
        opacity: 1;
        transform: none;
        transition: none;
    }

    .project-image-wrapper.animate {
        opacity: 1;
        transform: none;
    }

    .project-image-wrapper::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.15) 70%,
            transparent 100%
        );
        z-index: 1;
    }

    .project-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-text {
        position: relative;
        z-index: 2;
        gap: 10px;
        margin: 0 5vw 4vh;
        padding: 24px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
        overflow: hidden;
    }

    .project-description {
        font-size: 15px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
    }

    .project-container-vertical {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 0;
        width: 100%;
        height: 100%;
        justify-content: flex-end;
        overflow: hidden;
        position: relative;
    }

    .project-image-wrapper-vertical {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        aspect-ratio: auto;
        border-radius: 0;
        box-shadow: none;
        z-index: 0;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .project-image-wrapper-vertical.animate {
        opacity: 1;
        transform: none;
    }

    .project-image-wrapper-vertical::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.15) 70%,
            transparent 100%
        );
        z-index: 1;
    }

    .project-image-wrapper-vertical img,
    .project-image-vertical {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-text-vertical {
        position: relative;
        z-index: 2;
        gap: 10px;
        margin: 0 5vw 4vh;
        padding: 24px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
        overflow: hidden;
    }

    .project-text-vertical .project-description {
        font-size: 15px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Contact */
    .contact-title {
        font-size: clamp(50px, 10vw, 120px);
        margin-bottom: 50px;
    }

    .contact-info {
        gap: 40px;
        margin-top: 40px;
    }
}

/* ===================================
   768px — Tablet Portrait
   =================================== */
@media (max-width: 769px) {

    /* Snap */
    .sections-container {
        scroll-snap-type: y mandatory;
    }

    .section {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        overflow: hidden;
    }

    .section.work-section {
        overflow: visible;
        overflow-y: hidden;
    }

    /* Navbar */
    .navbar {
        padding: 20px 20px;
    }

    .logo {
        font-size: 15px;
    }

    .logo sup {
        font-size: 8px;
    }

    .hamburger {
        width: 26px;
        height: 18px;
    }

    .hamburger span {
        height: 3px;
    }

    /* Menu */
    .menu-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 36px;
    }

    .menu-content {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 88%;
        overflow-y: auto;
        max-height: 85vh;
    }

    .menu-link {
        font-size: 10vw;
    }

    .menu-links li {
        margin-bottom: 10px;
    }

    .menu-right {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
    }

    .menu-info h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .menu-info p {
        font-size: 14px;
    }

    /* Hero */
    .hero-section {
        background: url('../media/hero.webp') center center / cover;
        background-attachment: fixed;
        position: relative;
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    .hero-letter {
        background: none;
        -webkit-background-clip: border-box;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.25);
        background-clip: border-box;
        color: rgba(255, 255, 255, 0.25);
    }

    .hero-content {
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    .hero-title {
        font-size: 44vw;
        transform: scaleY(1.8);
        line-height: 1;
        width: 200%;
    }

    .hero-subtitle {
        display: none;
    }

    .scroll-indicator {
        display: flex;
        bottom: 5vh;
    }

    .scroll-arrow {
        width: 36px;
        height: 36px;
    }

    .scroll-text {
        font-size: 24px;
        letter-spacing: 3px;
    }

    /* About */
    .about-section {
        overflow: hidden;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5vh;
        width: 88%;
        padding: 8vh 0 4vh;
        overflow: hidden;
    }

    .about-title {
        font-size: clamp(34px, 10vw, 68px);
        width: 100%;
    }

    .title-line {
        white-space: nowrap;
        font-size: inherit;
        overflow: hidden;
    }

    .highlight-box {
        height: clamp(27px, 10vw, 54px);
        border-radius: clamp(5px, 0.8vw, 10px);
        flex-shrink: 1;
        min-width: 1px;
    }

    .highlight-rocket {
        margin-left: 6px;
    }

    .highlight-lebron {
        margin-right: 6px;
    }

    .highlight-coffee {
        margin: 0 6px;
    }

    .about-right p {
        font-size: clamp(12px, 1.9vw, 15px);
        margin-bottom: 12px;
        line-height: 1.55;
    }

    .contact-btn {
        padding: 12px 36px;
        font-size: clamp(12px, 1.7vw, 14px);
        letter-spacing: 1.5px;
        width: 100%;
        text-align: center;
    }

    /* Work Section */
    .work-content {
        flex-direction: column;
        padding: 0;
        align-items: stretch;
        justify-content: center;
        height: 100%;
        gap: 2vh;
    }

    .work-title {
        position: static;
        writing-mode: horizontal-tb;
        transform: none;
        margin: 0;
        padding: 0 6vw;
        font-size: 16vw;
        text-align: center;
        flex-shrink: 0;
    }

    .work-title.animate {
        opacity: 1;
        transform: none;
    }

    .work-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        gap: 16px;
        height: 55vh;
        max-height: none;
        width: 100vw;
        max-width: 100vw;
        padding: 2vh 6vw;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-padding-left: 6vw;
    }

    .work-grid::-webkit-scrollbar {
        height: 3px;
    }

    .work-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 2px;
    }

    .work-grid::-webkit-scrollbar-thumb {
        background: rgba(255, 0, 0, 0.4);
        border-radius: 2px;
    }

    .work-card {
        min-width: auto;
        max-width: none;
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        scroll-snap-align: start;
        aspect-ratio: 9/16;
        border-radius: 14px;
    }

    .work-card:hover {
        transform: none;
    }

    .work-card:hover .work-card-image {
        transform: none;
    }

    .work-card-title {
        font-size: 4.5vw;
    }

    .work-card-overlay {
        padding: 20px;
    }

    .work-card-desc {
        opacity: 1;
        transform: translateY(0);
        font-size: 2.5vw;
        margin-bottom: 0;
    }

    .work-card-number {
        font-size: 2.5vw;
    }

    /* Project Sections (Workshop) */
    .project-section,
    .project-section-vertical {
        padding: 0;
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        overflow: hidden;
    }

    .project-heading {
        font-size: clamp(28px, 8vw, 55px);
        top: 9vh;
        left: 6vw;
    }

    .project-section-vertical .project-heading {
        left: 6vw;
        right: auto;
        writing-mode: horizontal-tb;
    }

    .project-bg-title {
        font-size: 25vw;
    }

    .project-container {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 0;
        width: 100%;
        height: 100%;
        justify-content: flex-end;
        overflow: hidden;
        position: relative;
    }

    .project-image-wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        border-radius: 0;
        max-height: none;
        z-index: 0;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .project-image-wrapper.animate {
        opacity: 1;
        transform: none;
    }

    .project-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-text {
        position: relative;
        z-index: 2;
        gap: 8px;
        margin: 0 5vw 4vh;
        padding: 20px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
        overflow: hidden;
    }

    .project-description {
        font-size: 13px;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.9);
    }

    .project-container-vertical {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 0;
        width: 100%;
        height: 100%;
        justify-content: flex-end;
        overflow: hidden;
        position: relative;
    }

    .project-image-wrapper-vertical {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        aspect-ratio: auto;
        border-radius: 0;
        z-index: 0;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .project-image-wrapper-vertical.animate {
        opacity: 1;
        transform: none;
    }

    .project-image-wrapper-vertical img,
    .project-image-vertical {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-text-vertical {
        position: relative;
        z-index: 2;
        gap: 8px;
        margin: 0 5vw 4vh;
        padding: 20px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
        overflow: hidden;
    }

    .project-text-vertical .project-description {
        font-size: 12px;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Contact */
    .contact-section {
        overflow-y: auto;
    }

    .contact-content {
        width: 88%;
        padding: 8vh 0;
    }

    .contact-title {
        font-size: clamp(36px, 9vw, 80px);
        margin-bottom: 30px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .contact-item h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-item p {
        font-size: 15px;
    }
}

/* ===================================
   425px — Large Mobile (iPhone Plus, Pixel)
   =================================== */
@media (max-width: 426px) {

    /* Navbar */
    .navbar {
        padding: 14px 16px;
    }

    .logo {
        font-size: 14px;
    }

    .logo sup {
        font-size: 7px;
    }

    .hamburger {
        width: 24px;
        height: 16px;
    }

    .hamburger span {
        height: 3px;
    }

    /* Menu */
    .menu-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
        font-size: 32px;
    }

    .menu-content {
        width: 90%;
        gap: 20px;
        max-height: 88vh;
    }

    .menu-link {
        font-size: 12vw;
    }

    .menu-links li {
        margin-bottom: 8px;
    }

    .menu-right {
        gap: 16px;
    }

    .menu-info h4 {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .menu-info p {
        font-size: 13px;
    }

    /* Hero */
    .hero-section {
        background: url('../media/hero.webp') center center / cover;
        background-attachment: fixed;
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    .hero-letter {
        background: none;
        -webkit-background-clip: border-box;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.25);
        background-clip: border-box;
        color: rgba(255, 255, 255, 0.25);
    }

    .hero-title {
        font-size: 44vw;
        transform: scaleY(1.5);
        width: 200%;
    }

    .hero-subtitle {
        display: none;
    }

    .scroll-indicator {
        display: flex;
        bottom: 20vh;
    }

    .scroll-arrow {
        width: 36px;
        height: 36px;
    }

    .scroll-text {
        font-size: 24px;
        letter-spacing: 3px;
    }

    /* About */
    .about-section {
        overflow: hidden;
    }

    .about-content {
        gap: 2vh;
        width: 90%;
        padding: 7vh 0 3vh;
        overflow: hidden;
    }

    .about-title {
        font-size: clamp(33px, 9vw, 66px);
        width: 100%;
    }

    .title-line {
        white-space: nowrap;
        overflow: hidden;
        font-size: inherit;
    }

    .highlight-box {
        height: clamp(26px, 8vw, 52px);
        border-radius: clamp(4px, 1vw, 8px);
        flex-shrink: 1;
        min-width: 1px;
    }

    .highlight-rocket {
        margin-left: 5px;
    }

    .highlight-lebron {
        margin-right: 5px;
    }

    .highlight-coffee {
        margin: 0 5px;
    }

    .about-right p {
        font-size: clamp(11px, 2.8vw, 13px);
        margin-bottom: 8px;
        line-height: 1.5;
    }

    .contact-btn {
        padding: 10px 28px;
        font-size: clamp(10px, 2.6vw, 12px);
        letter-spacing: 1.5px;
        width: 100%;
        margin-top: 4px;
    }

    /* Work */
    .work-title {
        font-size: 18vw;
    }

    .work-grid {
        gap: 12px;
        height: 55vh;
        padding: 2vh 5vw;
        scroll-padding-left: 5vw;
    }

    .work-card {
        border-radius: 10px;
    }

    .work-card-title {
        font-size: 5vw;
    }

    .work-card-desc {
        font-size: 3vw;
    }

    .work-card-number {
        font-size: 3vw;
    }

    .work-card-overlay {
        padding: 16px;
    }

    /* Project Sections */
    .project-heading {
        font-size: clamp(24px, 10vw, 48px);
        top: 8vh;
        left: 5vw;
    }

    .project-text {
        gap: 6px;
        margin: 0 4vw 3vh;
        padding: 18px;
        border-radius: 12px;
    }

    .project-description {
        font-size: 11px;
        line-height: 1.4;
    }

    .project-container-vertical {
        padding: 0;
        overflow: hidden;
    }

    .project-text-vertical {
        margin: 0 4vw 3vh;
        padding: 18px;
        border-radius: 12px;
    }

    .project-text-vertical .project-description {
        font-size: 10px;
        line-height: 1.4;
    }

    .project-image-wrapper-vertical {
        border-radius: 0;
        max-width: none;
        width: 100%;
        max-height: none;
    }

    /* Contact */
    .contact-content {
        width: 88%;
        padding: 6vh 0;
    }

    .contact-title {
        font-size: clamp(30px, 10vw, 60px);
        margin-bottom: 20px;
    }

    .contact-info {
        gap: 22px;
        margin-top: 22px;
    }

    .contact-item h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .contact-item p {
        font-size: 13px;
    }
}

/* ===================================
   375px — Standard Mobile (iPhone X/11/12/13/14)
   =================================== */
@media (max-width: 376px) {

    /* Navbar */
    .navbar {
        padding: 12px 14px;
    }

    .logo {
        font-size: 13px;
    }

    .logo sup {
        font-size: 6px;
    }

    .hamburger {
        width: 22px;
        height: 15px;
    }

    .hamburger span {
        height: 2.5px;
    }

    /* Menu */
    .menu-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 28px;
    }

    .menu-content {
        width: 90%;
        gap: 18px;
    }

    .menu-link {
        font-size: 13vw;
    }

    .menu-links li {
        margin-bottom: 6px;
    }

    .menu-right {
        gap: 14px;
    }

    .menu-info h4 {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .menu-info p {
        font-size: 12px;
    }

    /* Hero */
    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    .hero-letter {
        background: none;
        -webkit-background-clip: border-box;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.25);
        background-clip: border-box;
        color: rgba(255, 255, 255, 0.25);
    }

    .hero-title {
        font-size: 45vw;
        transform: scaleY(1.5);
    }

    .hero-subtitle {
        display: none;
    }

    .scroll-indicator {
        display: flex;
        bottom: 10vh;
    }

    .scroll-arrow {
        width: 32px;
        height: 32px;
    }

    .scroll-text {
        font-size: 24px;
        letter-spacing: 3px;
    }

    /* About */
    .about-content {
        gap: 1.5vh;
        width: 90%;
        padding: 6vh 0 3vh;
        overflow: hidden;
    }

    .about-title {
        font-size: clamp(33px, 9vw, 66px);
        width: 100%;
    }

    .highlight-box {
        height: clamp(26px, 8vw, 52px);
        border-radius: clamp(4px, 1vw, 8px);
        flex-shrink: 1;
        min-width: 1px;
    }

    .highlight-rocket {
        margin-left: 4px;
    }

    .highlight-lebron {
        margin-right: 4px;
    }

    .highlight-coffee {
        margin: 0 4px;
    }

    .about-right p {
        font-size: clamp(10px, 2.9vw, 12px);
        margin-bottom: 6px;
        line-height: 1.45;
    }

    .contact-btn {
        padding: 9px 24px;
        font-size: clamp(9px, 2.5vw, 11px);
        letter-spacing: 1px;
    }

    /* Work */
    .work-title {
        font-size: 18vw;
    }

    .work-grid {
        gap: 10px;
        height: 52vh;
        padding: 1.5vh 5vw;
    }

    .work-card {
        border-radius: 8px;
    }

    .work-card-title {
        font-size: 5.5vw;
    }

    .work-card-desc {
        font-size: 3.2vw;
    }

    .work-card-number {
        font-size: 3.2vw;
    }

    .work-card-overlay {
        padding: 14px;
    }

    /* Project Sections */
    .project-heading {
        font-size: clamp(22px, 10vw, 42px);
        top: 8vh;
    }

    .project-text {
        gap: 5px;
        margin: 0 4vw 3vh;
        padding: 16px;
        border-radius: 12px;
    }

    .project-description {
        font-size: 10px;
        line-height: 1.35;
    }

    .project-text-vertical {
        margin: 0 4vw 3vh;
        padding: 16px;
        border-radius: 12px;
    }

    .project-text-vertical .project-description {
        font-size: 10px;
    }

    .project-image-wrapper-vertical {
        border-radius: 0;
        max-width: none;
        width: 100%;
        max-height: none;
    }

    /* Contact */
    .contact-content {
        padding: 5vh 0;
    }

    .contact-title {
        font-size: clamp(28px, 10vw, 50px);
        margin-bottom: 16px;
    }

    .contact-info {
        gap: 18px;
        margin-top: 18px;
    }

    .contact-item h4 {
        font-size: 13px;
    }

    .contact-item p {
        font-size: 12px;
    }
}

/* ===================================
   320px — Small Mobile (iPhone SE, Galaxy S Mini)
   =================================== */
@media (max-width: 321px) {

    /* Navbar */
    .navbar {
        padding: 10px 12px;
    }

    .logo {
        font-size: 12px;
    }

    .logo sup {
        font-size: 5px;
    }

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

    .hamburger span {
        height: 2px;
    }

    /* Menu */
    .menu-close {
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 24px;
    }

    .menu-content {
        width: 92%;
        gap: 14px;
    }

    .menu-link {
        font-size: 14vw;
    }

    .menu-links li {
        margin-bottom: 5px;
    }

    .menu-right {
        gap: 12px;
    }

    .menu-info h4 {
        font-size: 9px;
        margin-bottom: 4px;
    }

    .menu-info p {
        font-size: 11px;
    }

    /* Hero */
    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    .hero-letter {
        background: none;
        -webkit-background-clip: border-box;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.25);
        background-clip: border-box;
        color: rgba(255, 255, 255, 0.25);
    }

    .hero-title {
        font-size: 46vw;
        transform: scaleY(1.5);
    }

    .hero-subtitle {
        display: none;
    }

    .scroll-indicator {
        display: flex;
        bottom: 10vh;
    }

    .scroll-arrow {
        width: 28px;
        height: 28px;
    }

    .scroll-text {
        font-size: 24px;
        letter-spacing: 2.5px;
    }

    /* About */
    .about-content {
        gap: 1vh;
        width: 92%;
        padding: 5vh 0 2vh;
        overflow: hidden;
    }

    .about-title {
        font-size: clamp(18px, 9vw, 36px);
        width: 100%;
    }

    .highlight-box {
        height: clamp(16px, 8vw, 32px);
        border-radius: clamp(3px, 0.6vw, 6px);
        flex-shrink: 1;
        min-width: 1px;
    }

    .highlight-rocket {
        margin-left: 3px;
    }

    .highlight-lebron {
        margin-right: 3px;
    }

    .highlight-coffee {
        margin: 0 3px;
    }

    .about-right p {
        font-size: clamp(9px, 2.8vw, 11px);
        margin-bottom: 5px;
        line-height: 1.4;
    }

    .contact-btn {
        padding: 8px 18px;
        font-size: clamp(8px, 2.5vw, 10px);
        letter-spacing: 1px;
    }

    /* Work */
    .work-title {
        font-size: 20vw;
    }

    .work-grid {
        gap: 8px;
        height: 50vh;
        padding: 1.5vh 4vw;
        scroll-padding-left: 4vw;
    }

    .work-card {
        border-radius: 6px;
    }

    .work-card-title {
        font-size: 6vw;
    }

    .work-card-desc {
        font-size: 3.5vw;
    }

    .work-card-number {
        font-size: 3.5vw;
        margin-bottom: 8px;
    }

    .work-card-overlay {
        padding: 10px;
    }

    /* Project Sections */
    .project-heading {
        font-size: clamp(18px, 10vw, 36px);
        top: 7vh;
        left: 4vw;
    }

    .project-text {
        gap: 4px;
        margin: 0 3vw 2.5vh;
        padding: 14px;
        border-radius: 10px;
    }

    .project-description {
        font-size: 9px;
        line-height: 1.35;
    }

    .project-container-vertical {
        padding: 0;
        overflow: hidden;
    }

    .project-text-vertical {
        margin: 0 3vw 2.5vh;
        padding: 14px;
        border-radius: 10px;
    }

    .project-text-vertical .project-description {
        font-size: 8px;
        line-height: 1.35;
    }

    .project-image-wrapper-vertical {
        border-radius: 0;
        max-width: none;
        width: 100%;
        max-height: none;
    }

    /* Contact */
    .contact-content {
        width: 90%;
        padding: 4vh 0;
    }

    .contact-title {
        font-size: clamp(24px, 10vw, 42px);
        margin-bottom: 12px;
    }

    .contact-info {
        gap: 14px;
        margin-top: 14px;
    }

    .contact-item h4 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .contact-item p {
        font-size: 11px;
    }
}

/* ===================================
   Mobile Performance Optimizations
   =================================== */
@media (max-width: 1025px) {
    /* Remove expensive backdrop-filter on touch devices */
    .fullscreen-menu {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(26, 26, 46, 0.92);
    }

    .project-text,
    .project-text-vertical {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(0, 0, 0, 0.7);
    }

    /* Fix background-attachment: fixed — broken/slow on mobile */
    .hero-line {
        background-attachment: scroll;
    }

    /* GPU-accelerate scrolling container */
    .sections-container {
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Disable parallax on mobile — causes jank */
    .hero-content {
        will-change: auto;
    }
}
