/* ========================================================================== */
/* 0. BASE STYLES, RESETS & UTILITIES (Combined from index.html <style> and styles.css) */
/* ========================================================================== */

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

html {
  height: 100%;
}

body {
    /* Use Inter font, fallback to sans-serif */
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #ffffff;
    overflow-x: hidden;
	  height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility to hide pages (from styles.css) */
.page-content {
    display: none;
}

/* --- NEW: Re-usable CTA Button Style --- */
.btn-cta {
    display: inline-block;
    margin: 1.5rem 0;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #ccc;
}


/* ========================================================================== */
/* 0.5 PROMO SECTION STYLES (New Section) */
/* ========================================================================== */

#promo {
    position: relative;
    /* 1. REDUCED HEIGHT */
    min-height: 90vh;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    background-image: url('images/arc/arc_18_up.webp');

    /* 2. IMAGE NOW SCROLLS WITH CONTAINER */
background-attachment: fixed;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

/* --- Content Wrapper (The Centering Layer) --- */
.promo-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;

    /* 3. KEY CHANGE: Match the parent's height, not the viewport's */
    height: 100%; /* Was 100vh */

    display: flex;
    align-items: center;
    justify-content: center;
}


.promo-text-content {
    /* KEY CHANGE: Push content down from the top to center it in the 100vh viewport */
    padding-top: 30vh; /* Adjust this value (30vh) to visually center the text */

    max-width: 100%;
    padding-left: 2rem; /* Keep existing padding */
    padding-right: 2rem; /* Keep existing padding */
    padding-bottom: 2rem;

    text-align: center;
}
.promo-text-block {
    /* Use a stronger black background for guaranteed readability */
    padding: 2rem;
    border-radius: 5px;
}

.promo-h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    /* --- NEW --- */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.promo-p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 65ch;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #ccc;
    /* Ensure the text is centered inside the block */
    margin-left: auto;
    margin-right: auto;
    /* --- NEW --- */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}


/* ========================================================================== */
/* 1. HERO SECTION & SLIDESHOW STYLES (From index.html <style>) */
/* ========================================================================== */

/* --- Fullscreen Hero Section --- */
 .hero {
            height: 100vh; /* Full viewport height */
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Align text to the left */
            position: relative;
            overflow: hidden;
        }

        /* --- Fading Slideshow --- */
        #hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: #0a0a0a; /* Fallback if images fail */
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            /* This is the fade transition */
            transition: opacity 1.5s ease-in-out;
            will-change: opacity; /* Optimize for transition */
        }

        /* The active slide is visible */
        .hero-slide.active {
            opacity: 1;
        }

        /* --- Hero Content (Text) --- */
        .hero-content {
            text-align: left;
            z-index: 1; /* Ensure text is above the slideshow */
            position: relative;
            width: 100%; /* Make this container full-width */
        }

        /* NEW: Wrapper for the text with background */
        .hero-text-wrapper {
            background: rgba(0, 0, 0, 0.2); /* 20% opaque black */
            padding: 2rem;
            /* max-width: 900px;  This line was removed */
            border-radius: 8px; /* Optional: adds rounded corners */
        }

        .hero-text-wrapper h1 {
            font-size: 5rem; /* 80px */
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.1;
            letter-spacing: 1px;
            margin-bottom: 1rem;
			margin-left:10%;
			max-width:50%

        }

        /* Style part of the text differently, like the inspiration */
        .hero-text-wrapper h1 span {
            font-weight: 400;
            color: #cccccc;
            display: block; /* Make it stack */
            font-size: 4.5rem; /* 72px */
        }




/* ========================================================================== */
/* 2. MENU & NAVIGATION STYLES (From menu-styles.css) */
/* ========================================================================== */

