/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    /* Solid White */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.loader-content {
    text-align: center;
    width: 200px;
}

.loader-content img {
    width: 80px;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite ease-in-out;
}

.loader-bar {
    height: 3px;
    width: 100%;
    background: #eee;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    animation: loading 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

:root {
    --primary-color: #4b3621;
    --primary-dark: #3a2a1a;
    --text-color: #333333;
    --light-grey: #f8f8f8;
    --white: #ffffff;
    --black: #000000;
    --accent-color: #b08d79;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-accent: 'Pacifico', cursive;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fcfcfc;
}

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

ul {
    list-style: none;
}

/* Global Elements */
.menu-toggle,
.mobile-nav-header {
    display: none;
}

.pc-only {
    display: block;
}

/* Header */
.top-bar {
    background-color: #f5f5f5;
    padding: 8px 5%;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ddd;
}

.main-header {
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-container {
    background-color: var(--primary-color);
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-menu li a {
    color: white;
    padding: 12px 20px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

.nav-menu li a:hover {
    background-color: var(--primary-dark);
}

.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a,
.nav-menu li.current-menu-ancestor a {
    background-color: var(--primary-dark);
    color: #D4A26A !important;
    position: relative;
}

.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after,
.nav-menu li.current-menu-ancestor a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: #D4A26A;
    border-radius: 2px 2px 0 0;
}

/* Sidebar & Hero */
.hero-section {
    display: flex;
    padding: 30px 5%;
    gap: 30px;
}

.sidebar-categories {
    flex: 0 0 280px;
    border: 1px solid #eee;
    background: white;
}

.sidebar-header {
    background: #000;
    color: white;
    padding: 15px 20px;
    font-weight: bold;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
    border-left: 0px solid transparent;
}

.category-list li a span {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s;
}

.category-list li a:hover {
    background: #fdfaf7;
    color: var(--primary-color);
    padding-left: 26px;
    border-left: 4px solid #D4A26A;
}

.category-list li a:hover span {
    transform: translateX(5px) scale(1.3);
    color: #D4A26A;
}

.hero-slider {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 340px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 45px;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 5% 60px;
}

.promo-card {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: white !important;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.promo-card * {
    position: relative;
    z-index: 2;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 5% 60px;
}

.product-card {
    background: white;
    text-align: center;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.product-info {
    background: #b08d79;
    color: white;
    padding: 20px;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
}

/* Footer */
.footer-top {
    background: #4b3621;
    color: white;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-main {
    background: #4b3621;
    color: white;
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

/* New Sections for Cleaning Service */
.section-header {
    padding: 18px 0 8px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 5% 40px;
}

.review-card {
    background: white;
    padding: 25px;
    border: 1px solid #eee;
    text-align: center;
    border-radius: 8px;
}

.stars {
    color: #f1c40f;
    margin-bottom: 15px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    outline: none;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

#form-status {
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
}

.status-success {
    color: green;
}

.status-error {
    color: red;
}

/* Service Icon Cards */
.service-icon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-color) !important;
}

/* Service Page Content Styling */
.service-detail {
    line-height: 1.7;
}

.service-detail h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin: 25px 0 12px;
    color: #2B150A;
}

.service-detail h4 {
    font-size: 17px;
    color: #4b3621;
}

.service-detail p {
    color: #555;
    margin-bottom: 12px;
}

.service-detail ul,
.service-detail ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.service-detail li {
    margin-bottom: 6px;
    color: #555;
}

.service-detail img {
    transition: 0.3s;
}

.service-detail img:hover {
    transform: scale(1.02);
}

/* Bento UI Grid System — handles images of any size uniformly */
.bento-grid {
    display: grid;
    gap: 8px;
    margin: 15px 0;
}

.bento-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.bento-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 3-column bento */
.bento-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 4-column bento */
.bento-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Bento with a featured large image — first image spans 2 cols + 2 rows */
.bento-featured {
    grid-template-columns: repeat(3, 1fr);
}

.bento-featured img:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1 / 1;
}

/* Custom Staggered Creations Grid */
.custom-creations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Site-wide Consistent Alignment Container */
.site-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
}

/* ═══════════════════════════════════════════ */
/* HOMEPAGE PREMIUM LAYOUT SYSTEM             */
/* ═══════════════════════════════════════════ */
.hp-split {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.hp-split-reverse {
    flex-direction: row-reverse;
}

.hp-split-text {
    flex: 1;
    min-width: 300px;
}

.hp-split-media {
    flex: 1.1;
    min-width: 300px;
}

.hp-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.hp-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 13px 32px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.hp-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(75, 54, 33, 0.3);
    color: white;
}

.hp-btn-gold {
    background: #D4A26A;
    color: #1a0d06;
}

.hp-btn-gold:hover {
    background: #c49358;
    color: #1a0d06;
    box-shadow: 0 6px 18px rgba(212, 162, 106, 0.4);
}

.hp-dark-section {
    background: #1a0d06;
    padding: 45px 5%;
}

.hp-dark-section .bento-grid img {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Premium Lightbox Modal */
.rug-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 9, 4, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    cursor: zoom-out;
}

.rug-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.rug-lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.88);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid rgba(255, 255, 255, 0.08);
}

