/*
Theme Name: Loft Studios & Events
Theme URI: https://loftstudios.co.ke
Author: Loft Studios
Author URI: https://loftstudios.co.ke
Description: A premium booking theme for Loft Studios & Events — spacious studio practice space for music bands and worship teams in Thika Town.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: loft-studios
Tags: music, studio, booking, events, dark
*/

/* ===================================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
=================================================== */
:root {
    --gold:         #B8860B;
    --gold-light:   #F5C66B;
    --gold-dark:    #A6730D;
    --gold-glow:    rgba(184, 134, 11, 0.25);
    --silver:       #bdbdbd;
    --silver-light: #e3e3e3;
    --silver-dark:  #8f8f8f;
    --silver-glow:  rgba(189, 189, 189, 0.18);
    --black:        #1d1a17;
    --black-mid:    #2b2722;
    --black-card:   #0f0d0b;
    --black-hover:  #39322b;
    --white:        #ffffff;
    --white-muted:  #6f5f47;
    --white-dim:    rgba(255,255,255,0.08);
    --page-bg:      #fbf5ec;
    --surface:      #ffffff;
    --surface-soft: #f7ede1;
    --surface-alt:  #f2eadf;
    --text-primary: #13110f;
    --text-muted:   #6b5b47;
    --text-gold:    #b8860b;
    --border:       rgba(184, 134, 11, 0.2);
    --border-strong:rgba(184, 134, 11, 0.5);
    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    32px;
    --shadow-gold:  0 0 40px rgba(201,168,76,0.15);
    --shadow-card:  0 8px 40px rgba(0,0,0,0.6);
    --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
    --font-main:    'Outfit', 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* ===================================================
   RESET & BASE
=================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-main);
    background: linear-gradient(180deg, var(--surface) 0%, var(--silver-light) 28%, var(--surface-soft) 56%, var(--page-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ===================================================
   SCROLLBAR
=================================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-mid); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===================================================
   TYPOGRAPHY
=================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.display-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.02em;
    line-height: 1;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
}

.gold-text { color: var(--gold); }
.accent-line {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--silver));
    border-radius: 2px;
    margin-bottom: 1rem;
}

.silver-text { color: var(--silver); }

/* ===================================================
   LAYOUT UTILITIES
=================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-pad { padding: 5rem 0; }
.section-pad-lg { padding: 7rem 0; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===================================================
   BUTTONS
=================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 4px 20px var(--gold-glow), 0 0 0 1px rgba(255,255,255,0.08);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.45), 0 0 0 1px rgba(255,255,255,0.12);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--border-strong);
}
.btn-outline:hover {
    background: var(--gold-glow);
    transform: translateY(-2px);
    color: var(--gold-light);
}

.btn-ghost {
    background: var(--white-dim);
    color: var(--white-muted);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* ===================================================
   CARDS
=================================================== */
.card {
    background: linear-gradient(180deg, var(--black-card) 0%, rgba(36, 32, 28, 0.98) 100%);
    border: 1px solid rgba(189, 189, 189, 0.18);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}
