/* CSS variables */
:root {
    --bg-black: #080808;
    --bg-card: #121212;
    --gold: #c5a880;
    --gold-hover: #b39369;
    --text-white: #ffffff;
    --text-gray: #a8a8a8;
    --text-muted: #666666;
    --border: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(197, 168, 128, 0.2);
    --outfit: 'Outfit', sans-serif;
    --playfair: 'Playfair Display', serif;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--outfit);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.text-center { text-align: center; }
.gold-text { color: var(--gold); }

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--playfair);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Scroll reveal initial state */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    transition: padding 0.3s ease;
}

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

.logo {
    font-family: var(--playfair);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-gold {
    color: var(--gold);
}

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

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

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

.btn-nav-bookings {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--outfit);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-nav-bookings:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-nav-cta {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--outfit);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background-color: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.hamburger {
    display: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    position: relative;
    background: radial-gradient(circle at top right, rgba(197, 168, 128, 0.03), transparent);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.walk-ins-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-image-frame {
    position: relative;
    border: 1px solid var(--border-gold);
    padding: 12px;
    border-radius: 12px;
    background-color: rgba(18, 18, 18, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    pointer-events: none;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    border-radius: 8px;
    display: block;
    object-fit: contain;
    aspect-ratio: 4/3;
    background-color: #0c0c0c;
}

/* Trust Bar */
.trust-bar {
    padding: 32px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-white);
}

.trust-item i {
    color: var(--gold);
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
    width: 100%;
}

.about-image-main {
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    padding: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    background-color: rgba(18, 18, 18, 0.5);
}

.about-image-main img {
    border-radius: 8px;
}

.img-fit {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.section-subtitle {
    display: block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-badge i {
    color: var(--gold);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 3rem;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 16px auto 0;
}

.services-tabs {
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    background-color: var(--bg-black);
    color: var(--text-gray);
    border: 1px solid var(--border);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: var(--outfit);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.services-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    background-color: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    gap: 20px;
}

.service-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.service-details {
    flex-grow: 1;
}

.service-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.service-name-text {
    font-size: 1.15rem;
    font-family: var(--outfit);
    font-weight: 600;
    color: var(--text-white);
}

.service-price-val {
    font-family: var(--playfair);
    color: var(--gold);
    font-weight: 700;
    font-size: 1.3rem;
    white-space: nowrap;
    margin-left: 16px;
}

.service-desc-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-meta {
    display: flex;
    gap: 12px;
}

.meta-time {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-info {
    margin-top: 48px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.services-info i {
    color: var(--gold);
    margin-right: 4px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery-img-container {
    width: 100%;
    height: 100%;
    background-color: #0c0c0c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Subject Preservation: contain haircut work */
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 8, 8, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-white);
    transform: translateY(10px);
    transition: transform 0.3s ease 0.05s;
}

.gallery-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .zoom-icon,
.gallery-item:hover .gallery-label {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(197, 168, 128, 0.05);
}

.stars {
    color: var(--gold);
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
}

.reviewer-name {
    font-family: var(--outfit);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.reviewer-verified {
    font-size: 0.75rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hours Section */
.hours-section {
    padding: 100px 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hours-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.hours-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

.hours-table-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

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

.hours-table td {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    font-weight: 500;
}

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

.hours-table td.time {
    text-align: right;
    color: var(--gold);
    font-weight: 600;
}

.hours-table td.time.closed {
    color: #ef4444;
}

/* Contact & Map Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--gold);
    width: 40px;
    height: 40px;
    background-color: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--outfit);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.contact-link {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--gold);
}

.contact-cta-wrapper .btn {
    width: 100%;
}

.contact-map {
    position: relative;
    border: 1px solid var(--border-gold);
    padding: 12px;
    border-radius: 16px;
    background-color: rgba(18, 18, 18, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.contact-map iframe {
    display: block;
}

/* Footer */
.footer {
    padding: 60px 0;
    background-color: var(--bg-black);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-family: var(--playfair);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.footer-desc {
    color: var(--text-gray);
    max-width: 400px;
    font-size: 0.9rem;
    text-align: right;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 8, 8, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.lightbox-caption {
    margin-top: 20px;
    font-family: var(--playfair);
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--text-white);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* Native Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1500;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(8px);
}

.booking-modal-content {
    background-color: var(--bg-black);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    width: 100%;
    max-width: 580px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.booking-modal-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid var(--border);
}

.booking-modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.booking-modal-header p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.booking-wizard {
    padding: 0 40px 40px;
    overflow-y: auto;
    flex-grow: 1;
}

.booking-step {
    display: none;
    padding-top: 20px;
}

.booking-step.active {
    display: block;
}

.step-title {
    font-family: var(--outfit);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

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

.form-input {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 12px 16px;
    border-radius: 4px;
    font-family: var(--outfit);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

.booking-service-summary {
    margin-bottom: 24px;
}

.summary-card {
    background-color: var(--bg-card);
    border: 1px dashed var(--border-gold);
    padding: 16px;
    border-radius: 6px;
}

.summary-card h5 {
    font-family: var(--outfit);
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.summary-name {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.summary-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

.price-hl {
    font-size: 1.15rem;
    font-family: var(--playfair);
}

.btn-back {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    font-family: var(--outfit);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    padding: 0;
}

.btn-back:hover {
    color: var(--gold-hover);
}

/* Date Scrolling Card List */
.date-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-black);
}

.date-scroll::-webkit-scrollbar {
    height: 4px;
}

.date-scroll::-webkit-scrollbar-thumb {
    background-color: var(--gold);
    border-radius: 4px;
}

.date-card {
    flex-shrink: 0;
    width: 75px;
    height: 90px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-card:hover:not(.disabled) {
    border-color: var(--border-gold);
    background-color: rgba(197, 168, 128, 0.05);
}

.date-card.active {
    background-color: var(--gold);
    border-color: var(--gold);
}

.date-card.active span {
    color: #000 !important;
}

.date-wday {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.date-num {
    font-size: 1.4rem;
    font-family: var(--playfair);
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

.date-card.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    position: relative;
}

.closed-label {
    position: absolute;
    bottom: 2px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
}

/* Time Grid */
.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    gap: 10px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-black);
}

.time-grid::-webkit-scrollbar {
    width: 4px;
}

.time-grid::-webkit-scrollbar-thumb {
    background-color: var(--gold);
    border-radius: 4px;
}

.time-slot {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover:not(.unavailable) {
    border-color: var(--gold);
    color: var(--gold);
}

.time-slot.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.time-slot.unavailable {
    opacity: 0.2;
    cursor: not-allowed;
    font-size: 0.7rem;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.time-prompt {
    grid-column: 1 / -1;
    color: var(--text-gray);
    font-size: 0.9rem;
    text-align: center;
    padding: 24px 0;
}

.closed-day-msg {
    color: #ef4444;
}

.closed-day-msg i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

/* Confirmation step screen */
.success-icon {
    font-size: 3.5rem;
    color: #10b981;
    margin-bottom: 16px;
}

.success-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.confirmation-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.confirm-detail-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.confirm-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.confirm-lbl {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirm-val {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
}

.highlight-val {
    color: var(--gold);
    font-weight: 700;
}

/* Saved Bookings List modal */
.bookings-list-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.no-bookings {
    padding: 40px 0;
    color: var(--text-gray);
}

.no-bookings i {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

.saved-booking-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.booking-card-header h5 {
    font-family: var(--outfit);
    font-size: 1.05rem;
    font-weight: 600;
}

.booking-card-price {
    font-family: var(--playfair);
    color: var(--gold);
    font-weight: 700;
}

.booking-card-body p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-card-body p i {
    color: var(--gold);
}

.booking-card-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
}

.btn-cancel {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--outfit);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cancel:hover {
    background-color: rgba(239, 68, 68, 0.05);
}

/* Media Queries */
@media (max-width: 991px) {
    h1 { font-size: 3rem !important; }
    h2 { font-size: 2.2rem !important; }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    .hero-btns {
        justify-content: center;
    }
    .walk-ins-tag {
        justify-content: center;
    }
    .about-grid, .hours-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .footer-desc {
        text-align: center;
    }
    .services-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-black);
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        transition: left 0.4s ease;
        border-top: 1px solid var(--border);
        overflow-y: auto;
    }
    .nav-links.active {
        left: 0;
    }
    .hamburger {
        display: block;
    }
    .btn-nav-bookings, .btn-nav-cta {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-modal-content {
        max-height: 95vh;
    }
    .booking-modal-header {
        padding: 24px 24px 16px;
    }
    .booking-wizard {
        padding: 0 24px 24px;
    }
    .service-item {
        padding: 20px 16px;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem !important;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-btns .btn {
        width: 100%;
    }
    .walk-ins-tag, .about-features {
        justify-content: center;
    }
    .service-item {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 12px;
    }
    .service-title-row {
        width: 100%;
    }
    .service-action {
        width: 100%;
        margin-top: 4px;
    }
    .service-action .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
