:root {
    --ivory: #fbf7ef;
    --paper: #fffdf8;
    --sage: #dfe8dd;
    --mist: #eef4f1;
    --ink: #13231f;
    --green: #213d35;
    --green-soft: #49665e;
    --gold: #c89b5a;
    --gold-dark: #9d7134;
    --rose: #d8b9a5;
    --muted: #6f7973;
    --line: rgba(19, 35, 31, 0.12);
    --shadow: 0 18px 50px rgba(19, 35, 31, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--ivory);
    line-height: 1.7;
}
img { max-width: 100%; }
a { text-decoration: none; }

.glass-nav {
    background: rgba(251, 247, 239, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0;
}
.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    background: var(--green);
    color: var(--paper);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 900;
}
.nav-link {
    color: var(--green-soft);
    font-weight: 650;
}
.nav-link:hover { color: var(--gold-dark); }

.btn {
    border-radius: 999px;
    font-weight: 750;
    padding: 0.75rem 1.35rem;
}
.btn-gold {
    background: var(--gold);
    color: white;
    border: 1px solid var(--gold);
    box-shadow: 0 12px 28px rgba(157, 113, 52, 0.22);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: white;
    transform: translateY(-1px);
}
.btn-ghost {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover {
    color: var(--ink);
    background: white;
}

.hero-section {
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(13, 30, 26, 0.88), rgba(13, 30, 26, 0.52), rgba(13, 30, 26, 0.22)),
        url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=2200&q=84") center/cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.34));
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.hero-copy { max-width: 760px; }
.hero-section h1,
.page-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: 4.8rem;
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 850;
}
.hero-text {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.18rem;
    margin: 1.5rem 0 2rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 850;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
}
.hero-eyebrow,
.dark-section .eyebrow,
.page-hero .eyebrow { color: var(--gold); }
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
}
.hero-stats div {
    min-width: 170px;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 8px;
}
.hero-stats strong {
    display: block;
    font-size: 1.2rem;
    color: white;
}
.hero-stats span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.section-padding { padding: 6rem 0; }
.section-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
}
.section-heading-wide {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}
.section-heading h2,
.section-padding h2 {
    font-size: 2.8rem;
    line-height: 1.12;
    letter-spacing: 0;
    font-weight: 850;
    margin-bottom: 1rem;
}
.section-heading p,
.section-lead { color: var(--muted); }
.soft-bg { background: linear-gradient(180deg, var(--mist), var(--sage)); }
.intro-section { background: var(--paper); }
.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card,
.service-card,
.membership-card,
.contact-card,
.admin-login-card,
.stat-card,
.pricing-table-wrap,
.admin-table-wrap,
.booking-form,
.luxury-panel,
.info-box {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.feature-card {
    padding: 1.5rem;
    min-height: 100%;
}
.feature-card h5,
.service-card h4,
.membership-card h4 {
    font-weight: 800;
    margin-bottom: 0.8rem;
}
.feature-card p,
.service-card p,
.membership-card li { color: var(--muted); }
.icon-circle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1.1rem;
    background: var(--green);
    color: white;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 850;
}

.service-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(19, 35, 31, 0.14);
}
.service-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    background: var(--sage);
}
.service-card-large .service-image { height: 260px; }
.service-body { padding: 1.5rem; }
.service-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    background: var(--mist);
    color: var(--green);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 850;
}
.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: 1.4rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.service-meta span { color: var(--green-soft); }
.service-meta strong,
.membership-card h3,
.stat-card strong { color: var(--gold-dark); }
.card-link,
.footer-link {
    color: var(--gold-dark);
    font-weight: 800;
}
.info-box {
    box-shadow: none;
    background: var(--ivory);
    padding: 1rem;
    margin: 1.2rem 0;
}
.info-box small {
    display: block;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.info-box span { font-weight: 750; }

.ritual-section { background: var(--paper); }
.ritual-image {
    min-height: 560px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(19, 35, 31, 0.08), rgba(19, 35, 31, 0.22)),
        url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1400&q=82") center/cover;
    box-shadow: var(--shadow);
}
.ritual-steps {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}
.ritual-steps div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0.35rem 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.ritual-steps span {
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: white;
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 850;
}
.ritual-steps strong { font-size: 1.05rem; }
.ritual-steps p {
    margin: 0;
    color: var(--muted);
}

.check-list {
    padding-left: 0;
    list-style: none;
    margin: 1.5rem 0;
}
.check-list li {
    position: relative;
    margin-bottom: 0.9rem;
    padding-left: 1.6rem;
}
.check-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-dark);
    position: absolute;
    left: 0;
    top: 0.75rem;
}
.image-card,
.map-placeholder {
    border-radius: 8px;
    padding: 0;
    background: var(--paper);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.image-placeholder,
.map-placeholder {
    min-height: 430px;
    display: grid;
    place-items: center;
    color: white;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(19, 35, 31, 0.14), rgba(19, 35, 31, 0.34)),
        url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1200&q=82") center/cover;
}
.image-placeholder span {
    font-size: 2rem;
    font-weight: 850;
}

