/* ============================================
   MUMDEE'S — CSS
   Midnight Blue + Mint | Clean Minimalist
   ============================================ */

/* — Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: #1a2a3a;
    background-color: #FAFBFA;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #0A1628;
    color: #34D399;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 9999;
    font-size: 14px;
}

.skip-link:focus {
    top: 16px;
}

/* — Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    color: #0A1628;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #0A1628; }

em {
    font-style: italic;
    color: #0F5E4B;
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #34D399;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 32px;
}

/* — Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #0A1628;
    color: #FAFBFA;
    border: 1px solid #0A1628;
}

.btn--primary:hover {
    background: #0F5E4B;
    border-color: #0F5E4B;
}

.btn--ghost {
    background: transparent;
    color: #0A1628;
    border: 1px solid rgba(10, 22, 40, 0.3);
}

.btn--ghost:hover {
    border-color: #0A1628;
}

.btn--sm {
    padding: 10px 22px;
    font-size: 11px;
}

.btn--full {
    width: 100%;
}

/* — Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 251, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(10, 22, 40, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* — Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: #0A1628;
    letter-spacing: -0.01em;
}

.logo-icon {
    color: #34D399;
    flex-shrink: 0;
}

.logo--light { color: #FAFBFA; }
.logo--light .logo-icon { color: #34D399; }

/* — Nav */
.nav-list {
    display: flex;
    gap: 36px;
}

.nav-list a {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a2a3a;
    position: relative;
    padding: 4px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #34D399;
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a:focus::after {
    width: 100%;
}

/* — Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 1px;
    background: #0A1628;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    transform: translateY(-6px) rotate(-45deg);
}

/* — Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 251, 250, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    text-align: center;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.mobile-nav-list a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #0A1628;
    transition: color 0.2s ease;
}

.mobile-nav-list a:hover {
    color: #34D399;
}

.mobile-menu-contact {
    font-size: 13px;
    color: #5a6b7a;
    line-height: 2;
}

.mobile-menu-contact a {
    color: #0F5E4B;
    transition: color 0.2s ease;
}

.mobile-menu-contact a:hover {
    color: #34D399;
}

/* — Hero */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #FAFBFA;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 48px;
    flex: 1;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #34D399;
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 28px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-size: 0.85em;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5b6a;
    max-width: 440px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img-wrap {
    overflow: hidden;
    border-radius: 2px;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-img-wrap:hover img {
    transform: scale(1.02);
}

.hero-accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #0A1628;
    color: #FAFBFA;
    padding: 20px 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 2px;
}

.hero-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 22, 40, 0.12), transparent);
    flex-shrink: 0;
}

/* — About */
.about {
    padding: 120px 0;
    background: #FAFBFA;
}

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

.about-text p {
    color: #4a5b6a;
    margin-bottom: 20px;
    font-size: 15px;
}

.about-image {
    overflow: hidden;
    border-radius: 2px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* — Menu */
.menu {
    padding: 120px 0;
    background: #0A1628;
    color: #FAFBFA;
}

.menu .section-eyebrow {
    color: #34D399;
}

.menu-header {
    text-align: center;
    margin-bottom: 56px;
}

.menu-header .section-title {
    color: #FAFBFA;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.menu-tab {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 251, 250, 0.5);
    padding: 10px 24px;
    border: 1px solid rgba(250, 251, 250, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-tab:hover {
    color: #FAFBFA;
    border-color: rgba(250, 251, 250, 0.4);
}

.menu-tab.active {
    background: #34D399;
    color: #0A1628;
    border-color: #34D399;
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-col-title {
    color: #34D399;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(52, 211, 153, 0.2);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #FAFBFA;
}

.menu-item-desc {
    font-size: 13px;
    color: rgba(250, 251, 250, 0.45);
    font-weight: 300;
}

.menu-note {
    text-align: center;
    font-size: 12px;
    color: rgba(250, 251, 250, 0.3);
    margin-top: 56px;
    letter-spacing: 0.04em;
}

/* — Space */
.space {
    padding: 120px 0;
    background: #FAFBFA;
}

.space-header {
    text-align: center;
    margin-bottom: 64px;
}

.space-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

.space-gallery-item {
    overflow: hidden;
    border-radius: 2px;
}

.space-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    aspect-ratio: 4/3;
}

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

.space-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.space-feature {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.space-feature svg {
    color: #34D399;
}

.space-feature h4 {
    margin-bottom: 4px;
}

.space-feature p {
    font-size: 14px;
    color: #5a6b7a;
    line-height: 1.7;
}

/* — Visit */
.visit {
    padding: 120px 0;
    background: #F0F4F1;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit-info .section-title {
    margin-bottom: 40px;
}

.visit-details {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 2;
    color: #4a5b6a;
}

.visit-details strong {
    color: #0A1628;
    font-weight: 500;
}

.visit-details a {
    color: #0F5E4B;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.visit-details a:hover {
    color: #34D399;
    border-bottom-color: #34D399;
}

.visit-hours h4 {
    margin-bottom: 16px;
}

.visit-hours ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.visit-hours li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 14px;
    color: #4a5b6a;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.visit-hours li span:first-child {
    font-weight: 400;
    color: #1a2a3a;
}

/* — Contact Form */
.visit-form-wrap {
    background: #FAFBFA;
    padding: 48px;
    border-radius: 4px;
    border: 1px solid rgba(10, 22, 40, 0.06);
}

.visit-form-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.form-intro {
    font-size: 14px;
    color: #5a6b7a;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a2a3a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #1a2a3a;
    background: #FFFFFF;
    border: 1px solid rgba(10, 22, 40, 0.15);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa8b4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #34D399;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: #0F5E4B;
}

.form-success svg {
    flex-shrink: 0;
}

/* — Footer */
.site-footer {
    background: #0A1628;
    color: #FAFBFA;
    padding: 56px 0 40px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(250, 251, 250, 0.4);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 251, 250, 0.5);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #34D399;
}

.footer-copy {
    font-size: 12px;
    color: rgba(250, 251, 250, 0.3);
    line-height: 1.8;
}

/* — Scroll Reveal (progressive enhancement) */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* — Responsive */
@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        max-width: 500px;
    }

    .hero-accent {
        bottom: -16px;
        left: auto;
        right: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .space-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .space-gallery-item:last-child {
        grid-column: span 2;
    }

    .space-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .nav-list,
    .header-inner .btn {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 40px;
    }

    .hero-grid {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .about,
    .menu,
    .space,
    .visit {
        padding: 80px 0;
    }

    .space-gallery {
        grid-template-columns: 1fr;
    }

    .space-gallery-item:last-child {
        grid-column: auto;
    }

    .menu-tabs {
        gap: 8px;
    }

    .menu-tab {
        padding: 8px 16px;
        font-size: 11px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .visit-form-wrap {
        padding: 32px 24px;
    }

    .footer-inner {
        gap: 24px;
    }
}
