/* ==========================================================================
   SOPHY DEE CONSULTING - MASTER BRAND STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --forest-green: #1F5E45;
    --gold: #C9A227;
    --gold-light: #f4e8c1;
    --ivory: #F8F5EF;
    --dark-text: #2c3531;
    --light-text: #ffffff;
    --border-color: rgba(31, 94, 69, 0.1);
    
    /* Brand Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;

    --heading-xlarge: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    --heading-large: clamp(2.2rem, 4vw + 1rem, 3.5rem);
    --heading-medium: clamp(1.5rem, 3vw + 0.5rem, 2.2rem);
    --heading-small: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
    --body-text: clamp(0.95rem, 0.5vw + 0.8rem, 1.1rem);
    --meta-text: clamp(0.75rem, 0.2vw + 0.7rem, 0.85rem);

    /* --- Responsive Layout Spacing Scales --- */
    --container-padding: clamp(1rem, 3vw, 2.5rem);
    --section-spacing: clamp(4rem, 8vw, 8rem);
    --grid-gap: clamp(1rem, 2vw, 2rem);
}

/* Base Typographic Reinforcements using Variables */
h1 { font-size: var(--heading-xlarge); line-height: 1.1; }
h2 { font-size: var(--heading-large); line-height: 1.2; }
h3 { font-size: var(--heading-medium); line-height: 1.3; }
p { font-size: var(--body-text); line-height: 1.6; }

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--ivory);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}

/* --- Scroll Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: var(--gold);
    width: 0%;
    z-index: 1005;
    transition: width 0.1s ease-out;
}

/* --- Glassmorphic Navigation Header --- */
header {
    background-color: rgba(31, 94, 69, 0.95); /* Forest Green with subtle transparency */
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.nav-container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.02);
}

/* Desktop Navigation Menu */
nav.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

nav.nav-menu ul li {
    margin: 0 15px;
    position: relative;
}

nav.nav-menu ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

nav.nav-menu ul li a:hover,
nav.nav-menu ul li a.active {
    color: var(--gold);
}

/* Dropdown styling for Signature Experiences nested nav */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--forest-green);
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0 !important;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
}

.dropdown-menu li a:hover {
    background-color: rgba(255,255,255,0.05);
}

/* --- Buttons --- */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    height: 50px; /* Aligns all button heights vertically */
    box-sizing: border-box;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    line-height: 1;
}

.primary-btn {
    background-color: var(--gold);
    color: var(--forest-green);
    border: 1px solid var(--gold);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--light-text);
}

.secondary-btn:hover {
    background-color: var(--light-text);
    color: var(--forest-green);
    transform: translateY(-2px);
}

.small-btn {
    height: 40px;
    padding: 10px 20px;
    font-size: 0.8rem;
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.small-btn:hover {
    background-color: var(--gold);
    color: var(--forest-green);
}

/* --- Hero Section with Content Specific Text Alignment --- */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(31, 94, 69, 0.8), rgba(31, 94, 69, 0.85)), 
                url('Gemini_Generated_Image_epfzl7epfzl7epfz.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
    color: var(--gold-light);
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- Spaced Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--forest-green);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 25px auto;
    font-weight: 300;
}

.section-header .line {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto;
}

/* --- Premium Services Section Layout --- */
.services-section {
    background-color: #ffffff;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.intro-text h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.highlight-box {
    background-color: var(--forest-green);
    color: var(--light-text);
    padding: 40px;
    border-radius: 6px;
    border-left: 5px solid var(--gold);
}

.highlight-box h4 {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box ul li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}


.highlight-box ul li i {
    color: var(--gold);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--ivory);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 94, 69, 0.08);
    border-color: var(--gold);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    color: var(--forest-green);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--forest-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Soul Food Immersive Showcase Section --- */
.soul-food-showcase {
    background: linear-gradient(rgba(31, 94, 69, 0.9), rgba(31, 94, 69, 0.9)), 
                url('http://googleusercontent.com/image_collection/image_retrieval/12555867179310425772_3') no-repeat center center/cover;
    color: var(--light-text);
}

.showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-content h2 {
    font-family: var(--heading-font);
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.showcase-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 25px;
}

