/* --- Webflow Engine Inspired Luxury System Reset --- */
:root {
    --bg-base: #070709;
    --bg-surface-card: #111115;
    --accent-gold-rich: #d4af37;
    --accent-gold-bright: #f3cf65;
    --text-high-contrast: #ffffff; 
    --text-bold-sub: #f5f5f7;
    --text-dimmed-body: #fdfdfd; 
    --font-serif-luxury: 'Playfair Display', serif;
    --font-sans-clean: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: var(--text-high-contrast);
    font-family: var(--font-sans-clean);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Soft Cursor Track */
.luxury-cursor {
    width: 25px;
    height: 25px;
    border: 1.5px solid var(--accent-gold-rich);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
}

/* Top Bar Container Style (Announcement) */
.top-bar-container {
    background: linear-gradient(135deg, #F3E5AB, #D4AF37, #AA771C); /* Premium Metallic Gold */
    padding: 10px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Top Bar Text Style with Glow & Shrink Effect */
.top-bar-text {
    color: #000000; /* Pure Bold Black */
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-block;
    animation: light-pulse 3s ease-in-out infinite;
}

@keyframes light-pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(0, 0, 0, 0);
    }
    50% {
        transform: scale(1.03);
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(0, 0, 0, 0);
    }
}

/* --- Premium Navigation Header --- */
header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 20px 6%; 
    background: rgba(7, 7, 9, 0.94);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

/* --- Expanded Beautiful Logo (Original Colors Fixed) --- */
.main-logo {
    font-family: var(--font-serif-luxury);
    font-weight: 700;
    font-size: 34px; /* Size upgraded beautifully */
    letter-spacing: 3px;
    color: var(--text-high-contrast); /* Kept original white */
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.main-logo:hover {
    transform: scale(1.03);
}

.main-logo span {
    color: var(--accent-gold-rich); /* Kept original gold */
    font-weight: 300;
}

/* Desktop Navigation Links */
.desktop-nav a {
    color: var(--text-high-contrast);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin: 0 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--accent-gold-bright);
}

/* --- Premium Book Now Button (Original Shape + Elegant Blink) --- */
.nav-cta-btn {
    background-color: transparent;
    border: 1.5px solid var(--accent-gold-rich); /* Slightly thicker line for premium feel */
    color: var(--accent-gold-bright);
    padding: 14px 34px; /* Scaled up beautifully */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    animation: luxury-blink 2.5s ease-in-out infinite;
}

.nav-cta-btn:hover {
    background-color: var(--accent-gold-rich);
    color: #000000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation-play-state: paused; /* Hover pe blink rukega taake content static parhe user */
}

/* Smooth Luxury Breathing Blink Effect */
@keyframes luxury-blink {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(212, 175, 55, 0);
    }
    50% {
        transform: scale(1.06); /* Graceful upscale */
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.35); /* Elegant gold halo glow */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(212, 175, 55, 0);
    }
}

/* --- Hero Layout Architecture --- */
.premium-hero {
    padding: 120px 6%;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    width: 100%;
    align-items: center;
}

