/* ── 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 {
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

/* ── Navbar ── */
#navbar {
    background: transparent;
}

#navbar.scrolled {
    background: rgba(8, 14, 26, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

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

/* ── Mobile Menu ── */
#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-link:hover {
    color: #5eead4;
    transform: translateY(-2px);
}

/* ── Hero ── */
#hero {
    position: relative;
}

.hero-eyebrow {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-headline {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-sub {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-cta {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

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

/* ── Scroll Indicator ── */
.scroll-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 2.5s ease-in-out infinite;
}

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

/* ── Buttons ── */
.btn-primary {
    box-shadow: 0 4px 24px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.4);
    transform: translateY(-1px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

/* ── Divider ── */
.divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(13, 148, 136, 0.2) 20%,
        rgba(13, 148, 136, 0.2) 80%,
        transparent
    );
}

/* ── Menu Section ── */
.menu-label,
.about-label,
.visit-label,
.contact-label {
    font-weight: 400;
}

.menu-title,
.about-title,
.visit-title,
.contact-title {
    font-weight: 400;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.menu-card {
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.menu-card-img {
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

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

.menu-card:hover .menu-card-img img {
    transform: scale(1.04);
}

.menu-card-body {
    padding: 1.75rem 0;
}

.menu-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.menu-card-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: #64748b;
    line-height: 1.7;
}

/* ── About Section ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

.about-img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 2px;
    z-index: -1;
}

.about-content {
    padding-left: 1rem;
}

.about-label {
    font-weight: 400;
}

.about-title {
    font-weight: 400;
}

.about-text {
    font-weight: 300;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
}

.stat-label {
    font-weight: 300;
}

/* ── Visit Section ── */
.visit-label {
    font-weight: 400;
}

.visit-title {
    font-weight: 400;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 1rem;
}

.visit-block-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.visit-block-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: #64748b;
    line-height: 1.8;
}

.visit-map {
    min-height: 380px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ── Contact Section ── */
.contact-label {
    font-weight: 400;
}

.contact-title {
    font-weight: 400;
}

.contact-sub {
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-label {
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 0;
    color: #f1f5f9;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: #2dd4bf;
}

.form-input.error,
.form-textarea.error {
    border-bottom-color: #f87171;
}

/* ── Footer ── */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 300;
    padding: 0.35rem 0;
    transition: color 0.3s ease;
}

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

.footer-contact-item {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 300;
    padding: 0.35rem 0;
    transition: color 0.3s ease;
}

/* ── Scroll Reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        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: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-wrap {
        max-height: 400px;
    }

    .about-content {
        padding-left: 0;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visit-map {
        min-height: 280px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-headline {
        font-size: 2.75rem;
    }

    .hero-headline br {
        display: none;
    }

    .hero-headline::after {
        content: 'without compromise';
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
