/* =============================================
   Мыс Каменный — Styles
   ============================================= */

/* CSS Variables */
:root {
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    
    --color-accent: #3b82f6;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --container-max: 1200px;
    --container-padding: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

body.menu-open {
    overflow: hidden;
}

/* Touch optimization */
@media (hover: none) and (pointer: coarse) {
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Image loading optimization */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition-fast);
}

a:hover {
    opacity: 0.7;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section Label */
.section-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
    margin-bottom: 40px;
}

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

/* =============================================
   Header
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition-normal), padding var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-tag {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 4px;
    transition: background var(--transition-fast);
}

.header-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
}

/* Burger Menu Button */
.burger-btn {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.burger-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.burger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--color-white);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    z-index: 1001;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    background: transparent;
    border-radius: 50%;
    transition: all var(--transition-fast);
    z-index: 10;
}

.mobile-menu-close:hover {
    background: var(--color-gray-100);
}

.mobile-menu-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-header {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInDown 0.4s ease forwards 0.1s;
}

.mobile-menu-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-gray-600);
    background: var(--color-gray-100);
    padding: 6px 12px;
    border-radius: 3px;
    display: inline-block;
}

.mobile-menu-list {
    list-style: none;
    flex-grow: 1;
}

.mobile-menu-list li {
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-menu-list li {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: var(--delay);
}

.mobile-menu-list a {
    display: block;
    font-size: 28px;
    font-weight: 500;
    color: var(--color-black);
    padding: 18px 0;
    border-bottom: 1px solid var(--color-gray-200);
    transition: all var(--transition-fast);
}

.mobile-menu-list a:hover {
    color: var(--color-gray-600);
    opacity: 1;
    padding-left: 8px;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--color-gray-200);
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards 0.5s;
}

.mobile-menu-copyright {
    font-size: 12px;
    color: var(--color-gray-500);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--container-padding);
}

.hero-title {
    font-size: clamp(48px, 12vw, 140px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* =============================================
   About Section
   ============================================= */
.about {
    padding: 120px 0;
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.about-text-block {
    max-width: 100%;
}

.about-text-large {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-black);
    margin-bottom: 24px;
}

.about-text {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text-accent {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.5;
    padding-left: 20px;
    border-left: 3px solid var(--color-black);
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    display: block;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 500px;
    display: block;
}

/* =============================================
   Project Section
   ============================================= */
.project {
    position: relative;
    padding: 150px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.project-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 40, 60, 0.5) 0%,
        rgba(0, 20, 40, 0.55) 100%
    );
    z-index: 1;
}

.project .container {
    position: relative;
    z-index: 2;
}

.project-content {
    max-width: 700px;
}

.project-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-gray-100);
    transform: translateY(-2px);
    opacity: 1;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.btn-icon {
    font-size: 14px;
}

/* =============================================
   Murals Section
   ============================================= */
.murals {
    padding: 120px 0;
    background: var(--color-gray-100);
    overflow: hidden;
}

.murals-heading {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 60px;
    text-align: center;
}

.murals-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.murals-slider {
    display: flex;
    gap: 30px;
    padding: 0 var(--container-padding);
    overflow-x: hidden;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

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

/* Fade effect on edges */
.murals-slider-wrapper::before,
.murals-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 80px;
    width: 100px;
    pointer-events: none;
    z-index: 2;
}

.murals-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-gray-100), transparent);
}

.murals-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-gray-100), transparent);
}

/* Mural Card */
.mural-card {
    flex: 0 0 auto;
    width: min(85vw, 1000px);
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.mural-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.mural-card-images {
    position: relative;
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.mural-card-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-slow);
    will-change: opacity;
}

.mural-card-image.active {
    opacity: 1;
}

.mural-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.mural-card-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.mural-card-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 8px;
}

.mural-card-dots .dot.active {
    background: var(--color-white);
    border-color: var(--color-white);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.mural-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-x: hidden;
    overflow-y: visible;
}

.mural-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-400);
}

.mural-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
}

.mural-author {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-500);
}

.mural-description {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* Murals Controls */
.murals-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.murals-nav {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.murals-nav:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.murals-nav:active {
    transform: scale(0.95);
}

.murals-pagination {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    justify-content: center;
}

.murals-pagination .separator {
    color: var(--color-gray-400);
}

.murals-pagination .total {
    color: var(--color-gray-400);
}

/* =============================================
   Other Projects Section
   ============================================= */
.other {
    position: relative;
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.other-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.other-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.other .container {
    position: relative;
    z-index: 2;
}

.other-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
}

.other-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.other-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
}

.other-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--color-gray-900);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-gray-800);
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
}

.logo-sub {
    font-size: 12px;
    color: var(--color-gray-500);
    letter-spacing: 0.05em;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-white);
    opacity: 1;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-gray-500);
}

