/* --- GLOBAL VARIABLES --- */
:root {
    --gold: #d4af37;
    --black: #000000;
    --dark-grey: #111111;
    --light-grey: #bbbbbb;
    --border: #333333;
}

/* --- RESET & BASE STYLES --- */
* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--black);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; /* Scrolling is handled strictly inside #main-display */
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: -webkit-fill-available;
}

/* --- HEADER & NAVIGATION --- */
header {
    flex-shrink: 0;
    width: 100%;
    background-color: var(--black);
    border-bottom: 2px solid var(--gold);
    z-index: 1000;
    padding: 10px 0;
}

.container {
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 28px;
    gap: 12px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 210px;
}

.logo img {
    height: 100px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

/* --- MOBILE MENU TOGGLE --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--gold);
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --- NAVIGATION LINKS --- */
nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
}

/* Keep desktop header labels on one line and avoid crowding. */
nav ul li a { white-space: nowrap; }

/* Compact desktop header update */
@media (min-width: 993px) {
    .container { justify-content: flex-start; gap: 12px; }
    .logo { min-width: 210px; }
    nav { justify-content: flex-start; }
    nav ul { gap: 18px; }
    nav ul li a { font-size: 18px; letter-spacing: .2px; }
}

@media (max-width: 1280px) and (min-width: 993px) {
    .container { padding: 0 24px; }
    nav ul { gap: 14px; }
    nav ul li a { font-size: 16px; }
    .cta-btn { padding: 11px 24px; font-size: 17px; }
}

/* --- PREMIUM CTA BUTTONS --- */
.cta-btn {
    background-color: var(--gold);
    color: #000000 !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background-color: #ffffff;
    box-shadow: 0 0 20px var(--gold);
    transform: scale(1.05);
    color: #000000 !important;
}

/* --- MAIN DISPLAY (The Scrollable Area) --- */
#main-display {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

/* --- HOME SECTION ALIGNMENT --- */
#home.content-pane {
    display: none;
    min-height: calc(100vh - 200px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0px !important;
}

#home.active {
    display: flex !important;
}

.content-pane {
    display: none;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.active {
    display: block !important;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* --- IFRAME HANDLER --- */
.full-frame {
    width: 100%;
    height: 100%;
    min-height: 75vh;
    border: none;
    background: transparent;
}

/* --- HERO CONTENT --- */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 0px;
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    margin: 0;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    line-height: 1.05;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .hero-title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
        white-space: normal;
    }
}

.hero-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--light-grey);
    margin: 25px 0 45px 0;
}

/* --- SERVICE GRIDS & CARDS --- */
.main-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    margin: 14px 0 6px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 0 20px 34px 20px;
}

.main-header + .services-grid {
    padding-top: 0;
    margin-top: 0;
}

.service-item h2 {
    font-family: 'Monoton', cursive;
    color: var(--gold);
    text-align: center;
    margin-bottom: 15px;
}

/* --- IMAGE CARDS & HOVER GLOW --- */
.image-card {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    border: 2px solid var(--border);
    background-size: 100% auto;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-card:hover {
    transform: scale(1.03);
    background-size: 115% auto;
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* --- SCROLL REVEAL ANIMATION --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- LIGHTBOX (IMAGE POPUP) --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}

#lightbox-caption {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    margin-top: 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* --- FAQ ACCORDION --- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 25px 15px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    background: var(--dark-grey);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    color: var(--light-grey);
    padding: 0 15px;
}

.faq-answer.show {
    max-height: 1000px;
    padding-bottom: 30px;
    transition: max-height 0.4s ease-in;
}

/* --- CONTACT FORM --- */
#contact {
    padding-bottom: 60px;
}

.contact-container {
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
    padding: 30px;
    background: #080808;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* 1. All fields have white font color */
.form-group input:not([type="checkbox"]), 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    transition: 0.3s;
}

::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* 4. Service Selection: Default White BG / Black Font */
.checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 10px;
}