.gold-badge-tag {
    color: var(--accent-gold-bright);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.hero-main-title {
    font-family: var(--font-serif-luxury);
    font-size: 64px;
    line-height: 1.15;
    color: var(--text-high-contrast);
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-editorial-desc {
    color: var(--text-bold-sub);
    font-size: 17px;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-action-cluster {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-primary-btn {
    background-color: var(--accent-gold-rich);
    color: #000;
    padding: 18px 40px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, background-color 0.3s;
}

.hero-primary-btn:hover {
    background-color: var(--accent-gold-bright);
    transform: translateY(-3px);
}

.hero-secondary-btn {
    color: var(--text-high-contrast);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.editorial-frame {
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: var(--bg-surface-card);
    padding: 60px 40px;
    height: 420px;
    display: flex;
    align-items: flex-end;
}

.frame-title {
    font-family: var(--font-sans-clean);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--accent-gold-rich);
    font-weight: 700;
}

.editorial-frame h2 {
    font-family: var(--font-serif-luxury);
    font-size: 36px;
    margin: 10px 0;
}

.frame-decor-line {
    width: 80px;
    height: 2px;
    background-color: var(--accent-gold-rich);
    margin: 20px 0;
}

/* Value Operational Cards Bar */
.value-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--bg-surface-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.value-card {
    padding: 60px 40px;
    display: flex;
    gap: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.value-card:last-child {
    border-right: none;
}

.value-icon-box {
    font-size: 32px;
    color: var(--accent-gold-rich);
}

.value-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.value-info p {
    color: var(--text-bold-sub);
    font-size: 14px;
    line-height: 1.6;
}

/* --- Menu Grid Architecture --- */
.menu-section {
    padding: 120px 6%;
}

.section-title-block {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.section-sub {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold-rich);
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.section-title-block h2 {
    font-family: var(--font-serif-luxury);
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-p-limit {
    font-size: 16px;
    color: var(--text-bold-sub);
    max-width: 600px;
}

.text-center .section-p-limit {
    margin: 0 auto;
}

.menu-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.menu-tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-high-contrast);
    padding: 14px 28px;
    font-family: var(--font-sans-clean);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-tab-btn.active, .menu-tab-btn:hover {
    border-color: var(--accent-gold-rich);
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--accent-gold-bright);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.menu-item-card {
    background-color: var(--bg-surface-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.featured-combo {
    border: 1px solid var(--accent-gold-rich);
    background: linear-gradient(180deg, #121116 0%, #1c1912 100%);
}

.combo-ribbon {
    position: absolute;
    top: -12px;
    left: 40px;
    background-color: var(--accent-gold-rich);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 16px;
    text-transform: uppercase;
}

.menu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.menu-icon i {
    font-size: 26px;
    color: var(--accent-gold-rich);
}

.menu-price-tag {
    font-family: var(--font-serif-luxury);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold-bright);
}

.menu-item-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.menu-item-card p {
    color: var(--text-bold-sub);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.menu-selection-trigger {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-high-contrast);
    width: 100%;
    padding: 15px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-selection-trigger.chosen {
    background-color: var(--accent-gold-rich);
    color: #000;
    border-color: var(--accent-gold-rich);
}

/* Sticky Calculator Bar */
.luxury-calculator-bar {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    max-width: 1150px;
    background: rgba(17, 17, 21, 0.98);
    border: 1px solid var(--accent-gold-rich);
    padding: 25px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(20px);
}

.luxury-calculator-bar.active {
    bottom: 40px;
}

.calc-left h3 {
    font-family: var(--font-serif-luxury);
    font-size: 28px;
    margin-top: 5px;
}

.calc-left h3 span {
    color: var(--accent-gold-bright);
}

.dispatch-btn {
    background-color: #25d366;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* --- Video Showcases --- */
.video-showcase-section {
    padding: 120px 6%;
    background-color: #0b0b0f;
}

.video-masonry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.video-card-wrapper {
    background-color: var(--bg-surface-card);
    padding: 25px;
}

.video-inner-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #000;
}

.salon-reel {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-pause-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--accent-gold-rich);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
}

.video-meta {
    margin-top: 25px;
}

.video-meta h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.video-meta p {
    color: var(--text-bold-sub);
    font-size: 14px;
}

/* Artisans Layout */
.artisans-section {
    padding: 120px 6%;
}

.artisans-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/*.artisans-left-visual {
    height: 450px;
    background: linear-gradient(135deg, #151310 0%, #29241a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}*/



.artisans-left-visual {
    height: 450px;
    /* Image path add kar diya hai aur upar dark luxury tint layer lagayi hai */
    background: linear-gradient(135deg, rgba(21, 19, 16, 0.85) 0%, rgba(41, 36, 26, 0.75) 100%), 
                url('KITS_IMAGE_NAME.jpg'); 
    
    /* Image ko perfect responsive adjust karne ke liye */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Box ke andar luxury depth dene ke liye subtle shadow */
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}













.editorial-dual-box {
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    text-align: center;
}

.brand-monogram {
    font-family: var(--font-serif-luxury);
    font-size: 48px;
    color: var(--accent-gold-rich);
}

.accent-separator-line {
    width: 100px;
    height: 2px;
    background-color: var(--accent-gold-rich);
    margin: 25px 0;
}

.artisan-bio-p {
    font-size: 16px;
    line-height: 1.8;
}

/* --- Infinite Linear Marquee Review Architecture --- */
.marquee-reviews-section {
    padding: 120px 0;
    background-color: #09090c;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: linearMarquee 35s linear infinite;
}

.marquee-card {
    background-color: var(--bg-surface-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    width: 450px;
    padding: 45px;
    flex-shrink: 0;
}

.m-stars {
    color: var(--accent-gold-rich);
    font-size: 13px;
    margin-bottom: 20px;
}

.marquee-card p {
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-high-contrast);
    margin-bottom: 25px;
}

.marquee-card h4 {
    font-size: 14px;
    color: var(--accent-gold-bright);
    font-weight: 700;
}

@keyframes linearMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Premium Footer Infrastructure & Backlinks --- */
footer {
    background-color: #040405;
    padding: 80px 6% 40px 6%;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-left-brand h2 {
    font-family: var(--font-serif-luxury);
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-left-brand h2 span {
    color: var(--accent-gold-rich);
}

.footer-left-brand p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 30px;
}









/* =======================================================
   FIXED: LEFT-ALIGNED & REVERSED STATE SOCIAL MEDIA ICONS
   ======================================================= */

.footer-socials {
    display: flex !important;
    justify-content: flex-start !important; /* FIXED: Icons ko bilkul left par line up kiya hai */
    align-items: center !important;
    gap: 15px !important; /* Sleek structural gap */
    margin: 25px 0 0 0 !important; /* Perfect spacing underneath description */
    width: 100% !important;
}

/* Base Icon Container Setup */
.footer-socials .social-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                background 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Inner FontAwesome Icon Default State (White icons over colorful backgrounds) */
.footer-socials .social-icon i {
    font-size: 18px !important;
    color: #ffffff !important; /* Default me saare icons white rahenge */
    transition: color 0.3s ease !important;
}

/* -------------------------------------------------------
   BY DEFAULT: SOLID OFFICIAL BACKGROUNDS & GLOWS
   ------------------------------------------------------- */

/* 1. INSTAGRAM - Default Gradient Background */
.footer-socials .social-icon:has(i.fa-instagram) {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important;
    box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4) !important;
}

/* 2. FACEBOOK - Default Royal Blue Background */
.footer-socials .social-icon:has(i.fa-facebook-f) {
    background-color: #1877f2 !important;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4) !important;
}

/* 3. TIKTOK - Default Pure Dark + Dual Neon Drop Shadow */
.footer-socials .social-icon:has(i.fa-tiktok) {
    background-color: #010101 !important;
    box-shadow: -2px -2px 0px #fe2c55, 2px 2px 0px #25f4ee, 0 4px 15px rgba(0,0,0,0.5) !important;
}

/* 4. YOUTUBE - Default Crimson Red Background */
.footer-socials .social-icon:has(i.fa-youtube) {
    background-color: #ff0000 !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4) !important;
}

/* -------------------------------------------------------
   HOVER STATE: SHIFT TO THE PREMIUM DARK LUXURY LOOK
   ------------------------------------------------------- */

.footer-socials .social-icon:hover {
    transform: translateY(-4px) scale(1.05) !important;
    background: #121217 !important; /* Hover hote hi background luxury dark hojayega */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6) !important; /* Neutral elegant shadow */
}

/* Hover par individual icons apna original color pakdenge */
.footer-socials .social-icon:hover i.fa-instagram {
    color: #e1306c !important;
}

.footer-socials .social-icon:hover i.fa-facebook-f {
    color: #1877f2 !important;
}

.footer-socials .social-icon:hover i.fa-tiktok {
    color: #00f2fe !important;
}

.footer-socials .social-icon:hover i.fa-youtube {
    color: #ff0000 !important;
}















.footer-right-contacts h3 {
    font-family: var(--font-serif-luxury);
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.directory-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dir-item span {
    display: block;
    font-size: 13px;
    color: var(--accent-gold-bright);
    margin-bottom: 5px;
}

.dir-item a {
    color: var(--text-high-contrast);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.footer-copyright-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.developer-credit a {
    color: var(--accent-gold-bright);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold-rich);
}

/* --- Dividers --- */
.elegant-separator {
    height: 1px;
    width: 80%;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, #D4AF37, #AA771C, #D4AF37, transparent);
    position: relative;
}

.elegant-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #F3E5AB;
    border-radius: 50%;
    box-shadow: 0 0 12px 3px rgba(212, 175, 55, 0.8);
}

.wave-container {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: 20px;
}

.wave-container svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.wave-container path {
    fill: #ffffff; 
}

/* Responsive Engines */
@media(max-width: 1024px) {
    .hero-wrapper, .menu-grid, .video-masonry-grid, .artisans-wrapper, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-main-title { font-size: 44px; }
    .value-bar { grid-template-columns: 1fr; }
    .desktop-nav { display: none; }
    .footer-copyright-strip { flex-direction: column; gap: 15px; }
}







/* Editorial Frame Styles Update */
.editorial-frame {
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: #0b0b0f; /* Premium Deep Dark Base */
    padding: 60px 40px;
    height: 420px;
    display: flex;
    align-items: flex-end;
    position: relative; /* Canvas ko contain karne ke liye */
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

/* Background Canvas Position Fixed */
#salonArtistryCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.65; /* Taake animation subtle aur premium lage, text ko kharab na kare */
    z-index: 1;
}

/* Content Frame Over Canvas */
.frame-content {
    position: relative;
    z-index: 2; /* Text ko animation ke upar lane ke liye */
    background: rgba(11, 11, 15, 0.75); /* Soft premium blur background layer for readability */
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 4px;
    border-left: 2px solid var(--accent-gold-rich);
    width: 100%;
}




/* =======================================================
   ULTRA-FIX MOBILE RESPONSIVE ENGINE (ZERO OVERFLOW)
   ======================================================= */
@media (max-width: 1024px) {
    
    /* 1. Global Reset for Mobile to stop right-side cut */
    html, body {
        width: 100%;
        overflow-x: hidden; /* Stops horizontal scrolling completely */
        margin: 0;
        padding: 0;
    }

    /* 2. Top Bar Responsive Adjustment */
    .top-bar-container {
        padding: 8px 15px;
    }
    .top-bar-text {
        font-size: 13px; /* Smaller text to fit full screens */
        line-height: 1.3;
    }

    /* 3. Header Fix (Screenshot Alignment) */
    header {
        padding: 15px 4% !important; 
        display: flex !important;
        justify-content: center !important; /* Forces logo to center */
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    /* Hide Navigation and Buttons Completely */
    .desktop-nav, 
    .header-actions, 
    .nav-cta-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Logo Balanced & Centered */
    .main-logo {
        font-size: 24px !important;
        letter-spacing: 1.5px !important;
        margin: 0 auto !important;
        text-align: center;
    }

    /* 4. Hero Section Core Fix */
    .premium-hero {
        padding: 60px 4% !important; /* Reduced padding to fit screen */
        min-height: auto !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    .hero-wrapper {
        display: flex !important;
        flex-direction: column !important; /* Stack elements vertically */
        gap: 35px !important;
        width: 100% !important;
    }

    /* 5. Heading Text Size & Wrapping Fix (CRITICAL) */
    .hero-main-title { 
        font-size: 32px !important; /* Significantly reduced to prevent cutting */
        line-height: 1.25 !important;
        text-align: left !important;
        width: 100% !important;
        word-wrap: break-word !important; /* Forces large text to stay inside bounds */
        overflow-wrap: break-word !important;
        margin-bottom: 20px !important;
    }

    .hero-editorial-desc {
        font-size: 15px !important;
        line-height: 1.6 !important;
        text-align: left !important;
        width: 100% !important;
        margin-bottom: 30px !important;
    }

    /* 6. Hero Action Buttons Cluster Fix */
    .hero-action-cluster {
        display: flex !important;
        flex-direction: row !important; /* Side by side buttons */
        justify-content: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .hero-primary-btn {
        padding: 14px 20px !important; /* Compact button sizes for mobile thumb width */
        font-size: 12px !important;
        white-space: nowrap;
    }

    .hero-secondary-btn {
        font-size: 11px !important;
        padding: 14px 10px !important;
        white-space: nowrap;
    }

    /* Editorial box frame responsiveness */
    .editorial-frame {
        height: auto !important;
        padding: 40px 20px !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    /* Other Grids Fix */
    .menu-grid, 
    .video-masonry-grid, 
    .artisans-wrapper, 
    .footer-grid,
    .value-bar {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }
}