/* ============================================
   LINITY STUDIOS — Clean Green & White Design
   ============================================ */

:root {
    --green: #0bda51;
    --green-dark: #09b843;
    --green-light: #e6fbe6;
    --green-bg: #f0fdf0;
    --black: #111111;
    --dark: #1a1a1a;
    --gray-900: #222222;
    --gray-700: #444444;
    --gray-500: #777777;
    --gray-400: #999999;
    --gray-300: #cccccc;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--black);
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.nav-brand strong {
    font-weight: 700;
}

.brand-icon {
    color: var(--green);
}

.nav-links {
    display: flex;
    gap: 4px;
}

.nav-link {
    color: var(--gray-500);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--dark);
    background: var(--gray-100);
}

.nav-link.active {
    color: var(--green-dark);
    background: var(--green-light);
}

.nav-cta {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.nav-cta:hover {
    background: var(--green-dark);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.nav-burger span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 99;
    flex-direction: column;
    padding: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.mobile-menu.open { display: flex; }

.mobile-link {
    color: var(--gray-700);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-link:hover {
    background: var(--gray-100);
    color: var(--dark);
}

/* ---- SECTIONS ---- */
.section {
    display: none;
    min-height: 100vh;
    padding-top: 64px;
}

.section.active {
    display: block;
    animation: fadeUp 0.4s ease;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    padding: 4rem 0 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.05rem;
}

/* ---- HERO ---- */
.hero {
    max-width: 720px;
    margin: 0 auto;
    padding: 6rem 2rem 3rem;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--black);
    margin-bottom: 1.25rem;
}

.highlight {
    color: var(--green);
}

.hero-desc {
    color: var(--gray-500);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(11, 218, 81, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.btn-ghost:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---- STATS ---- */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-text {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* ---- FEATURES ---- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--green-light);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---- STUDIO CARDS ---- */
.studios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.studio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.studio-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.studio-card.featured {
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green);
}

.sc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.sc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.sc-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 6px;
    background: var(--green-light);
    color: var(--green-dark);
}

.badge-new {
    background: #e6f0ff;
    color: #2563eb;
}

.badge-promo {
    background: #fff3e6;
    color: #e67e00;
}

.sc-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.sc-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.sc-equipment {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.sc-equipment li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-equipment li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.sc-equipment li:last-child {
    border-bottom: none;
}

.sc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
}

.sc-price {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.sc-price strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--black);
}

/* ---- BOOKING ---- */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
    padding-bottom: 4rem;
}

.booking-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

/* Steps */
.steps {
    display: flex;
    gap: 4px;
    margin-bottom: 2rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 4px;
}

.step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.step.active {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.step.done {
    color: var(--green);
}

.step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.step.active .step-num {
    background: var(--green);
    color: var(--white);
}

.step.done .step-num {
    background: var(--green-light);
    color: var(--green);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeUp 0.3s ease;
}

/* Studio Options */
.studio-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.studio-opt input { display: none; }

.so-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
}

.so-card:hover {
    border-color: var(--gray-300);
}

.studio-opt input:checked + .so-card {
    border-color: var(--green);
    background: var(--green-bg);
}

.so-letter {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.so-a { background: var(--green); }
.so-b { background: #222; }
.so-c { background: var(--gray-500); }

.so-detail {
    flex: 1;
}

.so-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--black);
}

.so-detail span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.so-check {
    color: var(--green);
    opacity: 0;
    transition: var(--transition);
}

.studio-opt input:checked + .so-card .so-check {
    opacity: 1;
}

/* Calendar */
.calendar {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    background: var(--white);
}

.cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
}

.cal-arrow {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cal-arrow:hover {
    border-color: var(--green);
    color: var(--green);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 4px;
}

.cal-weekdays span {
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 0;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: none;
    color: var(--dark);
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--gray-100);
}

.cal-day.selected {
    background: var(--green) !important;
    color: var(--white) !important;
    font-weight: 700;
}

.cal-day.today {
    border: 2px solid var(--green);
    color: var(--green);
    font-weight: 600;
}

.cal-day.disabled {
    color: var(--gray-300);
    cursor: not-allowed;
}

.cal-day.empty {
    cursor: default;
}

/* Time Grid */
.field-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 6px;
    margin-bottom: 1.5rem;
}

