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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    line-height: 1.6;
    color: #071452;
    background-color: #ffffff;
}

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

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

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

ul, ol {
    list-style: none;
}

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

.section-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2db376;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    color: #071452;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(7, 20, 82, 0.06);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(7, 20, 82, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo-letter {
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: 28px;
    color: #2db376;
    line-height: 1;
}

.nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: #071452;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #071452;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.nav-menu a:hover {
    opacity: 1;
}

.nav-cta {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #071452 !important;
    opacity: 1 !important;
    padding: 10px 20px;
    border: 1px solid rgba(7, 20, 82, 0.2);
    border-radius: 100px;
    transition: all 0.25s ease !important;
}

.nav-cta:hover {
    background: #071452;
    color: #ffffff !important;
    border-color: #071452;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #071452;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-menu.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.mobile-menu-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 28px;
    letter-spacing: 0.02em;
    color: #071452;
    padding: 20px 0;
    width: 100%;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.mobile-menu-link:hover {
    opacity: 1;
}

.mobile-menu-divider {
    width: 40px;
    height: 1px;
    background: rgba(7, 20, 82, 0.1);
    margin: 8px auto;
}

.mobile-menu-cta {
    font-size: 16px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1 !important;
    color: #2db376 !important;
}

.mobile-menu-email {
    font-size: 14px !important;
    opacity: 0.5 !important;
    margin-top: 4px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #071452;
}

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

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

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4, 11, 46, 0.5) 0%,
        rgba(7, 20, 82, 0.7) 50%,
        rgba(4, 11, 46, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2db376;
    flex-shrink: 0;
}

.hero-headline {
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: clamp(40px, 7vw, 88px);
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    max-width: 800px;
}

.hero-accent {
    font-weight: 300;
    color: #8ee3bc;
}

.hero-sub {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin-bottom: 44px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: #ffffff;
    color: #071452;
}

.btn-primary:hover {
    background: #8ee3bc;
    border-color: #8ee3bc;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.btn-mint {
    background: #2db376;
    color: #ffffff;
}

.btn-mint:hover {
    background: #188f5a;
    transform: translateY(-1px);
}

.btn-outline-mint {
    background: transparent;
    color: #8ee3bc;
    border: 1px solid rgba(142, 227, 188, 0.4);
}

.btn-outline-mint:hover {
    background: rgba(142, 227, 188, 0.1);
    border-color: #8ee3bc;
}

.btn-large {
    padding: 18px 36px;
    font-size: 14px;
}

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    bottom: 48px;
    right: 24px;
    left: 24px;
    z-index: 2;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.stat-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(45, 179, 118, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ee3bc;
}

.stat-card-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.stat-card-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    margin-top: 2px;
}

/* ===== ABOUT ===== */
.about {
    padding: 140px 0;
    background: #ffffff;
}

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

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(45, 179, 118, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.about-content {
    max-width: 480px;
}

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

.about-content p {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(7, 20, 82, 0.65);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: #071452;
}

.about-feature-line {
    flex-shrink: 0;
    width: 24px;
    height: 1px;
    background: #2db376;
}

/* ===== MENU ===== */
.menu {
    padding: 140px 0;
    background: #f7f9fc;
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.menu-header .section-title {
    margin-bottom: 20px;
}

.menu-intro {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(7, 20, 82, 0.55);
}

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

.menu-tab {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(7, 20, 82, 0.45);
    padding: 12px 28px;
    border: 1px solid rgba(7, 20, 82, 0.1);
    border-radius: 100px;
    transition: all 0.25s ease;
}

.menu-tab:hover {
    color: #071452;
    border-color: rgba(7, 20, 82, 0.25);
}

.menu-tab.active {
    background: #071452;
    color: #ffffff;
    border-color: #071452;
}

.menu-panel {
    display: none;
}

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

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

.menu-item {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(7, 20, 82, 0.07);
}

.menu-item-left {
    flex: 1;
    min-width: 0;
}

.menu-item-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #071452;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.menu-item-desc {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(7, 20, 82, 0.5);
}

.menu-item-rule {
    flex: 1;
    height: 1px;
    background: rgba(7, 20, 82, 0.08);
    margin-bottom: 6px;
}

.menu-item-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: rgba(7, 20, 82, 0.35);
    flex-shrink: 0;
    padding-bottom: 2px;
}

.menu-note {
    text-align: center;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: rgba(7, 20, 82, 0.4);
    margin-top: 40px;
    font-style: italic;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 140px 0;
    background: #ffffff;
}

.gallery-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 11, 46, 0);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    background: rgba(4, 11, 46, 0.3);
}

.gallery-item-overlay span {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay span {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item--tall {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item--tall img {
    height: 100%;
    min-height: 500px;
}

.gallery-item:not(.gallery-item--tall) img {
    height: 240px;
}

.gallery-item--wide {
    grid-column: span 6;
}

.gallery-item--wide img {
    height: 240px;
}

/* ===== VISIT ===== */
.visit {
    padding: 140px 0;
    background: #f7f9fc;
}

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

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

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(45, 179, 118, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2db376;
}

.visit-detail-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(7, 20, 82, 0.4);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #071452;
}

.visit-link {
    color: #071452;
    border-bottom: 1px solid rgba(7, 20, 82, 0.15);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.visit-link:hover {
    border-color: #2db376;
    color: #2db376;
}

.visit-map {
    border-radius: 4px;
    overflow: hidden;
    height: 480px;
    background: #e2e8f0;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 120px 0;
    background: #071452;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(45, 179, 118, 0.06);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(45, 179, 118, 0.04);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.cta-headline {
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 44px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    background: #040b2e;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .nav-logo-letter {
    font-size: 36px;
}

.footer-brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.3);
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #8ee3bc;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-link {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: #8ee3bc;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.2);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Default state for reduced motion - content always visible */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .visit-grid {
        gap: 48px;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        flex-direction: column;
        gap: 12px;
        padding: 0 24px 48px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .stat-card {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 100px 24px 40px;
    }

    .hero-headline {
        font-size: clamp(36px, 10vw, 56px);
    }

    .about {
        padding: 80px 0;
    }

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

    .about-image-wrap img {
        height: 360px;
    }

    .about-image-accent {
        display: none;
    }

    .menu {
        padding: 80px 0;
    }

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

    .gallery {
        padding: 80px 0;
    }

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

    .gallery-item--tall {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item--tall img {
        min-height: 240px;
    }

    .gallery-item:not(.gallery-item--tall) img,
    .gallery-item--wide img {
        height: 180px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .visit {
        padding: 80px 0;
    }

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

    .visit-map {
        height: 320px;
    }

    .cta-banner {
        padding: 80px 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

    .menu-tabs {
        gap: 6px;
    }

    .menu-tab {
        padding: 10px 18px;
        font-size: 11px;
    }

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

    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 1;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

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