.card:hover {
    border-color: var(--silver);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

/* ===================================================
   FORM ELEMENTS
=================================================== */
.form-group { margin-bottom: 1.25rem; }

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--black-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    background: var(--black-hover);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control { cursor: pointer; }
select.form-control option { background: var(--black-mid); color: var(--white); }

textarea.form-control { resize: vertical; min-height: 100px; }

/* ===================================================
   BADGE / PILL
=================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid var(--border); }
.badge-green { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.badge-red { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.badge-blue { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }

/* ===================================================
   ALERTS
=================================================== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.alert-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #f87171; }
.alert-info    { background: rgba(201,168,76,0.1);  border: 1px solid var(--border);          color: var(--gold); }

/* ===================================================
   NAVIGATION
=================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 0;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184,134,11,0.12);
    padding: 0.75rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.site-logo {
    height: 56px;
    width: auto;
    display: block;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.nav-logo-text {
    line-height: 1;
}

.nav-logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.nav-logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.04em;
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
    border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }


.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===================================================
   HERO SECTION
=================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(184,134,11,0.16), transparent 22%),
                radial-gradient(circle at 80% 15%, rgba(184,134,11,0.08), transparent 14%),
                linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184,134,11,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,134,11,0.08) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(1); }
    20%  { opacity: 0.6; }
    80%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease both;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title-block {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-loft {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-primary);
    display: block;
    position: relative;
}

.hero-loft span {
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
}

.hero-studios {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-top: 0.25rem;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s 0.2s ease both;
}

.hero-studio-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--surface);
    border: 1px solid rgba(184,134,11,0.14);
    box-shadow: 0 18px 60px rgba(184,134,11,0.08);
}

.hero-studio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    image-rendering: auto;
}

.hero-studio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
}

.hero-banner-image-wrap {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 110px;
    height: 110px;
    padding: 0.5rem;
    background: rgba(255,255,255,0.92);
    border-radius: 20px;
    border: 1px solid rgba(189,189,189,0.4);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.hero-badge-float {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-badge-icon {
    font-size: 1.6rem;
    color: var(--silver);
}

.hero-badge-icon svg {
    color: var(--silver);
}

.hero-badge-text-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-badge-text-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.hero-badge-top {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    border-radius: var(--radius-md);
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-deco-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid var(--border);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    animation: spin 20s linear infinite;
    opacity: 0.4;
}

.hero-deco-ring::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ===================================================
   PRICING SECTION
=================================================== */
.pricing-section { background: var(--surface-soft); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    justify-items: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.pricing-card:hover,
.pricing-card.featured {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
    transform: translateY(-6px);
}

.pricing-card:hover::before,
.pricing-card.featured::before { opacity: 1; }

.pricing-card.featured {
    background: linear-gradient(160deg, #1a1508 0%, var(--black-card) 100%);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
    color: var(--gold);
}

.pricing-icon svg { color: var(--gold); }

.pricing-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.pricing-amount {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-currency {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
    color: var(--gold);
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pricing-note {
    font-size: 0.78rem;
    color: var(--gold-dark);
    background: rgba(201,168,76,0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.service-grid,
.event-grid,
.workflow-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

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

.workflow-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

.service-card,
.event-card,
.workflow-table-card,
.workflow-summary-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.service-card:hover,
.event-card:hover,
.workflow-table-card:hover,
.workflow-summary-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
}

.silver-card, .pricing-card.silver {
    background: linear-gradient(180deg, var(--silver-light), #f7f3ef);
    border-color: rgba(189, 189, 189, 0.24);
    color: var(--text-primary);
}

.silver-card .service-icon,
.silver-card .event-icon,
.silver-card .pricing-icon,
.pricing-card.silver .pricing-icon {
    background: rgba(189, 189, 189, 0.18);
    color: var(--gold-dark);
}

.silver-card h3,
.silver-card .pricing-label,
.silver-card .pricing-amount,
.pricing-card.silver .pricing-label,
.pricing-card.silver .pricing-amount {
    color: var(--text-primary);
}

.silver-card .pricing-note,
.pricing-card.silver .pricing-note {
    color: var(--silver-dark);
    background: rgba(189, 189, 189, 0.12);
}

.amenity-card.silver-card {
    background: linear-gradient(180deg, var(--silver-light), #f7f3ef);
    border-color: rgba(189, 189, 189, 0.24);
}

.amenity-card.silver-card:hover {
    background: linear-gradient(180deg, #f3efea, #ece4db);
    border-color: rgba(189, 189, 189, 0.3);
}

.amenity-card.silver-card .amenity-icon,
.amenity-card.silver-card .amenity-icon svg {
    color: var(--gold-dark);
}

.amenity-card.silver-card .amenity-name {
    color: var(--text-primary);
}

.black-card {
    background: var(--black-card);
    border-color: var(--border);
    color: var(--white);
}

.service-icon,
.event-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-icon svg,
.event-icon svg {
    color: var(--gold);
}

.service-card h3,
.event-card h3,
.workflow-table-card h3,
.workflow-summary-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.service-card p,
.workflow-summary-card p,
.workflow-summary-card ul {
    color: var(--text-muted);
    line-height: 1.8;
}

.event-card {
    text-align: center;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
}

.event-card h3 {
    margin-top: 1rem;
    color: var(--white);
}

.event-icon {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(226,114,51,0.18), rgba(226,114,51,0.08));
    color: var(--gold);
}

.workflow-table-card h3,
.workflow-summary-card h3 {
    margin-bottom: 1rem;
}

.workflow-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--white);
}

.workflow-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
}

.workflow-table tr:last-child td { border-bottom: none; }

.workflow-summary-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.workflow-summary-card li {
    display: flex;
    gap: 0.75rem;
    padding: 0.9rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.workflow-summary-card li:last-child { border-bottom: none; }

.workflow-summary-card li::before {
    content: '•';
    color: var(--gold);
    font-weight: 900;
    margin-top: 0.1rem;
}

/* ===================================================
   AMENITIES / FEATURES SECTION
=================================================== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.amenity-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.amenity-card:hover {
    border-color: var(--border-strong);
    background: var(--black-hover);
    transform: translateY(-3px);
}

.amenity-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.amenity-icon svg { color: var(--gold); }

.amenity-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white-muted);
}

/* ===================================================
   LOCATION SECTION
=================================================== */
.location-section { background: var(--surface-soft); }

.location-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.location-detail:last-child { border-bottom: none; }

.location-detail-icon {
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.location-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.location-detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.map-placeholder {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    overflow: hidden;
    position: relative;
}

/* ===================================================
   BOOKING SECTION
=================================================== */
.booking-section { background: var(--surface); }

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.booking-info-card {
    background: linear-gradient(160deg, #14100a 0%, var(--black-card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: sticky;
    top: 100px;
}

.booking-info-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
}

.booking-info-title .gold-text {
    color: var(--gold) !important;
}

.booking-info-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-info-list { list-style: none; padding: 0; }

.booking-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--white-muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.booking-info-list li:last-child { border-bottom: none; }

.booking-info-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.booking-form-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.booking-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.booking-form-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.price-summary {
    background: rgba(201,168,76,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin: 1.25rem 0;
}

.price-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    color: var(--text-muted);
}

.price-summary-row.total {
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.05rem;
}

/* ===================================================
   CONTACT SECTION
=================================================== */
.contact-bar {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-soft) 100%);
    border-top: 1px solid rgba(184,134,11,0.15);
    border-bottom: 1px solid rgba(184,134,11,0.15);
    padding: 3rem 0;
}

.contact-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-phone-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-phone-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact-phone-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

/* ===================================================
   ADMIN DASHBOARD
=================================================== */
.admin-dash {
    min-height: 100vh;
    background: var(--black);
    padding-top: 80px;
}

.admin-topbar {
    background: var(--black-card);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-greeting {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.admin-greeting strong { color: var(--white); }

.admin-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.stat-card:hover::after { opacity: 1; }

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-trend {
    font-size: 0.75rem;
    color: #4ade80;
    margin-top: 0.4rem;
}

/* Bookings Table */
.bookings-table-wrap {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.table-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.table-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.table-search input {
    padding: 0.55rem 1rem;
    background: var(--black-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.85rem;
    outline: none;
    width: 220px;
    transition: all var(--transition);
}

.table-search input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold-glow);
}

.table-search input::placeholder { color: var(--text-muted); }

.bookings-table {
    width: 100%;
    border-collapse: collapse;
}

.bookings-table th {
    padding: 0.85rem 1.25rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.04);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.bookings-table td {
    padding: 1rem 1.25rem;
    font-size: 0.88rem;
    color: var(--white-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    vertical-align: middle;
}

.bookings-table tr:last-child td { border-bottom: none; }

.bookings-table tr:hover td {
    background: rgba(255,255,255,0.02);
    color: var(--white);
}

.booking-client-name {
    font-weight: 600;
    color: var(--white);
}

.booking-amount {
    font-weight: 700;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-muted);
}

.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }

/* Table pagination */
.table-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pagination {
    display: flex;
    gap: 0.4rem;
}

.page-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover, .page-btn.active {
    border-color: var(--gold);
    background: rgba(201,168,76,0.1);
    color: var(--gold);
}

/* ===================================================
   ADMIN LOGIN PAGE
=================================================== */
.login-page {
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.login-card {
    position: relative;
    z-index: 2;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.login-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===================================================
   FOOTER
=================================================== */
.site-footer {
    background: var(--surface-soft);
    border-top: 1px solid rgba(184,134,11,0.15);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}

.footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-dark); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer-bottom-links, .footer-bottom-menu { display: flex; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }
.footer-bottom-links a, .footer-bottom-menu a { color: var(--gold); font-weight: 600; }
.footer-bottom-links a:hover, .footer-bottom-menu a:hover { color: var(--gold-light); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===================================================
   SCROLL TO TOP
=================================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover { transform: translateY(-3px); }

/* ===================================================
   SUCCESS / CONFIRMATION PAGE
=================================================== */
.booking-confirm {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

.confirm-card {
    text-align: center;
    max-width: 560px;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.confirm-icon {
    width: 80px;
    height: 80px;
    background: rgba(34,197,94,0.1);
    border: 2px solid rgba(34,197,94,0.4);
    border-radius: 50%;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: popIn 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both;
}

@keyframes popIn {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.confirm-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.75rem; }
.confirm-text  { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

.confirm-details {
    background: var(--black-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: left;
    margin-bottom: 2rem;
}

.confirm-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.confirm-detail-row:last-child { border-bottom: none; }
.confirm-detail-row span:first-child { color: var(--text-muted); }
.confirm-detail-row span:last-child { font-weight: 600; color: var(--white); }

/* ===================================================
   MOBILE MENU
=================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black-card);
    border-left: 1px solid var(--border);
    padding: 2rem;
    z-index: 9998;
    transition: right var(--transition);
    overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9997;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    transition: color var(--transition);
}
.mobile-menu-close:hover { color: var(--white); }

.mobile-nav-links { list-style: none; padding: 0; }
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a {
    display: block;
    padding: 1rem 0;
    color: var(--white-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition);
}
.mobile-nav-links a:hover { color: var(--gold); }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
    .hero-content    { grid-template-columns: 1fr; }
    .hero-visual     { display: none; }
    .pricing-grid    { grid-template-columns: 1fr 1fr; }
    .service-grid    { grid-template-columns: repeat(2, 1fr); }
    .event-grid      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .amenities-grid  { grid-template-columns: repeat(2, 1fr); }
    .workflow-grid   { grid-template-columns: 1fr; }
    .workflow-table-card,
    .workflow-summary-card { padding: 1.75rem; }
    .location-inner  { grid-template-columns: 1fr; }
    .booking-wrapper { grid-template-columns: 1fr; }
    .booking-info-card { position: static; }
    .footer-grid     { grid-template-columns: 1fr 1fr; }
    .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-outline { display: none; }
    .hamburger { display: flex; }
    .pricing-grid    { grid-template-columns: 1fr; }
    .service-grid    { grid-template-columns: 1fr; }
    .event-grid      { grid-template-columns: 1fr; }
    .amenities-grid  { grid-template-columns: repeat(2, 1fr); }
    .workflow-grid   { grid-template-columns: 1fr; }
    .form-row        { grid-template-columns: 1fr; }
    .footer-grid     { grid-template-columns: 1fr; }
    .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
    .hero-stats      { gap: 1rem; }
    .contact-bar-inner { flex-direction: column; text-align: center; }
    .footer-bottom   { flex-direction: column; text-align: center; }
    .bookings-table-wrap { overflow-x: auto; }
    .bookings-table { min-width: 700px; }
    .section-pad    { padding: 3rem 0; }
    .section-pad-lg { padding: 4rem 0; }
}

@media (max-width: 480px) {
    .amenities-grid  { grid-template-columns: repeat(2, 1fr); }
    .admin-stats-row { grid-template-columns: 1fr 1fr; }
    .login-card      { padding: 2rem 1.5rem; margin: 1rem; }
}

/* ===================================================
   AVAILABILITY CALENDAR OVERRIDES
=================================================== */
.calendar-section {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.calendar-title {
    font-size: 1.25rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.legend-dot--confirmed { background: #C0581B; border: 1px solid #E27233; }
.legend-dot--pending   { background: #6b4423; border: 1px solid #8b6914; }
.legend-dot--available { background: var(--black-hover); border: 1px solid var(--border); }

.calendar-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 1.5rem;
    font-style: italic;
}

/* FullCalendar Custom Theme Overrides */
.fc-theme-standard .fc-scrollgrid { border-color: var(--border) !important; }
.fc-theme-standard td, .fc-theme-standard th { border-color: var(--border) !important; }
.fc-theme-standard th {
    background: var(--black-mid);
    padding: 0.75rem 0 !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--gold);
}
.fc-day-today { background: rgba(226, 114, 51, 0.05) !important; }
.fc-day { transition: background var(--transition); }
.fc-day:hover { background: var(--black-hover) !important; cursor: pointer; }

.fc-theme-standard .fc-scrollgrid {
    background: rgba(255,255,255,0.02);
    border-radius: 1rem;
    overflow: hidden;
}

.fc-theme-standard .fc-scrollgrid thead th {
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.fc-daygrid-day-frame {
    min-height: 92px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.fc-daygrid-day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    font-weight: 700;
    color: var(--text-muted) !important;
    transition: background var(--transition), color var(--transition);
}

.fc-day-today .fc-daygrid-day-number {
    background: rgba(226, 114, 51, 0.16);
    color: var(--gold) !important;
}

.fc-day-other .fc-daygrid-day-number {
    opacity: 0.45;
}

.fc-daygrid-day-events {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fc-event {
    border: none !important;
    border-radius: 999px !important;
    padding: 0.2rem 0.5rem !important;
    font-size: 0.75rem !important;
    line-height: 1 !important;
    box-shadow: 0 3px 8px rgba(0,0,0,0.16) !important;
}

.fc-event-dot {
    display: none;
}

.fc-button-primary {
    background: var(--black-mid) !important;
    border: 1px solid var(--border) !important;
    color: var(--white) !important;
    text-transform: capitalize !important;
    box-shadow: none !important;
    transition: all var(--transition) !important;
}

.date-group {
    position: relative;
}

.calendar-popover {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(16,16,16,0.98) 0%, rgba(10,10,10,0.98) 100%);
    border: none;
    border-radius: 0;
    padding: 1rem;
    box-shadow: none;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
}

.calendar-popover .calendar-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.calendar-modal-title {
    letter-spacing: 0.01em;
}

.calendar-modal-subtitle {
    color: rgba(255,255,255,0.65);
}

#availabilityCalendar {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    min-height: 0;
    border-radius: 1rem;
    overflow: visible;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.015);
}

#availabilityCalendar .fc {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

#availabilityCalendar .fc-view-harness,
#availabilityCalendar .fc-view {
    flex: 1 1 auto;
    min-height: 0;
}

#availabilityCalendar .fc-scroller-harness,
#availabilityCalendar .fc-scroller {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.calendar-modal-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

.calendar-modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.calendar-close {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1.4rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; 
}

.calendar-popover .calendar-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0;
}

.calendar-popover .calendar-title {
    font-size: 1rem;
    margin: 0 0 0.75rem;
}

.booking-ranges-label {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.booking-range-item {
    padding: 0.65rem 0.85rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    color: var(--white);
    font-size: 0.92rem;
}

.calendar-popover--mobile {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0;
    padding: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    flex-direction: column;
}

.calendar-popover--mobile #availabilityCalendar,
.calendar-popover #availabilityCalendar {
    min-height: 0;
    flex: 0 1 auto;
    overflow: visible;
}

.fc,
.fc .fc-scroller-harness,
.fc .fc-scroller {
    height: flex !important;
}

.calendar-action-row {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.calendar-action-row .btn {
    flex: 1 1 150px;
    min-width: 140px;
}

@media (max-width: 767px) {
    .calendar-popover {
        position: fixed;
        inset: 0;
        padding: 0.75rem;
        border-radius: 0;
        width: flex;
        max-width: flex;
        box-shadow: none;
    }

    .calendar-popover .calendar-header,
    .calendar-popover .calendar-modal-header {
        padding: 0 0.25rem;
    }

    .calendar-popover .calendar-title {
        font-size: 1.05rem;
    }

    .calendar-popover .calendar-legend {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .calendar-popover .calendar-hint {
        margin-top: 1rem;
    }
}
.fc-button-primary:hover {
    background: var(--black-hover) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}
.fc-button-primary:disabled {
    opacity: 0.5 !important;
}
.fc-button-active {
    background: var(--gold) !important;
    color: var(--black) !important;
    border-color: var(--gold) !important;
}

.fc-toolbar-title {
    font-family: var(--font-display) !important;
    font-size: 1.5rem !important;
    color: var(--white) !important;
    font-weight: 700 !important;
}

.fc-daygrid-day-number, .fc-col-header-cell-cushion { color: var(--text-muted) !important; text-decoration: none !important; }
.fc-daygrid-day-number:hover { color: var(--white) !important; }

.loft-event {
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 2px;
}
.loft-event--pending { opacity: 0.8; font-style: italic; }

/* ===================================================
   STANDARD PAGE & BLOG TEMPLATE STYLES
=================================================== */

/* Page Hero Banner */
.loft-page-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--black-rich) 0%, var(--black-card) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.loft-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(192,88,27,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.loft-page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 0.5rem 0 0;
    line-height: 1.15;
}

/* Page Content Container */
.loft-page-main { min-height: 70vh; }
.loft-page-container {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
}

/* Gutenberg / Classic Editor Content Styles */
.loft-page-content {
    max-width: 800px;
    color: var(--white-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}
.loft-page-content h1,
.loft-page-content h2,
.loft-page-content h3,
.loft-page-content h4,
.loft-page-content h5,
.loft-page-content h6 {
    font-family: var(--font-display);
    color: var(--white);
    margin: 2rem 0 0.75rem;
    line-height: 1.3;
}
.loft-page-content h2 { font-size: 1.9rem; }
.loft-page-content h3 { font-size: 1.5rem; }
.loft-page-content h4 { font-size: 1.2rem; color: var(--gold); }
.loft-page-content p { margin-bottom: 1.25rem; }
.loft-page-content a { color: var(--gold); text-decoration: underline; transition: color var(--transition); }
.loft-page-content a:hover { color: var(--gold-light); }
.loft-page-content ul,
.loft-page-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.loft-page-content li { margin-bottom: 0.5rem; }
.loft-page-content blockquote {
    border-left: 3px solid var(--gold);
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: rgba(192,88,27,0.06);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--white);
}
.loft-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}
.loft-page-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0;
}
.loft-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}
.loft-page-content th,
.loft-page-content td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
    font-size: 0.9rem;
}
.loft-page-content th {
    background: var(--black-card);
    color: var(--gold);
    font-weight: 700;
}

/* Blog Post Cards (index.php) */
.loft-post-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.loft-post-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-card);
}
.loft-post-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}
.loft-post-card-title a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
}
.loft-post-card-title a:hover { color: var(--gold); }
.loft-post-card-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.loft-post-card-excerpt {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Pagination */
.loft-pagination { margin-top: 2rem; text-align: center; }
.loft-pagination .page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.loft-pagination .page-numbers a,
.loft-pagination .page-numbers span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
}
.loft-pagination .page-numbers a:hover,
.loft-pagination .page-numbers .current {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black-rich);
    font-weight: 700;
}

/* ===================================================
   GALLERY SLIDER STYLES
=================================================== */
.gallery-section {
    background: var(--black-rich);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-slider-wrap {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    padding-bottom: 1rem;
}
.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--black-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    aspect-ratio: 16 / 9;
}
@media (min-width: 768px) {
    .gallery-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }
}
@media (min-width: 1024px) {
    .gallery-slide {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-nav {
    background: var(--black-card);
    border: 1px solid var(--border);
    color: var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2;
    flex-shrink: 0;
}
.gallery-nav:hover {
    background: var(--gold);
    color: var(--black-rich);
    border-color: var(--gold);
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .gallery-nav {
        display: none; /* Hide buttons on mobile, rely on touch swipe */
    }
}

