/* TopHat VIP — layout utility classes (static CSS, no framework) */

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.hidden { display: none; }

/* Flex Direction */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }

/* Flex Alignment */
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }

/* Flex Justification */
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

/* Margin */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

/* Padding */
.pt-0 { padding-top: 0; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }

.pb-0 { padding-bottom: 0; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }

/* Gap */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* Space Between Children */
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-16 > * + * { margin-top: 4rem; }

@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:flex { display: flex; }
    .md\:inline-flex { display: inline-flex; }
    .md\:hidden { display: none; }

    .md\:flex-row { flex-direction: row; }
    .md\:flex-col { flex-direction: column; }
}

/* Width */
.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }

/* Height */
.h-full { height: 100%; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }

/* Arbitrary */
.h-\[1px\] { height: 1px; }

 .footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Universal box model */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Remove default body margin */
html, body {
    margin: 0;
    padding: 0;
}

/* Smooth font rendering */
html {
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}



/* ============================================================
   TOPHAT VIP — Unified Luxury Stylesheet
   Version: 2026-06-30
   Author: Copilot (Microsoft)
   Notes: TopHat VIP layout utility classes (static CSS, no framework)
   ============================================================ */


/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */

body {
    padding-top: 4.5rem; /* Fix white band under nav */
}

.font-body {
    font-family: var(--font-body, sans-serif);
}

.font-display {
    font-family: var(--font-display, serif);
}

⭐ 2. BODY DEFAULTS (site utility)
css
body {
    line-height: 1.5;
    font-family: var(--font-body, system-ui, sans-serif);
    background-color: var(--navy);
    color: var(--white);
}
⭐ 3. HEADINGS NORMALIZATION
css
h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    margin: 0;
    line-height: 1.2;
}
⭐ 4. PARAGRAPH + TEXT NORMALIZATION
css
p {
    margin: 0;
}
⭐ 5. LINK NORMALIZATION
css
a {
    color: inherit;
    text-decoration: inherit;
}
⭐ 6. IMAGE + MEDIA NORMALIZATION
css
img, svg, video, canvas, iframe {
    display: block;
    max-width: 100%;
    height: auto;
}
This fixes:

modal icon size

badge icon size

footer icons

nav icons

⭐ 7. BUTTON RESET (site utility)
css
button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}
This fixes:

login button

booking button

dashboard buttons

footer buttons

modal close button

⭐ 8. INPUT + TEXTAREA RESET
css
input, textarea, select {
    font: inherit;
    color: inherit;
    background: transparent;
    border-radius: 0;
    margin: 0;
    padding: 0;
}
This fixes:

membership forms

booking forms

profile forms

billing forms

⭐ 9. LIST RESET
css
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
⭐ 10. TABLE RESET
css
table {
    border-collapse: collapse;
    border-spacing: 0;
}
⭐ 11. HR RESET
css
hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 1rem 0;
}
⭐ 12. FORM ELEMENT FIXES (site utility)
css
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    box-shadow: none;
}
⭐ 13. ROOT COLOR INHERITANCE
css
*, *::before, *::after {
    border-color: inherit;
}
⭐ 14. DEFAULT FLEX NORMALIZATION
css
section, header, footer, nav {
    display: block;
}