.dark-section {
    color: white;
    background: var(--green);
}
.cta-band {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.cta-band h2 { color: white; }
.cta-band p { color: rgba(255, 255, 255, 0.78); }
.text-gold { color: var(--gold) !important; }

.page-hero {
    padding: 10rem 0 5.5rem;
    color: white;
    background:
        linear-gradient(90deg, rgba(19, 35, 31, 0.88), rgba(19, 35, 31, 0.54)),
        url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=2200&q=82") center/cover;
}
.services-hero {
    background:
        linear-gradient(90deg, rgba(19, 35, 31, 0.88), rgba(19, 35, 31, 0.48)),
        url("https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&w=2200&q=82") center/cover;
}
.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
}

.pricing-table-wrap,
.admin-table-wrap { padding: 1rem; }
.pricing-table th,
.admin-table th {
    color: var(--ink);
    background: var(--mist);
    padding: 1.2rem;
}
.pricing-table td,
.admin-table td { padding: 1.2rem; }
.membership-card,
.contact-card,
.admin-login-card,
.stat-card,
.booking-form,
.luxury-panel { padding: 2rem; }
.membership-card h3 {
    font-weight: 850;
    margin: 1rem 0;
}
.membership-card ul {
    padding-left: 1.1rem;
    margin: 1.5rem 0;
}
.featured-True {
    border: 2px solid var(--gold);
    transform: translateY(-8px);
}
.form-control,
.form-select {
    border-radius: 8px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(200, 155, 90, 0.16);
}
.contact-card { height: 100%; }
.accordion-item,
.accordion-button { border-radius: 8px !important; }
.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--line);
    overflow: hidden;
}
.accordion-button { font-weight: 800; }
.admin-login-card { max-width: 460px; }
.stat-card span {
    display: block;
    color: var(--muted);
    font-weight: 700;
}
.stat-card strong { font-size: 2.2rem; }
.note-cell {
    min-width: 260px;
    max-width: 340px;
    white-space: normal;
    color: var(--muted);
}
.guest-note {
    display: grid;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
    padding: 0.6rem;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.guest-note small,
.admin-notes-form .form-label {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.guest-note span {
    color: var(--ink);
}
.admin-notes-form {
    display: grid;
    gap: 0.45rem;
}
.admin-notes-form textarea {
    min-height: 66px;
    resize: vertical;
}
.admin-notes-form .btn {
    margin-top: 0.25rem;
}
.admin-filter-form {
    box-shadow: none;
}
.admin-results-bar,
.admin-pagination,
.admin-page-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.admin-results-bar {
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--muted);
    font-weight: 750;
}
.admin-results-bar a {
    color: var(--gold-dark);
    font-weight: 850;
}
.admin-result-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}
.admin-pagination {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}
.admin-page-link,
.admin-page-gap {
    min-width: 40px;
    min-height: 40px;
    display: inline-grid;
    place-items: center;
    padding: 0.35rem 0.7rem;
    color: var(--green);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 850;
}
.admin-page-link:hover,
.admin-page-link.active {
    color: white;
    background: var(--green);
    border-color: var(--green);
}
.admin-page-gap {
    color: var(--muted);
    background: transparent;
}
.flash-wrap {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    z-index: 1060;
}
.alert {
    transition: opacity 0.4s ease;
}
.alert-fading {
    opacity: 0;
}
.floating-booking {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
    color: white;
    background: var(--green);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    font-weight: 850;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.floating-booking:hover {
    color: white;
    background: var(--gold-dark);
}
.footer-section {
    background: var(--paper);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--line);
}
.footer-brand { font-weight: 850; }

@media (max-width: 991px) {
    .hero-section { min-height: auto; }
    .hero-content {
        padding-top: 9rem;
        padding-bottom: 5rem;
    }
    .hero-section h1,
    .page-hero h1 { font-size: 3.1rem; }
    .section-heading-wide,
    .intro-grid { display: block; }
    .section-heading-wide .btn { margin-top: 1rem; }
    .feature-card { margin-bottom: 1rem; }
    .ritual-image { min-height: 420px; }
}

@media (max-width: 575px) {
    .section-padding { padding: 4rem 0; }
    .hero-section h1,
    .page-hero h1 { font-size: 2.55rem; }
    .hero-text { font-size: 1rem; }
    .hero-actions .btn,
    .floating-booking {
        width: 100%;
        text-align: center;
    }
    .floating-booking {
        left: 16px;
        right: 16px;
    }
    .service-image,
    .service-card-large .service-image { height: 220px; }
}

