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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.06);
    --shadow-lg: 0 4px 24px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
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 ── */
.section-tag {
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 8px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--slate-500);
    max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background .2s, color .2s, transform .15s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-teal {
    background: var(--teal-600);
    color: #fff;
    border-color: var(--teal-600);
}
.btn-teal:hover { background: var(--teal-700); border-color: var(--teal-700); }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-sm { padding: 10px 20px; font-size: .8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, .85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .3s;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
}
.logo-icon { flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--slate-300);
    transition: color .2s;
}
.nav-links a:hover { color: #fff; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 8px;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2,6,23,.82) 0%, rgba(15,41,59,.70) 50%, rgba(13,148,136,.35) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 72px;
    max-width: 720px;
}
.hero-tag {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal-100);
    margin-bottom: 16px;
}
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -.01em;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--slate-300);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.5);
    animation: float 2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Features ── */
.features { padding: 96px 0; background: var(--slate-50); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--slate-100);
    transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--teal-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}
.feature-card p { font-size: .95rem; color: var(--slate-500); line-height: 1.65; }

/* ── Menu ── */
.menu { padding: 96px 0; background: #fff; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.menu-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--slate-100);
    transition: transform .25s, box-shadow .25s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.menu-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.menu-card-body {
    padding: 24px;
    background: #fff;
}
.menu-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.menu-card-body p { font-size: .9rem; color: var(--slate-500); line-height: 1.6; }

/* ── About ── */
.about { padding: 96px 0; background: var(--slate-900); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image { border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; height: 500px; object-fit: cover; }
.about-content .section-title { color: #fff; }
.about-content p { color: var(--slate-400); margin-bottom: 16px; line-height: 1.7; }
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-700);
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-500);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label { font-size: .85rem; color: var(--slate-400); }

/* ── CTA / Location ── */
.cta { padding: 96px 0; background: var(--slate-50); }
.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-text {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cta-text .section-title { margin-bottom: 16px; }
.cta-text > p { color: var(--slate-500); margin-bottom: 28px; font-size: 1.05rem; }
.cta-map { min-height: 400px; }
.cta-map iframe { width: 100%; height: 100%; min-height: 400px; }

/* ── Contact ── */
.contact { padding: 96px 0; background: #fff; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { color: var(--slate-500); margin-bottom: 32px; line-height: 1.7; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-details li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--slate-700);
}
.contact-details a { color: var(--teal-600); font-weight: 600; transition: color .2s; }
.contact-details a:hover { color: var(--teal-700); }

/* ── Form ── */
.contact-form {
    background: var(--slate-50);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--slate-100);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--slate-800);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }
.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-sm);
    color: var(--teal-700);
    font-size: .9rem;
    font-weight: 500;
}

/* ── Footer ── */
.footer { background: var(--slate-950); padding: 64px 0 32px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; }
.footer-brand p { color: var(--slate-500); font-size: .9rem; margin-top: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.footer-links a { font-size: .9rem; color: var(--slate-400); transition: color .2s; }
.footer-links a:hover { color: var(--teal-500); }
.footer-copy { font-size: .8rem; color: var(--slate-600); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .cta-card { grid-template-columns: 1fr; }
    .cta-map { min-height: 300px; }
    .cta-map iframe { min-height: 300px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, .97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        opacity: 0;
        transition: transform .3s ease, opacity .3s ease;
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .features-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 350px; }
    .about-stats { gap: 24px; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-text { padding: 40px 28px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .features, .menu, .about, .cta, .contact { padding: 64px 0; }
    .contact-form { padding: 24px; }
}