.check-item {
    display: inline-block;
    padding: 10px 18px;
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    white-space: nowrap;
    font-weight: 500;
}

.check-item:hover {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* 4. Selected state: Golden BG / Black Font */
.check-item:has(input:checked) {
    background: var(--gold) !important;
    color: #000000 !important;
    border-color: var(--gold) !important;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none; /* Controlled by script.js */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--gold);
}

/* --- COMPACT FOOTER --- */
footer {
    flex-shrink: 0;
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 15px 10px;
    text-align: center;
    width: 100%;
}

.footer-contact {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.footer-contact span {
    color: var(--border);
    margin: 0 8px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 8px 0;
}

.social-links a {
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links a:hover svg {
    filter: brightness(1.2);
    transform: scale(1.1);
    transition: all 0.3s ease;
}


.copyright {
    font-size: 0.7rem;
    color: var(--light-grey);
    margin: 0;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    header .container {
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        gap: 12px;
    }
    header .logo {
        min-width: 0;
        flex: 0 1 auto;
    }
    .menu-toggle {
        display: flex;
        margin-left: auto;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        z-index: 1500;
        border-left: 2px solid var(--gold);
    }
    nav.mobile-active {
        right: 0;
    }
    nav ul {
        flex-direction: column;
        gap: 25px;
    }
    .logo img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .form-row, .checkbox-grid {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2.5rem;
    }
    .contact-container {
        padding: 20px;
    }
    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

/* --- LOADER --- */
.loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 2000;
}

.loader {
    border: 4px solid var(--border);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}


/* Core Web Vitals performance helpers */
section, .section, .service-card, .event-card, .blog-card, .panel {
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
}
img, video, iframe {
    max-width: 100%;
}
.image-card {
    background-color: #111;
}


/* --- HOMEPAGE EXPANSION SECTIONS --- */
.home-section {
    width: min(1100px, calc(100% - 32px));
    margin: 34px auto 0;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(212,175,55,0.10), rgba(255,255,255,0.03));
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}
.home-section h2 {
    margin: 0 0 12px;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.section-intro {
    max-width: 760px;
    margin: 0 auto 24px;
    color: #d7d7d7;
    line-height: 1.7;
    text-align: center;
}
.package-grid,
.process-grid,
.quick-service-grid {
    display: grid;
    gap: 18px;
}
.package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.quick-service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.package-card,
.process-grid > div,
.quick-service-grid a {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    background: rgba(0,0,0,0.42);
    padding: 22px;
}
.package-card.featured {
    border-color: rgba(212,175,55,0.72);
    box-shadow: 0 0 0 1px rgba(212,175,55,0.25), 0 18px 42px rgba(212,175,55,0.08);
}
.package-label {
    display: inline-flex;
    margin-bottom: 12px;
    color: #000;
    background: var(--gold);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.package-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.35rem;
}
.package-card p,
.process-grid p {
    color: #cfcfcf;
    line-height: 1.65;
}
.process-grid strong {
    display: block;
    color: var(--gold);
    margin-bottom: 8px;
}
.text-link-btn {
    margin-top: 10px;
    color: var(--gold);
    background: transparent;
    border: 0;
    padding: 0;
    font-weight: 800;
    cursor: pointer;
    text-align: left;
    text-decoration: underline;
}
.quick-service-grid a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
    transition: transform .25s ease, border-color .25s ease, color .25s ease;
}
.quick-service-grid a:hover,
.quick-service-grid a:focus-visible {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(212,175,55,.8);
    outline-offset: 3px;
}
@media (max-width: 980px) {
    .package-grid,
    .process-grid,
    .quick-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
    .home-section { padding: 22px; }
    .package-grid,
    .process-grid,
    .quick-service-grid { grid-template-columns: 1fr; }
}

/* Tight service listing iframe spacing: Talent Services + Effects & Props */
body.service-listing-page { padding-top: 0 !important; }
body.service-listing-page .main-header { margin-top: 8px !important; margin-bottom: 24px !important; line-height: 1.05 !important; }
body.service-listing-page .main-header + .services-grid { margin-top: 24px !important; padding-top: 0 !important; }
body.service-listing-page .services-grid { row-gap: 22px !important; margin-bottom: 22px !important; }
body.service-listing-page .service-item { margin-top: 0 !important; padding-top: 0 !important; }
body.service-listing-page .service-item h2 { margin-top: 0 !important; margin-bottom: 8px !important; }

/* Ensure dynamically hidden conditional interest fields stay hidden even when form-row has display:grid. */
.interest-contact-form [hidden],
.interest-extra-panel[hidden],
.ticket-options-panel[hidden],
#interest-contact-form[hidden] {
    display: none !important;
}