.rug-lightbox.active .rug-lightbox-content {
    transform: scale(1);
}

.rug-lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    user-select: none;
    line-height: 1;
}

.rug-lightbox-close:hover {
    color: #fff;
    transform: scale(1.15);
}

.rug-lightbox-caption {
    position: absolute;
    bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.55);
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 80%;
    text-align: center;
}

/* Clickable image hover effects */
.service-img-grid img,
.split-content-container img,
.service-detail img,
.hp-split-media img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-img-grid img:hover,
.split-content-container img:hover,
.service-detail img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Premium Page Transition Entrance Animation */
@keyframes pageEntrance {
    0% {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.site-main {
    animation: pageEntrance 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

/* ═══════════════════════════════════════════ */
/* LUXURY EDITORIAL REDESIGN STYLES           */
/* ═══════════════════════════════════════════ */

/* Custom Typography & Editorial Helpers */
.editorial-dropcap::first-letter {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 4px;
    color: #D4A26A;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 162, 106, 0.08);
    border: 1px solid rgba(212, 162, 106, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #b08d79;
    text-transform: uppercase;
    font-family: var(--font-main);
    box-shadow: 0 4px 10px rgba(75, 54, 33, 0.02);
}

.serif-italic-accent {
    font-family: var(--font-heading);
    font-style: italic;
    color: #4b3621;
}

/* Gilded Frame for Images */
.gilded-museum-frame {
    position: relative;
    border: 1px solid rgba(212, 162, 106, 0.35);
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(26, 13, 6, 0.08);
    border-radius: 8px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gilded-museum-frame::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px double rgba(212, 162, 106, 0.2);
    border-radius: 6px;
    pointer-events: none;
}

.gilded-museum-frame:hover {
    transform: translateY(-4px);
    border-color: #D4A26A;
}

/* Portfolio Tabs Styling */
.portfolio-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    border-bottom: 1px solid #eadecb;
    padding-bottom: 15px;
}

.portfolio-tab-trigger {
    background: transparent;
    border: 1px solid transparent;
    padding: 12px 28px;
    font-family: var(--font-main);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666666;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.portfolio-tab-trigger i {
    font-size: 13px;
    color: #999999;
    transition: color 0.3s;
}

.portfolio-tab-trigger:hover {
    color: var(--primary-color);
    background: rgba(212, 162, 106, 0.05);
}

.portfolio-tab-trigger.active {
    background: #1a0d06;
    color: #D4A26A;
    border-color: rgba(212, 162, 106, 0.4);
    box-shadow: 0 6px 20px rgba(26, 13, 6, 0.15);
}

.portfolio-tab-trigger.active i {
    color: #D4A26A;
}

/* Portfolio Panes */
.portfolio-panes {
    position: relative;
    width: 100%;
}

.portfolio-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.portfolio-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Asymmetric Collage Container */
.asymmetric-collage-wrapper {
    position: relative;
    height: 380px;
    width: 100%;
}

.collage-photo-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    aspect-ratio: 4/3;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 162, 106, 0.25);
    box-shadow: 0 12px 30px rgba(26, 13, 6, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.collage-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-photo-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    aspect-ratio: 4/3;
    z-index: 3;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(212, 162, 106, 0.25);
    box-shadow: 0 15px 35px rgba(26, 13, 6, 0.14);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.collage-photo-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.asymmetric-collage-wrapper:hover .collage-photo-main {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 35px rgba(26, 13, 6, 0.12);
}

.asymmetric-collage-wrapper:hover .collage-photo-sub {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(26, 13, 6, 0.18);
}

.badge-float {
    position: absolute;
    background: rgba(26, 13, 6, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #D4A26A;
    font-size: 7.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 4;
    border: 1px solid rgba(212,162,106,0.3);
}

.badge-float.red-alert {
    background: rgba(180, 50, 50, 0.9);
    color: #ffffff;
    border-color: rgba(255,255,255,0.15);
}

/* Before-After Showcase Split Container */
.before-after-split-container {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-top: 10px;
}

.before-after-label {
    font-family: var(--font-main), sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.before-after-label.before {
    color: #b08d79;
}

.before-after-label.after {
    color: #D4A26A;
}

.before-after-frame {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
    cursor: pointer;
}

.before-after-frame:hover {
    transform: scale(1.025);
}

@media (max-width: 768px) {
    .before-after-split-container {
        flex-direction: column !important;
        gap: 30px !important;
    }
}

/* Custom Bullet List */
.luxury-bullet-list {
    margin: 25px 0 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.luxury-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.luxury-bullet-item i {
    color: #D4A26A;
    font-size: 11px;
    margin-top: 6px;
    background: rgba(212, 162, 106, 0.08);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 162, 106, 0.25);
    flex-shrink: 0;
}

.luxury-bullet-text {
    font-size: 14px;
    color: #444444;
    line-height: 1.6;
}

.luxury-bullet-text strong {
    color: #1a0d06;
    font-family: var(--font-main);
}

/* Luxury Hero Layered Grid */
.lux-hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    padding: 70px 0;
}

.lux-hero-visuals {
    position: relative;
    height: 480px;
    width: 100%;
}

.lux-hero-photo-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 162, 106, 0.35);
    box-shadow: 0 25px 55px rgba(26, 13, 6, 0.2);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.lux-hero-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-hero-photo-sub {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 162, 106, 0.35);
    box-shadow: 0 30px 60px rgba(26, 13, 6, 0.3);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
    background: #ffffff;
    padding: 8px;
}

.lux-hero-photo-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.lux-hero-visuals:hover .lux-hero-photo-main {
    transform: translateY(-8px) scale(1.01);
}

.lux-hero-visuals:hover .lux-hero-photo-sub {
    transform: translateY(-12px) scale(1.03);
}

/* Material Showcase Tag System */
.material-showcase-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 35px 0 10px;
}

.material-tag {
    background: #ffffff;
    border: 1px solid #eadecb;
    color: #4b3621;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(75, 54, 33, 0.02);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.material-tag::before {
    content: '✦';
    color: #D4A26A;
    font-size: 10px;
}

.material-tag:hover {
    border-color: #D4A26A;
    color: #1a0d06;
    background: rgba(212, 162, 106, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 162, 106, 0.12);
}

/* Premium Booking Section */
.lux-booking-wrapper {
    background: #ffffff;
    border: 1px solid #eadecb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(75, 54, 33, 0.05);
}

.lux-booking-form {
    padding: 40px;
}

.lux-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .lux-booking-grid {
        grid-template-columns: 1fr;
    }
}

.lux-form-control {
    background: transparent;
    border: none;
    border-bottom: 2px solid #eae1d7;
    border-radius: 0;
    padding: 12px 4px;
    font-size: 15px;
    font-family: var(--font-main);
    color: #1a0d06;
    outline: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.lux-form-control::placeholder {
    color: #b8ac9e;
    font-weight: 300;
}

.lux-form-control:focus {
    border-color: #D4A26A;
    background: transparent;
    box-shadow: 0 10px 15px -10px rgba(212, 162, 106, 0.2);
    transform: translateY(-2px);
}

.lux-form-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #a49786;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.lux-form-group {
    position: relative;
}

.lux-form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a49786' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 28px;
    cursor: pointer;
    color: #1a0d06;
}

