/* 1. GLOBAL RESETS */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Prevents horizontal scroll from 100vw elements */
   /*  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    line-height: 1.6;
    background: #fFF;
}
body{padding-top: 50px; /* Adjust this value based on your actual nav height */}



/* ═══════════════════════════════════════════════
   TYPOGRAPHY — Cinzel Decorative / Cinzel / Jost
═══════════════════════════════════════════════ */

/* Global font switch */
body {
    font-family: 'Jost', 'Segoe UI', sans-serif;
    font-weight: 300;
}

/* All major headings use Cinzel Decorative */

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* h4/h5/h6 use the lighter Cinzel (no decorative serifs)
   — better for smaller sizes like card titles, footer cols */
h4, h5, h6,
.footer-col h3,
.nav-links li a,
.logo {
    font-family: 'Cinzel', serif;
    font-weight: 400;
}

/* Logo — spaced caps in Cinzel */
.logo {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 1rem;
}

/* Nav links */
.nav-links li a {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    font-weight: 400;
}

/* Hero h1 — biggest Cinzel Decorative moment */
.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
}

/* Hero paragraph — Jost italic for contrast */
.hero-text p {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-style: italic;
}

/* Section headings */
.section-title,
.about-grid h2,
.gallery-text h2,
.contact-form-panel h2 {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 400;
}

/* Eyebrow tag — use above any headline for context */
.section-eyebrow {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 4px;
    /* text-transform: uppercase; */
    color: #FEA116;
    margin-bottom: 10px;
}

/* Gold highlight word — already used as .highlight */
.highlight {
    color: #FEA116;
    font-style: italic;
}

/* Italic contrast — for secondary line inside a headline */
.headline-light {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 0.75em;
    display: block;
    letter-spacing: 3px;
   /* text-transform: uppercase; */
    color: #888;
    margin-top: 6px;
}

/* CTA buttons — Cinzel for label weight */
.cta-button,
.btn-primary-custom,
.btn-submit {
    font-family: 'Cinzel', serif;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
}

/* Footer brand name */
.footer-brand-col h3 {
    font-family: 'Cinzel Decorative', serif !important;
    font-size: 1.2rem !important;
    letter-spacing: 0.5px;
}

/* Footer col headings */
.footer-col h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
    /* text-transform: uppercase; */
}

/* Stat numbers keep Jost for legibility */
.stat-number {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
}





/* 2. NAVIGATION */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #361202; 
    color: white;

    /* Sticky Behavior */
    position: fixed;   /* Fixes it to the viewport */
    top: 0;            /* Sticks it to the very top */
    left: 0;
    width: 100%;       /* Ensures it spans the full width */
    z-index: 1000;     /* Keeps it above the hero and other content */
    
    /* Optional: Adds a subtle shadow when scrolling */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3); 
    height: 60px;
}

.nav-links { 
    display: flex; 
    list-style: none; 
}

.nav-links li a { 
    color: white; 
    text-decoration: none; 
    padding: 0 15px; 
    transition: 0.3s;
}