/* SHARED HEADER TYPOGRAPHY */
header nav ul li a,
#main-nav a,
.site-header nav ul li a,
.site-header nav a{
font-family:'Oswald',Arial,sans-serif !important;
font-weight:700 !important;
text-transform:uppercase !important;
letter-spacing:.2px !important;
}
header .cta-btn,
.site-header .cta-btn{
font-family:'Oswald',Arial,sans-serif !important;
font-weight:700 !important;
text-transform:uppercase !important;
}

/* --- PREMIUM HOMEPAGE REDESIGN --- */
.premium-hero {
    position: relative;
    width: 100%;
    min-height: min(760px, calc(100vh - 110px));
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 84px 22px 64px;
    isolation: isolate;
}
.premium-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.54) 46%, rgba(0,0,0,.88) 100%),
        url('images/IMG_LedUpLighting.webp') center/cover no-repeat;
    transform: scale(1.04);
    z-index: -3;
}
.premium-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(212,175,55,.26), transparent 38%), radial-gradient(circle at 85% 75%, rgba(255,255,255,.12), transparent 28%);
}
.premium-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.12), #000 96%);
    z-index: -1;
}
.premium-hero-inner {
    width: min(1040px, 100%);
    text-align: center;
    margin: 0 auto;
}
.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
}
.premium-title {
    max-width: 980px;
    margin: 0 auto;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 7vw, 6.6rem);
    line-height: .94;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-shadow: 0 18px 58px rgba(0,0,0,.9);
}
.premium-lede {
    max-width: 860px;
    margin: 26px auto 0;
    color: rgba(255,255,255,.86);
    font-size: clamp(1.05rem, 2vw, 1.38rem);
    line-height: 1.75;
}
.premium-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 34px 0 30px;
}
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.48);
    color: #fff;
    background: rgba(0,0,0,.25);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .25s ease;
}
.ghost-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-proof-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
}
.hero-proof-strip span {
    border: 1px solid rgba(212,175,55,.42);
    background: rgba(0,0,0,.46);
    color: #fff;
    border-radius: 999px;
    padding: 10px 15px;
    font-weight: 800;
    font-size: .88rem;
}
.luxury-intro,
.premium-card-section,
.showcase-section,
.process-lux,
.diwali-callout {
    width: min(1180px, calc(100% - 32px));
    margin: 40px auto 0;
}
.luxury-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: end;
    padding: 34px;
    border-bottom: 1px solid rgba(212,175,55,.28);
}
.luxury-intro h2,
.section-heading h2,
.showcase-copy h2,
.diwali-callout h2 {
    margin: 0;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
}
.luxury-intro p:not(.eyebrow),
.section-heading p,
.showcase-copy p,
.diwali-callout p {
    color: #d7d7d7;
    line-height: 1.75;
    font-size: 1.05rem;
}
.premium-card-section,
.process-lux {
    padding: 34px;
    border: 1px solid rgba(212,175,55,.22);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(212,175,55,.08), rgba(255,255,255,.025));
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.section-heading { text-align: center; max-width: 820px; margin: 0 auto 28px; }
.premium-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.premium-service-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    text-decoration: none;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.12);
    background: radial-gradient(circle at top left, rgba(212,175,55,.18), transparent 38%), rgba(0,0,0,.52);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.premium-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,.75);
    box-shadow: 0 18px 46px rgba(212,175,55,.10);
}
.premium-service-card span { color: var(--gold); font-weight: 900; letter-spacing: .14em; }
.premium-service-card h3 { margin: 12px 0 8px; font-size: 1.45rem; }
.premium-service-card p { margin: 0; color: #cfcfcf; line-height: 1.65; }
.showcase-section {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: center;
    padding: 34px;
}
.showcase-copy .cta-btn { margin-top: 18px; }
.showcase-stack { position: relative; min-height: 420px; }
.showcase-image {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.36);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0,0,0,.5);
}
.showcase-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-image.main { inset: 0 10% 18% 0; }
.showcase-image.overlap { right: 0; bottom: 0; width: 48%; height: 44%; }
.premium-packages .package-card { background: rgba(0,0,0,.54); }
.process-lux .process-grid > div { background: rgba(0,0,0,.48); }
.diwali-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(212,175,55,.38);
    background: linear-gradient(135deg, rgba(212,175,55,.16), rgba(0,0,0,.72)), url('SiteLogos/mehak-glitter-logo.webp') right center/260px auto no-repeat;
}
.diwali-callout > div { max-width: 760px; }
@media (max-width: 980px) {
    .premium-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .luxury-intro, .showcase-section { grid-template-columns: 1fr; }
    .showcase-stack { min-height: 360px; }
    .diwali-callout { flex-direction: column; align-items: flex-start; background-size: 180px auto; }
}
@media (max-width: 620px) {
    html, body { overflow: hidden; }
    .premium-hero { min-height: auto; padding: 64px 18px 48px; }
    .premium-title { font-size: clamp(2.35rem, 12vw, 3.6rem); }
    .premium-service-grid { grid-template-columns: 1fr; }
    .premium-card-section, .process-lux, .showcase-section, .luxury-intro, .diwali-callout { padding: 22px; width: min(100% - 22px, 1180px); }
    .showcase-stack { min-height: 310px; }
    .showcase-image.main { inset: 0; }
    .showcase-image.overlap { display: none; }
}