⭐ 1. BACKGROUND UTILITIES (Fixes hero, splash, modal, sections)
css
.bg-cover { background-size: cover; }
.bg-contain { background-size: contain; }
.bg-center { background-position: center; }
.bg-top { background-position: top; }
.bg-bottom { background-position: bottom; }
.bg-no-repeat { background-repeat: no-repeat; }
.bg-repeat { background-repeat: repeat; }
.bg-fixed { background-attachment: fixed; }
⭐ 2. POSITIONING UTILITIES (Fixes nav, hero overlays, modal positioning)
css
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
⭐ 3. OVERFLOW UTILITIES (Fixes hero white space, modal scroll, mobile menu)
css
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
⭐ 4. GRID UTILITIES (Fixes dashboard, footer, membership pages)
css
.grid { display: grid; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (min-width: 768px) {
    .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
⭐ 5. DISPLAY UTILITIES (Fixes nav, footer, hero, dashboard)
css
.inline { display: inline; }
.inline-block { display: inline-block; }
.table { display: table; }
.table-row { display: table-row; }
.table-cell { display: table-cell; }
⭐ 6. FLEX WRAP UTILITIES (Fixes footer, nav, dashboard cards)
css
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
⭐ 7. TYPOGRAPHY SCALE (Fixes hero headings, footer text, modal text)
css
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

@media (min-width: 768px) {
    .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
}
⭐ 8. COLOR UTILITIES (Fixes gold arrow, hero text, footer text)
css
.text-gold { color: var(--gold); }
.text-gold\/60 { color: rgba(var(--gold-rgb), 0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/50 { color: rgba(255,255,255,0.5); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.bg-gold\/70 { background-color: rgba(var(--gold-rgb), 0.7); }
⭐ 9. BORDER UTILITIES (Fixes footer, dashboard cards, modal)
css
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }

.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
⭐ 10. SHADOW UTILITIES (Fixes modal badge, launch icon)
css
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),
                0 4px 6px -2px rgba(0,0,0,0.05);
}
⭐ 11. TRANSITION UTILITIES (Fixes hover states)
css
.transition { transition: all 0.2s ease; }
⭐ 12. HOVER UTILITIES (Fixes nav hover, footer hover, modal CTA)
css
.hover\:bg-navyLight:hover {
    background-color: var(--navy-light);
}
⭐ 13. RADIUS UTILITIES (Fixes footer, dashboard cards, modal)
css
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
⭐ 14. HEIGHT/WIDTH UTILITIES (Fixes icons, modal, footer)
css
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }

⭐ 1. THE LUXURY CONTAINER (GLOBAL)
css
/* TopHat VIP Luxury Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1400px; /* Luxury breakpoint */
}

⭐ 2. RESPONSIVE LUXURY BREAKPOINTS
css
@media (min-width: 640px) {
    .container { max-width: 640px; }
}

@media (min-width: 768px) {
    .container { max-width: 900px; }
}

@media (min-width: 1024px) {
    .container { max-width: 1200px; }
}

@media (min-width: 1280px) {
    .container { max-width: 1400px; }
}

⭐ 4. HERO BACKGROUND FIX (Critical)
css
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    width: 100%;
}

⭐ 5. NAV VISIBILITY FIX (Critical)
css
/* Desktop nav visible */
.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/* Mobile nav hidden on desktop */
.nav-mobile {
    display: flex;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none;
    }
}

⭐ 6. FOOTER LUXURY LAYOUT
css
.footer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

⭐ 7. LOGOUT BUTTON FIX
css
.logout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
}



/* ============================================================
   COLORS & BRAND UTILITIES
   ============================================================ */

