/* CSS Variables */
:root {
    --color-black: #000;
    --color-white: #fff;
    --color-cream: #f8f6f3;
    --color-gray: #888;
    --color-gray-light: #e5e5e5;
    --color-accent: #c9a87c;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-black);
    background: var(--color-white);
    overflow-x: hidden;
}

/* Utility */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Typography */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 24px;
}

.section-label.light {
    color: rgba(255,255,255,0.5);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title.large {
    font-size: clamp(3rem, 8vw, 7rem);
}

.section-title.light {
    color: var(--color-white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 60px;
    transition: all 0.6s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 60px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.6s;
}

.navbar.scrolled .logo {
    color: var(--color-black);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.6s, opacity 0.3s;
    opacity: 0.7;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 1;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.navbar.scrolled .nav-menu a {
    color: var(--color-black);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--color-white);
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-black);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 40%, rgba(10,10,10,0.3) 70%, transparent 100%);
    z-index: 2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 30% 50%, rgba(201, 168, 124, 0.1) 0%, transparent 60%);
    z-index: 3;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 1400px;
    width: 100%;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 24px;
    }
    
    .hero-bg::before {
        background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.85) 100%);
    }
    
    .hero-image {
        width: 100%;
        opacity: 0.6;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-label {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--color-white);
    margin-bottom: 32px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: block;
}

/* Entrance animation variants */
.hero-title.entrance-slide-up .line span { transform: translateY(100%); }
.hero-title.entrance-slide-down .line span { transform: translateY(-100%); }
.hero-title.entrance-fade .line span { opacity: 0; transform: translateY(0); }
.hero-title.entrance-scale .line span { opacity: 0; transform: scale(0.8); }
.hero-title.entrance-blur .line span { opacity: 0; filter: blur(20px); transform: translateY(0); }

/* Shimmer Effects */
@keyframes shimmer {
    0% { background-position: -100% center; }
    100% { background-position: 200% center; }
}

@keyframes goldenGlow {
    0% { text-shadow: 0 0 0 transparent; }
    30% { text-shadow: 0 0 40px rgba(201, 168, 124, 0.4), 0 0 80px rgba(201, 168, 124, 0.2); }
    70% { text-shadow: 0 0 60px rgba(201, 168, 124, 0.5), 0 0 100px rgba(201, 168, 124, 0.3); }
    100% { text-shadow: 0 0 0 transparent; }
}

@keyframes goldenBreath {
    0%, 100% { 
        opacity: 1; 
        filter: brightness(1);
    }
    50% { 
        opacity: 0.95; 
        filter: brightness(1.15) saturate(1.1);
    }
}

@keyframes elegantReveal {
    0% { 
        opacity: 1; 
        letter-spacing: -0.03em;
        filter: brightness(1);
    }
    40% { 
        opacity: 0.9; 
        letter-spacing: -0.01em;
        filter: brightness(1.1);
    }
    100% { 
        opacity: 1; 
        letter-spacing: -0.03em;
        filter: brightness(1);
    }
}

