/* 
 * Bahubali: Modern Indian Luxury Design System
 * Expertly crafted for professional aesthetic excellence
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

:root {
    /* --- COLOR ARCHITECTURE --- */
    --clr-obsidian: #080808;
    --clr-ebony: #121212;
    --clr-gold-primary: #D4AF37;
    --clr-gold-light: #F1D592;
    --clr-gold-muted: #8B7355;
    --clr-bronze: #7D6B42;
    --clr-text-main: #F5F5F5;
    --clr-text-dim: #A0A0A0;
    --clr-glass: rgba(18, 18, 18, 0.85);
    --clr-border: rgba(212, 175, 55, 0.15);

    /* --- FLUID TYPOGRAPHY (Clamp based) --- */
    --fz-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --fz-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
    --fz-base: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    --fz-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
    --fz-xl: clamp(2rem, 1.5rem + 2.5vw, 4rem);
    --fz-hero: clamp(3.5rem, 2rem + 8vw, 10rem);

    /* --- DEPTH & RADIUS --- */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.5);
    --shadow-layered: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -2px rgba(0, 0, 0, 0.5);
    --glass-blur: blur(15px);
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;

    /* --- TIMING --- */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

/* --- BASE RESTORATION --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--clr-gold-primary);
    color: var(--clr-obsidian);
}

::-moz-selection {
    background: var(--clr-gold-primary);
    color: var(--clr-obsidian);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--clr-obsidian);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-gold-muted);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--clr-gold-primary);
}

html {
    scroll-behavior: smooth;
    background-color: var(--clr-obsidian);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background: radial-gradient(circle at top right, #151515 0%, #080808 100%);
}

/* Grain Overlay for Tactile Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
.font-luxury {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--clr-gold-primary);
}

.text-italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- GRID SYSTEM --- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4vw;
}

.section-padding {
    padding: 120px 0;
}

/* --- EXPERT UI COMPONENTS --- */

/* Luxury Button */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: transparent;
    border: 1px solid var(--clr-gold-primary);
    color: var(--clr-gold-primary);
    font-size: var(--fz-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

/* Ensure interactive elements without href still show pointer */
.dropdown-trigger,
.mobile-dropdown-trigger,
.open-order-modal,
.open-reservation-modal {
    cursor: pointer;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--clr-gold-primary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-luxury:hover {
    color: var(--clr-obsidian) !important;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-luxury:hover::before {
    left: 0;
}

/* --- GLOBAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

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

/* --- HEADER SYSTEM --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    /* Balanced height */
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    padding: 0 4vw;
}

header.scrolled {
    height: 80px;
    background: var(--clr-glass);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--clr-border);
}

nav.traditional-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links.main-nav {
    list-style: none;
    display: flex;
    gap: clamp(10px, 2vw, 30px);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--clr-text-main);
    font-size: var(--fz-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--clr-gold-primary);
}

/* --- DROPDOWN SYSTEM --- */
.nav-dropdown {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: -30px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--clr-obsidian);
    min-width: 220px;
    padding: 20px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--clr-border);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content li a {
    display: block;
    padding: 12px 25px;
    color: var(--clr-text-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-fast);
}

.dropdown-content li a:hover {
    background: rgba(212, 175, 55, 0.05);
    color: var(--clr-gold-primary);
    padding-left: 30px;
}

/* --- MOBILE SUBMENU --- */
.mobile-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 10px;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-dropdown.active .mobile-dropdown-trigger i {
    transform: rotate(180deg);
}

.mobile-submenu li a {
    padding: 15px 40px !important;
    font-size: 0.8rem !important;
    border: none !important;
}