.time-slot {
    padding: 9px 6px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    cursor: pointer;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: inherit;
}

.time-slot:hover:not(.taken) {
    border-color: var(--green);
    color: var(--green);
}

.time-slot.selected {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    font-weight: 700;
}

.time-slot.taken {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Duration */
.duration-row {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.dur-opt { flex: 1; cursor: pointer; }
.dur-opt input { display: none; }

.dur-opt span {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--gray-500);
}

.dur-opt span:hover { border-color: var(--gray-300); }

.dur-opt input:checked + span {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* Button row */
.btn-row {
    display: flex;
    gap: 10px;
    margin-top: 0.5rem;
}

.btn-row .btn { flex: 1; justify-content: center; }

/* Form Fields */
.field {
    margin-bottom: 1rem;
}

.field-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.field-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(11, 218, 81, 0.1);
}

.field-input::placeholder {
    color: var(--gray-300);
}

.field-textarea {
    min-height: 80px;
    resize: vertical;
}

/* ---- SUMMARY ---- */
.summary-wrap {
    position: sticky;
    top: 80px;
}

.summary-card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.summary-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--black);
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.sum-row span {
    color: var(--gray-500);
}

.sum-row strong {
    color: var(--dark);
    font-weight: 600;
}

.sum-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 4px 0;
}

.sum-total strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: var(--green);
}

/* ---- BOOKINGS LIST ---- */
.bookings-list {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.empty-icon {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.empty-state p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
    animation: fadeUp 0.3s ease;
}

.booking-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
}

.bc-date {
    text-align: center;
    min-width: 50px;
}

.bc-day {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.bc-month {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.bc-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

.bc-info { flex: 1; }

.bc-studio {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 2px;
}

.bc-details {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.bc-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--green);
    font-size: 1rem;
}

.bc-actions {
    display: flex;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-icon:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #fef2f2;
}

/* ---- MODAL ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
    animation: fadeUp 0.2s ease;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-check {
    color: var(--green);
    margin-bottom: 1rem;
}

.modal h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.modal p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---- FOOTER ---- */
.footer {
    border-top: 1px solid var(--gray-200);
    padding: 2.5rem 0;
    margin-top: 2rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.footer-brand svg {
    color: var(--green);
}

.footer-text {
    color: var(--gray-400);
    font-size: 0.85rem;
}

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green);
}

/* ---- ADMIN ---- */
.nav-link-admin, .mobile-link-admin {
    color: var(--gray-400) !important;
}

.nav-link-admin.active {
    color: var(--dark) !important;
    background: var(--gray-100) !important;
}

.admin-login {
    max-width: 400px;
    margin: 0 auto;
}

.admin-login-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
}

