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

:root {
    --primary-bg: #000000;
    --secondary-bg: #0a0a0a;
    --card-bg: #111111;
    --accent-gold: #D4AF37;
    --accent-blue: #4A90E2;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #888888;
    --border-color: #222222;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--primary-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: none;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s, box-shadow 0.3s;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo .aka {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    text-transform: none;
}

.logo .aka .nicky {
    font-style: italic;
}

.location-info {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.cta-btn {
    background: var(--accent-gold);
    color: var(--primary-bg) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 3px;
    transition: all 0.3s;
    font-weight: 600;
}

.cta-btn:hover {
    background: #C5A028;
    transform: translateY(-2px);
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary-bg);
    border-left: 2px solid var(--accent-gold);
    z-index: 999;
    padding: 100px 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

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

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-nav.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.mobile-nav a:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    padding-left: 10px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-split {
    display: flex;
    min-height: 70vh;
    background: var(--primary-bg);
    margin-top: 120px;
    padding-top: 0;
    position: relative;
}

.hero-left {
    width: 20%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    background: var(--primary-bg);
}

.camera-dude {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.hero-right {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 2rem;
    background: var(--primary-bg);
}

/* ============================================
   POSTER MARQUEE (with touch scrolling)
   ============================================ */
.poster-strip-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.poster-strip {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 15px;
    animation: posterScroll 144s linear infinite;
    will-change: transform;
    cursor: grab;
}

.poster-strip:active {
    cursor: grabbing;
}

.marquee {
    /* This class is added by JS for drag/touch scrolling */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.poster-frame:hover ~ .poster-strip,
.poster-strip:has(.poster-frame:hover) {
    animation-play-state: paused;
}

.poster-spacer {
    width: 210px;
    height: 300px;
    flex-shrink: 0;
    pointer-events: none;
}

.poster-frame {
    position: relative;
    height: 300px;
    width: auto;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInPoster 1.5s ease-in forwards;
}

@keyframes fadeInPoster {
    from { opacity: 0; }
    to { opacity: 1; }
}

.poster-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.poster-frame img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: cover;
}

@keyframes posterScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.poster-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 70%, transparent 100%);
    color: var(--text-secondary);
    padding: 1.5rem 1rem 0.8rem;
    font-size: 0.85rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.poster-frame:hover .poster-caption {
    opacity: 1;
}

.poster-caption em {
    color: var(--accent-gold);
    font-style: italic;
}

/* ============================================
   IMDB BUTTON
   ============================================ */
.imdb-button-container {
    text-align: center;
    margin-bottom: 0.5rem;
    padding-top: 0;
}

.imdb-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #F5C518;
    color: #000000;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(245, 197, 24, 0.5);
    animation: imdbGlow 2s ease-in-out infinite;
    cursor: pointer;
    border: 3px solid #000000;
}

@keyframes imdbGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(245, 197, 24, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 60px rgba(245, 197, 24, 0.8);
        transform: scale(1.05);
    }
}

.imdb-btn:hover {
    background: #E6B800;
    transform: scale(1.1) !important;
    box-shadow: 0 20px 80px rgba(245, 197, 24, 1);
    animation-play-state: paused;
}

.imdb-logo {
    background: #000000;
    color: #F5C518;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -1px;
    font-family: 'Arial', sans-serif;
}

.imdb-text {
    color: #000000;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    text-align: center;
    padding: 1.5rem 0;
    background: var(--primary-bg);
    cursor: pointer;
}

.scroll-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.scroll-indicator p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.scroll-arrow {
    font-size: 2rem;
    color: var(--accent-gold);
    animation: bounce 2s infinite;
    font-weight: bold;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-indicator:hover .scroll-arrow {
    color: #C5A028;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 0 20px 40px 20px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* ============================================
   FEATURED WORK (with video players)
   ============================================ */
.featured-work {
    background: var(--secondary-bg);
    padding: 0 20px 60px 20px;
    margin-top: 40px;
}

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

.work-item {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    width: 100%;
}

.work-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.work-details {
    padding: 1.5rem;
}

.work-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.network {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.episodes {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    font-family: 'Montserrat', sans-serif;
}

.dp {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: normal;
    margin-bottom: 0.2rem;
    font-family: 'Montserrat', sans-serif;
}

.dp-secondary {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: normal;
    margin-bottom: 0.6rem;
    padding-left: 2.1rem;
    font-family: 'Montserrat', sans-serif;
}

/* ============================================
   BTS SLIDESHOW (with photo modal)
   ============================================ */
.bts-slideshow {
    background: var(--primary-bg);
    padding: 0 0 60px 0;
    margin-top: 40px;
}

.bts-slideshow .container {
    margin-bottom: 0.5rem; 
}

.bts-slideshow .film-strip-container {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.bts-slideshow .film-strip {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 25px;
    animation: btsScroll 60s linear infinite;
    will-change: transform;
}

.film-spacer {
    width: 400px;
    height: 440px;
    flex-shrink: 0;
    pointer-events: none; 
    opacity: 1;
    visibility: visible;
}

.bts-slideshow .film-frame {
    position: relative;
    height: 440px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 1.5s ease-in;
    opacity: 0;
}

.bts-slideshow .film-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.bts-slideshow .film-strip:has(.film-frame:hover) {
    animation-play-state: paused !important;
}

.bts-slideshow .film-frame img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: cover;
}

@keyframes btsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Caption on BTS photos - matches HTML class="caption" */
.bts-slideshow .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 70%, transparent 100%);
    color: var(--text-secondary);
    padding: 1.5rem 1rem 0.8rem;
    font-size: 0.85rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.bts-slideshow .film-frame:hover .caption {
    opacity: 1;
}

.bts-slideshow .caption em {
    color: var(--accent-gold);
    font-style: italic;
}

/* ============================================
   PHOTO MODAL (for BTS images)
   ============================================ */
.photo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--accent-gold);
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
    font-weight: 300;
    line-height: 1;
}