.showcase-content p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.8;
}

.pillars-indicator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ind-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 4px;
}

.ind-card h4 {
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.ind-card p {
    font-size: 0.8rem !important;
    margin-bottom: 0 !important;
}

/* --- Core Bio Section --- */
.bio-section {
    background-color: var(--ivory);
}

.bio-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.bio-img-container {
    position: relative;
}

.bio-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    top: 20px;
    left: -20px;
    z-index: 1;
}

.bio-actual-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bio-text h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.bio-text .credentials {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.mobile-menu-toggle {
    position: relative;
    z-index: 1001 !important; /* Lifts button above header & overlays */
    cursor: pointer;
}

.bio-text p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

.quote-block {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--forest-green);
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin: 30px 0;
}

/* --- Multi-Column Footer styling --- */
footer {
    background-color: #112a20;
    color: var(--light-text);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding: 80px 0 50px 0;
}

.footer-brand h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer-links h4, .footer-newsletter h4 {
    font-family: var(--heading-font);
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.footer-links ul li a {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(255,255,255,0.05);
    color: var(--light-text);
    font-family: var(--body-font);
}

.newsletter-form button {
    border: none;
    width: 100%;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--gold-light);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

/* ==========================================
   MEDIA PORTFOLIO & IMAGE GRID STYLING
   ========================================== */

.media-portfolio-section {
    background-color: var(--ivory);
    padding: 100px 0;
}

/* Asymmetrical Modern Grid Layout */
.media-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

/* Base structural rules for image containers */
.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(31, 94, 69, 0.05);
    border: 1px solid var(--border-color);
    background-color: #ffffff;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Layout variation: Vertical Featured Picture */
.gallery-item.featured-portrait {
    grid-row: span 2;
}
.gallery-item.featured-portrait .gallery-image-wrapper {
    aspect-ratio: 3/4;
}

/* Layout variation: Horizontal Featured Picture */
.gallery-item.featured-landscape {
    grid-column: span 2;
}
.gallery-item.featured-landscape .gallery-image-wrapper {
    aspect-ratio: 16/9;
}

/* --- Interactive Overlay Styling --- */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(31, 94, 69, 0.9) 20%, rgba(31, 94, 69, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-tag {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.gallery-overlay h3 {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    color: var(--light-text);
    margin-bottom: 5px;
    font-weight: 400;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: var(--gold-light);
    opacity: 0.9;
    font-weight: 300;
}

/* Hover Trigger States */
.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ==========================================
   MINIMALIST MEDIA SHOWCASE STYLING
   ========================================== */

.media-showcase-section {
    background-color: var(--ivory);
    padding: 100px 0;
}

/* Tabs Navigation */
.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: #ffffff;
    color: var(--forest-green);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    font-family: var(--body-font);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tab-btn:hover, 
.tab-btn.active {
    background-color: var(--forest-green);
    color: var(--light-text);
    border-color: var(--forest-green);
    box-shadow: 0 4px 15px rgba(31, 94, 69, 0.15);
}

/* 3-Column Clean Photo Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.showcase-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(31, 94, 69, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(31, 94, 69, 0.08);
}

/* Constrain photo space strictly to 4:3 landscape layout */
.showcase-img-box {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.showcase-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-img-box img {
    transform: scale(1.04);
}

/* Card details */
.showcase-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.info-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.showcase-info h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--forest-green);
    margin-bottom: 12px;
    font-weight: 400;
}

.showcase-info p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

/* Dynamic Filtering Animation Classes */
.showcase-item.hide {
    display: none;
}

/* ==========================================
   MINIMALIST EDITORIAL PHOTO GRID
   ========================================== */
/* Fixed & Professional Uncropped Photo Gallery Styles */
.photo-gallery-section {
    background-color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid var(--border-color, #e0e0e0);
    border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
    align-items: center;
}

.photo-card {
    background-color: var(--ivory, #fbf9f5);
    border: 1px solid var(--border-color, #e2ded8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.photo-card img {
    width: 100%;
    height: 400px;
    /* Keeps aspect ratio intact while aligning from top edge */
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    display: block;
}

.photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(31, 94, 69, 0.08);
    border-color: var(--gold);
}

.photo-card:hover img {
    transform: scale(1.03);
}

/* --- Services Detail Cards Layout --- */
.service-detail-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold) !important;
    box-shadow: 0 12px 30px rgba(31, 94, 69, 0.08);
}

/* --- Digital Product Cards Layout --- */
.product-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold) !important;
    box-shadow: 0 12px 30px rgba(31, 94, 69, 0.08);
}