.price-note {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.45rem 0.8rem;
    color: var(--green);
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
}

.price-menu-table td:first-child {
    min-width: 260px;
}

.price-menu-table small {
    color: var(--muted);
    font-weight: 750;
}

.combo-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.6rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.combo-card h4 {
    font-weight: 850;
    margin-bottom: 0.75rem;
}

.combo-card p,
.combo-price span {
    color: var(--muted);
}

.combo-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.combo-price strong {
    color: var(--gold-dark);
    font-size: 1.25rem;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .price-note,
    .combo-price {
        align-items: flex-start;
        flex-direction: column;
        white-space: normal;
    }
}

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

.schedule-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.schedule-date-form {
    display: flex;
    align-items: end;
    gap: 0.75rem;
}

.schedule-date-form .form-control {
    min-width: 180px;
}

.schedule-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-weight: 750;
}

.schedule-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
}

.status-confirmed { background: #2f7d55; }
.status-pending { background: #d79d2b; }
.status-cancelled { background: #8f9892; }

.schedule-board {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.schedule-times {
    background: var(--mist);
    border-right: 1px solid var(--line);
}

.schedule-time-slot {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-soft);
    border-bottom: 1px solid var(--line);
    font-weight: 800;
    font-size: 0.92rem;
}

.schedule-events {
    min-height: 680px;
    padding: 1rem;
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(19, 35, 31, 0.035) 0,
            rgba(19, 35, 31, 0.035) 1px,
            transparent 1px,
            transparent 52px
        ),
        var(--paper);
}

.schedule-event {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr) 150px;
    gap: 1rem;
    align-items: start;
    margin-bottom: 0.85rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-left: 6px solid var(--muted);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.95);
    box-shadow: 0 10px 24px rgba(19, 35, 31, 0.07);
}

.schedule-event-confirmed {
    border-left-color: #2f7d55;
    background: #f3fbf5;
}

.schedule-event-pending {
    border-left-color: #d79d2b;
    background: #fffaf0;
}

.schedule-event-cancelled {
    border-left-color: #8f9892;
    background: #f5f5f3;
    opacity: 0.72;
}

.schedule-event-time {
    color: var(--green);
    font-weight: 900;
    white-space: nowrap;
}

.schedule-event-main {
    display: grid;
    gap: 0.25rem;
}

.schedule-event-main strong {
    line-height: 1.3;
}

.schedule-event-main span,
.schedule-event-meta span {
    color: var(--muted);
}

.schedule-note {
    font-style: italic;
}

.schedule-event-meta {
    display: grid;
    gap: 0.25rem;
    justify-items: end;
    font-weight: 800;
}

.schedule-empty {
    display: grid;
    min-height: 360px;
    place-content: center;
    text-align: center;
    color: var(--muted);
}

.schedule-empty h4 {
    color: var(--ink);
    font-weight: 850;
}

@media (max-width: 991px) {
    .schedule-toolbar,
    .schedule-date-form,
    .schedule-event {
        display: block;
    }

    .schedule-toolbar > *,
    .schedule-date-form > *,
    .schedule-event > * {
        margin-bottom: 0.75rem;
    }

    .schedule-board {
        grid-template-columns: 1fr;
    }

    .schedule-times {
        display: none;
    }

    .schedule-events {
        min-height: 320px;
    }

    .schedule-event-meta {
        justify-items: start;
    }

    .admin-results-bar {
        align-items: flex-start;
        flex-direction: column;
    }
}
.calendar-panel {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.calendar-header h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 900;
    letter-spacing: 0;
}

.month-calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
}

.calendar-weekday {
    padding: 0.35rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 850;
}

