*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body.landing {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    z-index: 0;
    background-color: transparent;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden
}

/* Fixed page background behind content */
.page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden
}

.page-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed
}

.page-bg-slide.active {
    z-index: 1
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

input,
button {
    font: inherit
}

button {
    cursor: pointer;
    border: none;
    background: none
}

[x-cloak] {
    display: none !important
}

/* Alpine / Tailwind utility helpers */
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1)
}

.ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1)
}

.duration-1000 {
    transition-duration: 1000ms
}

.opacity-0 {
    opacity: 0
}

.opacity-100 {
    opacity: 1
}

/* Tailwind-like dynamic color utilities */
.bg-primary {
    background-color: var(--primary)
}

.bg-secondary {
    background-color: var(--secondary)
}

.bg-background {
    background-color: var(--bg)
}

.bg-surface {
    background-color: var(--surface)
}

.text-text-color {
    color: var(--text)
}

.text-primary {
    color: var(--primary)
}

.text-secondary {
    color: var(--secondary)
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: 9999px;
    padding: .75rem 1.5rem;
    font-weight: 600;
    transition: transform .15s, box-shadow .15s, background-color .15s, color .15s
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12)
}

.btn-primary:hover {
    background-color: var(--primary);
    filter: brightness(.92);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .18)
}

.btn-ghost {
    background-color: rgba(255, 255, 255, .15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25)
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, .25)
}

.btn-lg {
    padding: .9rem 2rem;
    font-size: 1.05rem
}

.btn-block {
    width: 100%
}

.btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none
}

/* Chips */
.chip {
    display: inline-block;
    border-radius: 9999px;
    background-color: color-mix(in srgb, var(--primary) 12%, transparent);
    color: var(--primary);
    padding: .35rem .85rem;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em
}

/* Navbar */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: background-color .35s, border-color .35s, box-shadow .35s, backdrop-filter .35s, color .35s
}

.nav.scrolled {
    color: var(--text);
    background-color: color-mix(in srgb, var(--surface) 90%, transparent);
    border-color: color-mix(in srgb, var(--text) 10%, transparent);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .35);
    transition: color .35s, text-shadow .35s
}

.nav.scrolled .nav-brand {
    color: var(--text);
    text-shadow: none
}

.nav-menu {
    display: none;
    align-items: center;
    gap: .25rem
}

.nav-link {
    border-radius: 9999px;
    padding: .5rem 1rem;
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
    transition: background-color .15s, color .15s, text-shadow .15s
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, .15);
    color: #fff
}

.nav.scrolled .nav-link {
    color: var(--text);
    text-shadow: none
}

.nav.scrolled .nav-link:hover {
    background-color: color-mix(in srgb, var(--primary) 12%, transparent);
    color: var(--primary)
}

.nav-cta {
    margin-left: .5rem
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    color: #fff;
    background: rgba(255, 255, 255, .15);
    transition: background-color .15s, color .15s
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, .25)
}

.nav.scrolled .nav-toggle {
    color: var(--text);
    background: color-mix(in srgb, var(--primary) 12%, transparent)
}

.nav.scrolled .nav-toggle:hover {
    background: color-mix(in srgb, var(--primary) 20%, transparent)
}

.nav-toggle-icon {
    width: 1.5rem;
    height: 1.5rem
}

@media (min-width:768px) {
    .nav-menu {
        display: flex;
        position: static;
        width: auto;
        background: transparent;
        padding: 0;
        border: 0;
        box-shadow: none
    }

    .nav-toggle {
        display: none
    }
}

@media (max-width:767px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 4rem;
        left: 0;
        right: 0;
        background-color: var(--surface);
        border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
        flex-direction: column;
        gap: .25rem
    }

    .nav-menu.open {
        display: flex
    }

    .nav-menu .nav-link {
        color: var(--text);
        text-shadow: none
    }

    .nav-menu .nav-link:hover {
        background-color: color-mix(in srgb, var(--primary) 12%, transparent);
        color: var(--primary)
    }

    .nav-link {
        width: 100%;
        padding: .75rem 1rem
    }

    .nav-cta {
        margin-left: 0;
        margin-top: .5rem
    }
}