.admin-login-icon {
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.admin-login-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.admin-login-card > p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.admin-hint {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--gray-300);
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 4px;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.admin-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.admin-tab:hover { color: var(--dark); }

.admin-tab.active {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

/* Admin Panels */
.admin-panel {
    display: none;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.admin-panel.active { display: block; animation: fadeUp 0.3s ease; }

.panel-header {
    margin-bottom: 1.5rem;
}

.panel-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.panel-header p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.panel-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* Hours Grid */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}

.hours-row:hover { border-color: var(--gray-300); }
.hours-row.closed { opacity: 0.5; }

.hours-day {
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    color: var(--dark);
}

.hours-toggle {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.hours-toggle input { display: none; }

.toggle-track {
    position: absolute;
    inset: 0;
    background: var(--gray-200);
    border-radius: 11px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.hours-toggle input:checked + .toggle-track {
    background: var(--green);
}

.hours-toggle input:checked + .toggle-track::after {
    left: 21px;
}

.hours-times {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.hours-input {
    width: 80px;
    padding: 6px 10px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    text-align: center;
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.hours-input:focus { border-color: var(--green); }
.hours-sep { color: var(--gray-300); font-size: 0.85rem; }

.hours-status {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 6px;
    min-width: 70px;
    text-align: center;
}

.status-open { background: var(--green-light); color: var(--green-dark); }
.status-closed { background: var(--gray-100); color: var(--gray-400); }

/* Admin Studios */
.admin-studios {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-studio-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.admin-studio-card:hover { border-color: var(--gray-300); }

.as-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.as-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.as-header-info { flex: 1; }

.as-header-info strong {
    font-size: 1rem;
    color: var(--black);
}

.as-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.as-fields .field { margin-bottom: 0; }

/* Block Form */
.block-form {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.block-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 0.75rem;
}

.block-form-row .field { margin-bottom: 0; }

select.field-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

/* Blocked List */
.blocked-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blocked-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    animation: fadeUp 0.3s ease;
}

.bi-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fef2f2;
    color: #e74c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bi-info { flex: 1; }

.bi-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}

.bi-info span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.bi-reason {
    font-size: 0.8rem;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Admin Filters */
.admin-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.filter-select {
    max-width: 180px;
    padding: 8px 32px 8px 12px !important;
    font-size: 0.85rem !important;
}

/* Admin Bookings List */
.admin-bookings-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ab-card {
    display: grid;
    grid-template-columns: 50px 1fr 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.85rem;
    transition: var(--transition);
}

.ab-card:hover { border-color: var(--green); }

.ab-date {
    text-align: center;
}

.ab-date-day {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.ab-date-month {
    font-size: 0.65rem;
    color: var(--gray-400);
    text-transform: uppercase;
    font-weight: 600;
}

.ab-studio { font-weight: 600; color: var(--dark); }
.ab-client { color: var(--gray-500); }
.ab-client strong { color: var(--dark); font-weight: 600; }

.ab-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
}

.admin-export {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

/* Admin toast */
.admin-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 300;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.admin-toast.show {
    transform: translateX(-50%) translateY(0);
}

.admin-toast.success { background: var(--green-dark); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .hero-title { font-size: 2.5rem; }
    .features { grid-template-columns: 1fr; }
    .studios-grid { grid-template-columns: 1fr; }
    .booking-layout { grid-template-columns: 1fr; }
    .summary-wrap { position: static; order: -1; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .stats-bar { gap: 1.5rem; flex-wrap: wrap; }
    .admin-tabs { flex-wrap: wrap; }
    .ab-card { grid-template-columns: 1fr; gap: 6px; }
    .as-fields { grid-template-columns: 1fr; }
    .block-form-row { grid-template-columns: 1fr; }
    .hours-row { flex-wrap: wrap; }
    .hours-times { width: 100%; }
}

@media (max-width: 500px) {
    .hero { padding: 4rem 1.5rem 2rem; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .container { padding: 0 1rem; }
    .booking-form-wrap { padding: 1.25rem; }
    .time-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { flex-direction: column; text-align: center; }
}

/* ============================================
   MUSIC VAULT
   ============================================ */
.music-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.packages-admin-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pkg-admin-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
}

.pkg-admin-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.pkg-admin-info strong { font-size: 0.95rem; }
.pkg-admin-info span { font-size: 0.78rem; color: #777; }
.pkg-admin-info code {
    background: var(--gray-100, #f5f5f5);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
}
.pkg-desc-text { font-style: italic; }

/* Vault customer page */
.vault-packages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.vault-pkg-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vault-pkg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.vault-pkg-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.vault-pkg-head h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #fff;
}

.vault-pkg-price {
    background: #fff;
    color: #000;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.vault-pkg-desc {
    font-size: 0.85rem;
    color: #bbb;
    margin: 0.25rem 0 0.75rem;
    line-height: 1.4;
}

.vault-pkg-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #999;
}

.vault-unlock-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.vault-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gray-100, #f5f5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.vault-unlock-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.15rem;
}

.vault-unlock-card p {
    color: #777;
    font-size: 0.85rem;
    margin: 0;
}

.vault-unlocked {
    margin-top: 2rem;
}

.unlocked-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem;
}

.unlocked-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.unlocked-head h3 {
    margin: 0.4rem 0 0.25rem;
    font-size: 1.25rem;
}

.unlocked-head p {
    color: #777;
    font-size: 0.85rem;
    margin: 0;
}

.unlocked-tag {
    display: inline-block;
    background: #d4f7d4;
    color: #1a6b1a;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.track-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.85rem;
    background: var(--gray-100, #f9f9f9);
    border-radius: 10px;
    transition: background 0.15s;
}

.track-row:hover { background: #f0f0f0; }

.track-num {
    font-size: 0.78rem;
    color: #999;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.track-name {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-300); }
