/* ==============================
   CSS Variables & Reset
   ============================== */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f8f8f8;
    --accent-color: #E31E25;
    --accent-hover: #c41a20;
    --text-color: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 4px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.gallery,
.about-simple,
.contact-simple,
.project-detail {
    flex: 1;
}

.footer {
    margin-top: auto;
}

/* ==============================
   Typography
   ============================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    line-height: 1.3;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

/* ==============================
   Navigation
   ============================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: none;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo img {
    height: 25px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo:hover img {
    opacity: 0.7;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    background: transparent;
    list-style: none;
    padding: 0.3rem 0;
    min-width: 150px;
    margin-top: 0.8rem;
}

.nav-menu.active {
    display: block;
}

.nav-menu.active li {
    animation: slideInMenu 0.3s ease-out forwards;
    opacity: 0;
}

.nav-menu.active li:nth-child(1) {
    animation-delay: 0s;
}

.nav-menu.active li:nth-child(2) {
    animation-delay: 0.1s;
}

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

@keyframes slideInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 0.3rem 0;
    color: #E31E25;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: var(--transition);
}

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

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: #E31E25;
    transition: var(--transition);
}

.hamburger-menu:hover span {
    opacity: 0.7;
}

/* ==============================
   Homepage - Full Screen Slideshow
   ============================== */
.slideshow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: #1a1a1a;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

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

/* Slider Navigation Arrows - OUTSIDE container */
.arrow-prev, .arrow-next {
    cursor: pointer;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    color: var(--accent-color);
    font-weight: 300;
    font-size: 3rem;
    transition: var(--transition);
    user-select: none;
    z-index: 2000;
    line-height: 1;
}

.arrow-next {
    right: 30px;
}

.arrow-prev {
    left: 30px;
}

.arrow-prev:hover, .arrow-next:hover {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.7;
}

/* Slider Dots Navigation */
.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background-color: #E31E25;
    transform: scale(1.2);
}

/* ==============================
   Gallery (Projects Page)
   ============================== */
.gallery {
    padding: 8rem 3rem 8rem;
    background: var(--white);
}

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