/* --- Hamburger Menu Button --- */
.menu-toggle {
    position: fixed;
    top: 1.5rem; /* 24px */
    right: 3rem; /* 48px */
    z-index: 2000; /* Above everything */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle-bar {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* --- Fullscreen Overlay --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    background-color: rgba(128, 128, 128, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;

    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

/* --- Overlay "is-open" State --- */
.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Close Button (Inside Overlay - Not in HTML, but styled) --- */
.menu-close {
    position: absolute;
    top: 1.25rem;
    right: 2.75rem;
    z-index: 2001;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 200;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
}

/* --- Overlay Navigation Links --- */
.overlay-nav {
    text-align: left;
}

.overlay-nav ul {
    list-style: none;
    padding: 0;
    margin: auto;
}

.overlay-nav li {
    margin: 1rem 0;
}

.overlay-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.overlay-nav a:hover {
    color: #aaa;
}


/* ========================================================================== */
/* 3. PORTFOLIO SECTION */
/* ========================================================================== */

#portfolio {
    background-color: #0a0a0a;
    padding: 4rem 2rem;
    color: #ccc;
    overflow-x: hidden;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Center the section title */
.portfolio-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    margin-bottom: 4rem; /* 64px */
}

/* --- Masonry Gallery --- */
.masonry-gallery {
    /* This is the default 3-column desktop style */
    column-count: 3;
    column-gap: 1.5rem; /* 24px gap */
}

.gallery-item {
    /* Prevent images from breaking across columns */
    break-inside: avoid;
    margin-bottom: 1.5rem; /* 24px vertical gap */

    /* Add a subtle hover effect */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item img {
    /* Make images responsive */
    width: 100%;
    height: auto;
    display: block; /* Removes extra space under image */
    border-radius: 4px; /* Optional: slight rounded corners */
}

.gallery-item:hover {
    transform: scale(1.02);
    opacity: 0.8;
}

/* ========================================================================== */
/* 3.5 PRINTS SECTION (NEW DYNAMIC LAYOUT) */
/* ========================================================================== */

#prints {
    background-color: #000; /* Darker background */
    padding: 4rem 2rem;
    color: #ccc;
    overflow: hidden;
    border-top: 3px solid #666;
	max-width:1200px;
	margin:auto;
}

.prints-container {
    max-width: 75%;
    margin: 0 auto;
    display: grid;
}

#prints h2 {
    /* Style to match other section titles */
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    margin-bottom: 0; /* Gap is handled by the container */
	gap:2rem;
}

/* Style for the intro paragraph */
.prints-intro-text {
    text-align: center;
    max-width: 70ch;
    margin: 2rem; /* Pulls it closer to title */
    font-size: 1.125rem;
    line-height: 1.8;
    color: #aaa;
}

/* New, dedicated row styles for the Prints section */
.prints-row {
    display: grid;
    gap: 4rem; /* Desktop gap */
    align-items: center; /* Vertically center content */
    grid-template-columns: 1fr 400px; /* Text (1fr) | Image (400px) */
}

.prints-row.reverse {
    grid-template-columns: 400px 1fr; /* Image (400px) | Text (1fr) */
}
/* Re-order the elements to match the new columns */
.prints-row.reverse .prints-text-block {
    order: 2;
}
.prints-row.reverse .prints-image-block {
    order: 1;
}

.prints-text-block h3 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
}

.prints-text-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 65ch;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.prints-image-block img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
}

/* Make sure gallery-items in this section don't have extra margin */
#prints .gallery-item {
    margin-bottom: 0;
}

/* Final CTA block */
.prints-cta-block {
    background-color: #0a0a0a;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
}

.prints-cta-block h3 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
}

.prints-cta-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 65ch;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #aaa;
    margin: 0 auto;
}

/* ========================================================================== */
/* 4. ABOUT SECTION (From about-styles.css) */
/* ========================================================================== */

#about {
    background-color: #0a0a0a;
    padding: 4rem 2rem; /* 128px 32px */
    color: #ccc;
    overflow-x: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
}

.about-row {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.about-row-smart {
    display: grid;
	margin-top: 2rem;
    align-items: center;
}

/* --- NEW: Add these missing default (desktop) styles --- */
.about-col-2 {
    grid-template-columns: 1fr 400px; /* Text (1fr) | Image (400px) */
}
.about-col-2.reverse {
    grid-template-columns: 400px 1fr; /* Image (400px) | Text (1fr) */
}
/* Re-order the elements to match the new columns */
.about-col-2.reverse .about-text-block {
    order: 2;
}
.about-col-2.reverse .about-image-block {
    order: 1;
}

.about-text-block h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: 'Oswald', sans-serif;
	z-index:1000;
}

.about-text-block p {
    font-size: 1.125rem; /* 18px */
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 65ch;
    /* NOTE: Original font-family was 'Montserrat', sans-serif - Using 'Inter' here for consistency */
    font-family: 'Inter', sans-serif;
    font-weight: 400;
     z-index:1000;
}

