/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1e293b;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
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; }
.skip-link { position: absolute; top: -100%; left: 1rem; background: #f97316; color: #fff; padding: 0.5rem 1rem; border-radius: 0 0 6px 6px; z-index: 9999; font-weight: 600; }
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: #0f172a; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f97316;
    margin-bottom: 1rem;
}
.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #f97316;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}
.section-sub {
    font-size: 1.125rem;
    color: #475569;
    max-width: 600px;
    line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-coral { color: #f97316; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}
.btn-coral {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
}
.btn-coral:hover { background: #ea6a0a; border-color: #ea6a0a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}
.logo-icon { color: #f97316; flex-shrink: 0; }
.logo-text { line-height: 1.2; }
.logo-accent { color: #f97316; }
.logo-light { color: #fff; }
.logo-light .logo-accent { color: #f97316; }

/* NAV */
.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-list a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}
.nav-list a:hover { color: #fff; }
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f97316;
    transition: width 0.25s;
}
.nav-list a:hover::after { width: 100%; }

/* MOBILE NAV */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #fff;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    left: 0;
    transition: all 0.3s;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.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; }
    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s ease;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-list.open { transform: translateY(0); opacity: 1; }
    .nav-list a { font-size: 1.1rem; color: rgba(255,255,255,0.85); }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f172a;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.7) 50%, rgba(15,23,42,0.5) 100%);
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 4rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #f97316;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* HERO STAT CARDS */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: transform 0.3s ease, background 0.3s ease;
}
.stat-card:hover { transform: translateX(8px); background: rgba(255,255,255,0.1); }
.stat-card--1 { border-left: 3px solid #f97316; }
.stat-card--2 { border-left: 3px solid #38bdf8; }
.stat-card--3 { border-left: 3px solid #a78bfa; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.stat-card--1 .stat-number { color: #f97316; }
.stat-card--2 .stat-number { color: #38bdf8; }
.stat-card--3 .stat-number { color: #a78bfa; }
.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-cards { flex-direction: row; flex-wrap: wrap; margin-top: 2rem; }
    .stat-card { flex: 1; min-width: 140px; }
}
@media (max-width: 640px) {
    .hero { min-height: auto; padding: 8rem 0 4rem; }
    .hero-cards { flex-direction: column; }
    .stat-card { flex: none; }
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-header { margin-bottom: 4rem; }

/* ===== ABOUT ===== */
.about { background: #f8fafc; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.about-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: #f97316;
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}
.about-content p {
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.85;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1e293b;
}
.about-icon {
    color: #f97316;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image-wrap { max-width: 500px; }
    .about-features { grid-template-columns: 1fr; }
}

/* ===== MENU ===== */
.menu { background: #fff; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.menu-card {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.menu-card-img { overflow: hidden; height: 200px; }
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 1.75rem; }
.menu-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.menu-card-desc {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.menu-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #334155;
    font-weight: 500;
}
.menu-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #f97316;
    border-radius: 50%;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .menu-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ===== GROCERIES ===== */
.groceries { background: #0f172a; color: #fff; }
.groceries .section-tag { color: #f97316; }
.groceries .section-tag::before { background: #f97316; }
.groceries .section-title { color: #fff; }
.groceries .section-sub { color: rgba(255,255,255,0.6); }
.groceries-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.groceries-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.25rem;
    line-height: 1.85;
}
.grocery-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.grocery-cat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: background 0.2s, border-color 0.2s;
}
.grocery-cat:hover { background: rgba(255,255,255,0.1); border-color: rgba(249,115,22,0.4); color: #fff; }
.grocery-cat svg { color: #f97316; flex-shrink: 0; }
.groceries-image-stack {
    position: relative;
    height: 500px;
}
.groceries-image-stack img {
    position: absolute;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.groceries-image-stack img:first-child {
    width: 280px;
    height: 380px;
    top: 0;
    right: 0;
    z-index: 1;
}
.groceries-image-stack img:last-child {
    width: 200px;
    height: 200px;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 4px solid #0f172a;
}
@media (max-width: 900px) {
    .groceries-layout { grid-template-columns: 1fr; }
    .groceries-image-stack { display: none; }
    .grocery-categories { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: #f8fafc; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.testimonial-quote {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    color: #f97316;
    opacity: 0.2;
}
.testimonial-text {
    color: #334155;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    font-style: italic;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 0.25rem; }
.testimonial-name { font-weight: 700; color: #0f172a; font-size: 0.9375rem; }
.testimonial-role { font-size: 0.8125rem; color: #94a3b8; }
@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ===== VISIT ===== */
.visit { background: #fff; }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.visit-info p.section-sub { margin-bottom: 2.5rem; }
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.contact-item dt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.375rem;
}
.contact-item dt svg { color: #f97316; }
.contact-item dd {
    color: #475569;
    line-height: 1.8;
    padding-left: 2.25rem;
}
.contact-item dd a {
    color: #f97316;
    font-weight: 600;
    transition: color 0.2s;
}
.contact-item dd a:hover { color: #ea6a0a; }
.visit-map {
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
@media (max-width: 900px) {
    .visit-grid { grid-template-columns: 1fr; }
    .visit-map { height: 320px; }
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 6rem 0;
}
.contact-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    color: #fff;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    background: rgba(255,255,255,0.1);
}
.form-success {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
@media (max-width: 900px) {
    .contact-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0b1120;
    color: #fff;
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9375rem;
    transition: color 0.2s;
}
.footer-col ul a:hover { color: #f97316; }
.footer-col address { font-style: normal; color: rgba(255,255,255,0.65); font-size: 0.9375rem; line-height: 1.9; }
.footer-col address a { color: #f97316; font-weight: 600; }
.footer-col p { color: rgba(255,255,255,0.65); font-size: 0.9375rem; line-height: 1.9; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s 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; }
}