.logo img {
    height: 70px;
    /* Prominent but not overwhelming */
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

header.scrolled .logo img {
    height: 45px;
}

/* --- LUXURY HERO --- */
.hero-luxury {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
    /* Guarantee clearance for fixed header */
}

.hero-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.hero-luxury:hover .hero-media-wrapper {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(8, 8, 8, 0.9) 0%,
            rgba(8, 8, 8, 0.5) 40%,
            rgba(8, 8, 8, 0.5) 60%,
            rgba(8, 8, 8, 0.9) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1400px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 40px;
}

.hero-eyebrow {
    font-size: var(--fz-xs);
    color: var(--clr-gold-primary);
    margin-bottom: 3rem;
    display: block;
    letter-spacing: 0.5em;
}

.hero-title {
    font-size: clamp(3rem, 2rem + 7vw, 9rem);
    line-height: 0.75;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 50px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: -0.01em;
}

.hero-title span {
    display: block;
    color: var(--clr-text-main);
}

.hero-title .accent {
    font-style: italic;
    font-weight: 400;
    /* Increased weight for presence */
    font-size: 0.9em;
    margin-top: -0.1em;
    color: var(--clr-text-main);
    letter-spacing: 0.05em;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-plate-circle {
    width: 28vw;
    height: 28vw;
    max-width: 480px;
    max-height: 480px;
    border-radius: 50%;
    border: 3px solid var(--clr-gold-primary);
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    margin: -2rem auto 2rem;
    /* Surgical spacing */
    position: relative;
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.3), 0 50px 100px rgba(0, 0, 0, 0.95);
    z-index: 5;
    transition: var(--transition-smooth);
}

.hero-plate-circle:hover {
    transform: scale(1.02) rotate(2deg);
    box-shadow: 0 0 100px rgba(212, 175, 55, 0.4), 0 60px 120px rgba(0, 0, 0, 1);
}

.hero-plate-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* --- ASYMMETRIC CONTENT --- */
.grid-luxury {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 60px;
    align-items: center;
}

.content-block {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-block {
    grid-column: span 6;
    position: relative;
}

.image-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-layered);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-card:hover img {
    scale: 1.05;
}

/* --- STATS CLUSTER --- */
.stats-expert {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.stat-box {
    padding: 60px 20px;
    text-align: center;
    border-right: 1px solid var(--clr-border);
}

.stat-box:last-child {
    border-right: none;
}

.stat-num {
    display: block;
    font-size: var(--fz-xl);
    font-family: 'Cormorant Garamond', serif;
    color: var(--clr-gold-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: var(--fz-xs);
    color: var(--clr-text-dim);
    font-weight: 500;
}

/* --- TESTIMONIALS SLICK --- */
.testimonial-expert {
    background: var(--clr-ebony);
    padding: 100px 4vw;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-layered);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 40px;
    left: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    line-height: 1;
    color: var(--clr-gold-primary);
    opacity: 0.1;
}

/* --- UTILITIES --- */
.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.spacing-wide {
    letter-spacing: 0.3em;
}

/* --- LUXURY FORM ELEMENTS --- */
.luxury-form-card {
    background: var(--clr-ebony);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-layered);
    border: 1px solid var(--clr-border);
    max-width: 1000px;
    margin: 0 auto;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-gold-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.luxury-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    color: var(--clr-text-main);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.luxury-input:focus {
    outline: none;
    border-color: var(--clr-gold-primary);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

select.luxury-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
}

textarea.luxury-input {
    resize: vertical;
}

/* Custom Checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    color: var(--clr-text-dim);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid var(--clr-gold-primary);
    border-radius: 4px;
}

.checkbox-container:hover input~.checkmark {
    background-color: rgba(212, 175, 55, 0.1);
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--clr-gold-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--clr-obsidian);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Custom Radio */
.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    color: var(--clr-text-dim);
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid var(--clr-gold-primary);
    border-radius: 50%;
}

.radio-container input:checked~.radiomark {
    background-color: var(--clr-gold-primary);
}

.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked~.radiomark:after {
    display: block;
}

.radio-container .radiomark:after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-obsidian);
}

/* --- MOBILE NAVIGATION --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background: var(--clr-gold-primary);
    transition: var(--transition-smooth);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- LUXURY MENU PAGE --- */
.menu-sub-nav {
    position: sticky;
    top: 80px;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    z-index: 90;
    border-bottom: 1px solid var(--clr-border);
    padding: 20px 0;
    margin-top: -1px;
}

.menu-sub-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.menu-sub-nav li {
    margin: 0;
    padding: 0;
}

.menu-sub-nav a {
    text-decoration: none !important;
    color: var(--clr-text-dim);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    transition: var(--transition-fast);
    padding: 5px 10px;
}

.menu-sub-nav a:hover,
.menu-sub-nav a.active {
    color: var(--clr-gold-primary);
}

