/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #0f1c3f;
    background: #f0faf5;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ========== BACKGROUND PATTERN ========== */
.bg-pattern {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0,180,160,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(15,28,63,0.05) 0%, transparent 50%);
}

/* ========== SKIP LINK ========== */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #0f1c3f; color: #fff; padding: .5rem 1rem;
    border-radius: 0 0 .5rem .5rem; z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }
.section-label {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: #00b4a0; background: rgba(0,180,160,0.1);
    padding: .35rem .85rem; border-radius: 100px; margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0f1c3f; margin-bottom: 1rem;
}
.section-sub { font-size: 1.1rem; color: #4a5568; max-width: 560px; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: 'Space Grotesk', sans-serif; font-weight: 700;
    font-size: .9rem; padding: .8rem 1.75rem; border-radius: 100px;
    border: 2px solid transparent; cursor: pointer;
    transition: all .25s ease; white-space: nowrap;
}
.btn--primary {
    background: #00b4a0; color: #fff; border-color: #00b4a0;
}
.btn--primary:hover { background: #009d8b; border-color: #009d8b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,180,160,0.3); }
.btn--ghost {
    background: transparent; color: #0f1c3f; border-color: #0f1c3f;
}
.btn--ghost:hover { background: #0f1c3f; color: #fff; transform: translateY(-2px); }
.btn--outline {
    background: transparent; color: #fff; border-color: #fff;
}
.btn--outline:hover { background: #fff; color: #0f1c3f; transform: translateY(-2px); }
.btn--small { padding: .55rem 1.25rem; font-size: .8rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ========== HEADER ========== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(240,250,245,0.9); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15,28,63,0.08);
    transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(15,28,63,0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: .6rem; }
.logo-mark {
    font-family: 'DM Serif Display', serif; font-size: 1.75rem;
    color: #00b4a0; background: #0f1c3f; padding: .15rem .5rem;
    border-radius: 6px; line-height: 1;
}
.logo-wordmark {
    font-family: 'Space Grotesk', sans-serif; font-size: .85rem;
    font-weight: 700; color: #0f1c3f; letter-spacing: .02em;
}
.main-nav ul { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
    font-family: 'Space Grotesk', sans-serif; font-size: .85rem;
    font-weight: 500; color: #0f1c3f; padding: .5rem 1rem;
    border-radius: 100px; transition: all .2s ease;
}
.main-nav a:hover { background: rgba(0,180,160,0.1); color: #00b4a0; }

/* Mobile nav toggle */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 44px; height: 44px; position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 24px; height: 2px; background: #0f1c3f;
    border-radius: 2px; transition: all .3s ease;
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -7px; left: 0; }
.hamburger::after { content: ''; position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(240,250,245,0.98); backdrop-filter: blur(12px);
        padding: 1.5rem; border-bottom: 1px solid rgba(15,28,63,0.08);
        transform: translateY(-120%); opacity: 0;
        transition: all .35s ease; pointer-events: none;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .main-nav ul { flex-direction: column; gap: .25rem; }
    .main-nav a { padding: .75rem 1rem; width: 100%; }
}

/* ========== HERO ========== */
.hero {
    padding-top: 72px; min-height: 100vh;
    background: #0f1c3f; position: relative; overflow: hidden;
    display: flex; align-items: center;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,180,160,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(0,180,160,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
    padding: 4rem 0; position: relative; z-index: 1;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: 'Space Grotesk', sans-serif; font-size: .8rem;
    font-weight: 600; color: #00b4a0; letter-spacing: .08em;
    margin-bottom: 1.5rem;
}
.hero-tag-dot { width: 8px; height: 8px; background: #00b4a0; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: #fff; line-height: 1.05; margin-bottom: 1.5rem;
}
.accent-underline {
    position: relative; color: #00b4a0;
}
.accent-underline::after {
    content: ''; position: absolute; bottom: .05em; left: 0; right: 0;
    height: .15em; background: rgba(0,180,160,0.3); border-radius: 2px;
}
.hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,0.7);
    max-width: 480px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    font-family: 'Space Grotesk', sans-serif; font-size: .8rem;
    font-weight: 500; color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    padding: .4rem .85rem; border-radius: 100px;
}
.hero-badge svg { color: #00b4a0; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-stack { position: relative; }
.hero-img { border-radius: 20px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.4); }
.hero-img--main { width: 100%; }
.hero-img--main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--accent {
    position: absolute; bottom: -2rem; left: -3rem;
    width: 55%; border-radius: 16px; overflow: hidden;
    border: 4px solid #0f1c3f; box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.hero-img--accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-shape { position: absolute; }
.hero-shape--circle {
    width: 180px; height: 180px; border-radius: 50%;
    background: #00b4a0; top: -2rem; right: -2rem;
    opacity: .15;
}
.hero-shape--rect {
    width: 100px; height: 100px;
    background: #f6ad55; top: 30%; right: -4rem;
    border-radius: 20px; opacity: .2;
    transform: rotate(15deg);
}
.hero-stamp {
    position: absolute; top: 1.5rem; right: -1rem;
    background: #f6ad55; color: #0f1c3f;
    padding: .75rem 1rem; border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    transform: rotate(6deg); box-shadow: 0 8px 24px rgba(246,173,85,0.4);
    z-index: 2;
}
.hero-stamp span { font-size: .7rem; font-weight: 500; display: block; }
.hero-stamp strong { font-size: 1.1rem; }
.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0;
    color: #f0faf5; height: 80px;
}
.hero-wave svg { width: 100%; height: 100%; }

@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-visual { max-width: 500px; margin: 2rem auto 0; }
    .hero-img--accent { left: -1rem; bottom: -1.5rem; }
    .hero-shape--rect { right: -2rem; }
}
@media (max-width: 480px) {
    .hero-img--accent { width: 65%; left: -0.5rem; bottom: -1rem; }
    .hero-shape--circle { width: 120px; height: 120px; }
    .hero-shape--rect { width: 70px; height: 70px; right: -1.5rem; }
}

/* ========== HIGHLIGHTS ========== */
.highlights { padding: 5rem 0; }
.highlights-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.highlight-card {
    padding: 2rem 1.5rem; border-radius: 20px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.highlight-card:hover { transform: translateY(-4px); }
.highlight-card--mint { background: #00b4a0; color: #fff; }
.highlight-card--blue { background: #0f1c3f; color: #fff; }
.highlight-card--accent { background: #f6ad55; color: #0f1c3f; }
.highlight-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(255,255,255,0.2); display: flex;
    align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.highlight-card--accent .highlight-icon { background: rgba(15,28,63,0.15); }
.highlight-card h3 {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem;
    font-weight: 700; margin-bottom: .5rem;
}
.highlight-card p { font-size: .9rem; opacity: .85; line-height: 1.6; }
@media (max-width: 900px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .highlights-grid { grid-template-columns: 1fr; } }

/* ========== MENU ========== */
.menu { padding: 5rem 0; background: #0f1c3f; color: #fff; position: relative; overflow: hidden; }
.menu::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 90% 20%, rgba(0,180,160,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.menu-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.menu-header .section-label { background: rgba(0,180,160,0.2); }
.menu-header .section-title { color: #fff; }
.menu-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }
.menu-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
    position: relative; z-index: 1;
}
.menu-card {
    border-radius: 20px; overflow: hidden;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.menu-card-accent { height: 6px; }
.menu-card--breakfast .menu-card-accent { background: #00b4a0; }
.menu-card--lunch .menu-card-accent { background: #f6ad55; }
.menu-card--dinner .menu-card-accent { background: #fc8181; }
.menu-card--drinks .menu-card-accent { background: #b794f4; }
.menu-card-body { padding: 2rem; }
.menu-card-label {
    font-family: 'Space Grotesk', sans-serif; font-size: .7rem;
    font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
    color: #00b4a0; margin-bottom: .5rem;
}
.menu-card h3 {
    font-size: 1.5rem; color: #fff; margin-bottom: .75rem;
}
.menu-card > .menu-card-body > p {
    font-size: .95rem; color: rgba(255,255,255,0.65);
    line-height: 1.7; margin-bottom: 1.25rem;
}
.menu-list { display: flex; flex-direction: column; gap: .5rem; }
.menu-list li {
    display: flex; align-items: center; gap: .6rem;
    font-size: .9rem; color: rgba(255,255,255,0.8);
}
.menu-list li::before {
    content: ''; width: 6px; height: 6px;
    background: #00b4a0; border-radius: 50%; flex-shrink: 0;
}
@media (max-width: 768px) { .menu-grid { grid-template-columns: 1fr; } }

/* ========== ABOUT ========== */
.about { padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; }
.about-img-main {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 25px 60px rgba(15,28,63,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute; bottom: -2rem; right: -2rem;
    width: 55%; border-radius: 16px; overflow: hidden;
    border: 4px solid #f0faf5; box-shadow: 0 15px 40px rgba(15,28,63,0.12);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-deco {
    position: absolute; top: -1.5rem; left: -1.5rem;
    width: 120px; height: 120px; background: #00b4a0;
    border-radius: 20px; opacity: .15; z-index: -1;
}
.about-copy .section-title { margin-top: .5rem; }
.about-copy > p {
    font-size: 1.05rem; color: #4a5568; line-height: 1.8;
    margin-bottom: 1rem;
}
.about-stats {
    display: flex; gap: 2.5rem; margin-top: 2.5rem;
    padding-top: 2rem; border-top: 1px solid rgba(15,28,63,0.1);
}
.stat strong {
    display: block; font-family: 'DM Serif Display', serif;
    font-size: 1.5rem; color: #0f1c3f;
}
.stat span { font-size: .85rem; color: #718096; }
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 500px; }
}

/* ========== GALLERY ========== */
.gallery { padding: 5rem 0; background: #0f1c3f; overflow: hidden; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-header .section-title { color: #fff; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1rem;
}
.gallery-item {
    border-radius: 16px; overflow: hidden;
    transition: transform .3s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item--wide { grid-column: span 7; }
.gallery-item--tall { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item, .gallery-item--wide, .gallery-item--tall,
    .gallery-item:nth-child(2), .gallery-item:nth-child(3),
    .gallery-item:nth-child(4), .gallery-item:nth-child(5) {
        grid-column: span 1; grid-row: span 1;
    }
    .gallery-item { height: 200px; }
    .gallery-item--tall { height: 280px; }
}

/* ========== CTA BANNER ========== */
.cta-banner { padding: 5rem 0; background: #00b4a0; position: relative; overflow: hidden; }
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.cta-deco {
    position: absolute; width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.08);
    top: -100px; right: -50px;
}
.cta-banner-inner {
    display: flex; align-items: center; gap: 3rem;
    position: relative; z-index: 1; flex-wrap: wrap;
}
.cta-content { flex: 1; min-width: 280px; }
.cta-title { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: .75rem; }
.cta-text { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 480px; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-actions .btn--outline:hover { background: #0f1c3f; color: #fff; border-color: #0f1c3f; }

/* ========== VISIT ========== */
.visit { padding: 6rem 0; }
.visit .section-title { text-align: center; margin-bottom: 3rem; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.visit-card {
    display: flex; align-items: flex-start; gap: 1.25rem;
    background: #fff; border-radius: 16px; padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(15,28,63,0.06);
    border: 1px solid rgba(15,28,63,0.06);
    transition: transform .3s ease;
}
.visit-card:hover { transform: translateY(-2px); }
.visit-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(0,180,160,0.1); color: #00b4a0;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.visit-card h3 {
    font-family: 'Space Grotesk', sans-serif; font-size: .8rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
    color: #718096; margin-bottom: .35rem;
}
.visit-card p { font-size: .95rem; color: #0f1c3f; line-height: 1.6; }
.visit-card a { color: #00b4a0; font-weight: 600; transition: color .2s; }
.visit-card a:hover { color: #009d8b; }
.visit-map { border-radius: 16px; overflow: hidden; margin-top: 1.5rem; box-shadow: 0 4px 20px rgba(15,28,63,0.08); }
.visit-form-wrap { }
.visit-form-card {
    background: #fff; border-radius: 20px; padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(15,28,63,0.08);
    border: 1px solid rgba(15,28,63,0.06);
}
.visit-form-card h3 {
    font-size: 1.5rem; margin-bottom: .5rem;
}
.visit-form-card > p { font-size: .95rem; color: #718096; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block; font-family: 'Space Grotesk', sans-serif;
    font-size: .8rem; font-weight: 600; color: #0f1c3f;
    margin-bottom: .4rem; letter-spacing: .04em;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: .75rem 1rem; border-radius: 10px;
    border: 1.5px solid rgba(15,28,63,0.15);
    font-family: 'Inter', sans-serif; font-size: .95rem;
    color: #0f1c3f; background: #f8fdf9;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: #00b4a0;
    box-shadow: 0 0 0 3px rgba(0,180,160,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    text-align: center; padding: 2rem;
}
.form-success svg { color: #00b4a0; margin-bottom: 1rem; }
.form-success h4 { font-size: 1.25rem; color: #0f1c3f; margin-bottom: .5rem; }
.form-success p { font-size: .95rem; color: #718096; }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ========== FOOTER ========== */
.site-footer { background: #0f1c3f; color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
    padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .95rem; line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
    font-family: 'Space Grotesk', sans-serif; font-size: .75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
    color: #00b4a0; margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: #00b4a0; }
.footer-contact p { font-size: .9rem; line-height: 1.7; margin-bottom: .25rem; }
.footer-contact a { color: #00b4a0; transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
    padding-top: 2rem; text-align: center;
    font-size: .85rem; color: rgba(255,255,255,0.4);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