.lux-form-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4A26A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

#booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 162, 106, 0.45) !important;
}

#booking-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hp-split {
        grid-template-columns: 1fr !important;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .lux-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 0;
    }
    
    .lux-hero-visuals {
        height: 380px;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .lux-hero-photo-main {
        height: 300px;
    }
    
    .lux-hero-photo-sub {
        height: 180px;
    }
}

/* Premium Brand Manifesto & Museum Card */
.lux-manifesto-card {
    background: #ffffff;
    border: 1px solid #eadecb;
    border-radius: 20px;
    padding: 45px;
    position: relative;
    box-shadow: 0 25px 60px rgba(75, 54, 33, 0.06);
    outline: 1px solid #D4A26A;
    outline-offset: -10px;
    transition: all 0.4s ease;
}

.lux-manifesto-card:hover {
    box-shadow: 0 30px 70px rgba(75, 54, 33, 0.1);
}

.gilded-museum-frame {
    background: #ffffff;
    border: 1px solid #eadecb;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(26, 13, 6, 0.06);
    margin-bottom: 30px;
    transition: transform 0.4s ease;
}

.gilded-museum-frame:hover {
    transform: scale(1.015);
}

.gilded-museum-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.manifesto-header {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 32px;
    color: #1a0d06;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.5px;
}

