/* ============================================
   Aiello's On Wall Street — Styles
   Clean minimalist · Midnight blue + Mint
   ============================================ */

/* ---------- 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', system-ui, -apple-system, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: #1a2744;
    background-color: #fafbfc;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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 {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #0a1628;
    color: #5eead4;
    padding: 8px 16px;
    z-index: 200;
    font-size: 14px;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

/* ---------- Noise Overlay ---------- */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    color: #0a1628;
}

em {
    font-style: italic;
    color: #5eead4;
}

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

.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 16px;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
}

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

.section-sub {
    font-size: 1.05rem;
    color: #4a5568;
    max-width: 520px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

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

.btn-light {
    background: #5eead4;
    color: #0a1628;
}

.btn-light:hover {
    background: #3dd4bc;
    transform: translateY(-1px);
}

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

.btn-ghost-light:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.btn-dark {
    background: #0a1628;
    color: #5eead4;
}

.btn-dark:hover {
    background: #132240;
    transform: translateY(-1px);
}

.btn-outline-dark {
    background: transparent;
    color: #0a1628;
    border: 1px solid #0a1628;
}

.btn-outline-dark:hover {
    background: #0a1628;
    color: #5eead4;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.nav.scrolled {
    background: rgba(250, 251, 252, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(10, 22, 40, 0.08);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fff;
    transition: color 0.3s ease;
}

.nav.scrolled .nav-brand {
    color: #0a1628;
}

.nav-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(94, 234, 212, 0.5);
    border-radius: 2px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #5eead4;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.nav.scrolled .nav-brand-mark {
    border-color: #0a1628;
    color: #0a1628;
}

.nav-brand-text {
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #5eead4;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #5eead4;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav.scrolled .nav-links a {
    color: #4a5568;
}

.nav.scrolled .nav-links a:hover {
    color: #0a1628;
}

.nav.scrolled .nav-links a::after {
    background: #0a1628;
}

.nav-cta {
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: #5eead4 !important;
    border: 1px solid rgba(94, 234, 212, 0.4) !important;
    padding: 8px 18px !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: #5eead4 !important;
    color: #0a1628 !important;
}

.nav.scrolled .nav-cta {
    border-color: #0a1628 !important;
    color: #0a1628 !important;
}

.nav.scrolled .nav-cta:hover {
    background: #0a1628 !important;
    color: #5eead4 !important;
}

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

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav.scrolled .nav-toggle-line {
    background: #0a1628;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.visible {
    opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(94, 234, 212, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(94, 234, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(10, 22, 40, 1) 0%, rgba(14, 28, 52, 0.95) 60%, rgba(20, 38, 68, 0.9) 100%);
    z-index: 1;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    z-index: 2;
    pointer-events: none;
}

/* Decorative thin lines */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero::before {
    top: 20%;
    left: 10%;
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(94, 234, 212, 0.2), transparent);
}

.hero::after {
    bottom: 25%;
    right: 12%;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(94, 234, 212, 0.15), transparent);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 780px;
}

.hero-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(94, 234, 212, 0.7);
    margin-bottom: 28px;
}

.hero-headline {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 400;
}

.hero-headline em {
    color: #5eead4;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

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

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-hint span {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(94, 234, 212, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
}

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

.about-text .section-tag {
    margin-bottom: 16px;
}

.about-text h2 {
    margin-bottom: 28px;
}

.about-text p {
    color: #4a5568;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(94, 234, 212, 0.3);
    border-radius: 2px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
    background: #e2e8f0;
}

/* ---------- Menu ---------- */
.menu {
    padding: 120px 0;
    background: #0a1628;
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(94, 234, 212, 0.2), transparent);
}

.menu .section-heading {
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.menu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 36px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.menu-card:hover {
    border-color: rgba(94, 234, 212, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.menu-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(94, 234, 212, 0.25);
    border-radius: 2px;
    margin-bottom: 20px;
    color: #5eead4;
}

.menu-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
}

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

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-list li span:first-child {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.menu-list li span:last-child {
    font-size: 0.8rem;
    color: rgba(94, 234, 212, 0.5);
    font-weight: 300;
    white-space: nowrap;
}

.menu-note {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

/* ---------- Vibe / Gallery ---------- */
.vibe {
    padding: 120px 0;
}

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

.vibe-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

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

.vibe-gallery-item--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.vibe-gallery-item--large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.vibe-gallery-item--wide {
    grid-column: 2 / 3;
}

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

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

/* ---------- Info Strip ---------- */
.info-strip {
    padding: 80px 0;
    background: #f0f4f8;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-block svg {
    color: #5eead4;
    margin-bottom: 4px;
}

.info-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0a1628;
}

.info-value {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.6;
}

.info-value a {
    color: #4a5568;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.info-value a:hover {
    color: #0a1628;
    border-bottom-color: #0a1628;
}

/* ---------- Visit / CTA ---------- */
.visit {
    padding: 120px 0;
}

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

.visit-text .section-tag {
    margin-bottom: 16px;
}

.visit-text h2 {
    margin-bottom: 20px;
}

.visit-text p {
    color: #4a5568;
    margin-bottom: 36px;
    font-size: 1.02rem;
}

.visit-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.map-placeholder {
    background: #f0f4f8;
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: 4px;
    padding: 48px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.map-placeholder svg {
    color: #5eead4;
}

.map-placeholder p {
    font-size: 0.95rem;
    color: #1a2744;
    margin-bottom: 0;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #0a1628;
    border-bottom: 1px solid #0a1628;
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.map-link:hover {
    color: #5eead4;
    border-bottom-color: #5eead4;
}

/* ---------- Footer ---------- */
.footer {
    background: #0a1628;
    padding: 64px 0 40px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fff;
}

.footer-brand .nav-brand-mark {
    border-color: rgba(94, 234, 212, 0.4);
    color: #5eead4;
}

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

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

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

.footer-bottom a {
    color: rgba(94, 234, 212, 0.5);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #5eead4;
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-layout {
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: #0a1628;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 95;
        transform: translateX(100%);
        transition: transform 0.35s ease;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.75) !important;
        font-size: 15px;
    }

    .nav-links a:hover {
        color: #5eead4 !important;
    }

    .nav-links a::after {
        display: none;
    }

    .nav.scrolled .nav-links a {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
    }

    .mobile-overlay {
        display: block;
    }

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

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

    .about-image {
        order: -1;
    }

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

    .about-image::before {
        top: -10px;
        right: -10px;
    }

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

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

    .vibe-gallery-item--large {
        grid-column: 1;
        grid-row: auto;
    }

    .vibe-gallery-item--wide {
        grid-column: 1;
    }

    .vibe-gallery-item img,
    .vibe-gallery-item--large img {
        min-height: 240px;
        height: 240px;
    }

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

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

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

    .footer-desc {
        text-align: left;
    }

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

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

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .about {
        padding: 80px 0;
    }

    .menu {
        padding: 80px 0;
    }

    .menu-card {
        padding: 28px;
    }

    .vibe {
        padding: 80px 0;
    }

    .info-strip {
        padding: 60px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .visit {
        padding: 80px 0;
    }

    .visit-links {
        flex-direction: column;
    }

    .visit-links .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

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