.calendar-day {
    min-height: 92px;
    display: grid;
    align-content: start;
    gap: 0.25rem;
    padding: 0.7rem;
    color: var(--ink);
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.calendar-day:hover {
    color: var(--ink);
    border-color: var(--gold);
    box-shadow: 0 10px 24px rgba(19, 35, 31, 0.08);
    transform: translateY(-1px);
}

.calendar-day strong {
    font-size: 1.1rem;
    font-weight: 900;
}

.calendar-day span {
    color: var(--green);
    font-weight: 850;
}

.calendar-day em {
    color: var(--muted);
    font-size: 0.85rem;
    font-style: normal;
}

.calendar-has-bookings {
    background: #fffaf0;
}

.calendar-today:not(.calendar-selected) {
    border-color: var(--gold);
}

.calendar-selected {
    color: #fff;
    background: var(--green);
    border-color: var(--green);
}

.calendar-selected:hover {
    color: #fff;
}

.calendar-selected span,
.calendar-selected em {
    color: rgba(255, 255, 255, 0.84);
}

.calendar-empty {
    background: transparent;
    border-style: dashed;
    box-shadow: none;
    pointer-events: none;
}

@media (max-width: 575px) {
    .calendar-header {
        align-items: stretch;
        flex-direction: column;
    }

    .month-calendar {
        gap: 0.35rem;
    }

    .calendar-weekday {
        font-size: 0.78rem;
    }

    .calendar-day {
        min-height: 70px;
        padding: 0.45rem;
    }

    .calendar-day strong {
        font-size: 1rem;
    }

    .calendar-day span {
        font-size: 0.78rem;
    }

    .calendar-day em {
        display: none;
    }
}

.reference-banner {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #fffaf0;
    border: 1px solid rgba(200, 155, 90, 0.38);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.reference-banner span {
    color: var(--muted);
    font-weight: 800;
}

.reference-banner strong {
    color: var(--green);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.reference-banner p {
    margin: 0;
    color: var(--muted);
}

.status-lookup-form {
    min-height: 100%;
}

.status-lookup-form h3 {
    margin-bottom: 1rem;
    font-weight: 850;
}

.status-results {
    margin-top: 3rem;
}

.status-card {
    display: grid;
    gap: 1rem;
    height: 100%;
    padding: 1.35rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 6px solid var(--muted);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.status-card-pending {
    border-left-color: #d79d2b;
}

.status-card-confirmed {
    border-left-color: #2f7d55;
}

.status-card-cancelled {
    border-left-color: #8f9892;
}

.status-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.status-card-head span {
    color: var(--green);
    font-weight: 900;
}

.status-card-head strong {
    padding: 0.28rem 0.7rem;
    color: white;
    background: var(--green);
    border-radius: 999px;
    font-size: 0.8rem;
}

.status-card h4 {
    margin: 0;
    font-weight: 850;
}

.status-card dl {
    display: grid;
    gap: 0.65rem;
    margin: 0;
}

.status-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid var(--line);
}

.status-card dt {
    color: var(--muted);
    font-weight: 800;
}

.status-card dd {
    margin: 0;
    text-align: right;
    font-weight: 800;
}

.status-card p {
    margin: 0;
    color: var(--muted);
}

.status-empty {
    margin-top: 2rem;
    padding: 2rem;
    text-align: center;
    color: var(--muted);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.status-empty h4 {
    color: var(--ink);
    font-weight: 850;
}

@media (max-width: 575px) {
    .status-card-head,
    .status-card dl div {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .status-card dd {
        text-align: left;
    }
}
.cancel-booking-form {
    display: grid;
    gap: 0.55rem;
    padding-top: 0.25rem;
}

.cancel-booking-form small,
.status-help {
    color: var(--muted);
    font-size: 0.9rem;
}

.status-help {
    padding: 0.75rem;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.auth-card {
    max-width: 520px;
    padding: 2rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.auth-switch {
    margin: 1rem 0 0;
    color: var(--muted);
    text-align: center;
}

.nav-logout-form {
    margin: 0;
}

.nav-logout-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--green-soft);
    font: inherit;
    font-weight: 650;
}

.nav-logout-button:hover {
    color: var(--gold-dark);
}

.booking-history-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 767px) {
    .booking-history-grid {
        grid-template-columns: 1fr;
    }
}

.payment-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.payment-choice {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
}

.payment-choice input {
    margin-top: 0.3rem;
}

.payment-choice span {
    display: grid;
    gap: 0.15rem;
}

.payment-choice small {
    color: var(--muted);
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.58rem;
    border-radius: 999px;
    color: white;
    background: var(--muted);
    font-size: 0.78rem;
    font-weight: 850;
    white-space: nowrap;
}

.payment-paid { background: #2f7d55; }
.payment-pending { background: #d79d2b; }
.payment-failed { background: #a24c3b; }
.payment-unpaid { background: #8f9892; }
.payment-refund-required { background: #7b5aa6; }

.payment-retry-form {
    margin: 0;
}

.payment-result-card {
    max-width: 760px;
    display: grid;
    gap: 1rem;
    padding: 2rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.payment-result-card h3 {
    margin: 0;
    font-weight: 850;
}

.payment-result-card dl {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.payment-result-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--line);
}

.payment-result-card dt {
    color: var(--muted);
}

.payment-result-card dd {
    margin: 0;
    text-align: right;
    font-weight: 800;
}

@media (max-width: 575px) {
    .payment-choice-grid {
        grid-template-columns: 1fr;
    }

    .payment-result-card dl div {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .payment-result-card dd {
        text-align: left;
    }
}