.text-gold { color: #D4AF37; }
.text-gold\/70 { color: rgba(212,175,55,0.7); }
.text-gold\/60 { color: rgba(212,175,55,0.6); }
.text-gold\/50 { color: rgba(212,175,55,0.5); }
.text-gold\/40 { color: rgba(212,175,55,0.4); }
.text-gold\/80 { color: rgba(212,175,55,0.8); }

.text-navy { color: #0A0F1F; }
.text-navy\/30 { color: rgba(10,15,31,0.3); }

.text-white { color: #fff; }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/50 { color: rgba(255,255,255,0.5); }

.text-gray-400 { color: #9CA3AF; }
.text-gray-500 { color: #6B7280; }
.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }

.bg-black { background-color: #000; }
.bg-black\/20 { background-color: rgba(0,0,0,0.2); }
.bg-black\/30 { background-color: rgba(0,0,0,0.3); }

.bg-white { background-color: #fff; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }

.bg-navy { background-color: #0A0F1F; }
.bg-navy\/85 { background-color: rgba(10,15,31,0.85); }

.bg-cream { background-color: #F7F0DA; }

.bg-gold\/70 { background-color: rgba(212,175,55,0.7); }

.bg-red-50 { background-color: #fef2f2; }
.bg-green-50 { background-color: #f0fdf4; }


/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-light { font-weight: 300; }

.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.tracking-tight { letter-spacing: -0.015em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }

.tracking-\[0.12em\] { letter-spacing: 0.12em; }
.tracking-\[0.15em\] { letter-spacing: 0.15em; }
.tracking-\[0.2em\] { letter-spacing: 0.2em; }
.tracking-\[0.25em\] { letter-spacing: 0.25em; }
.tracking-\[0.32em\] { letter-spacing: 0.32em; }

.leading-relaxed { line-height: 1.625; }
.leading-6 { line-height: 1.5rem; }


/* ============================================================
   DISPLAY & POSITIONING UTILITIES
   ============================================================ */

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }

.hidden { display: none; }

.relative { position: relative; }
.absolute { position: absolute; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }

.flex-wrap { flex-wrap: wrap; }

.cursor-pointer { cursor: pointer; }


/* ============================================================
   SPACING UTILITIES — MARGINS
   ============================================================ */

.mt-0 { margin-top: 0; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-auto { margin-top: auto; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }

.my-4 { margin-top: 1rem; margin-bottom: 1rem; }

.\!mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.\!mb-6 { margin-bottom: 1.5rem !important; }


/* ============================================================
   SPACING UTILITIES — PADDING
   ============================================================ */

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }


/* ============================================================
   WIDTH & HEIGHT UTILITIES
   ============================================================ */

.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }

.h-full { height: 100%; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }

.h-\[1px\] { height: 1px; }


/* ============================================================
   GRID UTILITIES
   ============================================================ */

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:min-h-screen { min-height: 100vh; }
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:p-10 { padding: 2.5rem; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}


/* ============================================================
   BORDERS & RADIUS UTILITIES
   ============================================================ */

.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }

.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-gold\/10 { border-color: rgba(212,175,55,0.1); }
.border-gold\/20 { border-color: rgba(212,175,55,0.2); }
.border-red-200 { border-color: #fecaca; }
.border-green-200 { border-color: #bbf7d0; }

.border-l-4 { border-left-width: 4px; border-left-style: solid; }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-r-lg {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}


/* ============================================================
   EFFECTS & ANIMATION UTILITIES
   ============================================================ */

.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.10; }
.opacity-100 { opacity: 1; }

.transition { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }

.shadow-lg {
    box-shadow:
        0 10px 15px -3px rgba(0,0,0,0.1),
        0 4px 6px -2px rgba(0,0,0,0.05);
}

.backdrop-blur-sm { backdrop-filter: blur(4px); }


/* ============================================================
   CONTAINERS & WIDTH LIMITS
   ============================================================ */

.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }

.mx-auto { margin-left: auto; margin-right: auto; }


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-diagonal {
    padding-top: 0;
    background: transparent;
    min-height: 100vh;
}

.hero-diagonal img {
    height: 100%;
    object-fit: cover;
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--gradient-stops));
}

.from-black\/40 {
    --gradient-from: rgba(0,0,0,0.4);
    --gradient-stops: var(--gradient-from), var(--gradient-to, rgba(0,0,0,1));
}

.via-black\/100 {
    --gradient-stops: var(--gradient-from), rgba(0,0,0,1), var(--gradient-to, rgba(0,0,0,1));
}

.to-black\/100 {
    --gradient-to: rgba(0,0,0,1);
}


/* ============================================================
   NAVIGATION — DESKTOP & MOBILE
   ============================================================ */

.hidden { display: none; }

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
}

.gap-6 { gap: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-2 { gap: 0.5rem; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }

.cursor-pointer { cursor: pointer; }

.hover\:text-gold:hover { color: #D4AF37; }


/* ============================================================
   BUTTONS — GOLD & OUTLINE GOLD
   ============================================================ */

.btn-gold {
    background-color: #D4AF37;
    color: #0A0F1F;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.btn-gold:hover {
    background-color: #e6c45a;
}

.btn-outline-gold {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-outline-gold:hover {
    background-color: rgba(212,175,55,0.1);
}


/* ============================================================
   FORM INPUTS — GLOBAL LUXURY STYLE
   ============================================================ */

.form-input {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #fff;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}


/* ============================================================
   ERROR & SUCCESS BOXES
   ============================================================ */

.bg-red-50 { background-color: #fef2f2; }
.text-red-700 { color: #b91c1c; }

.bg-green-50 { background-color: #f0fdf4; }
.text-green-700 { color: #15803d; }
.text-green-600 { color: #16a34a; }

.rounded-lg { border-radius: 0.5rem; }
.p-4 { padding: 1rem; }

.hover\:text-gold\/80:hover {
    color: rgba(212,175,55,0.8);
}


/* ============================================================
   MOBILE MENU — FULL PANEL
   ============================================================ */

.mobile-nav-link {
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #D4AF37;
}

.launch-overlay { }
.launch-window { }
.launch-window-badge { }
.modal-badge { }


/* ============================================================
   FOOTER
   ============================================================ */

footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:min-h-screen { min-height: 100vh; }
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:p-10 { padding: 2.5rem; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}


/* ============================================================
   BORDERS & RADIUS UTILITIES
   ============================================================ */

.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }

.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-gold\/10 { border-color: rgba(212,175,55,0.1); }
.border-gold\/20 { border-color: rgba(212,175,55,0.2); }
.border-red-200 { border-color: #fecaca; }
.border-green-200 { border-color: #bbf7d0; }

.border-l-4 { border-left-width: 4px; border-left-style: solid; }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-r-lg {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}


/* ============================================================
   EFFECTS & ANIMATION UTILITIES
   ============================================================ */

.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.10; }
.opacity-100 { opacity: 1; }

.transition { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }

.shadow-lg {
    box-shadow:
        0 10px 15px -3px rgba(0,0,0,0.1),
        0 4px 6px -2px rgba(0,0,0,0.05);
}

.backdrop-blur-sm { backdrop-filter: blur(4px); }


/* ============================================================
   CONTAINERS & WIDTH LIMITS
   ============================================================ */

.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }

.mx-auto { margin-left: auto; margin-right: auto; }


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-diagonal {
    padding-top: 0;
    background: transparent;
    min-height: 100vh;
}

.hero-diagonal img {
    height: 100%;
    object-fit: cover;
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--gradient-stops));
}

.from-black\/40 {
    --gradient-from: rgba(0,0,0,0.4);
    --gradient-stops: var(--gradient-from), var(--gradient-to, rgba(0,0,0,1));
}

.via-black\/100 {
    --gradient-stops: var(--gradient-from), rgba(0,0,0,1), var(--gradient-to, rgba(0,0,0,1));
}

.to-black\/100 {
    --gradient-to: rgba(0,0,0,1);
}


/* ============================================================
   NAVIGATION — DESKTOP & MOBILE
   ============================================================ */

.hidden { display: none; }

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
}

.gap-6 { gap: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-2 { gap: 0.5rem; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }

.cursor-pointer { cursor: pointer; }

.hover\:text-gold:hover { color: #D4AF37; }


/* ============================================================
   BUTTONS — GOLD & OUTLINE GOLD
   ============================================================ */

.btn-gold {
    background-color: #D4AF37;
    color: #0A0F1F;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.btn-gold:hover {
    background-color: #e6c45a;
}

.btn-outline-gold {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-outline-gold:hover {
    background-color: rgba(212,175,55,0.1);
}


/* ============================================================
   FORM INPUTS — GLOBAL LUXURY STYLE
   ============================================================ */

.form-input {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #fff;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}


/* ============================================================
   ERROR & SUCCESS BOXES
   ============================================================ */

.bg-red-50 { background-color: #fef2f2; }
.text-red-700 { color: #b91c1c; }

.bg-green-50 { background-color: #f0fdf4; }
.text-green-700 { color: #15803d; }
.text-green-600 { color: #16a34a; }

.rounded-lg { border-radius: 0.5rem; }
.p-4 { padding: 1rem; }

.hover\:text-gold\/80:hover {
    color: rgba(212,175,55,0.8);
}


/* ============================================================
   MOBILE MENU — FULL PANEL
   ============================================================ */

.mobile-nav-link {
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #D4AF37;
}

.launch-overlay { }
.launch-window { }
.launch-window-badge { }
.modal-badge { }


/* ============================================================
   FOOTER
   ============================================================ */

footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
}


/* ============================================================
   CONTACT & BOOKING PAGE
   ============================================================ */

/*
 * Tab panel visibility is controlled by #bookingForm / #partnershipForm
 * .hidden toggles in assets/js/custom.js (showContactTab). Do not add
 * .tab-content { display: none } here — it would hide fields inside a
 * visible form wrapper.
 */

.tab-btn { cursor: pointer; }

.border-gray-200 { border-color: #e5e7eb; }

.text-red-500 { color: #ef4444; }
.border-red-500 { border-color: #ef4444; }

.underline { text-decoration: underline; }