.category-grid-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns as seen in image */
    gap: 10px; /* Specific tight gap from the screenshot */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.grid-tile {
    position: relative;
    height: 250px;
    display: block;
    overflow: hidden;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* Hover Effect: The image zooms slightly */
.grid-tile:hover {
    transform: scale(1.02);
    z-index: 2;
}

.tile-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    height: 100%;
    background: linear-gradient(transparent 60%, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.tile-overlay span, .grid-tile span {
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-align: center;
}

/* BRANDED TILES */
.brand-green {
    background-color: #4a6741; /* Brand Sage Green */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.owl-icon {
    width: 80px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.brand-gold {
    background: linear-gradient(to bottom, #ffcc33, #ffaa00); /* Vibrant Gold Gradient */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.handwritten-grid {
    font-family: 'Architects Daughter', cursive;
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

.brand-gold span {
    color: #333;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 10px;
    width: 100%;
}

/* RESPONSIVE: Stack tiles on mobile */
@media (max-width: 1024px) {
    .nav-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .nav-grid { grid-template-columns: 1fr; }
}



.tz-unveiled {
    background-color: #ffffff;
    padding: 80px 10%;
    color: #333;
}

.unveiled-container {
    max-width: 1100px;
    margin: 0 auto;
}

.unveiled-content-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Text gets more space */
    gap: 50px;
    margin-top: 30px;
    align-items: flex-start;
}

/* Typography */
.brand-h2 {
    color: #4a6741;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #222;
}

.unveiled-text p, .unveiled-text-bottom p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.handwritten-h3 {
    font-family: 'Architects Daughter', cursive;
    color: #4a6741;
    font-size: 1.3rem;
    margin: 35px 0 15px;
}

/* Video Responsive Wrapper */
.video-responsive-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.video-responsive-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 4px solid #fff; /* White border as seen on luxury sites */
}

.video-caption {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 10px;
    color: #888;
}

.unveiled-text-bottom {
    margin-top: 40px;
}
