/* Global Styles */
:root {
    --bg-color: #fdfcf8;
    /* Warm cream/white */
    --text-main: #333333;
    --text-light: #666666;
    --accent-color: #d4a373;
    --dark-bg: #1a1a1a;
    --card-bg: #f5f3ef;
    --border-radius: 20px;
    /* Increased for the new look */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --spacing-section: 5rem;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.container {
    max-width: 1400px;
    /* Increased for wider layout */
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    width: 100%;
}

.section {
    padding: var(--spacing-section) 0;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-block;
    border: 1px solid transparent;
}

.btn-dark {
    background: var(--text-main);
    color: #fff;
}

.btn-dark:hover {
    background: #555;
}

.btn-black {
    background: #000;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-black:hover {
    opacity: 0.8;
}

/* Top Header Bar */
.top-bar {
    background-color: #f9f8f4;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.8rem;
    color: var(--text-light);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-mini span {
    margin-right: 1.5rem;
}

.contact-mini i,
.account-icons i {
    margin-right: 0.5rem;
}

.account-icons a {
    margin-left: 1.5rem;
}

/* Main Navbar */
.navbar {
    background: #1C1E29;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: #1C1E29;
    box-shadow: none;
    padding: 0.8rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-right: 12px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left align */
    line-height: 1.1;
}

.logo .brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo .tagline {
    font-family: var(--font-body);
    /* Sans-serif */
    font-size: 1rem;
    /* Smaller font */
    font-weight: 300;
    /* Light */
    color: #ccc;
    /* Soft light grey */
    letter-spacing: 0.5px;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo .brand-name {
    color: #fff;
}

.navbar.scrolled .logo .tagline {
    color: #ccc;
    /* Consistent with top */
}

.centered-links {
    display: flex;
    gap: 2.5rem;
}

.centered-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar.scrolled .centered-links a {
    color: #fff;
}

.centered-links a:hover {
    opacity: 0.6;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.box-btn {
    border: 1px solid #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s ease;
}

.navbar.scrolled .box-btn {
    border-color: #fff;
    color: #fff;
}

.box-btn:hover {
    background: var(--text-main);
    color: #fff;
}

.search-box {
    cursor: pointer;
    font-size: 1.1rem;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn {
    color: #fff;
}

/* Hero Section */
/* Hero Background Block */
.hero-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    background: #1C1E29;
    background: linear-gradient(to bottom, #1C1E29 80%, rgba(28, 30, 41, 0) 100%);
    z-index: -1;
}

.hero-clean {
    width: 100%;
    margin-top: 2rem;
    /* Give space for transparent nav if needed, or stick close */
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-clean img.hero-img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

/* --- NEW COLLECTION GRID LAYOUT --- */
.collection-grid {
    padding: 4rem 0;
}

/* TOP ROW */
.collection-top-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Text on left, products on right */
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.collection-intro {
    padding-top: 2rem;
}

.collection-subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.collection-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.collection-desc {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.collection-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 2rem;
    /* Spacing out filters wide */
    align-items: center;
    justify-content: flex-start;
    /* Or space-between if width allows */
    flex-wrap: wrap;
}

.filter-pill {
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #999;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.filter-pill.active {
    background: #333;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.filter-pill:hover:not(.active) {
    color: #333;
}

/* Top 2 Cards */
.showcase-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.card-product {
    background: #fff;
    /* Optional: background for transparent pngs */
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 480px;
    /* Tall cards */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.card-product img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-product:hover img {
    transform: scale(1.05);
}

/* BOTTOM ROW */
.collection-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Wide Promo Card */
.promo-wide-card {
    background-color: #f7f1eb;
    /* Use exact cream color from image if possible */
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    display: flex;
    position: relative;
    padding: 3rem;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.promo-text-content {
    flex: 1;
    z-index: 2;
}

.promo-text-content h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    max-width: 300px;
    /* Limit width to avoid overlap */
}

.promo-text-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 250px;
    font-style: italic;
    /* Adding some style */
}

.promo-brand {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    opacity: 0.7;
}

.promo-image-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    /* Or 50% if the image is too wide */
    height: 100%;
    /* display: flex; align-items: flex-end; justify-content: flex-end; REMOVED FLEX to let object-fit work */
    overflow: hidden;
    /* Ensure no spill */
}

.promo-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Center the image content */
    transition: transform 0.5s ease;
}

.promo-wide-card:hover .promo-image-content img {
    transform: scale(1.05);
}

/* Lifestyle Card */
.lifestyle-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-soft);
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lifestyle-card:hover img {
    transform: scale(1.05);
}


/* Mid Feature (Text) */
.mid-feature {
    background: #fdfcf8;
}

.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.feature-head h2 {
    font-size: 3rem;
    margin: 1rem 0 2rem;
}

.accent-text {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.feature-body p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author img.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Product Grid */
/* Section Header */
.section-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-top: 2rem;
    /* Match collection intro spacing */
}

.section-header h2 {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    font-family: var(--font-body);
    /* Matching collection subtitle font */
    font-weight: 400;
    margin-bottom: 0;
}

/* --- NEW GALLERY MOSAIC STYLES --- */
.gallery-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.gallery-mobile-header {
    display: none;
    /* Hidden on Desktop */
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns base */
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    /* Fill grid cell */
    box-shadow: var(--shadow-soft);
}

/* Grid Spans */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* Image Fit */
.gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smoother bezier */
}

/* Overlay Animation */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    /* Gradient at bottom */
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    text-align: left;
    color: #fff;
    width: 100%;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: #fff;
    font-family: var(--font-heading);
}

.overlay-content p {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 300;
    opacity: 0.9;
    color: #eee;
    margin: 0;
}

/* Interaction Effects */
.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Responsive for Gallery */
@media (max-width: 900px) {
    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item.tall {
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }
}

/* Mobile Gallery Slider */
.gallery-mobile-slider {
    display: none;
}

@media (max-width: 768px) {

    /* Hide the desktop mosaic grid */
    .gallery-mosaic {
        display: none !important;
    }

    /* Make the mobile header visible again */
    .gallery-mobile-header {
        display: block !important;
        padding-bottom: 20px;
        padding-left: 5px;
    }

    .gallery-mobile-header h3 {
        color: #C6A75E;
        font-family: var(--font-heading);
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .gallery-mobile-header p {
        color: #444444;
        font-size: 1rem;
        line-height: 1.6;
        font-weight: 300;
        max-width: 95%;
    }

    /* Enable the slider */
    .gallery-mobile-slider {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        max-width: 100%;
        gap: 1.5rem;
        padding-bottom: 2rem;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;

        /* Hide Scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .gallery-mobile-slider::-webkit-scrollbar {
        display: none;
    }

    .gallery-mobile-slider .gallery-item {
        flex: 0 0 85%;
        max-width: 85%;
        height: 350px;
        /* Consistent height */
        border-radius: 12px;
        box-shadow: var(--shadow-soft);
        position: relative;
        overflow: hidden;
        margin-left: 0;
    }

    .gallery-mobile-slider .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Gallery Action Button */
.gallery-action-btn-container {
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 1rem;
}

.btn-view-gallery {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--text-main);
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-gallery:hover {
    background: var(--text-main);
    color: #fff;
}

/* Footer */
/* Footer */
.dark-footer {
    background: #111;
    /* Slightly darker for contrast */
    color: #fff;
    padding: 6rem 0 2rem;
    font-size: 0.9rem;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left Side: Brand */
.footer-brand-col {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}



.footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.brand-block .footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 0;
    /* Override */
}

.footer-logo-text {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-tagline {
    color: #888;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 80%;
}

/* Right Side: Links */
.footer-links-col {
    display: flex;
    gap: 5rem;
}

.link-group h4 {
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    /* Or serif */
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-group a {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #fff;
}

/* Bottom Bar */
.footer-bottom-bar {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.developer-link {
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.developer-link:hover {
    color: #888;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links-col {
        justify-content: space-between;
        gap: 2rem;
    }

    .footer-brand-col {
        max-width: 100%;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .collection-top-row {
        grid-template-columns: 1fr;
        /* Stack text above cards */
        gap: 2rem;
    }

    .collection-bottom-row {
        grid-template-columns: 1fr;
        /* Stack promo cards */
    }
}

/* Mobile Collection Slider Layout */
.mobile-collection-slider {
    display: none;
}

@media (max-width: 768px) {

    /* Hide the original desktop components */
    .collection-showcase,
    .collection-bottom-row {
        display: none !important;
    }

    /* Ensure intro text is full width */
    .collection-intro {
        text-align: left;
        padding-right: 0;
    }

    .collection-title {
        font-size: 2.8rem;
    }

    /* Enable the slider */
    .mobile-collection-slider {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        /* Prevent vertical scroll if any */
        width: 100%;
        /* Ensure it fits container */
        max-width: 100%;
        /* scroll-snap-type: x mandatory; REMOVED for smooth auto slide */
        gap: 1rem;
        padding-bottom: 2rem;
        margin-top: 1rem;
        padding-left: 0;
        /* Reset */
        padding-right: 0;
        box-sizing: border-box;
        /* Ensure padding doesn't push width */

        -ms-overflow-style: none;
        /* Hide scrollbar IE/Edge */
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .mobile-collection-slider::-webkit-scrollbar {
        display: none;
    }

    .mobile-collection-slider>div {
        flex: 0 0 90%;
        width: 90%;
        height: 340px;
        /* scroll-snap-align: center; REMOVED */
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        position: relative;
    }

    .mobile-collection-slider>div img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Specific adjustment for the Promo Card in slider */
    .mobile-collection-slider .promo-wide-card {
        padding: 0;
        height: auto;
        min-height: 340px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .mobile-collection-slider .promo-wide-card .promo-image-content {
        position: relative;
        width: 100%;
        height: 220px;
        order: -1;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .mobile-collection-slider .promo-wide-card .promo-image-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-collection-slider .promo-wide-card .promo-text-content {
        padding: 20px;
        width: 100%;
        text-align: left;
    }

    .mobile-collection-slider .promo-text-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .mobile-collection-slider .promo-text-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .collection-title {
        font-size: 3rem;
    }

    .grid-layout-intro,
    .split-feature,
    .promo-grid {
        grid-template-columns: 1fr;
        /* Stack */
        gap: 2rem;
    }

    .three-col-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .centered-links {
        display: none;
    }

    /* Mobile Menu needed */
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 600px) {
    .showcase-cards {
        grid-template-columns: 1fr;
    }

    .three-col-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 0.5rem;
    }

}

/* --- NEW MINIMAL ABOUT SECTION --- */
.about-minimal-section {
    padding: 9rem 0;
    /* Generous vertical spacing */
    background-color: #f9f8f6;
    /* Very light warm grey/beige */
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.about-minimal-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-minimal-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.about-divider {
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 0 auto 2.5rem;
    opacity: 0.5;
}

.about-minimal-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.about-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.about-thumbnails img {
    height: 220px;
    width: 220px;
    object-fit: cover;
    border-radius: 2px;
    /* Slightly rounded */
    opacity: 0.9;
    transition: all 0.4s ease;
    filter: grayscale(10%);
}

.about-thumbnails img:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: grayscale(0%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Soft shadow on hover */
}

@media (max-width: 768px) {

    /* Adjust Container Padding for Mobile */
    .container {
        padding: 0 1.25rem;
        /* ~20px consistent side padding */
    }

    .about-minimal-section {
        padding: 4rem 0;
    }

    .about-minimal-content h2 {
        font-size: 2.2rem;
    }

    /* Mobile Grid Layout for Thumbnails */
    .about-thumbnails {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        /* Uniform gap */
        width: 100%;
        margin-top: 2rem;
        padding: 0;
        /* Remove any flexible flex padding */
    }

    .about-thumbnails img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        /* Square 1:1 ratio */
        object-fit: cover;
        border-radius: 4px;
        /* Consistent rounded corners */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        /* Soft shadow */
        margin: 0;
        /* Remove extra margins */
    }

    /* Hide 3rd image on mobile for 2-column grid */
    .about-thumbnails img:nth-child(3) {
        display: none;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* --- GALLERY PAGE STYLES --- */
body.page-gallery {
    background-color: #F8F6F2;
}

.page-gallery .navbar.scrolled {
    background: #1C1E29;
    box-shadow: none;
}

/* Header Section */
.gallery-page-header {
    background-color: #F8F6F2;
    padding: 6rem 0 3rem;
    text-align: left;
}

.gallery-page-header .page-subtitle {
    color: #C6A75E;
    /* Gold label */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.gallery-page-header .page-title {
    font-size: 4rem;
    margin-bottom: 0;
    font-family: var(--font-heading);
    color: var(--text-main);
}

/* Grid Section */
.gallery-page-grid-section {
    padding: 2rem 0 6rem;
    background-color: #F8F6F2;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.gp-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    aspect-ratio: 4 / 5;
    /* Consistent vertical boxes */
    background-color: #EFEBE4;
    /* Light placeholder */
}

/* Make image cover */
.gp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

/* Hover (Desktop) */
@media (hover: hover) {
    .gp-item:hover img {
        transform: scale(1.04);
    }
}

/* Responsive Grid */
@media (max-width: 992px) {
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-page-header {
        padding: 4rem 0 2rem;
    }

    .gallery-page-header .page-title {
        font-size: 3rem;
    }
}