.hero-title.shimmer .line span {
    background: linear-gradient(
        90deg,
        var(--color-white) 0%,
        var(--color-white) 35%,
        #e8d5a3 45%,
        var(--color-accent) 50%,
        #e8d5a3 55%,
        var(--color-white) 65%,
        var(--color-white) 100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out;
}

.hero-title.glow .line span {
    animation: goldenGlow 5s ease-in-out;
}

.hero-title.sparkle .line span {
    animation: goldenBreath 4s ease-in-out;
}

.hero-title.elegant-fade .line span {
    animation: elegantReveal 5s ease-in-out;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    opacity: 0;
    transform: translateY(20px);
}

.scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

@media (max-width: 768px) {
    .scroll-hint {
        left: 50%;
        transform: translateX(-50%);
    }
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* Intro Statement */
.intro-statement {
    padding: 100px 0;
    background: var(--color-white);
}

.statement {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--color-black);
}

.statement .word {
    display: inline-block;
    opacity: 0.1;
    transition: opacity 0.5s;
}

.statement .word.active {
    opacity: 1;
}

/* Story Section */
.story {
    padding: 80px 0;
    background: var(--color-cream);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.story-left {
    position: relative;
}

.sticky-content {
    position: sticky;
    top: 30vh;
}

.story-right {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.story-image-container {
    overflow: hidden;
    border-radius: 4px;
}

.story-image {
    transform: scale(1.1);
    transition: transform 1.2s var(--ease-out-expo);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.story-image-container.in-view .story-image {
    transform: scale(1);
}

.placeholder-img {
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
}

.gradient-1 { background: linear-gradient(135deg, #c9a87c 0%, #8b7355 100%); }
.gradient-2 { background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%); }
.gradient-3 { background: linear-gradient(135deg, #e8dfd5 0%, #c9b99a 100%); color: #333; }
.gradient-4 { background: linear-gradient(135deg, #3d3d3d 0%, #1f1f1f 100%); }
.gradient-5 { background: linear-gradient(135deg, #d4c4a8 0%, #a89070 100%); }
.gradient-6 { background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%); }
.gradient-7 { background: linear-gradient(135deg, #8b7355 0%, #5c4d3c 100%); }

.story-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    max-width: 500px;
}

/* Stats Section */
.stats {
    padding: 80px 60px;
    background: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--color-gray-light);
    transition: all 0.6s var(--ease-out-expo);
}

.stat-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-10px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    color: var(--color-black);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    margin-top: 16px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--color-gray);
}

/* Portfolio Section */
.portfolio {
    padding: 80px 60px;
    background: var(--color-cream);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item.item-1 {
    grid-column: 1 / 8;
}

.portfolio-item.item-2 {
    grid-column: 8 / 13;
    margin-top: 100px;
}

.portfolio-item.item-3 {
    grid-column: 1 / 6;
}

.portfolio-item.item-4 {
    grid-column: 6 / 13;
    margin-top: -50px;
}

.portfolio-image {
    overflow: hidden;
    border-radius: 4px;
}

.portfolio-image .placeholder-img {
    aspect-ratio: 16/10;
    transition: transform 1s var(--ease-out-expo);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
    transition: transform 1s var(--ease-out-expo);
}

.portfolio-item:hover .placeholder-img,
.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-info {
    margin-top: 20px;
}

.portfolio-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* Horizontal Scroll Section */
.horizontal-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

.horizontal-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.horizontal-content {
    display: flex;
    gap: 32px;
    padding: 0 60px;
    will-change: transform;
}

.h-item {
    flex-shrink: 0;
    width: 50vw;
    height: 70vh;
    overflow: hidden;
    border-radius: 4px;
}

.h-item .placeholder-img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
}

.h-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Journey Section */
.journey {
    padding: 80px 0;
    background: var(--color-black);
}

.journey-header {
    text-align: center;
    margin-bottom: 50px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    opacity: 0.3;
    transition: opacity 0.6s;
}

.timeline-item.in-view {
    opacity: 1;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-accent);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

/* Quote Section */
.quote-section {
    padding: 200px 60px;
    background: var(--color-cream);
    text-align: center;
}

.quote-section blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--color-black);
}

.quote-section cite {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: normal;
    letter-spacing: 0.1em;
    color: var(--color-gray);
}

/* Connect Section */
.connect {
    padding: 80px 60px;
    background: var(--color-white);
}

.connect-content {
    max-width: 1000px;
    margin: 0 auto;
}

.connect-header {
    text-align: center;
    margin-bottom: 60px;
}

.connect-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.connect-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 24px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.connect-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.connect-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,168,124,0.1), transparent);
    transition: left 0.7s var(--ease-out-expo);
}

.connect-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.connect-card:hover::before {
    opacity: 1;
}

.connect-card:hover::after {
    left: 100%;
}

.connect-card-icon {
    position: relative;
    z-index: 1;
    color: var(--color-black);
    margin-bottom: 20px;
    transition: all 0.5s var(--ease-out-expo);
}

.connect-card:hover .connect-card-icon {
    color: var(--color-accent);
    transform: scale(1.1);
}

.connect-card h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 8px;
    transition: color 0.5s var(--ease-out-expo);
}

.connect-card:hover h3 {
    color: var(--color-white);
}

.connect-card p {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--color-gray);
    transition: color 0.5s var(--ease-out-expo);
}

.connect-card:hover p {
    color: rgba(255,255,255,0.6);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-gray-light);
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-black);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 1rem;
    color: var(--color-gray);
    pointer-events: none;
    transition: all 0.3s var(--ease-out-quart);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    font-size: 0.75rem;
    color: var(--color-black);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-black);
    transition: width 0.6s var(--ease-out-expo);
}

.form-group input:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-white);
    background: var(--color-black);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--color-accent);
    transform: translateX(10px);
}