.modal-close:hover {
    color: #C5A028;
}

.modal-photo {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-photo-caption {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-secondary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    max-width: 80%;
    font-family: 'Montserrat', sans-serif;
}

.modal-photo-caption em {
    color: var(--accent-gold);
    font-style: italic;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--secondary-bg);
    padding: 0 20px 80px 20px;
    margin-top: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1rem; 
}

.bio p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.bio p strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.about-image,
.photo-placeholder {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% center;
    transform: scale(1.15);
    margin-top: -60px;
}

.photo-placeholder {
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ============================================
   CONTACT SECTION (with working form)
   ============================================ */
.contact {
    background: var(--primary-bg);
    padding: 0 20px 60px 20px;
    margin-top: 40px;
}

.contact .section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact .section-subtitle {
    margin-bottom: 2.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.info-item h3 {
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-item p,
.info-item a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.info-item a {
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--accent-gold);
}

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

.contact-form input:not([type="radio"]),
.contact-form textarea {
    padding: 0.7rem;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    background: var(--card-bg);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.radio-option input[type="radio"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: var(--accent-gold);
    pointer-events: auto;
}

.radio-option:hover span {
    color: var(--accent-gold);
}

.primary-btn {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-bg);
    padding: 0.8rem 2.5rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: 2px solid var(--accent-gold);
}

.primary-btn:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    text-align: center;
    padding: 3rem 20px;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 968px) {
    /* Show hamburger, hide desktop nav */
    .nav-menu {
        display: none;
    }
    
    .hamburger,
    .mobile-nav,
    .mobile-nav-overlay {
        display: flex;
    }

    /* MOBILE: No fade-in for posters */
    .poster-frame {
        opacity: 1;
        animation: none;
    }
    
    /* MOBILE: Delay marquee start */
    .poster-strip {
        animation: posterScroll 144s linear 1s infinite;
    }
    
    /* MOBILE: Hero reorder */
    .hero-split {
        flex-direction: column;
        min-height: auto;
        margin-top: 100px;
    }
    
    .hero-left {
        width: 100%;
        padding: 2rem;
        order: 3;
    }
    
    .hero-right {
        width: 100%;
        padding: 1.5rem;
        order: 1;
    }
    
    .camera-dude {
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }

    /* MOBILE: Smaller poster spacer */
    .poster-spacer {
        width: 100px;
        display: block;
    }

    /* MOBILE: Featured Work centered */
    .work-grid {
        grid-template-columns: 1fr;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .work-item {
        max-width: 100%;
    }

    /* MOBILE: BTS static vertical grid */
    .bts-slideshow .film-strip-container {
        height: auto;
        overflow: visible;
    }
    
    /* MOBILE: Show BTS captions permanently */
    .bts-slideshow .caption {
        opacity: 1;
    }
    
    /* MOBILE: Disable photo modal clicks */
    .bts-slideshow .film-frame {
        cursor: default;
        pointer-events: none;
        height: auto;
        width: 100%;
        opacity: 1;
        transition: none;
    }

    .bts-slideshow .film-strip {
        position: relative;
        flex-direction: column;
        gap: 1.5rem;
        animation: none;
        padding: 0 1rem;
    }
    
    .bts-slideshow .film-frame img {
        width: 100%;
        height: auto;
    }
    
    .film-spacer {
        display: none;
    }
    
    /* Show only first 6 BTS photos on mobile */
    .bts-slideshow .film-strip .film-frame:nth-child(n+8) {
        display: none;
    }

    /* MOBILE: About stacks */
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image,
    .photo-placeholder {
        height: 400px;
    }

    /* MOBILE: Contact stacks (form first, then info) */
    .contact-content {
        display: flex;
        flex-direction: column;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 2;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 1.3rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    
    .modal-close {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }
}