.gallery-item {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.gallery-item:hover {
    transform: none;
}

.gallery-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Makes it square */
    overflow: hidden;
    background: var(--secondary-color);
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.gallery-item:hover .gallery-image img {
    transform: none;
}

.gallery-info {
    display: none;
}

.gallery-info h3 {
    margin: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #E31E25;
    padding: 1rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-info p {
    display: none;
}

/* ==============================
   About Page - Simplified
   ============================== */
.about-simple {
    padding: 5rem 3rem 28vh;
    background: var(--white);
}

.about-simple-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-image {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    padding-top: 0;
}

.about-text p {
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    color: var(--accent-color);
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ==============================
   Contact Page
   ============================== */
.contact-section {
    padding: 8rem 3rem 8rem;
    background: var(--white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.contact-intro {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 300;
}

.contact-text h4 {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-text p,
.contact-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
}

.contact-text a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-top: 3rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    padding: 0.7rem 1.5rem;
    background: var(--secondary-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.contact-form-container {
    position: relative;
}

.contact-form {
    background: var(--secondary-color);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    margin-bottom: 2rem;
    font-weight: 300;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    transition: var(--transition);
    background: var(--white);
}

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

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Manrope', sans-serif;
}

.submit-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    font-weight: 300;
}

.form-success h3 {
    margin-bottom: 1rem;
    font-weight: 300;
}

/* ==============================
   Contact Page - Simplified
   ============================== */
.contact-simple {
    padding: 8rem 3rem 4rem;
    background: var(--white);
    min-height: calc(100vh - 100px);
}

.contact-simple-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.contact-email {
    margin-bottom: 3rem;
}

.contact-email h2 {
    display: none;
}

.email-link {
    font-size: 1.5rem;
    color: #E31E25;
    text-decoration: none;
    font-weight: 300;
    transition: var(--transition);
}

.email-link:hover {
    opacity: 0.7;
}

.contact-form-simple {
    position: relative;
}

.contact-form-simple form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.contact-form-simple .form-group {
    margin: 0;
    width: 100%;
}

.contact-form-simple input,
.contact-form-simple textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E31E25;
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    transition: var(--transition);
    background: var(--white);
    color: #E31E25;
}

.contact-form-simple input::placeholder,
.contact-form-simple textarea::placeholder {
    color: #E31E25;
    opacity: 0.7;
}

.contact-form-simple input:focus,
.contact-form-simple textarea:focus {
    outline: none;
    border-color: #E31E25;
}

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

.contact-form-simple .submit-button {
    padding: 0.8rem 2.5rem;
    background: #E31E25;
    color: var(--white);
    border: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Manrope', sans-serif;
    width: auto;
}

.contact-form-simple .submit-button:hover {
    background: #c41a20;
    transform: translateY(-2px);
}

.contact-form-simple .form-success {
    display: none;
    padding: 2rem;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    text-align: center;
}

.contact-form-simple .form-success.show {
    display: block;
}

.contact-form-simple .form-success p {
    color: #E31E25;
    font-size: 1.1rem;
    margin: 0;
}

/* ==============================
   Project Detail Pages
   ============================== */
.project-detail {
    padding: 8rem 3rem 8rem;
    background: var(--white);
}

.project-header {
    max-width: 1400px;
    margin: 0 auto 6rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: flex-start;
}

.project-main-image {
    width: 100%;
}

.project-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-info h1 {
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.project-info p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.project-gallery {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem 3rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
    grid-auto-flow: dense;
}

.gallery-item-detail {
    overflow: hidden;
}

.gallery-item-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-detail.large {
    grid-column: span 6;
    min-height: 350px;
}

.gallery-item-detail.medium {
    grid-column: span 4;
    min-height: 300px;
}

.gallery-item-detail.small {
    grid-column: span 3;
    min-height: 250px;
}

.gallery-item-detail.full-width {
    grid-column: span 12;
    min-height: auto;
    display: flex;
    justify-content: center;
    padding: 0;
}

.gallery-item-detail.full-width img {
    object-fit: contain;
    background: transparent;
    max-width: 60%;
    height: auto;
}

@media (max-width: 968px) {
    .project-header {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item-detail.large,
    .gallery-item-detail.medium,
    .gallery-item-detail.small {
        grid-column: span 1;
        min-height: 300px;
    }
}

/* ==============================
   Footer
   ============================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.7rem 3rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.footer-social {
    display: flex;
    align-items: center;
}

.instagram-link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.instagram-link svg {
    width: 20px;
    height: 20px;
}

.instagram-link:hover {
    color: #E31E25;
    transform: scale(1.1);
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 300;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.05em;
}

.footer-nav {
    display: none;
}

/* ==============================
   Responsive Design
   ============================== */
@media (max-width: 968px) {
    .nav-container {
        padding: 0 2rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .logo {
        position: static;
        transform: none;
        margin-right: auto;
    }

    .nav-menu {
        margin-left: 0;
    }

    .about-simple-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 100%;
        margin-left: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .footer-brand {
        display: none;
    }

    .footer-credits {
        position: static;
        transform: none;
        font-size: 0.65rem;
    }
}

.mobile-notice {
    display: none;
}

@media (max-width: 640px) {
    .mobile-notice {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: 99999;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

    .mobile-notice {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }

    .mobile-notice-logo {
        position: absolute;
        top: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile-notice p {
        color: #E31E25;
        font-family: 'Manrope', sans-serif;
        font-weight: 300;
        font-size: 0.95rem;
        line-height: 1.8;
        text-align: center;
    }

    .mobile-notice-logo {
        height: 22px;
        width: auto;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }

    .dots-container {
        display: none;
    }

    .project-layout,
    .arch-chair-layout {
        flex-direction: column;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0;
        gap: 0;
        margin: 0;
    }

    .project-layout .small-slider-container {
        order: 1;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        top: auto !important;
        aspect-ratio: unset;
        height: 100vh;
        margin: 0 !important;
        background: none;
    }

    .project-layout .small-slider-container .small-slide {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .project-layout .small-slider-container .small-slide img {
        object-fit: cover;
        height: 100%;
        width: 100%;
        position: absolute;
    }

    .project-text-scroll {
        order: 2;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0;
        padding: 2rem 1.5rem;
    }

    .project-gallery-section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0;
    }

    .gallery-row.two {
        gap: 4px;
    }

    .nav-menu {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .logo img {
        height: 20px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .gallery,
    .about-simple,
    .contact-simple {
        padding: 6rem 1.5rem 4rem;
    }
}
/* ==============================
   Mobile Navigation - Custom Layout
   ============================== */
@media (max-width: 968px) {
    /* Logo perfectly centered on mobile */
    .nav-container {
        justify-content: center;
    }

    .logo {
        position: static;
        transform: none;
    }

    /* Hamburger to top-left on mobile */
    .hamburger-menu {
        position: absolute;
        top: 50%;
        left: 1.5rem;
        transform: translateY(-50%);
        bottom: auto;
        transform: none;
        z-index: 3000;
        background: transparent;
        padding: 0;
    }

    .hamburger-menu span {
        background: #E31E25;
        width: 22px;
        height: 2px;
    }

    /* Menu opens below hamburger */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 1.5rem;
        bottom: auto;
        background: transparent;
        padding: 0.3rem 0;
    }

    .nav-menu a {
        color: #E31E25;
        font-weight: 500;
    }

    .slide img {
        object-fit: cover;
    }
}

/* ==============================
   Project Page Slider
   ============================== */
.project-header-slider {
    display: flex;
    gap: 2rem;
    padding: 0.5rem 3rem 2rem;
    max-width: 100%;
    margin: 0;
    align-items: flex-start;
    justify-content: center;
}

.project-slider-container {
    position: relative;
    width: 90px;
    flex-shrink: 0;
    aspect-ratio: 3/4;
    background: #1a1a1a;
}

.project-info-red {
    position: absolute;
    left: 3rem;
    width: 220px;
    text-align: left;
}

.project-info-red h1 {
    margin-top: 0;
    padding-top: 0;
}

.project-info-red .project-materials,
.project-info-red .project-description {
    margin-top: 0;
}

.project-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: #1a1a1a;
}

.project-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.project-slide.active {
    display: block;
    opacity: 1;
}

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

/* Project Slider Arrows */
.project-arrow-prev, .project-arrow-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
    color: #E31E25;
    font-weight: 300;
    font-size: 3rem;
    transition: var(--transition);
    user-select: none;
    z-index: 100;
    line-height: 1;
}

.project-arrow-next {
    right: 10px;
}

.project-arrow-prev {
    left: 10px;
}

.project-arrow-prev:hover, .project-arrow-next:hover {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.7;
}

/* Project Slider Dots */
.project-dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.project-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.project-dot.active {
    background: #E31E25;
    width: 12px;
    height: 12px;
}

.project-dot:hover {
    background: rgba(227, 30, 37, 0.7);
}

/* Project Info - RED TEXT */
.project-info-red h1 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #8B2332;
    margin-bottom: 0.5rem;
}

.project-info-red .project-materials {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #E31E25;
    margin-bottom: 1.5rem;
}

.project-info-red .project-description {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #E31E25;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .project-header-slider {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 6rem 2rem 3rem;
    }
}

/* ==============================
   Small Slider
   ============================== */
.small-slider-container {
    position: relative;
    width: 420px;
    aspect-ratio: 3/4;
    margin: 4.5rem auto 0;
    background: #1a1a1a;
}

.small-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.small-slide.active {
    display: block;
    opacity: 1;
}

.small-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.small-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--accent-color);
    cursor: pointer;
    user-select: none;
    z-index: 10;
    transition: var(--transition);
}

.small-arrow:hover {
    color: var(--accent-hover);
}

.small-arrow-prev {
    left: 15px;
}

.small-arrow-next {
    right: 15px;
}

.small-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.small-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.small-dot.active {
    background: var(--accent-color);
    width: 8px;
    height: 8px;
}

.small-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ==============================
   Project Layout (text + sticky slider)
   ============================== */

.arch-chair-layout {
    width: 85%;
    max-width: 1100px;
}

.arch-chair-layout .project-text-scroll {
    width: 55%;
    max-width: 560px;
}

/* Tall spacer so scroll happens before text appears */
.project-layout {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 4.5rem;
    padding-bottom: 20vh;
    width: 70%;
    max-width: 900px;
    margin: 0 auto;
}

/* Slider — original size, right side */
.project-layout .small-slider-container {
    margin: 0;
    flex-shrink: 0;
    z-index: 1;
    width: 420px;
    position: sticky;
    top: 4.5rem;
    align-self: flex-start;
    animation: projectTextReveal 0.9s ease forwards;
    animation-delay: 0.2s;
    animation-fill-mode: backwards;
}

/* Text — left side, stays put */
.project-text-scroll {
    align-self: flex-start;
    width: 42%;
    max-width: 360px;
    pointer-events: auto;
    z-index: 2;
    margin-left: 0;
    margin-top: 0;
}

@keyframes projectTextReveal {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.project-text-scroll h1 {
    animation: projectTextReveal 0.7s ease forwards;
    animation-delay: 0.1s;
    animation-fill-mode: backwards;
}

.project-text-scroll .description {
    animation: projectTextReveal 0.7s ease forwards;
    animation-delay: 0.4s;
    animation-fill-mode: backwards;
}

.project-text-scroll .materials {
    animation: projectTextReveal 0.7s ease forwards;
    animation-delay: 0.7s;
    animation-fill-mode: backwards;
}

.project-text-scroll h1 {
    font-size: 1.3rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--accent-color);
}

.project-text-scroll .description {
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.project-text-scroll .materials {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--accent-color);
}

/* ==============================
   Project Gallery Section
   ============================== */
.project-gallery-section {
    width: 70%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: white;
    position: relative;
    z-index: 10;
}

.gallery-row {
    width: 100%;
    overflow: hidden;
    background: white;
    border: none;
    outline: none;
}

.gallery-row.tall {
    text-align: center;
}

.gallery-row.tall img {
    width: 82%;
    height: auto;
    display: inline-block;
    margin-top: -80px;
}

.gallery-row.full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.gallery-row.crop-top {
    height: 75vh;
}

.gallery-row.crop-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.gallery-row.crop-both {
    height: 70vh;
}

.gallery-row.crop-both img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.gallery-row.two {
    display: flex;
    gap: 12px;
}

.gallery-row.two img {
    width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
}

.gallery-row.illustrations {
    padding: 0;
    margin-top: -20px;
    margin-bottom: -20px;
}

.gallery-row.illustrations {
    padding: 90px 0 90px 0;
    margin-bottom: -4px;
}

.gallery-row.illustrations img {
    width: 85%;
    margin: 0 auto;
    height: auto;
    display: block;
}

.gallery-row.fluid-illustrations {
    padding: 80px 0 80px 0;
    margin-bottom: -4px;
}

.gallery-row.fluid-illustrations img {
    width: 80%;
    margin-left: 10%;
    max-height: 85vh;
    margin: 0 auto;
    height: auto;
    object-fit: contain;
    display: block;
}