.manifesto-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.manifesto-paragraph {
    color: #3d2c1e;
    line-height: 1.85;
    font-size: 14.5px;
    font-family: var(--font-main), sans-serif;
    font-weight: 300;
    text-align: justify;
    text-justify: inter-word;
    margin: 0;
}

.manifesto-paragraph:first-of-type::first-letter {
    font-family: var(--font-heading), serif;
    font-size: 38px;
    font-weight: bold;
    float: left;
    margin: 4px 8px 0 0;
    color: #D4A26A;
    line-height: 0.85;
}

/* Specialties Belt Section */
.specialties-belt-section {
    background: linear-gradient(135deg, #faf6f0 0%, #f4ede2 100%);
    padding: 38px 0;
    border-top: 1px solid rgba(212, 162, 106, 0.25);
    border-bottom: 1px solid rgba(212, 162, 106, 0.25);
    box-shadow: inset 0 4px 20px rgba(75, 54, 33, 0.03);
    position: relative;
    overflow: hidden;
}

.specialties-belt-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(212, 162, 106, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.specialties-grid-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.specialties-text-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.specialties-mini-badge {
    margin-bottom: 8px;
    font-size: 8.5px;
    padding: 3px 10px;
    background: rgba(212, 162, 106, 0.06);
    border: 1px solid rgba(212, 162, 106, 0.25);
}

.specialties-heading {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 24px;
    color: #1a0d06;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.specialties-description {
    font-family: var(--font-main), sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    color: #5c4d3c;
    margin: 0;
    text-align: justify;
}

.specialties-tags-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.specialties-tags-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.specialties-tags-title {
    font-family: var(--font-main), sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    color: #b08d79;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.specialties-tags-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(212, 162, 106, 0.18);
}

.specialties-tags-container {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.specialties-tags-container .material-tag {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 162, 106, 0.2);
    font-size: 12.5px;
    padding: 7px 15px;
    font-weight: 600;
}

.specialties-tags-container .material-tag:hover {
    background: #1a0d06;
    color: #D4A26A;
    border-color: #D4A26A;
}

@media (max-width: 991px) {
    .specialties-grid-layout {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .specialties-text-col {
        align-items: center;
        text-align: center;
    }
    
    .specialties-description {
        text-align: center;
        max-width: 600px;
    }
    
    .specialties-tags-header {
        justify-content: center;
    }
    
    .specialties-tags-container {
        justify-content: center;
    }
}

/* Responsive Manifesto Styling */
@media (max-width: 768px) {
    .lux-manifesto-card {
        padding: 30px 20px;
        outline-offset: -6px;
    }
    
    .manifesto-header {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .manifesto-paragraph {
        font-size: 13.5px;
        line-height: 1.75;
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
}

/* Heritage Interactive Tabs Styles */
.heritage-tab-trigger {
    background: transparent;
    border: none;
    font-family: var(--font-main);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.heritage-tab-trigger:hover {
    color: #D4A26A !important;
    background: rgba(212, 162, 106, 0.05);
}

.heritage-tab-trigger.active {
    color: #D4A26A !important;
    background: rgba(212, 162, 106, 0.1) !important;
}

.heritage-tab-pane {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.heritage-tab-pane.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .hero-split-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        text-align: center !important;
    }
    
    .hero-left-col {
        text-align: center !important;
    }
    
    .hero-left-col div[style*="justify-content: flex-start"] {
        justify-content: center !important;
    }
    
    .hero-right-col {
        order: -1; /* Display image on top on mobile */
    }
    
    .interactive-heritage-tabs {
        padding: 20px 15px !important;
    }
}

/* Responsive Zoom Scaling for smaller desktop resolutions (like 720p screens) */
@media (max-width: 1440px) and (min-width: 992px) {
    html {
        zoom: 0.85;
    }
}
@media (max-width: 1280px) and (min-width: 992px) {
    html {
        zoom: 0.80;
    }
}