/* ── 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-size: 1rem;
    line-height: 1.6;
    color: #1A1A2E;
    background: #FAFBFC;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; font-weight: 700; }

/* ── Focus ── */
:focus-visible { outline: 2px solid #34D399; outline-offset: 2px; border-radius: 4px; }
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #0A2540; color: #fff; padding: .5rem 1rem;
    border-radius: 0 0 8px 0; z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ── */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #0A2540;
    margin-bottom: 1rem;
}
.section-sub {
    font-size: 1.1rem;
    color: #4A5568;
    max-width: 560px;
}
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-mint {
    background: #059669;
    color: #fff;
    box-shadow: 0 4px 14px rgba(5,150,105,.35);
}
.btn-mint:hover { background: #047857; box-shadow: 0 6px 20px rgba(5,150,105,.45); }
.btn-outline-light {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.7); }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10,37,64,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: .04em;
}
.logo-icon { color: #34D399; }
.logo--light { color: #fff; }
.main-nav ul { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
    color: rgba(255,255,255,.75);
    padding: .4rem .85rem;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s, background .2s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle-line {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
    background: #0A2540;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(5,150,105,.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(52,211,153,.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(52,211,153,.12);
    border: 1px solid rgba(52,211,153,.25);
    color: #34D399;
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem .85rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: #34D399;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
}
.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -.01em;
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem; }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #34D399;
    line-height: 1;
}
.hero-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    margin-top: .3rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.hero-stat-divider {
    width: 1px; height: 40px;
    background: rgba(255,255,255,.15);
}
.hero-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 640/720;
}
.hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-img-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 140px; height: 140px;
    background: #34D399;
    border-radius: 50%;
    opacity: .15;
    filter: blur(40px);
    pointer-events: none;
}

/* ── About ── */
.about { padding: 6rem 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.about-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 16px;
    aspect-ratio: 600/480;
}
.about-image-badge {
    position: absolute;
    bottom: 1.25rem; left: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #0A2540;
    color: #34D399;
    font-size: .8rem;
    font-weight: 600;
    padding: .5rem 1rem;
    border-radius: 100px;
}
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p {
    color: #4A5568;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}
.about-features {
    margin-top: 1.75rem;
    display: grid;
    gap: .75rem;
}
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: #2D3748;
    font-size: .95rem;
}
.check-icon { color: #059669; flex-shrink: 0; margin-top: 2px; }

/* ── Menu ── */
.menu {
    padding: 6rem 0;
    background: #F0F7F4;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.menu-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(10,37,64,.06);
    transition: transform .25s, box-shadow .25s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,37,64,.12); }
.menu-card-img { overflow: hidden; aspect-ratio: 400/260; }
.menu-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 1.5rem; }
.menu-card-title {
    font-size: 1.25rem;
    color: #0A2540;
    margin-bottom: .5rem;
}
.menu-card-desc {
    color: #4A5568;
    font-size: .92rem;
    line-height: 1.6;
}

/* ── Groceries ── */
.groceries { padding: 6rem 0; }
.groceries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.groceries-content .section-title { margin-bottom: 1.25rem; }
.groceries-content p {
    color: #4A5568;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}
.groceries-content .btn { margin-top: 1.5rem; }
.groceries-image { border-radius: 16px; overflow: hidden; }
.groceries-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 16px;
    aspect-ratio: 560/520;
}

/* ── Visit ── */
.visit {
    padding: 6rem 0;
    background: #F0F7F4;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.visit-info .section-title { margin-bottom: 2rem; }
.visit-details { display: grid; gap: 1.5rem; }
.visit-detail { display: grid; grid-template-columns: max-content 1fr; gap: .5rem 1.5rem; }
.visit-detail-label {
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #059669;
    padding-top: .2rem;
}
.visit-detail dd {
    color: #2D3748;
    font-size: 1rem;
    line-height: 1.6;
}
.visit-detail a {
    color: #0A2540;
    border-bottom: 1px solid rgba(10,37,64,.2);
    transition: color .2s, border-color .2s;
}
.visit-detail a:hover { color: #059669; border-color: #059669; }
.visit-map {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10,37,64,.1);
}

/* ── Contact ── */
.contact { padding: 6rem 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-content .section-title { margin-bottom: 1rem; }
.contact-content p { color: #4A5568; margin-bottom: 1.5rem; font-size: 1.02rem; }
.contact-direct { display: flex; flex-direction: column; gap: .75rem; }
.contact-direct-item {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: #0A2540;
    font-weight: 500;
    border-bottom: 1px solid rgba(10,37,64,.15);
    padding-bottom: .25rem;
    transition: color .2s, border-color .2s;
}
.contact-direct-item:hover { color: #059669; border-color: #059669; }
.contact-direct-item svg { color: #059669; flex-shrink: 0; }

/* ── Form ── */
.contact-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(10,37,64,.08);
}
.contact-form { display: grid; gap: 1.25rem; }
.form-group { display: grid; gap: .4rem; }
.form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: #0A2540;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .7rem .9rem;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    font-size: .95rem;
    font-family: inherit;
    color: #1A1A2E;
    background: #FAFBFC;
    transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5,150,105,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A0AEC0; }
.form-group select { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%234A5568' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    text-align: center;
    padding: 2rem;
    color: #059669;
}
.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #0A2540;
    margin: .75rem 0 .5rem;
}
.form-success p { color: #4A5568; font-size: .95rem; }

/* ── Footer ── */
.site-footer { background: #0A2540; color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand p { margin-top: .75rem; font-size: .9rem; line-height: 1.6; max-width: 280px; }
.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
}
.footer-links ul { display: grid; gap: .5rem; }
.footer-links a {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    transition: color .2s;
}
.footer-links a:hover { color: #34D399; }
.footer-contact p { font-size: .9rem; line-height: 1.7; }
.footer-contact a {
    color: rgba(255,255,255,.6);
    transition: color .2s;
}
.footer-contact a:hover { color: #34D399; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .hero-grid,
    .about-grid,
    .groceries-grid,
    .visit-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero { padding: 7rem 0 4rem; }
    .hero-image { order: -1; }
    .hero-img-wrap { aspect-ratio: 4/3; }
    .menu-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .main-nav {
        position: fixed;
        top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(10,37,64,.97);
        backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s, visibility .3s;
    }
    .main-nav.open { opacity: 1; visibility: visible; }
    .main-nav ul { flex-direction: column; gap: .5rem; text-align: center; }
    .main-nav a { font-size: 1.1rem; padding: .75rem 1.5rem; }
    .nav-toggle { display: flex; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .contact-form-wrap { padding: 1.5rem; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .menu-card:hover { transform: none; }
    .menu-card-img img { transform: none; }
}