/* --- HOMEPAGE REBALANCE: EVENTS-FIRST + SMALLER TYPE --- */
.premium-hero {
    min-height: min(650px, calc(100vh - 120px));
    padding: 66px 22px 50px;
}
.premium-hero-inner { width: min(980px, 100%); }
.premium-title {
    max-width: 900px;
    font-size: clamp(2.35rem, 5.2vw, 4.85rem);
    line-height: 1.02;
    letter-spacing: .01em;
}
.premium-lede {
    max-width: 820px;
    margin-top: 20px;
    font-size: clamp(.98rem, 1.45vw, 1.18rem);
    line-height: 1.62;
}
.eyebrow { font-size: .72rem; letter-spacing: .13em; }
.luxury-intro h2,
.section-heading h2,
.showcase-copy h2,
.diwali-callout h2 {
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    line-height: 1.12;
}
.luxury-intro p:not(.eyebrow),
.section-heading p,
.showcase-copy p,
.diwali-callout p {
    font-size: 1rem;
    line-height: 1.65;
}
.premium-service-card { min-height: 190px; padding: 22px; }
.premium-service-card h3 { font-size: 1.25rem; }
.hero-proof-strip span { font-size: .82rem; padding: 9px 13px; }
.diwali-callout {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(0,0,0,.74)), url('SiteLogos/mehak-glitter-logo.webp') right center/220px auto no-repeat;
}
@media (max-width: 620px) {
    html, body { overflow-x: hidden; overflow-y: auto; }
    .premium-hero { padding: 50px 18px 40px; }
    .premium-title { font-size: clamp(2rem, 10vw, 3rem); }
    .premium-lede { font-size: .96rem; }
    .luxury-intro h2,
    .section-heading h2,
    .showcase-copy h2,
    .diwali-callout h2 { font-size: clamp(1.45rem, 8vw, 2rem); }
    .premium-service-card { min-height: 170px; }
}

