/* ========================================
   Caruso's — Italian Restaurant
   Clean Minimalist · Navy + Gold
   ======================================== */

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

:root {
    --navy: #0A1628;
    --navy-light: #132238;
    --navy-mid: #1A2D47;
    --gold: #C8A656;
    --gold-light: #D4B96E;
    --gold-pale: #F5ECC8;
    --cream: #FAF8F5;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* ── Typography ── */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.2;
}

.em {
    font-style: italic;
    color: var(--gold);
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(200, 166, 86, 0.15);
}

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

.nav-logo {
    display: block;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

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

.nav-cta {
    border: 1px solid rgba(200, 166, 86, 0.5) !important;
    padding: 10px 24px !important;
    color: var(--gold) !important;
    letter-spacing: 0.08em;
    transition: background var(--transition), color var(--transition) !important;
}

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

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* Mobile Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.nav-overlay-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.nav-overlay-link:hover {
    color: var(--gold);
}

.nav-overlay-cta {
    margin-top: 12px;
    border: 1px solid var(--gold);
    padding: 14px 36px;
    color: var(--gold) !important;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background var(--transition), color var(--transition);
}

.nav-overlay-cta:hover {
    background: var(--gold);
    color: var(--navy) !important;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.72) 0%,
        rgba(10, 22, 40, 0.60) 50%,
        rgba(10, 22, 40, 0.82) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 28px;
}

.hero-title .hero-accent {
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

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

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn--large {
    padding: 18px 48px;
    font-size: 0.875rem;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ── Intro ── */
.intro {
    padding: 100px 24px;
    text-align: center;
    background: var(--cream);
}

.intro-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 32px;
}

.intro-text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.intro-text strong {
    color: var(--gold);
    font-weight: 500;
}

/* ── Section Shared ── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}

/* ── Menu ── */
.menu {
    padding: 100px 24px;
    background: var(--white);
}

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

.menu-category {
    padding: 32px;
    border: 1px solid rgba(10, 22, 40, 0.08);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.menu-category:hover {
    border-color: rgba(200, 166, 86, 0.3);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
}

.menu-category-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 16px;
}

.menu-category-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 4px;
}

.menu-category-desc {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.menu-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-items li {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.menu-item-name {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--navy);
    white-space: nowrap;
}

.menu-item-dots {
    flex: 1;
    height: 1px;
    background: rgba(10, 22, 40, 0.12);
}

.menu-item-desc {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-muted);
}

.menu-note {
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--text-light);
}

/* ── About ── */
.about {
    padding: 100px 24px;
    background: var(--cream);
}

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

.about-image-wrap {
    overflow: hidden;
}

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

.about-content {
    padding: 16px 0;
}

.about-content .section-line {
    margin: 0 0 32px;
}

.about-text {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
}

.about-signature-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--navy);
}

/* ── Gallery ── */
.gallery {
    padding: 100px 24px;
    background: var(--white);
}

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

.gallery-item {
    overflow: hidden;
    position: relative;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item:not(.gallery-item--wide) img {
    height: 280px;
}

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

/* ── Visit ── */
.visit {
    padding: 100px 24px;
    background: var(--navy);
}

.visit .section-eyebrow {
    color: var(--gold);
}

.visit .section-title {
    color: var(--white);
}

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

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

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

.visit-detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 166, 86, 0.3);
    color: var(--gold);
}

.visit-detail-label {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.visit-detail-link {
    transition: color var(--transition);
}

.visit-detail-link:hover {
    color: var(--gold);
}

/* Map placeholder */
.visit-map {
    position: relative;
}

.map-placeholder {
    background: var(--navy-light);
    border: 1px solid rgba(200, 166, 86, 0.15);
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.map-placeholder-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

.map-placeholder-link {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200, 166, 86, 0.4);
    padding: 12px 28px;
    transition: background var(--transition), color var(--transition);
}

.map-placeholder-link:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ── Footer ── */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(200, 166, 86, 0.12);
    padding: 64px 24px 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
}

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

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

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

.footer-contact p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.footer-phone {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--gold);
    transition: color var(--transition);
}

.footer-phone:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

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

    .gallery-item:not(.gallery-item--wide) img {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 100px 20px 80px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .intro {
        padding: 64px 20px;
    }

    .menu {
        padding: 64px 20px;
    }

    .menu-category {
        padding: 24px;
    }

    .about {
        padding: 64px 20px;
    }

    .gallery {
        padding: 64px 20px;
    }

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

    .gallery-item--wide {
        grid-column: auto;
    }

    .visit {
        padding: 64px 20px;
    }

    .map-placeholder {
        min-height: 300px;
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
