:root {
    --bg: #0a0500;
    --surface: rgba(255, 240, 200, 0.08);
    --surface-strong: rgba(255, 240, 200, 0.12);
    --ink: #f8f3e8;
    --muted: #d4c8a0;
    --accent: #f5d442;
    --accent-deep: #d4a017;
    --danger: #e05252;
    --success: #4caf7d;
    --border: rgba(245, 212, 66, 0.20);
    --shadow: 0 25px 60px rgba(0, 0, 0, 0.60);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(245, 212, 66, 0.15), transparent 30%),
        radial-gradient(circle at right center, rgba(212, 160, 23, 0.12), transparent 28%),
        linear-gradient(135deg, var(--bg), #1a1105);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 5vw;
}

.brand {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.site-nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.nav-link {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bg);
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.landing-page {
    overflow-x: hidden;
}

.hero-layout,
.page-shell {
    width: min(1120px, calc(100% - 3rem));
    margin: 0 auto 3rem;
}

.hero-layout,
.page-shell {
    flex: 1;
}

.hero-layout {
    min-height: calc(100vh - 90px);
    display: grid;
    place-items: center;
}

.hero-card,
.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero-card {
    display: grid;
    gap: 1.25rem;
    width: min(640px, 100%);
    padding: 1.25rem;
}

.hero-image, .style-option img, .style-item img {
    width: 100%;
    border-radius: 22px;
    display: block;
    object-fit: cover;
    background: #0a0500;
}

.hero-copy {
    padding: 0.25rem 0.5rem 0.75rem;
    text-align: center;
}

.hero-copy h1,
.page-intro h1,
.panel h2 {
    margin: 0;
    font-family: Georgia, serif;
}

.hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.eyebrow {
    margin: 0 0 0.5rem;
    color: var(--accent-deep);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
}

.page-intro {
    margin: 2rem 0 1.5rem;
}

.page-intro h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.6rem;
}

.page-intro p {
    max-width: 62ch;
    color: var(--muted);
    font-size: 1.02rem;
}

.booking-grid,
.about-grid {
    display: grid;
    gap: 1.5rem;
}

.booking-grid {
    grid-template-columns: 1.2fr 0.8fr;
}

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

.panel {
    padding: 1.4rem;
}

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

.status-line,
.booking-message,
.panel p {
    color: var(--muted);
    line-height: 1.6;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.slot-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1rem;
    background: var(--surface-strong);
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.slot-card:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(245, 212, 66, 0.52);
    background: linear-gradient(135deg, rgba(245, 212, 66, 0.20), rgba(212, 160, 23, 0.15));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.slot-card:hover:not(:disabled) .slot-time,
.slot-card:hover:not(:disabled) .slot-meta {
    color: var(--ink);
}

.slot-card.selected {
    border-color: var(--accent);
    background: rgba(245, 212, 66, 0.25);
}

.slot-card.unavailable {
    cursor: not-allowed;
    background: rgba(248, 243, 232, 0.10);
    color: var(--ink);
    opacity: 0.6;
}

.slot-time {
    display: block;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--ink);
}

.slot-meta {
    font-size: 0.9rem;
}

.slot-price {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-1, #d4a017);
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 20px;
    padding: 0.15rem 0.6rem;
    letter-spacing: 0.02em;
}

.slot-card.unavailable .slot-price {
    opacity: 0.5;
}

.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-top: 0.25rem;
}

.price-summary span:first-child {
    font-weight: 600;
    color: var(--ink-dim, #aaa);
    font-size: 0.95rem;
}

.price-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-1, #d4a017);
}

.price-amount small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ink-dim, #aaa);
    margin-left: 0.25rem;
}

.booking-form {
    display: grid;
    gap: 0.8rem;
}

.booking-form label {
    font-weight: 700;
}

.booking-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(248, 243, 232, 0.15);
    color: var(--ink);
    font: inherit;
}

.booking-form select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(248, 243, 232, 0.15);
    color: #333333;
    font: inherit;
}

.booking-form select option {
    color: #333333;
    background: rgba(248, 243, 232, 0.25);
}

.style-picker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.style-option {
    display: grid;
    gap: 0.45rem;
    padding: 0.55rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface-strong);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.style-option:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.style-option.active {
    border-color: var(--accent);
    background: rgba(245, 212, 66, 0.25);
    box-shadow: 0 10px 24px rgba(245, 212, 66, 0.3);
}

.style-option img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    background: var(--surface);
}

.style-option span {
    font-weight: 700;
    color: var(--ink);
}

.primary-button,
.ghost-button {
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    border: 0;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.primary-button, .ghost-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #0a0500;
    border: 1px solid var(--border);
}

.primary-button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.ghost-button {
    background: rgba(212, 160, 23, 0.14);
    color: var(--accent-deep);
}

.booking-message.success {
    color: var(--success);
}

.booking-message.error {
    color: var(--danger);
}

.text-link {
    color: var(--accent-deep);
    font-weight: 700;
}

.map-frame {
    margin-top: 1rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-frame iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
}

.map-placeholder {
    min-height: 320px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(245, 212, 66, 0.06);
}

.map-placeholder p {
    margin: 0;
}

.map-placeholder p:first-child {
    color: var(--ink);
    font-weight: 700;
    font-size: 1.1rem;
}

.site-footer {
    margin-top: auto;
    padding: 1.25rem 5vw 1.75rem;
    border-top: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
}

.site-footer p:first-child {
    color: var(--ink);
    font-weight: 700;
}

.booking-services {
    grid-column: 1 / -1;
}

.style-list, .style-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.style-item {
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 18px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
}

.style-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 0.3rem;
}

.style-item span {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.94rem;
}

@media (max-width: 820px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-layout,
    .page-shell {
        width: min(100% - 1.4rem, 1120px);
    }

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

@media (max-width: 560px) {
    .style-picker {
        grid-template-columns: 1fr;
    }
}