/* --- REVISIONS: DIWALI FIRST + MODERN EVENT IMAGE + SMALLER ARTICLE HEADERS --- */
.premium-hero {
    min-height: min(590px, calc(100vh - 150px));
    padding: 54px 22px 40px;
}
.premium-title {
    font-size: clamp(2.05rem, 4.6vw, 4.05rem);
    line-height: 1.04;
}
.premium-lede {
    font-size: clamp(.95rem, 1.25vw, 1.08rem);
    max-width: 780px;
}
.featured-diwali-early {
    margin-top: 24px;
}
.diwali-callout,
.diwali-callout.featured-diwali-early {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    justify-content: initial;
    gap: 28px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(212,175,55,.16), rgba(0,0,0,.80));
    overflow: hidden;
}
.diwali-callout > div { max-width: none; }
.diwali-visual {
    min-height: 220px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.28)), url('images/events/modern-diwali-event-art.webp') center/cover no-repeat;
    box-shadow: inset 0 0 0 1px rgba(212,175,55,.12), 0 20px 44px rgba(0,0,0,.34);
}
.diwali-copy h2 {
    font-size: clamp(1.55rem, 2.65vw, 2.3rem);
}
.diwali-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}
.diwali-actions .ghost-btn {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.luxury-intro h2,
.section-heading h2,
.showcase-copy h2,
.diwali-callout h2 {
    font-size: clamp(1.45rem, 2.55vw, 2.25rem);
    line-height: 1.15;
}
.home-section h2,
.home-seo-copy h2,
.main-header {
    font-size: clamp(1.45rem, 2.4vw, 2.15rem) !important;
    line-height: 1.18;
}
.service-item h2,
.package-card h3,
.process-grid strong {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}
body.blog-page h1,
.article-title-row h1,
.blog-article h1,
article h1 {
    font-size: clamp(1.65rem, 3.2vw, 2.45rem) !important;
    line-height: 1.12 !important;
}
body.blog-page h2,
.article-section h2,
.panel h2,
article h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.75rem) !important;
    line-height: 1.2 !important;
}
@media (max-width: 760px) {
    .diwali-callout,
    .diwali-callout.featured-diwali-early {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 18px;
    }
    .diwali-visual { min-height: 185px; }
    .diwali-actions { flex-direction: column; align-items: stretch; }
    .diwali-actions .cta-btn,
    .diwali-actions .ghost-btn { justify-content: center; text-align: center; }
}
@media (max-width: 620px) {
    .premium-title { font-size: clamp(1.85rem, 9vw, 2.65rem); }
    .premium-hero { padding: 42px 18px 34px; }
    .luxury-intro h2,
    .section-heading h2,
    .showcase-copy h2,
    .diwali-callout h2 { font-size: clamp(1.35rem, 7vw, 1.85rem); }
}

/* --- REVISION: MATCH HERO TITLE TO SECTION HEADERS + 20% SMALLER HEADERS + BETTER DIWALI IMAGE --- */
.premium-title {
    font-size: clamp(1.24rem, 2.12vw, 1.84rem) !important;
    line-height: 1.14 !important;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.diwali-visual {
    background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.22)), url('images/events/diwali-festival-lights-modern.webp') center/cover no-repeat !important;
}
.diwali-copy h2,
.luxury-intro h2,
.section-heading h2,
.showcase-copy h2,
.diwali-callout h2 {
    font-size: clamp(1.24rem, 2.12vw, 1.84rem) !important;
    line-height: 1.16 !important;
}
.home-section h2,
.home-seo-copy h2,
.main-header {
    font-size: clamp(1.16rem, 1.92vw, 1.72rem) !important;
    line-height: 1.2 !important;
}
body.blog-page h1,
.article-title-row h1,
.blog-article h1,
article h1 {
    font-size: clamp(1.32rem, 2.56vw, 1.96rem) !important;
    line-height: 1.14 !important;
}
body.blog-page h2,
.article-section h2,
.panel h2,
article h2 {
    font-size: clamp(1.05rem, 1.76vw, 1.4rem) !important;
    line-height: 1.22 !important;
}
@media (max-width: 620px) {
    .premium-title,
    .diwali-copy h2,
    .luxury-intro h2,
    .section-heading h2,
    .showcase-copy h2,
    .diwali-callout h2 {
        font-size: clamp(1.18rem, 5.6vw, 1.48rem) !important;
    }
}