/* Hero */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    color: #fff;
    overflow: hidden
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-attachment: fixed
}

.hero-slide.active {
    z-index: 2
}

.hero-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: .5rem
}

.hero-dot {
    width: .65rem;
    height: .65rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, .5);
    border: none;
    cursor: pointer;
    transition: background-color .2s, transform .2s
}

.hero-dot:hover,
.hero-dot.active {
    background-color: #fff;
    transform: scale(1.2)
}

.hero-inner {
    position: relative;
    z-index: 10;
    max-width: 42rem
}

.hero-chip {
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(4px)
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3)
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: .92;
    max-width: 36rem
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

@media (min-width:640px) {
    .hero-actions {
        flex-direction: row
    }
}

/* Theme preview badge */
.theme-preview {
    margin-top: 1rem;
    padding: .75rem 1.25rem;
    border-radius: 9999px;
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    color: var(--text);
    font-size: .85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.theme-swatch {
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
    background: var(--primary);
    border: 1px solid color-mix(in srgb, var(--text) 20%, transparent)
}

/* Sections */
.section {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    background-color: color-mix(in srgb, var(--bg) 92%, transparent);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.section-alt {
    background-color: color-mix(in srgb, var(--surface) 88%, transparent);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%)
}

.section-head {
    text-align: center;
    margin-bottom: 2.5rem
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2
}

/* About */
.about-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center
}

.about-image-wrap {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12)
}

.about-image {
    width: 100%;
    height: 18rem;
    object-fit: cover
}

.about-content .chip {
    margin-bottom: .75rem
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    white-space: pre-wrap;
    margin-top: 1rem
}

@media (min-width:1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr
    }

    .about-image {
        height: 26rem
    }
}

/* Cards */
.cards-grid {
    display: grid;
    gap: 1.25rem
}

@media (min-width:640px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1024px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.card {
    position: relative;
    z-index: 1;
    background-color: color-mix(in srgb, var(--bg) 92%, transparent);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: transform .2s, box-shadow .2s
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1)
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem
}

.card-subtitle {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--primary);
    margin-bottom: .35rem
}

.card-text {
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    opacity: .9
}

.card-big {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text)
}

.card-link:hover .card-big {
    color: var(--primary)
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .75rem
}

.social-pill {
    border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    background-color: var(--bg);
    color: var(--text);
    border-radius: 9999px;
    padding: .5rem 1rem;
    font-size: .9rem;
    font-weight: 500;
    transition: border-color .15s, color .15s
}

.social-pill:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.reservation-card {
    background-color: color-mix(in srgb, var(--surface) 88%, transparent);
    max-width: 42rem;
    margin: 0 auto;
    width: 100%
}

/* Hours */
.hours-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem
}

.hours-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    padding: .75rem;
    border-radius: .75rem;
    background-color: color-mix(in srgb, var(--surface) 70%, transparent);
    border: 1px solid color-mix(in srgb, var(--text) 8%, transparent)
}

.hours-day {
    font-weight: 700;
    color: var(--text);
    font-size: .9rem
}

.hours-time {
    color: var(--text);
    opacity: .9;
    font-size: .85rem
}

/* Form */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem
}

.form-row {
    display: grid;
    gap: 1rem
}

@media (min-width:640px) {
    .form-row {
        grid-template-columns: 1fr 1fr
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .35rem
}

.form-label {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text)
}

.form-input {
    border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    border-radius: .75rem;
    background-color: color-mix(in srgb, var(--bg) 85%, transparent);
    color: var(--text);
    padding: .75rem 1rem;
    outline: none;
    transition: border-color .15s, box-shadow .15s
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent)
}

.form-message {
    font-size: .9rem;
    font-weight: 600;
    padding: .25rem 0
}

.form-success {
    color: #16a34a
}

.form-error {
    color: #dc2626
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    background-color: color-mix(in srgb, var(--surface) 88%, transparent);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    padding: 2rem 0;
    text-align: center
}

.footer-text {
    font-size: .9rem;
    color: var(--text);
    opacity: .9
}

/* WhatsApp float */
.wa-float {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    transition: transform .15s
}

.wa-float:hover {
    transform: scale(1.1)
}

.wa-icon {
    width: 1.75rem;
    height: 1.75rem
}