.nav-links li a:hover { color: #FEA116; }

.menu-toggle { 
    display: none; 
    background: none; 
    border: none; 
    color: white; 
    font-size: 1.5rem; 
    cursor: pointer;
}

/* 3. HERO SECTION */
.hero {
    width: 100%; 
    min-height: 100vh;
    position: relative;
    
    /* Smooth Fade Gradient on top */
    background: linear-gradient(
                    to bottom, 
                    rgba(54, 18, 2, 0.95) 0%, 
                    rgba(255, 255, 255, 0.5) 100%
                ), 
                url('../images/hero-bg-4.png');

    /* Fix: Center the image and prevent stretching */
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto; /* Keeps original image size without stretching */
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Gives more room for text */
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text p {
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.1rem); /* Responsive font size */
    line-height: 1.3;
    margin-bottom: 25px;
    font-style: italic;
}

.highlight { color: #FEA116; }

.cta-button {
    display: inline-block;
    padding: 14px 35px;
    background: #ffffff;
    color: #0F172B;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border-radius: 4px;
    margin-top: 40px;
}

.cta-button:hover {
    background: #FEA116;
    transform: translateY(-2px);
}

/* 4. SLIDER STYLING */
.hero-visual {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.main-image-wrapper {
    width: 100%;
    max-width: 350px;
    height: 450px;
    border: 8px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.slider-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 8px;
    opacity: 0.6;
    transition: 0.3s;
}

.thumb.active, .thumb:hover {
    border-color: #FEA116;
    opacity: 1;
    transform: scale(1.1);
}

/* 5. GRID CONTENT & CARDS */
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    padding: 60px 0%;
}

.gallery-title { grid-column: span 12; text-align: center; margin-bottom: 20px; }

.card { 
    grid-column: span 12; 
    background: white; 
    padding: 30px; 
    border: 1px solid #eee; 
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
}

@media (max-width: 768px) {
.grid-container { padding-left:15px; padding-right:15px; }
}

/* 6. FOOTER STYLES */





/* NEW: Left Column Styling */
.footer-brand-col {
    background-color: #ffac00;
    color: #ffffff; /* Description color */
}

.footer-brand-col h3 {
    color: #361202 !important; /* Company Name color */
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand-col p {
    line-height: 1.8;
}


.section-footer{/*  background-color: #361202;
    color: #f4f4f4;
    padding: 60px 5% 20px;
    margin-top: 50px; 
    background-color: #361202;
    color: #f4f4f4;
    margin-top: 50px;
    width: 100%;*/
}

.section-footer {
  /* background: linear-gradient(to right, #ffac00 20%, #361202 20%); */
  background: #361202;
  color: #f4f4f4;
  margin-top: 50px;
  width: 100%;
}
.footer-container {
   max-width: 1200px;
    margin: 30px auto 0;   /* was: margin: 30px auto — removed bottom margin */
    padding-bottom: 30px;  /* padding instead, stays inside the footer bg */
}

.footer-grid {
   /*  display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto; */
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
    max-width: 100%;
    margin: 0;
    gap: 0 2px;  

}


.footer-col {
    grid-column: span 12;
    padding: 60px 4%;
    box-sizing: border-box;
    border-right: 1px solid rgba(255,255,255,0.08);  /* add this line */
}

.footer-col:last-child {
    border-right: none;   /* add this rule — removes border on last column */
}



.footer-col h3 { color: #ffcc00; margin-bottom: 20px; font-size: 1.2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: #fff; padding-left: 5px; }

.social-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.social-links a:hover { color: #25d366; transform: translateX(5px); }

.footer-bottom {
    text-align: center;
    padding: 20px 0 28px;  /* was: padding-top: 20px only — added bottom */
    /* border-top: 1px solid #444; */
    font-size: 0.9rem;
    color: #888;

}





.featured-collections {
   
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr); /* 10-column system for 4+2+2+2 */
    gap: 20px;
    align-items: stretch;
}

/* Left Intro Box */
/* .collection-intro {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: #ffac00 !important;
}

.collection-intro h2 {
    font-size: 2.5rem;
    color: #361202;
    line-height: 1.2;
    margin-bottom: 20px;
}

.collection-intro p {
    color: #666;
    font-size: 1.1rem;
} */

/* Collection Cards 
.collection-card {
    grid-column: span 2;
    background: #fdfaf6;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    cursor: pointer;
}

.card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card h3 {
    padding: 15px 10px;
    font-size: 1.1rem;
    color: #361202;
    background: #fff;
}
*/







/* Main Wrapper */
/* 1. Main Wrapper - Ensure alignment is at the top */
.awards-section-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    align-items: start; /* CHANGE THIS from stretch to start */
    padding: 60px 0%;
}

/* 2. Sidebar - Force it to keep the yellow background full-height */
.collection-intro {
    grid-column: span 4;
    background: #ffac00 !important;
    padding: 40px;
    border-radius: 12px;
    height: 100%; /* Keeps the yellow background stretching to the bottom */
}

/* 3. Right Panel - Ensure rows don't expand to fill height */
.awards-right-panel {
    grid-column: span 8;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-content: start; /* This forces rows to sit tight at the top */
}

/* 4. Collection Card - Remove or adjust max-height */
.collection-card {
    background: #fdfaf6;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    /* max-height: 250px; <-- Remove this if your images are tall, 
       otherwise the content might overflow the card. */
}


.card-image-wrapper {
    height: 180px; /* Control image height here */
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effects */
.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.collection-card:hover img {
    transform: scale(1.1);
}



/* Responsive Logic */
@media (max-width: 1100px) {
    .awards-right-panel { grid-template-columns: repeat(2, 1fr); } /* 2 cards per row on tablets */
}

@media (max-width: 768px) {
    .awards-section-wrapper { grid-template-columns: 1fr; padding-left:15px; padding-right: 15px;}
    .collection-intro, .awards-right-panel { grid-column: span 1; }
    .awards-right-panel { grid-template-columns: 1fr; } /* 1 card per row on mobile */
}






.testimonials-section {
    background: #fdfaf6;

}
.testimonial-container{ padding: 20px 0;
     max-width: 1200px;
     margin: 30px auto;
 }

.testimonials-section-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    align-items: start; /* CHANGE THIS from stretch to start */
    padding: 60px 0%;
}

/* Sidebar Styling */
.testimonial-intro {
    grid-column: span 4;
    padding: 50px 40px;
    background: #361202; /* Dark Clay Brown for contrast */
    color: #fff;
    border-radius: 12px;
}

.sub-heading {
    color: #FEA116;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: bold;
}

.testimonial-stats {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.testimonial-stats strong {
    display: block;
    font-size: 2.5rem;
    color: #FEA116;
}

/* Testimonial Cards */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    color: #FEA116;
    font-family: 'Georgia', serif;
    margin-bottom: -20px;
    opacity: 0.3;
}

.quote-text {
    /* Essential Fixes */
    white-space: normal !important; /* Forces text to wrap to the next line */
    word-wrap: break-word;          /* Breaks long words if they hit the edge */
    display: block;                 /* Ensures it occupies the full card width */
    
    /* Aesthetics */
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    width: 100%;                    /* Ensures it doesn't try to expand the card */
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}

.client-info h4 {
    font-size: 1rem;
    color: #361202;
    margin: 0;
}

.client-info span {
    font-size: 0.8rem;
    color: #888;
}

/* Slider Viewport */
.slider-viewport {
    overflow: hidden; /* Hides cards that are not in view */
    position: relative;
    padding: 10px 0;
}

/* The horizontal track that holds all cards */
.testimonial-track {
    display: flex;
    gap: 20px;
   /*  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform; */
     transition: transform 0.5s ease-in-out;
}


/* Individual Card Sizing */
.testimonial-card {
    flex: 0 0 calc(50% - 10px); /* Shows 2 cards at a time */
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Sidebar Controls */
.slider-controls {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.control-btn {
    background: #FEA116;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #361202;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.control-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Mobile: Show 1 card instead of 2 */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* Responsive adjustment */
@media (max-width: 1024px) {
    .testimonial-intro { grid-column: span 12; text-align: center; }
}

/* Tablet & Mobile Layout Adjustment */
@media (max-width: 992px) {
    .testimonials-section .testimonials-section-wrapper {
        display: flex;
        flex-direction: column; /* Stack sidebar on top of cards */
        gap: 20px;
    }

    .testimonial-intro {
        width: 100%;
        text-align: center;
        padding: 30px 20px;
    }

    .slider-controls {
        justify-content: center; /* Center buttons on mobile */
    }

    .awards-right-panel.slider-viewport {
        width: 100%;
    }
}

/* Specific Card Sizing for Mobile */
@media (max-width: 768px) {
    /* 1. Reset the wrapper for mobile */
    .testimonials-section .testimonials-section-wrapper {
        padding: 40px 15px; /* Smaller side padding on mobile */
        display: block; /* Switch from grid to block for simpler stacking */
    }

    /* 2. Make the viewport exactly as wide as the screen minus padding */
    
   
    .testimonial-card {
        flex: 0 0 100% !important;   /* Force 1 card per view */
        width: 90% !important;      /* Match viewport width */
        box-sizing: border-box;      /* Padding stays INSIDE the 100% width */
        padding: 25px;               /* Space inside the card */
        margin: 0;                   /* Remove any side margins */
    }

    .slider-viewport {
        width: 100%;
        overflow: hidden;            /* This clips the other cards */
    }

    .testimonial-track {
        display: flex;
        gap: 0; /* Removing gap on mobile makes the math easier for 100% width */
    }



    /* 4. Optional: Adjust text size so cards don't get too long */
    .quote-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}





/* Container & Main Grid */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 3rem;
    align-items: center;
}

.description{
    font-size: clamp(1rem, 2vw, 1.1rem); /* Responsive font size */
    line-height: 1.3;
    margin-bottom: 25px;}


/* Image Mosaic Grid */
.image-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns for images */
    gap: 15px;
}

.img-custom {
    width: 100%;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    animation: customZoomIn 0.8s ease-out forwards;
}

/* Mosaic Positioning */
.mt-offset { margin-top: 25%; width: 75% !important; }
.align-end { justify-self: end; width: 75% !important; }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    border-left: 5px solid #FEA116;
    padding-left: .2rem;
}

.stat-number {
    font-size: 3rem;
    color: #FEA116;
    margin: 0;
    line-height: 1;
}

.stat-text {
    padding-left: 1rem;
}

.stat-text h6 {
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
}

/* Animations & Buttons */
@keyframes customZoomIn {
    to { opacity: 1; transform: scale(1); }
}

.btn-primary-custom {
    display: inline-block;
    background-color: #FEA116;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border-radius: 4px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


/* Gallery Layout */

.gallery-section {
    padding: 60px 0;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-images {
    grid-column: span 8;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 images per row inside the 8-col span */
    gap: 15px;
}

.gallery-text {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.gallery-text h2 {
    font-size: 2.5rem;
    color: #361202;
    margin-bottom: 15px;
}

.hashtag {
    color: #FEA116;
    margin-top: 20px;
}

/* Image Item Styling */
.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Styling */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border: 5px solid #fff;
    border-radius: 4px;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
}





/* Mobile Adjustments */
@media (max-width: 768px) {
    .gallery-images, .gallery-text {
        grid-column: span 12;
    }
    .gallery-text { order: -1; margin-bottom: 30px; padding-left: 0; text-align: center; }
}

/* Responsive Tablet/Mobile */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* 7. RESPONSIVE MEDIA QUERIES */

/* Desktop Fix: 4 Columns in one row */
@media (min-width: 1024px) {
    .footer-col { 
        grid-column: span 3; /* 12 / 4 = 3 */
    }
}

/* Tablet Fix: 2 Columns per row */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-col { 
        grid-column: span 6; /* 2 columns per row */
    }
}


/* Tablets */
@media (min-width: 768px) {
   /* .footer-col { grid-column: span 4; } */
    .card { grid-column: span 6; }
}

/* Desktops */
@media (min-width: 1024px) {
    .card { grid-column: span 4; }
    .hero-container { grid-template-columns: 1.2fr 0.8fr; }
}





/* Mobile Specific (Nav and Hero stacking) */
@media (max-width: 767px) {
    .nav-links { 
        display: none; 
        flex-direction: column; 
        width: 100%; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        /* background: #8b0000; */
        background:rgba(54, 18, 2, 0.95); 
        padding: 20px;
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }

    .hero-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .hero-visual { 
        justify-content: center; 
        margin-top: 30px;
    }
    .hero { height: auto; padding: 80px 0; }
    .main-image-wrapper { height: 350px; }
}

/* Responsive for Tablets and Mobile 
@media (max-width: 1024px) {
    .collections-grid { grid-template-columns: repeat(6, 1fr); }
    .collection-intro { grid-column: span 6; padding-right: 0; text-align: center; margin-bottom: 30px; }
    .collection-card { grid-column: span 2; }
}

@media (max-width: 600px) {
    .collections-grid { grid-template-columns: 1fr; }
    .collection-intro { grid-column: span 1; }
    .collection-card { grid-column: span 1; }
}

*/


/* Additional CSS not in use  */

.welcome-section {
    width: 100%;
    padding: 80px 5%;
    background-color: #ffffff; /* Clean transition from the hero fade */
    display: flex;
    justify-content: center;
}

.feature-box {
    max-width: 900px;
    background: #fdfaf6; /* Light cream/parchment color */
    display: flex;
    position: relative;
    box-shadow: 20px 20px 60px #d9d6d2, -20px -20px 60px #ffffff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eee;
}

/* The dark clay vertical bar on the left */
.clay-accent {
    width: 15px;
    background: #361202; /* Your dark clay brown */
}

.feature-content {
    padding: 50px 60px;
    text-align: left;
}

.feature-content h2 {
    font-size: 2.2rem;
    color: #361202;
    margin-bottom: 20px;
    font-family: 'Georgia', serif; /* Serif font for a traditional feel */
}

.welcome-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.experience-badge {
    margin-top: 25px;
    display: inline-block;
    padding: 8px 20px;
    background: #FEA116; /* Your highlight gold */
    color: #361202;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 50px;
   /* text-transform: uppercase; */
    letter-spacing: 1px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .feature-content {
        padding: 30px;
    }
    .feature-content h2 {
        font-size: 1.8rem;
    }
}


/* Honeypot field */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}