.about-image-block img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem; /* 8px */
    object-fit: cover;
    max-height: 800px;
	overflow:visible;
	z-index:-1000;
	align-items: center;
}

/* 3-column layout */
.about-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-stat {
    background-color: #111;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #222;
}

.about-stat-number {
    font-size: 3rem; /* 48px */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
}

.about-stat-label {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* NOTE: Original font-family was 'Montserrat', sans-serif - Using 'Inter' here for consistency */
    font-family: 'Inter', sans-serif;
}

.about-row-smart .section-title {
    margin-top: 2rem;    /* Reduces space above the title */
    margin-bottom: 1rem; /* Reduces space below the title (was 3rem) */
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: 'Oswald', sans-serif;
    text-align: center; /* Center your titles */
    margin-bottom: 3rem; /* Space below the title */
    margin-top: 4rem; /* Space above the title to previous content */
}

/* Override for #about specific titles to align left in text block */
#about .about-text-block .section-title {
    text-align: left;
    margin-top: 0; /* Remove top margin if it's inside text block */
    margin-bottom: 1.5rem; /* Space from paragraphs */
}


.bg-highlight {
    position: relative; /* Allows us to position the ::before element */
    z-index: 1; /* Keeps the content (text/image) on top */
}

/* This is the new pseudo-element that *becomes* the background */
.bg-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #111; /* <-- Change this to your desired color! */
    margin: 0 2rem;

    /* The 'full bleed' magic */
    width: 100vw; /* 100% of the viewport width */
    left: 50%;
    transform: translateX(-50%); /* Centers the full-width element */

    z-index: -1; /* Puts this background *behind* the row's content */
}


.parallax-text-hero {
    /* 1. Set the background image (path remains the same) */
    background-image: url('images/pano/h1-05.jpg');

    /* 2. Set the scrolling behavior */
    background-attachment: fixed;

    /* 3. KEY CHANGE: Use 'contain' to ensure full vertical image height is visible. */
    /* This will respect the 80vh height constraint. */
    background-size: contain;

    /* 4. KEY ADDITION: This centers the image horizontally. */
    background-position: center;

    background-repeat: no-repeat; /* Prevents tiling if the image is smaller than the section */

    /* 5. Set the height for the parallax effect */
    padding: 10rem 2rem;
    height: 80vh;

    /* 6. Ensure the text content is readable over the image */
    position: relative;
}

/* Ensure the text has a background for readability (optional, but recommended) */
.parallax-text-hero .about-text-block {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 5px;
}


/* --- Fade-in Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.is-visible .fade-in-child {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInChild 0.6s ease-out forwards;
}

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

.fade-in.is-visible .fade-in-child:nth-child(1) { animation-delay: 0.1s; }
.fade-in.is-visible .fade-in-child:nth-child(2) { animation-delay: 0.2s; }
.fade-in.is-visible .fade-in-child:nth-child(3) { animation-delay: 0.3s; }


/* ========================================================================== */
/* 5. GEAR SECTION (From gear-styles.css) */
/* ========================================================================== */

#gear {
    background-color: #000;
    padding: 8rem 2rem;
    color: #ccc;
    overflow-x: hidden;
    border-top: 1px solid #222;
}

.gear-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.gear-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    margin-bottom: 4rem;
}

/* Grid for the cameras */
.gear-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
}

.gear-item {
    text-align: center;
}

.gear-image {
    background-color: #0a0a0a;
    border: 1px solid #222;
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gear-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gear-item h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* The explanation text block */
.gear-text-block {
    max-width: 70ch;
    margin: 0 auto;
    text-align: left;
}

.gear-text-block h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.gear-text-block p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #aaa;
}

.gear-text-block img {
    width: 100%; /* Make the image responsive to the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: adds nice rounded corners */
}

.smartphone h2 {
		margin-top: 10rem;
}

/* ========================================================================== */
/* 6. FOOTER STYLES (From footer-styles.css) */
/* ========================================================================== */

.site-footer {
    background-color: #1c1c1c;
    padding: 4rem 2rem 2rem;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
}

