:root {
    --red: #e52320;
    --red-dark: #b91513;
    --green: #087735;
    --green-dark: #044f26;
    --orange: #f68b1f;
    --cream: #fff8ec;
    --light: #fffdf8;
    --dark: #191919;
    --muted: #666;
    --border: rgba(25, 25, 25, .12);
    --shadow: 0 24px 60px rgba(0, 0, 0, .12);
    --radius: 28px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.skip-link { position: absolute; left: -999px; top: auto; }
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; background: #fff; padding: 10px 14px; border-radius: 10px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 248, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
}
.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.brand img {
    width: 118px;
    max-height: 92px;
    height: auto;
    object-fit: contain;
}


.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 800; font-size: 14px; }
.nav-links a:not(.btn):hover { color: var(--red); }
.nav-toggle { display: none; border: 0; background: var(--green); color: white; border-radius: 14px; padding: 10px 14px; font-size: 20px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: #fff; color: var(--green-dark); border-color: var(--green); }
.btn-small { padding: 10px 15px; background: var(--red); color: #fff; }

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(229, 35, 32, .14), transparent 32%),
        radial-gradient(circle at 80% 10%, rgba(8, 119, 53, .13), transparent 32%),
        linear-gradient(180deg, #fffaf0 0%, #fffdf8 100%);
}
.hero:before {
    content: '';
    position: absolute;
    inset: auto -12% -160px -12%;
    height: 310px;
    background: var(--green);
    opacity: .08;
    border-radius: 50% 50% 0 0;
}
.hero-grid, .split-grid, .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero-copy h1 {
    margin: 12px 0 18px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: .96;
    letter-spacing: -0.06em;
}
.lead { font-size: 19px; color: #444; max-width: 650px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
}
.hero-actions, .location-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0; }
.hero-media { position: relative; }
.hero-media img, .about-image img, .video-card, .qr-card, .contact-card {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hero-media img { aspect-ratio: 4 / 3; object-fit: cover; border: 10px solid white; transform: rotate(1.5deg); }
.floating-badge {
    position: absolute;
    left: -12px;
    bottom: 24px;
    max-width: 250px;
    background: var(--red);
    color: #fff;
    padding: 16px 18px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(229, 35, 32, .28);
}
.status-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(0,0,0,.07);
}
.status-card small { display: block; color: var(--muted); }
.status-dot { width: 14px; height: 14px; border-radius: 50%; background: #999; flex: 0 0 14px; }
.status-dot.open { background: #22c55e; box-shadow: 0 0 0 6px rgba(34,197,94,.16); }
.status-dot.closed { background: var(--red); box-shadow: 0 0 0 6px rgba(229,35,32,.14); }

.about-section { background: #fff; }
.about-image img { aspect-ratio: 4/3; object-fit: cover; }
h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.04; letter-spacing: -0.045em; margin: 12px 0 18px; }
.about-content p, .special-content p, .media-section p, .location-section p, .contact-card p { color: #4a4a4a; font-size: 17px; }
.feature-list { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0; }
.feature-list span {
    background: var(--cream);
    border: 1px solid rgba(246,139,31,.25);
    color: var(--green-dark);
    font-weight: 800;
    border-radius: 999px;
    padding: 9px 13px;
}
.note { border-left: 4px solid var(--orange); padding-left: 14px; }

.menu-section { background: linear-gradient(180deg, #fffdf8, #fff3df); }
.section-heading { text-align: center; max-width: 780px; margin: 0 auto 36px; }
.section-heading p { color: var(--muted); }
.menu-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.menu-tab {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--dark);
    font-weight: 900;
    border-radius: 999px;
    padding: 11px 16px;
    cursor: pointer;
}
.menu-tab.active { background: var(--red); color: #fff; border-color: var(--red); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.cards-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.menu-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 22px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px;
    box-shadow: 0 14px 32px rgba(0,0,0,.06);
}
.menu-card h3 { margin: 0 0 8px; font-size: 24px; color: var(--green-dark); }
.menu-card p { margin: 0 0 18px; color: #555; }
.price-list { display: flex; flex-wrap: wrap; gap: 8px; }
.price-list span {
    background: #f7f7f7;
    border-radius: 14px;
    padding: 8px 10px;
    min-width: 92px;
}
.price-list small { display: block; color: #777; font-size: 11px; font-weight: 800; }
.price-list strong { color: var(--red); font-size: 18px; }
.center-action { text-align: center; margin-top: 34px; }

.specialties-section { background: #fff; }
.reverse .special-content { order: 2; }
.clean-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.clean-list li { padding-left: 28px; position: relative; font-weight: 800; }
.clean-list li:before { content: '✓'; position: absolute; left: 0; color: var(--green); }
.video-card { overflow: hidden; background: #111; min-height: 340px; }
.video-card video, .video-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.video-placeholder { position: relative; height: 100%; min-height: 340px; }
.video-placeholder:after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.75)); }
.video-placeholder div { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; color: #fff; }
.video-placeholder strong { display: block; font-size: 24px; }
.video-placeholder span { color: rgba(255,255,255,.85); }
.video-placeholder code { background: rgba(255,255,255,.16); padding: 2px 6px; border-radius: 8px; }

.steps-section { background: var(--green); color: #fff; }
.steps-section .eyebrow { color: #ffd6d2; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.16); border-radius: 24px; padding: 24px; }
.step-card span { width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--green); display: grid; place-items: center; font-weight: 900; margin-bottom: 18px; }
.step-card h3 { margin: 0 0 8px; }
.step-card p { color: rgba(255,255,255,.82); margin: 0; }

.gallery-section { background: #fffdf8; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 14px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

.media-section { background: #fff; }
.location-section { background: linear-gradient(180deg, #fff3df, #fffdf8); }
.hours-box { margin-top: 24px; display: grid; gap: 8px; max-width: 520px; }
.hours-box div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 14px; border-radius: 14px; background: rgba(255,255,255,.8); border: 1px solid var(--border); }
.hours-box span { color: var(--green-dark); font-weight: 800; }
.qr-card { background: #fff; padding: 18px; }
.qr-card img { border-radius: 20px; width: 100%; }

.contact-section { background: #fff; }
.contact-card {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 30px;
    align-items: center;
    background: var(--dark);
    color: #fff;
    padding: 42px;
    position: relative;
    overflow: hidden;
}
.contact-card:before { content: ''; position: absolute; width: 340px; height: 340px; right: -120px; top: -140px; background: var(--red); opacity: .25; border-radius: 50%; }
.contact-card h2 { color: #fff; }
.contact-card p { color: rgba(255,255,255,.82); }
.payment-note { font-size: 15px !important; }
.contact-actions { display: grid; gap: 12px; position: relative; z-index: 1; }
.social-link { border: 1px solid rgba(255,255,255,.22); padding: 12px 16px; border-radius: 16px; font-weight: 800; }
.social-link:hover { background: rgba(255,255,255,.09); }
.social-link.disabled { opacity: .52; cursor: not-allowed; }

.site-footer { background: #111; color: #fff; padding: 44px 0 88px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.footer-logo { width: 130px; margin-bottom: 12px; }
.site-footer p, .site-footer small { color: rgba(255,255,255,.72); }

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 120;
    background: #25d366;
    color: #fff;
    font-weight: 900;
    border-radius: 999px;
    padding: 14px 18px;
    box-shadow: 0 16px 34px rgba(37,211,102,.36);
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .section-pad { padding: 68px 0; }
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 112px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 18px;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links.open { display: flex; }
    .hero-grid, .split-grid, .location-grid, .contact-card { grid-template-columns: 1fr; }
    .reverse .special-content { order: 0; }
    .cards-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gallery-grid .wide { grid-column: span 2; }
    .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 28px, var(--container)); }

    .nav {
        min-height: 86px;
        padding: 8px 0;
    }

    .brand img {
        width: 92px;
        max-height: 74px;
    }

    .hero-copy h1 { font-size: 42px; }
    .hero-actions, .location-actions { flex-direction: column; }
    .btn { width: 100%; }
    .steps-grid, .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-auto-rows: 260px; }
    .gallery-grid .wide, .gallery-grid .tall { grid-column: auto; grid-row: auto; }
    .contact-card { padding: 28px; }
    .floating-badge { position: static; margin-top: -8px; }
}

.menu-legal-note {
    color: #606060;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto 16px;
    max-width: 720px;
    text-align: center;
}