.footer-credits {
    font-size: 12px;
    color: var(--color-gray-600);
}

/* =============================================
   Video Modal
   ============================================= */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 1;
}

.video-modal-content video {
    width: 100%;
    border-radius: 12px;
}

.video-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: var(--color-white);
    padding: 10px;
    transition: opacity var(--transition-fast);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-content video {
        border-radius: 8px;
    }
    
    .video-modal-close {
        top: -50px;
        right: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        border-radius: 50%;
    }
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        min-height: 300px;
    }
    
    .mural-card {
        grid-template-columns: 1fr;
        width: min(90vw, 600px);
    }
    
    .mural-card-images {
        height: 320px;
    }
    
    .mural-card-content {
        padding: 24px;
    }
    
    .mural-name {
        font-size: 22px;
    }
    
    .mural-description {
        font-size: 13px;
    }
    
    .murals-nav {
        width: 50px;
        height: 50px;
    }
    
    .other-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
        --header-height: 70px;
    }
    
    /* Hide fade effect on mobile */
    .murals-slider-wrapper::before,
    .murals-slider-wrapper::after {
        display: none;
    }
    
    .hero {
        min-height: 100svh;
    }
    
    .hero-title {
        font-size: 56px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
    
    .section-label {
        font-size: 11px;
        margin-bottom: 24px;
    }
    
    .about, .murals, .other {
        padding: 60px 0;
    }
    
    .about-text-large {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .about-text-accent {
        font-size: 16px;
        padding-left: 16px;
    }
    
    .about-image {
        border-radius: 12px;
    }
    
    .about-image img {
        min-height: 250px;
    }
    
    .project {
        padding: 80px 0;
    }
    
    .project-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .murals-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .murals-slider {
        gap: 20px;
        padding: 0 16px;
    }
    
    .murals-controls {
        margin-top: 40px;
        gap: 20px;
    }
    
    .murals-nav {
        width: 48px;
        height: 48px;
    }
    
    .mural-card {
        border-radius: 16px;
        width: min(90vw, 600px);
    }
    
    .mural-card-images {
        height: 380px;
    }
    
    .mural-card-content {
        padding: 26px;
        gap: 8px;
    }
    
    .mural-name {
        font-size: 22px;
    }
    
    .mural-description {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .mural-number {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .mural-name {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .mural-author {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .mural-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .other-content {
        gap: 20px;
    }
    
    .other-card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .other-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .other-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        padding-bottom: 30px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-nav a {
        font-size: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
    }
    
    /* Header */
    .header {
        padding: 16px 0;
    }
    
    .header.scrolled {
        padding: 12px 0;
    }
    
    .header-tag {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .burger-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Hero */
    .hero {
        min-height: 100svh;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .scroll-indicator span {
        height: 50px;
    }
    
    /* About */
    .about-text-large {
        font-size: 17px;
    }
    
    .about-text {
        font-size: 14px;
    }
    
    .about-text-accent {
        font-size: 15px;
    }
    
    .about-image img {
        min-height: 220px;
    }
    
    /* Project */
    .project-title {
        font-size: 22px;
    }
    
    .btn {
        padding: 15px 28px;
        font-size: 14px;
    }
    
    /* Murals */
    .murals-heading {
        font-size: 28px;
    }
    
    .murals-slider {
        gap: 16px;
    }
    
    .murals-controls {
        gap: 16px;
        margin-top: 30px;
    }
    
    .murals-nav {
        width: 44px;
        height: 44px;
    }
    
    .mural-card {
        width: min(92vw, 500px);
    }
    
    .mural-card-images {
        height: 260px;
    }
    
    .mural-card-content {
        padding: 20px;
        gap: 8px;
    }
    
    .mural-number {
        font-size: 11px;
    }
    
    .mural-name {
        font-size: 20px;
    }
    
    .mural-author {
        font-size: 13px;
    }
    
    .mural-description {
        font-size: 12px;
        line-height: 1.4;
    }
    
    /* Other Projects */
    .other-card {
        padding: 20px;
    }
    
    .other-card h3 {
        font-size: 18px;
    }
    
    .other-card p {
        font-size: 13px;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        max-width: 100%;
    }
    
    .mobile-menu-inner {
        padding: 70px 24px 30px;
    }
    
    .mobile-menu-list a {
        font-size: 24px;
        padding: 16px 0;
    }
    
    .mobile-menu-close {
        top: 18px;
        right: 18px;
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-tag {
        font-size: 9px;
        padding: 5px 10px;
    }
    
    /* Video Modal */
    .video-modal-close {
        top: -50px;
        right: 0;
    }
}

/* =============================================
   Animations
   ============================================= */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .mural-card,
    .other-card {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .mural-card.animate,
    .other-card.animate {
        opacity: 1;
        transform: translateY(0);
    }
}