/* --- Column 1: About --- */
.footer-about .footer-logo {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-about p {
    font-size: 0.95rem;
    color: #ddd;
    max-width: 30ch;
}

/* --- Columns 2 & 3: Contact & Links --- */
.footer-contact h3,
.footer-links h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact ul,
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact a,
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: #fff;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* --- Copyright Row --- */
.footer-copyright {
    grid-column: 1 / -1;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #666;
    text-align: center;
    font-size: 0.875rem;
    color: #aaa;
}
.footer-copyright a {
    color: #ccc;
    text-decoration: none;
}
.footer-copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ========================================================================== */
/* 8. LIGHTBOX STYLES (New Section) */
/* ========================================================================== */

#lightbox {
    /* Hidden by default */
    display: none;
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);

    /* Center the content */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* This class will be added by JavaScript to show it */
#lightbox.visible {
    display: flex;
}

#lightbox-img {
    max-width: 90%;
    max-height: 80vh; /* 80% of the screen height */
    object-fit: contain;
    border-radius: 4px;
}

#lightbox-caption {
    margin-top: 1rem;
    color: #ccc;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

#lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: #fff;
    font-size: 3rem;
    font-weight: 200;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

#lightbox-close:hover {
    transform: scale(1.1);
}

/* Make gallery items clickable */
.gallery-item {
    cursor: pointer;
}



/* ========================================================================== */
/* 7. ALL RESPONSIVE ADJUSTMENTS (Desktop-First) */
/* ========================================================================== */

/* Tablet / Medium Screens */
@media (max-width: 1024px) {
    /* --- Portfolio --- */
    .masonry-gallery {
        column-count: 2; /* Use 2 columns on tablets */
    }

    /* --- About Section --- */
    .about-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {

    /* --- Hero Text & Layout FIX --- */
    .hero {
        padding: 0 1.5rem;
    }
    .hero-text-wrapper {
        padding: 1rem;
    }
    .hero-text-wrapper h1 {
        font-size: 2.25rem;
    }
    .hero-text-wrapper h1 span {
        font-size: 1.75rem;
    }

	#promo {
		background-attachment: scroll; /* Disables the 'fixed' parallax effect */
	}

    /* --- Menu --- */
    .menu-toggle {
        right: 1.5rem;
    }
    .menu-close {
        right: 1.25rem;
    }
    .overlay-nav a {
        font-size: 2rem;
    }

    /* --- Portfolio --- */
    .masonry-gallery {
        column-count: 2; /* Stack to 1 column on mobile */
    }

    /* --- Prints Section (Mobile) --- */
    .prints-container {
        max-width: 90%;
        gap: 4rem;
    }
    .prints-intro-text {
        margin-top: -1rem;
    }
    /* Stack to 1 column */
    .prints-row,
    .prints-row.reverse {
        grid-template-columns: 1fr;
    }
    /* This rule handles the stacking for reversed rows */
    .prints-row.reverse .prints-image-block {
        order: 1; /* Image first */
    }
    .prints-row.reverse .prints-text-block {
        order: 2; /* Text second */
    }
	.about-row-smart .gear-text-block {
    max-width: 90%; /* Reduce max-width */
    margin: 0 auto; /* Keep it centered */
	}
	
    /* --- About Section (Mobile) --- */
    .about-container {
        max-width: 90%;
        gap: 4rem; /* Use the gap from your original rule */
    }
    /* Stack to 1 column */
	.about-col-2,
    .about-col-2.reverse {
        grid-template-columns: 1fr;
    }

    /* This rule handles the stacking for reversed rows */
    .about-col-2.reverse .about-text-block,
    .about-col-2.reverse .about-image-block {
        order: 0;
    }
    .about-grid-3 {
        grid-template-columns: 1fr; /* Stack to 1 column */
    }

    /* --- Gear Section --- */
    .gear-grid {
        grid-template-columns: 1fr; /* Stack to 1 column */
    }

    /* --- Footer Section --- */
    .footer-container {
        grid-template-columns: 1fr; /* Stack to 1 column */
    }
}

/* --- Mobile Landscape (Horizontal) Fix --- */
@media (orientation: landscape) and (max-height: 500px) {
    .hero-text-wrapper {
        padding: 1rem; /* Reduce padding */
    }

    .hero-text-wrapper h1 {
        font-size: 2.5rem; /* Drastically reduce font size */
        margin-left: 5%;   /* Pull it in a bit */
    }

    .hero-text-wrapper h1 span {
        font-size: 2rem; /* Drastically reduce sub-text font size */
    }
}