.submit-btn svg {
    transition: transform 0.4s var(--ease-out-expo);
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* TikTok Section */
.tiktok-section {
    padding: 60px 0;
    background: var(--color-cream);
}

.tiktok-header {
    text-align: center;
    margin-bottom: 40px;
}

.tiktok-stats {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-top: 10px;
    letter-spacing: 0.05em;
}

.tiktok-carousel {
    width: 100%;
    overflow: hidden;
}

.tiktok-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.tiktok-scroll::-webkit-scrollbar {
    height: 3px;
}

.tiktok-scroll::-webkit-scrollbar-track {
    background: var(--color-gray-light);
}

.tiktok-scroll::-webkit-scrollbar-thumb {
    background: var(--color-accent);
}

.tiktok-embed {
    flex-shrink: 0;
    scroll-snap-align: start;
}

.tiktok-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.tiktok-cta {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-black);
    text-decoration: none;
    padding: 14px 36px;
    border: 1px solid var(--color-black);
    transition: all 0.3s var(--ease-out-expo);
}

.tiktok-cta:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Footer */
.footer {
    padding: 80px 60px;
    background: var(--color-black);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.footer-social-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.footer-social-link:hover {
    color: var(--color-accent);
}

.footer-divider {
    color: rgba(255,255,255,0.3);
}

.footer-line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto 40px;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }
    
    .sticky-content {
        position: relative;
        top: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-item.item-1,
    .portfolio-item.item-2,
    .portfolio-item.item-3,
    .portfolio-item.item-4 {
        grid-column: span 6;
        margin-top: 0;
    }
    
    .connect-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .navbar {
        padding: 16px 20px;
    }
    
    .navbar.scrolled {
        padding: 12px 20px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        background: var(--color-black);
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s var(--ease-out-expo);
        z-index: 99;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        font-size: 1.3rem;
        color: var(--color-white);
        opacity: 1;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 100;
    }
    
    .nav-toggle.active span {
        background: var(--color-white) !important;
    }
    
    .nav-toggle.active span:first-child {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .nav-toggle.active span:last-child {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .section-title.large {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .section-label {
        font-size: 0.7rem;
        margin-bottom: 16px;
    }
    
    /* Intro Statement */
    .intro-statement {
        padding: 60px 0;
    }
    
    .statement {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        padding: 0 10px;
    }
    
    /* Story */
    .story {
        padding: 60px 0;
    }
    
    .story-content {
        padding: 0 20px;
        gap: 40px;
    }
    
    .story-right {
        gap: 40px;
    }
    
    .story-text-block p {
        font-size: 1rem;
    }
    
    /* Stats */
    .stats {
        padding: 60px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-item {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Portfolio */
    .portfolio {
        padding: 60px 20px;
    }
    
    .portfolio-header {
        margin-bottom: 40px;
    }
    
    .portfolio-grid {
        gap: 20px;
    }
    
    .portfolio-item.item-1,
    .portfolio-item.item-2,
    .portfolio-item.item-3,
    .portfolio-item.item-4 {
        grid-column: span 12;
        margin-top: 0;
    }
    
    .portfolio-info h3 {
        font-size: 1.2rem;
    }
    
    /* Horizontal scroll */
    .h-item {
        width: 85vw;
        height: 60vh;
    }
    
    /* Journey */
    .journey {
        padding: 60px 0;
    }
    
    .journey-header {
        margin-bottom: 40px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 40px 0;
    }
    
    .timeline-year {
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.4rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* Quote */
    .quote-section {
        padding: 60px 20px;
    }
    
    .quote-section blockquote {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }
    
    /* Connect */
    .connect {
        padding: 60px 20px;
    }
    
    .connect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .connect-card {
        padding: 35px 20px;
    }
    
    .connect-card h3 {
        font-size: 1.1rem;
    }
    
    .connect-card p {
        font-size: 0.7rem;
    }
    
    .connect-card-icon svg {
        width: 26px;
        height: 26px;
    }
    
    /* TikTok */
    .tiktok-section {
        padding: 50px 0;
    }
    
    .tiktok-header {
        margin-bottom: 30px;
    }
    
    .tiktok-scroll {
        padding: 10px 20px 20px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 20px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Scroll indicator */
    .scroll-hint {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
    
    .scroll-line {
        height: 40px;
    }
}

/* Animation Classes */
[data-scroll] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

[data-scroll].in-view {
    opacity: 1;
    transform: translateY(0);
}