.menu-category-section {
    padding: 120px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-section-title {
    margin-bottom: 60px;
}

.menu-item-card {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.menu-item-card:hover {
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.menu-item-header {
    margin-bottom: 8px;
}

.menu-item-title {
    font-size: 1.35rem;
    color: var(--clr-text-main);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.menu-item-desc {
    font-size: 0.95rem;
    color: var(--clr-text-dim);
    line-height: 1.7;
    font-weight: 400;
}

.menu-subcategory-title {
    color: var(--clr-gold-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    margin-bottom: 40px;
    display: block;
    border-left: 2px solid var(--clr-gold-primary);
    padding-left: 20px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--clr-obsidian);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-links li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-nav-links li:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--clr-text-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
    color: var(--clr-gold-primary);
}

body.menu-open {
    overflow: hidden;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }

    .grid-luxury {
        gap: 40px;
    }

    .content-block,
    .image-block {
        grid-column: span 12;
        padding-left: 0 !important;
        padding-top: 0 !important;
    }

    .image-block {
        order: -1;
        /* Image first on mobile */
    }

    .image-card {
        height: 400px !important;
    }

    .stat-box {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .nav-links.main-nav {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
        order: 10;
        margin-left: auto;
    }

    .nav-links-wrap {
        flex: 1;
        justify-content: flex-end;
    }

    nav {
        grid-template-columns: auto 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links.left-links,
    .nav-links.right-links {
        display: none !important;
    }

    nav.traditional-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header {
        height: 80px;
    }

    .logo img {
        height: 45px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-plate-circle {
        width: 60vw;
        height: 60vw;
        margin: -2rem auto 2rem;
    }

    .fz-xl {
        font-size: 2.5rem;
    }

    .fz-lg {
        font-size: 2rem;
    }

    .stats-expert {
        grid-template-columns: 1fr 1fr;
    }

    .stat-box {
        border-right: 1px solid var(--clr-border);
        border-bottom: 1px solid var(--clr-border);
    }

    .stat-box:nth-child(2n) {
        border-right: none;
    }

    .stat-box:nth-child(n+3) {
        border-bottom: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-eyebrow {
        letter-spacing: 0.3em;
        font-size: 0.7rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions div {
        flex-direction: column;
        width: 100%;
    }

    .btn-luxury {
        width: 100%;
    }
}

@media (max-width: 992px) {
    nav {
        grid-template-columns: auto 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 5rem;
    }
}

.main-footer {
    background: var(--clr-ebony);
    padding: 100px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--clr-text-dim);
    text-decoration: none;
    font-size: var(--fz-xs);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--clr-gold-primary);
}

/* --- LUXURY MODAL --- */
.luxury-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.luxury-modal {
    background: var(--clr-obsidian);
    border: 1px solid var(--clr-border);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-modal-overlay.active .luxury-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--clr-text-dim);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--clr-gold);
}

.location-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal-disclaimer {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: left;
    display: none;
    /* Hidden until location is picked */
}

.modal-disclaimer.active {
    display: block;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-btn {
    padding: 1.2rem;
    border: 1px solid var(--clr-border);
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    transition: all 0.3s;
    cursor: pointer;
    background: none;
    width: 100%;
}

.location-btn:hover,
.location-btn.selected {
    border-color: var(--clr-gold);
    color: var(--clr-gold);
    background: rgba(197, 168, 124, 0.05);
}

.btn-proceed {
    width: 100%;
    margin-top: 1rem;
    display: none;
}

.btn-proceed.active {
    display: block;
}

.modal-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--clr-text-dim);
    margin-bottom: 1rem;
}

.confirm-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.confirm-wrapper input[type="checkbox"] {
    accent-color: var(--clr-gold);
    margin-top: 3px;
    width: 18px;
    height: 18px;
}

.confirm-label {
    font-size: 0.8rem;
    color: var(--clr-text-dim);
    user-select: none;
}

/* Premium Custom Cursor Styles */
body {
    cursor: none !important;
    /* Hide default cursor */
}

a,
button,
.btn-luxury,
.nav-links a {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--clr-gold-primary, #d4af37);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate3d(-50%, -50%, 0);
}

.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, border 0.3s ease;
    transform: translate3d(-50%, -50%, 0);
    margin: -15px 0 0 -15px;
    /* Offset to center the 30x30 circle */
}

.custom-cursor-follower.is-hovering {
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    /* Offset to center the 50x50 circle */
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.8);
}

@media (max-width: 1024px) {

    .custom-cursor,
    .custom-cursor-follower {
        display: none !important;
    }

    body {
        cursor: auto !important;
    }
}