/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight-900: #06101e;
    --midnight-800: #0a1f35;
    --midnight-700: #0f2d4a;
    --midnight-600: #153d63;
    --midnight-500: #1b4d7c;
    --mint-50: #f4fbf7;
    --mint-100: #e3f5e9;
    --mint-200: #c5e8d1;
    --mint-300: #95d3aa;
    --mint-400: #5fb87d;
    --mint-500: #3a9d5c;
    --cream: #faf9f7;
    --cream-dark: #f0ede8;
    --text-dark: #0a1f35;
    --text-muted: #5a6b7f;
    --text-light: #8a9ab0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', system-ui, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.2;
    font-weight: 500;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SIDE NAVIGATION ===== */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100vh;
    background: var(--midnight-900);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 0;
    z-index: 1000;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-nav.expanded {
    width: 260px;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    margin-bottom: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--mint-300);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-nav.expanded .nav-brand-text {
    opacity: 1;
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--mint-400);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(95, 184, 125, 0.1);
}

.side-nav.expanded .nav-toggle {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--mint-300);
    border-left-color: var(--mint-400);
    background: rgba(95, 184, 125, 0.08);
}

.nav-link span {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-nav.expanded .nav-link span {
    opacity: 1;
}

.nav-footer {
    padding: 0 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-phone:hover {
    color: var(--mint-400);
    background: rgba(95, 184, 125, 0.08);
}

.nav-phone span {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-nav.expanded .nav-phone span {
    opacity: 1;
}

/* Nav overlay for mobile */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 16, 30, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-left: 80px;
    transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 16, 30, 0.88) 0%,
        rgba(10, 31, 53, 0.75) 50%,
        rgba(21, 61, 99, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 0 60px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint-400);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: #fff;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--mint-400);
    color: var(--midnight-900);
    border-color: var(--mint-400);
}

.btn-primary:hover {
    background: var(--mint-300);
    border-color: var(--mint-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(95, 184, 125, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--mint-400);
    color: var(--mint-400);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
}

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

.section-header.center {
    text-align: center;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint-500);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--midnight-800);
    font-weight: 500;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== ABOUT ===== */
.about {
    background: var(--cream);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 16, 30, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 16, 30, 0.15);
    border: 4px solid var(--cream);
}

.about-img-secondary img {
    width: 250px;
    height: 300px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 100px;
    height: 100px;
    background: var(--midnight-800);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--mint-400);
    box-shadow: 0 8px 24px rgba(6, 16, 30, 0.2);
}

.about-badge span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-text .lead {
    font-size: 1.15rem;
    color: var(--midnight-700);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--mint-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--midnight-700);
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ===== DIVIDER ===== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* ===== MENU ===== */
.menu {
    background: linear-gradient(180deg, var(--cream) 0%, var(--mint-50) 100%);
}

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

.menu-tab {
    padding: 10px 28px;
    border: 1.5px solid var(--mint-200);
    border-radius: 50px;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-tab:hover {
    border-color: var(--mint-400);
    color: var(--mint-500);
}

.menu-tab.active {
    background: var(--midnight-800);
    border-color: var(--midnight-800);
    color: var(--mint-300);
}

.menu-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.menu-item:hover {
    border-color: var(--mint-200);
    box-shadow: 0 8px 32px rgba(6, 16, 30, 0.06);
    transform: translateY(-2px);
}

.menu-item-header h3 {
    font-size: 1.3rem;
    color: var(--midnight-800);
    margin-bottom: 6px;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 40px;
    font-style: italic;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--midnight-900);
}

.gallery .section-eyebrow {
    color: var(--mint-400);
}

.gallery .section-title {
    color: #fff;
}

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

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img {
    height: 400px;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img,
.gallery-item:nth-child(5) img,
.gallery-item:nth-child(6) img {
    height: 300px;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 16, 30, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ===== SCHEDULE ===== */
.schedule {
    background: var(--cream);
}

.schedule-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 16, 30, 0.08);
}

.schedule-content {
    padding: 64px;
}

.schedule-content .section-eyebrow {
    margin-bottom: 12px;
}

.schedule-content .section-title {
    margin-bottom: 40px;
}

.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--mint-100);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-day {
    font-weight: 500;
    color: var(--midnight-700);
    font-size: 0.95rem;
}

.schedule-hours {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.schedule-row.today {
    background: var(--mint-50);
    margin: 0 -16px;
    padding: 12px 16px;
    border-radius: 8px;
    border-bottom: none;
}

.schedule-row.today .schedule-day {
    color: var(--mint-500);
    font-weight: 600;
}

.schedule-row.today .schedule-hours {
    color: var(--mint-600);
    font-weight: 600;
}

.schedule-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 20px;
    font-style: italic;
}

.schedule-visual {
    position: relative;
}

.schedule-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.schedule-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #fff 0%, transparent 30%);
}

/* ===== CONTACT ===== */
.contact {
    background: linear-gradient(180deg, var(--mint-50) 0%, var(--cream) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--midnight-800);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint-400);
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.contact-item p {
    color: var(--midnight-700);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-item a {
    color: var(--midnight-600);
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--mint-500);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(6, 16, 30, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1.5px solid var(--mint-200);
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--midnight-800);
    background: var(--mint-50);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mint-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(95, 184, 125, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.form-success.show {
    display: flex;
}

.form-success p {
    color: var(--midnight-700);
    font-size: 1rem;
}

/* Map */
.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 16, 30, 0.08);
}

.map-wrapper iframe {
    filter: saturate(0.7) contrast(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--midnight-900);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--mint-300);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint-400);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--mint-400);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--mint-400);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 60px;
    }

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

    .schedule-visual {
        min-height: 300px;
    }

    .schedule-visual::after {
        background: linear-gradient(to top, #fff 0%, transparent 30%);
    }
}

@media (max-width: 768px) {
    .side-nav {
        width: 100%;
        height: 64px;
        flex-direction: row;
        padding: 0 20px;
        top: 0;
    }

    .side-nav.expanded {
        width: 100%;
    }

    .nav-brand {
        margin-bottom: 0;
        padding: 0;
    }

    .nav-logo {
        margin-right: auto;
    }

    .nav-brand-text {
        opacity: 1;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--midnight-900);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 14px 16px;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link span {
        opacity: 1;
    }

    .nav-footer {
        display: none;
    }

    .main-content {
        margin-left: 0;
        margin-top: 64px;
    }

    .hero-content {
        padding: 0 24px;
    }

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

    .hero-cta .btn {
        text-align: center;
    }

    .hero-scroll-indicator {
        left: 24px;
        bottom: 24px;
    }

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

    .about-img-secondary {
        right: 0;
        bottom: -30px;
    }

    .about-img-secondary img {
        width: 200px;
        height: 250px;
    }

    .about-stats {
        gap: 24px;
    }

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

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

    .gallery-item:nth-child(1) img,
    .gallery-item:nth-child(4) img {
        height: 280px;
    }

    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img,
    .gallery-item:nth-child(5) img,
    .gallery-item:nth-child(6) img {
        height: 200px;
    }

    .schedule-content {
        padding: 40px;
    }

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

    .contact-form-wrapper {
        padding: 28px;
    }

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

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .gallery-item img {
        height: 280px !important;
    }

    .about-img-secondary {
        display: none;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}