/* --- Intentional Parenting Professional Layout --- */
.parenting-section {
    padding: 60px 20px;
    background-color: var(--ivory, #fdfbf7);
}

.parenting-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero Card with Image Background */
.parenting-hero-card {
    position: relative;
    background: url('https://images.unsplash.com/photo-1536640712-4d4c36ff0e4e?auto=format&fit=crop&q=80&w=1200') no-repeat center center/cover;
    border-radius: 12px;
    overflow: hidden;
    padding: 80px 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.parenting-hero-card .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 94, 69, 0.92), rgba(15, 50, 36, 0.88));
    z-index: 1;
}

.parenting-hero-card .hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.parenting-hero-card .sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--gold, #c9a227);
    font-weight: 700;
}

.parenting-hero-card .main-title {
    font-family: var(--heading-font, serif);
    font-size: 2.8rem;
    margin: 10px 0;
}

.parenting-hero-card .tagline-hero {
    font-size: 1.15rem;
    color: #e2e8e4;
    margin-bottom: 25px;
}

.inline-hero-btn {
    background-color: var(--gold, #c9a227);
    color: var(--forest-green, #1f5e45);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inline-hero-btn:hover {
    background-color: #ffffff;
    color: var(--forest-green, #1f5e45);
    transform: translateY(-2px);}

/* Intro Grid */
.parenting-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.card-style {
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--border-color, #e5e0d8);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    line-height: 1.8;
}

.lead-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--forest-green, #1f5e45);
    margin-bottom: 15px;
}

.highlight-quote-card {
    background: var(--forest-green, #1f5e45);
    color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.highlight-quote-card .quote-icon {
    font-size: 2rem;
    color: var(--gold, #c9a227);
    margin-bottom: 15px;
}

.secondary-btn {
    background-color: transparent;
    border: 1px solid var(--gold, #c9a227);
    color: var(--gold, #c9a227);
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
}

.secondary-btn:hover {
    background-color: var(--gold, #c9a227);
    color: var(--forest-green, #1f5e45);
}

/* Philosophy Section */
.parenting-philosophy {
    margin-bottom: 50px;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color, #e5e0d8);
}

.philosophy-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pill {
    padding: 10px 20px;
    border-radius: 30px;
    background: #f4f1ea;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest-green, #1f5e45);
}

.pill.highlight {
    background: var(--gold, #c9a227);
    color: #ffffff;
}

/* Awareness List */
.awareness-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.awareness-list li {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color, #e5e0d8);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.awareness-list i {
    color: var(--gold, #c9a227);
    font-size: 1.1rem;
    margin-top: 3px;
}

.progress-banner {
    background: rgba(31, 94, 69, 0.06);
    padding: 20px;
    border-left: 4px solid var(--forest-green, #1f5e45);
    font-weight: 600;
    color: var(--forest-green, #1f5e45);
    margin-bottom: 50px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color, #e5e0d8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.full-width {
    grid-column: span 2;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold, #c9a227);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.card-action-btn {
    margin-top: 20px;
    color: var(--forest-green, #1f5e45);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-action-btn:hover {
    color: var(--gold, #c9a227);
}

.workshop-topics {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.workshop-topics i {
    color: var(--gold, #c9a227);
    margin-right: 5px;
}

/* Audience Tags */
.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 25px 0 50px 0;
}

.audience-tags span {
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid var(--border-color, #e5e0d8);
    font-size: 0.88rem;
    font-weight: 500;
}

/* Parent CTA */
.parenting-cta {
    background: #ffffff;
    padding: 50px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color, #e5e0d8);
    margin-top: 40px;
}

.large-btn {
    background-color: var(--forest-green, #1f5e45);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.large-btn:hover {
    background-color: var(--gold, #c9a227);
}
/* ===================================================
   ELEVATED & PROFESSIONAL ANIMATIONS
   =================================================== */

/* Smooth scroll behavior across the entire site */
html {
    scroll-behavior: smooth;
}

/* Base Fade & Rise Animation Class */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Active State Triggered by JavaScript */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays for Cards & Grids */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Subtle Luxury Hover Zoom for Photo Cards & Product Cards */
.photo-card, .product-card, .contact-form-card, .business-info-sidebar {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.photo-card:hover, .product-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 20px 40px rgba(15, 35, 26, 0.12) !important;
}

/* Premium Button Shimmer Interaction */
.cta-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.6s ease;
}

.cta-btn:hover::after {
    left: 120%;
}

.closing-quote {
    font-style: italic;
    color: #777;
    margin-top: 15px;
}

/* --- Mobile Responsive Queries --- */
@media (max-width: 768px) {
    .parenting-hero-card .main-title {
        font-size: 2rem;
    }
    
    .parenting-intro-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.full-width {
        grid-column: span 1;
    }

    .workshop-topics {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   AGENCY-GRADE GLOBAL MOTION & ANIMATION SYSTEM
   ========================================================================== */

@keyframes eliteFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes eliteFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes eliteScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.97);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drawBorderGold {
    0% { width: 0; }
    100% { width: 100%; }
}

.animate-fade-up {
    animation: eliteFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-fade-in {
    animation: eliteFadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-scale-in {
    animation: eliteScaleIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 { animation-delay: 0.15s !important; animation-fill-mode: backwards !important; }
.delay-2 { animation-delay: 0.3s !important; animation-fill-mode: backwards !important; }
.delay-3 { animation-delay: 0.45s !important; animation-fill-mode: backwards !important; }
.delay-4 { animation-delay: 0.6s !important; animation-fill-mode: backwards !important; }
.delay-5 { animation-delay: 0.45s !important; animation-fill-mode: backwards !important; }
.delay-6 { animation-delay: 0.45s !important; animation-fill-mode: backwards !important; }

header nav ul li a {
    position: relative;
    transition: color 0.3s ease;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

header nav ul li a:hover::after {
    width: 100%;
}

header, .about-hero, .booking-card, footer {
    will-change: transform, opacity;
}

.line {
    width: 0;
    animation: drawBorderGold 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.3s;
}

/* --- FIX DIM / COVERED DRAWER ON INDEX --- */
header {
    position: relative;
    z-index: 1001 !important; /* Forces header above overlay */
}

.nav-overlay {
    z-index: 999 !important; /* Keeps dark backdrop underneath the drawer */
}

nav.nav-menu {
    z-index: 1002 !important; /* Places drawer on the top layer */
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE SYSTEM
   ========================================================================== */

/* Hide mobile drawer elements on large screens */
.mobile-menu-toggle,
.mobile-menu-close,
.nav-overlay,
.mobile-drawer-cta {
    display: none;
}

.mobile-menu-toggle i {
    pointer-events: none; /* Passes click directly to parent button */
}

/* --- PRO CONTACT CARD SECTION --- */
.pro-contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.pro-contact-card {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 40px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-header .badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: #f0f7f4;
  color: #1b4332; /* Primary Dark Green Theme */
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-header h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 10px;
  font-weight: 700;
}

.card-header p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Email Box Action */
.email-action-box {
  display: flex;
  align-items: center;
  background: #1b4332; /* Dark Green Primary */
  color: #ffffff;
  padding: 18px 24px;
  border-radius: 12px;
  text-decoration: none;
  gap: 16px;
  transition: background-color 0.3s ease;
  margin-bottom: 30px;
}

.email-action-box:hover {
  background-color: #2d6a4f;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 10px;
}

.email-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.email-details .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.email-details .email-address {
  font-size: 1.1rem;
  font-weight: 600;
  word-break: break-all;
}

.send-arrow {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.email-action-box:hover .send-arrow {
  transform: translateX(5px);
}

/* Secondary Details Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid #eee;
  padding-top: 25px;
}

.info-item {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 4px;
}

.info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}

#brand-splash {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #1f5e45;
        z-index: 999999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Pure CSS Auto-Fade & Removal Engine */
        animation: fadeOutSplash 0.5s ease-in-out 1.5s forwards;
        pointer-events: none; /* Allows immediate tap-through if user clicks early */
    }

    #brand-splash img {
        width: 160px;
        max-width: 70%;
        height: auto;
        animation: pulseLogo 1.2s infinite alternate ease-in-out;
        filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
    }

    @keyframes pulseLogo {
        0% { transform: scale(0.92); opacity: 0.85; }
        100% { transform: scale(1.05); opacity: 1; }
    }

    /* Automatically hides splash screen after 1.5 seconds */
    @keyframes fadeOutSplash {
        0% {
            opacity: 1;
            visibility: visible;
        }
        99% {
            opacity: 0;
            visibility: visible;
        }
        100% {
            opacity: 0;
            visibility: hidden;
            display: none;
        }
    }
/* ==========================================================================
   PRODUCTION-READY UNIFIED MOBILE RESPONSIVENESS (ALL SITE PAGES)
   ========================================================================== */

/* --- 1. DESKTOP VIEW (> 992px) --- */
@media (min-width: 993px) {
    .mobile-menu-close,
    .mobile-menu-toggle,
    .nav-overlay {
        display: none !important;
    }

    nav.nav-menu {
        display: block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    nav.nav-menu ul {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        right: auto !important;
        gap: 20px !important;
    }
}

/* --- 2. TABLET & MOBILE VIEW (<= 992px) --- */
@media (max-width: 992px) {

    /* Desktop CTA Hide */
    .nav-desktop-cta {
        display: none !important;
    }

    /* Outer Menu Toggle Button (Hamburger) */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: var(--gold, #c9a227);
        font-size: 1.4rem;
        line-height: 1;
        cursor: pointer;
        z-index: 1000 !important;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
        appearance: none;
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--gold, #c9a227);
        outline: none;
    }

    /* Off-Canvas Navigation Drawer */
    nav.nav-menu {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 300px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background-color: var(--forest-green, #1b5e3b) !important;
        padding: 90px 30px 40px 30px !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3) !important;
        z-index: 1001 !important;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        overflow-y: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    nav.nav-menu.active {
        right: 0 !important;
    }

    nav.nav-menu ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 18px !important;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100% !important;
    }

    nav.nav-menu ul li {
        margin: 0 !important;
        width: 100%;
    }

    nav.nav-menu ul li a {
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 500;
        text-decoration: none;
        display: block;
    }

    /* Dedicated Close Button (X Icon Fix) */
    .mobile-menu-close {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute !important;
        top: 25px !important;
        right: 25px !important;
        width: 42px !important;
        height: 42px !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(201, 162, 39, 0.5) !important;
        border-radius: 50% !important;
        color: var(--gold, #c9a227) !important;
        font-size: 1.3rem !important;
        cursor: pointer !important;
        z-index: 1005 !important;
        transition: all 0.3s ease !important;
        -webkit-tap-highlight-color: transparent;
        appearance: none;
    }

    .mobile-menu-close:active,
    .mobile-menu-close:hover {
        background: var(--gold, #c9a227) !important;
        color: var(--forest-green, #1b5e3b) !important;
    }

    .mobile-drawer-cta {
        display: inline-flex !important;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        justify-content: center;
    }

    .nav-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1000 !important;
        transition: all 0.4s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* General Layout Grid Stacking (All Pages) */
    .bio-grid,
    .bio-detail-section .bio-grid,
    .services-intro-grid,
    .showcase-wrapper,
    .footer-top,
    .booking-grid-layout,
    .clarity-layout,
    .soul-food-intro .grid-two-columns,
    .experience-features .grid-two-columns,
    .contact-details-section div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }

    .booking-sidebar,
    .business-info-sidebar {
        position: static !important;
        width: 100% !important;
    }

    .bio-frame {
        display: none !important;
    }

    .pillars-indicator {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* --- 3. STRICT MOBILE SCREEN BREAKPOINT (<= 768px) --- */
@media (max-width: 768px) {

    /* Anti Auto-Scaling & Layout Overflow Protection */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        -webkit-text-size-adjust: 100% !important;
    }

    .container, 
    .nav-container,
    .parenting-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* --- SOUL FOOD EXPERIENCE (SOUL-FOOD.HTML) FIXES --- */
    .soul-food-intro,
    .philosophy-section,
    .experience-features {
        padding: 30px 0 !important;
    }

    .soul-food-intro .photo-card {
        aspect-ratio: 16/10 !important;
        height: auto !important;
        max-height: 300px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .experience-text h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .experience-text p {
        font-size: 0.92rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }

    .philosophy-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 25px !important;
    }

    .phil-card {
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .feature-detail-box,
    .soul-food-intro .service-detail-card,
    #booking-options .service-detail-card {
        padding: 25px 18px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .feature-detail-box h3,
    .service-detail-card h3 {
        font-size: 1.4rem !important;
    }

    /* --- STORE / MARKETPLACE (SHOP.HTML) FIXES --- */
    .shop-catalog-section {
        padding: 30px 0 !important;
    }

    .mall-categories {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-bottom: 30px !important;
        width: 100% !important;
    }

    .mall-categories .filter-btn {
        flex: 1 1 calc(50% - 10px) !important;
        min-width: 140px !important;
        padding: 10px 12px !important;
        font-size: 0.82rem !important;
        text-align: center !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 25px !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.03) !important;
    }

    .shop-catalog-section div[style*="border-left: 5px solid"] {
        padding: 20px 18px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .shop-catalog-section .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .shop-catalog-section .product-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .shop-catalog-section .product-card div[style*="padding: 25px"] {
        padding: 18px !important;
    }

    /* --- SERVICES PAGE FIXES --- */
    .clarity-focus-section,
    .services-breakdown,
    .parenting-section {
        padding: 30px 0 !important;
    }

    .services-breakdown .services-grid,
    .services-wrapper .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .service-detail-card,
    .services-wrapper .service-card,
    .parenting-intro,
    .clarity-details > div {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px 15px !important;
    }

    /* --- RESOURCES PAGE FIXES --- */
    .resources-catalog-section {
        padding: 30px 0 !important;
    }

    .resources-catalog-section .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .resources-catalog-section article.product-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* --- CONTACT PAGE FIXES --- */
    .contact-details-section,
    .pro-contact-section {
        padding: 30px 0 !important;
    }

    .contact-form-card,
    .business-info-sidebar,
    .pro-contact-card {
        padding: 25px 18px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* --- BOOKING PAGE FIXES --- */
    #auth-overlay {
        padding: 15px !important;
    }

    #auth-overlay > div {
        padding: 25px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .booking-section {
        padding: 30px 0 !important;
    }

    .booking-sidebar > div,
    .booking-card {
        padding: 25px 18px !important;
        box-sizing: border-box !important;
    }

    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* --- ADMIN PORTAL FIXES --- */
    #admin-auth-gate {
        padding: 30px 15px !important;
        min-height: auto !important;
    }

    .admin-dashboard-section {
        padding: 80px 0 30px 0 !important;
        min-height: auto !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* --- ABOUT & HERO PAGE FIXES --- */
    .about-hero {
        padding: 70px 20px 40px 20px !important;
    }

    .about-hero h1 {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
    }

    .bio-detail-section,
    .culinary-heritage-banner,
    .photo-gallery-section {
        padding: 35px 0 !important;
    }

    .photo-gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* --- INDEX PAGE FIXES --- */
    .hero {
        padding: 60px 20px 40px 20px !important;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .services-cards-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .footer-top {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
}

/* --- 4. EXTRA SMALL PHONES (<= 480px) --- */
@media (max-width: 480px) {
    .mall-categories .filter-btn {
        flex: 1 1 100% !important;
    }

    .photo-gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .time-slots-grid {
        grid-template-columns: 1fr !important;
    }

    input[type="email"],
    input[type="password"],
    input[type="text"],
    select,
    textarea,
    .newsletter-form input {
        font-size: 16px !important;
        padding: 12px !important;
    }
}