:root {
    --ms-bg: #ffffff;
    --ms-bg-alt: #f5f3ef;
    --ms-ink: #1a1a1a;
    --ms-ink-soft: #4a4a4a;
    --ms-accent: #c2410c;
    --ms-accent-dark: #9a3412;
    --ms-border: #e5e0d8;
    --ms-radius: 8px;
    --ms-max-width: 1100px;
    --ms-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html {
    font-family: var(--ms-font);
    color: var(--ms-ink);
    background: var(--ms-bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body { margin: 0; }

.container {
    max-width: var(--ms-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

a { color: var(--ms-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.2; margin: 0; color: var(--ms-ink); }
h1 { font-size: 2.6rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
p { color: var(--ms-ink-soft); margin: 0.75rem 0; }

/* Header / Nav */
.shop-header {
    border-bottom: 1px solid var(--ms-border);
    background: var(--ms-bg);
    position: sticky;
    top: 0;
    z-index: 10;
}

.shop-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.shop-brand {
    color: var(--ms-ink);
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}

.shop-brand-icon { color: var(--ms-accent); font-size: 1.3rem; }

.shop-nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.shop-nav-links a {
    font-size: 0.95rem;
}

.shop-nav-links a:hover { text-decoration: none; }

.btn-book {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border-radius: var(--ms-radius);
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--ms-accent);
    color: #fff;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.01em;
}

.btn-book:hover {
    background: var(--ms-accent-dark);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-book-large { padding: 0.85rem 1.5rem; font-size: 1rem; }

.btn-secondary {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border-radius: var(--ms-radius);
    font-weight: 600;
    font-size: 0.95rem;
    background: transparent;
    color: var(--ms-ink);
    border: 1px solid var(--ms-border);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.btn-secondary:hover { background: var(--ms-bg-alt); border-color: var(--ms-ink-soft); text-decoration: none; }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--ms-ink);
}

/* Hero */
.shop-hero {
    padding: 4.5rem 0 3.5rem;
    background: var(--ms-bg-alt);
}

.shop-hero h1 { max-width: 720px; }

.shop-lead {
    font-size: 1.1rem;
    max-width: 620px;
    margin-top: 1.25rem;
}

.shop-cta-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

/* Sections */
.shop-section { padding: 3.5rem 0; }
.shop-section-alt { background: var(--ms-bg-alt); }

/* Grid */
.shop-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 800px) {
    .shop-grid, .shop-grid-2 { grid-template-columns: 1fr; }
}

/* Cards and features */
.shop-card {
    background: var(--ms-bg);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 1.35rem;
}

.shop-feature { padding: 0.5rem 0; }

/* Hours */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 800px;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.45rem 0; color: var(--ms-ink-soft); }
.hours-table td:first-child { font-weight: 500; color: var(--ms-ink); width: 55%; }

.hours-note { font-size: 0.9rem; color: var(--ms-ink-soft); margin-top: 0.75rem; }

.hours-cta { background: var(--ms-bg); border: 1px solid var(--ms-border); border-radius: var(--ms-radius); padding: 1.5rem; }

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.location-info address {
    font-style: normal;
    color: var(--ms-ink-soft);
    line-height: 1.6;
}

.location-note { font-size: 0.95rem; color: var(--ms-ink-soft); max-width: 380px; }

.map-placeholder {
    background: var(--ms-bg);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-fallback { text-align: center; color: var(--ms-ink-soft); }
.map-fallback span { display: block; font-weight: 600; font-size: 1.1rem; color: var(--ms-ink); margin-bottom: 0.25rem; }

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

.contact-block h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ms-ink-soft); margin-bottom: 0.35rem; }

/* Footer */
.shop-footer {
    border-top: 1px solid var(--ms-border);
    background: #1a1a1a;
    color: #b0aba4;
    padding: 2.5rem 0 1.5rem;
}

.shop-footer a { color: #e5e0d8; }
.shop-footer a:hover { color: #fff; }

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.footer-tagline { margin: 0.25rem 0 0; font-size: 0.9rem; color: #b0aba4; }

.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.9rem; color: #b0aba4; }
.footer-links a:hover { color: #fff; text-decoration: none; }

.demo-disclaimer {
    border-top: 1px solid #3a3a3a;
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.demo-disclaimer p {
    color: #b0aba4;
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0;
}

.demo-disclaimer a { color: #e5e0d8; }

.footer-copy {
    font-size: 0.8rem;
    color: #6b6862;
    margin: 0;
}

/* Main content fade + de-saturate overlays */
main {
    position: relative;
}

main::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(
            to bottom,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.80) 20%,
            rgba(255,255,255,0.80) 100%
    );
    pointer-events: none;
    z-index: 5;
}

/* De-saturate sections, header, hero, and footer using backdrop-filter overlays.
   Buttons and modal are elevated above these overlays so they stay colourful. */
.shop-header,
.shop-hero,
.shop-section,
.shop-footer {
    position: relative;
}

.shop-header::before,
.shop-hero::before,
.shop-section::before,
.shop-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: grayscale(0.85);
    -webkit-backdrop-filter: grayscale(0.85);
    pointer-events: none;
    z-index: 4;
}

/* Buttons and modal stay colourful by painting above all overlays */
.btn-book {
    position: relative;
    z-index: 101;
}

.booking-modal { position: fixed; inset: 0; z-index: 102; }
.booking-modal[hidden] { display: none; }

.booking-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.booking-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--ms-bg);
    border-radius: var(--ms-radius);
    width: min(920px, 94vw);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.booking-close {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--ms-ink-soft);
    cursor: pointer;
    z-index: 2;
}

.booking-close:hover { color: var(--ms-ink); }

.booking-header {
    padding: 1.25rem 1.5rem 0.5rem;
    border-bottom: 1px solid var(--ms-border);
    flex-shrink: 0;
}

.booking-header h2 { margin-bottom: 0.25rem; font-size: 1.3rem; }
.booking-header p { margin: 0; font-size: 0.9rem; color: var(--ms-ink-soft); }

.booking-frame-wrap {
    padding: 0.5rem 1rem 1rem;
    overflow-y: auto;
    flex: 1 1 auto;
}

.booking-frame-wrap iframe {
    width: 100%;
    height: 640px;
    border: 0;
    display: block;
}

/* Responsive */
@media (max-width: 800px) {
    .hours-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .shop-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ms-bg);
        border-bottom: 1px solid var(--ms-border);
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 1.5rem;
        gap: 0.75rem;
    }
    .shop-nav-links.show { display: flex; }
    .mobile-menu-toggle { display: block; }

    .shop-hero { padding: 3rem 0 2.5rem; }
    .shop-hero h1 { font-size: 1.9rem; }
    .shop-lead { font-size: 1rem; }
    .shop-section { padding: 2.5rem 0; }
    h2 { font-size: 1.5rem; }

    .booking-dialog {
        width: 98vw;
        max-height: 96vh;
        top: 2vh;
        left: 1vw;
        transform: none;
    }
    .booking-frame-wrap iframe { height: 520px; }
}