/* --- REVISION: TIGHTER HOMEPAGE SPACING + FESTIVE DIWALI IMAGE --- */
#home.content-pane {
    padding-top: 0 !important;
}
#home .premium-hero {
    min-height: auto !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}
#home .premium-hero-inner {
    transform: translateY(-4px);
}
#home .eyebrow {
    margin-bottom: 8px !important;
}
#home .premium-lede {
    margin-top: 14px !important;
    line-height: 1.5 !important;
}
#home .premium-hero-actions {
    margin: 20px 0 16px !important;
}
#home .hero-proof-strip {
    gap: 8px !important;
}
#home .luxury-intro,
#home .premium-card-section,
#home .showcase-section,
#home .process-lux,
#home .diwali-callout {
    margin-top: 22px !important;
}
#home .featured-diwali-early {
    margin-top: 16px !important;
}
#home .luxury-intro,
#home .premium-card-section,
#home .showcase-section,
#home .process-lux,
#home .diwali-callout,
#home .diwali-callout.featured-diwali-early {
    padding: 22px !important;
}
#home .section-heading {
    margin-bottom: 18px !important;
}
#home .section-heading p,
#home .showcase-copy p,
#home .luxury-intro p:not(.eyebrow),
#home .diwali-callout p {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    line-height: 1.52 !important;
}
#home .premium-service-grid,
#home .process-grid,
#home .package-grid {
    gap: 14px !important;
}
#home .premium-service-card {
    min-height: 165px !important;
    padding: 18px !important;
}
#home .premium-service-card h3 {
    margin: 8px 0 6px !important;
}
#home .showcase-stack {
    min-height: 330px !important;
}
#home .diwali-callout,
#home .diwali-callout.featured-diwali-early {
    grid-template-columns: 340px 1fr !important;
    gap: 22px !important;
}
#home .diwali-visual {
    min-height: 235px !important;
    background: linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.10)), url('images/events/festive-diwali-diyas-rangoli.webp') center/cover no-repeat !important;
    border-color: rgba(255,218,107,.35) !important;
    box-shadow: inset 0 0 40px rgba(255,187,55,.10), 0 18px 38px rgba(0,0,0,.34) !important;
}
#home .diwali-actions {
    margin-top: 14px !important;
}
@media (max-width: 760px) {
    #home .premium-hero {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
    }
    #home .diwali-callout,
    #home .diwali-callout.featured-diwali-early {
        grid-template-columns: 1fr !important;
        padding: 18px !important;
    }
    #home .diwali-visual { min-height: 205px !important; }
    #home .luxury-intro,
    #home .premium-card-section,
    #home .showcase-section,
    #home .process-lux,
    #home .diwali-callout { margin-top: 18px !important; }
}
@media (max-width: 620px) {
    #home .premium-hero { padding: 18px 16px 20px !important; }
    #home .premium-lede { margin-top: 12px !important; }
    #home .premium-hero-actions { margin: 16px 0 12px !important; }
    #home .diwali-visual { min-height: 185px !important; }
    #home .luxury-intro,
    #home .premium-card-section,
    #home .showcase-section,
    #home .process-lux,
    #home .diwali-callout,
    #home .diwali-callout.featured-diwali-early { padding: 16px !important; }
}

/* Compact legal footer links */
.policy-links{font-size:11px!important;line-height:1.45!important;margin-top:8px!important;}
.policy-links a{font-size:11px!important;font-weight:400!important;text-decoration:none!important;margin:0 4px!important;}
