:root {
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --blue: #2563eb;
    --blue-soft: #eff6ff;
    --dark: #020617;
    --soft: #f8fafc;
    --amber: #f59e0b;
    --shadow: 0 20px 50px rgba(37,99,235,.08)
}

* {
    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(--text);
    background: var(--bg)
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1120px,calc(100% - 48px));
    margin: 0 auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid var(--line)
}

.brand-name {
    font-weight: 800;
    font-size: 1.05rem
}

.brand-tag {
    font-size: .9rem;
    color: var(--muted)
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: .95rem;
    font-weight: 600;
    color: #334155
}

.nav a:hover {
    color: var(--blue)
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 1.2rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    transition: .2s ease
}

.btn-small {
    padding: 10px 16px;
    font-size: .9rem
}

.btn-primary {
    background: var(--blue);
    color: #fff
}

.btn-primary:hover {
    background: #1d4ed8
}

.btn-dark {
    background: var(--dark);
    color: #fff
}

.btn-dark:hover {
    background: #1e293b
}

.btn-outline {
    border: 1px solid #cbd5e1;
    color: var(--text);
    background: #fff
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 0
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,#eff6ff 0%,#fff 45%,#f1f5f9 100%)
}

.hero-blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(56px)
}

.hero-blob-right {
    right: -80px;
    top: 48px;
    width: 288px;
    height: 288px;
    background: rgba(191,219,254,.6)
}

.hero-blob-left {
    left: -80px;
    bottom: 0;
    width: 288px;
    height: 288px;
    background: rgba(186,230,253,.7)
}

.wave-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .75
}

.wave {
    width: 100%;
    display: block
}

.wave-1 {
    height: 160px;
    color: #bae6fd
}

.wave-2 {
    height: 120px;
    color: rgba(147,197,253,.6);
    margin-top: -48px
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 96px
}

.pill {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: .92rem;
    font-weight: 700
}

.hero h1 {
    font-size: clamp(2.3rem,5vw,4.3rem);
    line-height: 1.02;
    margin: 24px 0 0;
    font-weight: 900;
    max-width: 760px
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    max-width: 680px;
    margin: 24px 0 0
}

.hero-joke {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 20px;
    border: 1px solid #bfdbfe;
    background: rgba(255,255,255,.82);
    color: #1e40af;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(15,23,42,.06)
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px;
    max-width: 620px;
    margin-top: 40px
}

.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15,23,42,.04)
}

.stat-card span {
    font-size: .9rem;
    color: var(--muted);
    display: block
}

.stat-card strong {
    display: block;
    margin-top: 6px;
    font-size: 1rem
}

.hero-panel {
    border-radius: 34px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.9);
    padding: 24px;
    box-shadow: 0 24px 60px rgba(59,130,246,.12);
    backdrop-filter: blur(8px)
}

.hero-panel-inner {
    border-radius: 28px;
    padding: 32px;
    color: #fff;
    background: linear-gradient(135deg,#020617 0%,#1e3a8a 55%,#0284c7 100%)
}

.hero-logo {
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: #fff;
    padding: 8px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 12px 30px rgba(0,0,0,.2)
}

.hero-panel h2 {
    text-align: center;
    font-size: 2rem;
    margin: 24px 0 0;
    font-weight: 900
}

.hero-panel-inner>p {
    text-align: center;
    color: #dbeafe;
    line-height: 1.7;
    margin-top: 12px
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px;
    margin-top: 28px
}

.panel-card {
    background: rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 18px;
    backdrop-filter: blur(8px)
}

.panel-card span {
    display: block;
    color: #bfdbfe;
    font-size: .9rem
}

.panel-card strong {
    display: block;
    font-size: .95rem;
    line-height: 1.7;
    margin-top: 8px
}

.section {
    padding: 88px 0
}

.section-dark {
    background: #020617;
    color: #fff
}

.section-soft {
    background: #eff6ff
}

.section-heading {
    max-width: 780px
}

.section-heading.left {
    max-width: 600px
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .82rem;
    font-weight: 800;
    color: var(--blue);
    margin: 0 0 12px
}

.section-heading h2 {
    font-size: clamp(2rem,4vw,3rem);
    line-height: 1.1;
    margin: 0;
    font-weight: 900
}

.section-heading p {
    font-size: 1.08rem;
    color: #475569;
    line-height: 1.8;
    margin-top: 14px
}

.section-heading-light .eyebrow {
    color: #93c5fd
}

.section-heading-light p {
    color: #cbd5e1
}

.accordion-list {
    margin-top: 40px;
    display: grid;
    gap: 16px
}

.accordion-list details,.gallery-more {
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(15,23,42,.04)
}

.accordion-list summary,.gallery-more summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    padding: 22px 24px
}

.accordion-list summary::-webkit-details-marker,.gallery-more summary::-webkit-details-marker {
    display: none
}

.accordion-list summary h3,.gallery-more summary h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900
}

.accordion-list summary p,.gallery-more summary p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: .95rem
}

.plus {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: .25s
}

details[open] .plus {
    transform: rotate(45deg)
}

.accordion-body {
    border-top: 1px solid var(--line);
    padding: 24px
}

.menu-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 0 0 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed var(--line)
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.menu-item strong {
    font-size: 1.06rem
}

.menu-item p {
    margin: 6px 0 0;
    color: #475569;
    font-size: .95rem;
    line-height: 1.6
}

.menu-item span {
    background: var(--blue-soft);
    color: var(--blue);
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 999px;
    white-space: nowrap
}

.gallery-card img, .gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card video {
    border-radius: 10px;
}

.gallery-strip {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 4px 0 10px;
    margin-top: 40px;
    scrollbar-width: thin
}

.gallery-card {
    position: relative;
    min-width: 300px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05)
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .5s
}

.gallery-card:hover img {
    transform: scale(1.05)
}

.gallery-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(2,6,23,.75),transparent 55%)
}

.gallery-card span,.gallery-card p {
    position: absolute;
    z-index: 2;
    color: #fff
}

.gallery-card span {
    top: 16px;
    left: 16px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    background: rgba(255,255,255,.15);
    padding: 8px 12px;
    border-radius: 999px;
    backdrop-filter: blur(8px)
}

.gallery-card p {
    left: 16px;
    right: 16px;
    bottom: 16px;
    margin: 0;
    font-weight: 800;
    line-height: 1.4
}

.gallery-more {
    margin-top: 28px;
    border-color: rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    box-shadow: none
}

.gallery-more summary p {
    color: #cbd5e1
}

.gallery-more .plus {
    background: rgba(255,255,255,.1);
    color: #fff
}

.gallery-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3,minmax(0,1fr));
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,.1)
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
    margin-top: 40px
}

.review-card {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15,23,42,.04)
}

.stars {
    color: var(--amber);
    font-size: 1.1rem;
    letter-spacing: .18em
}

.review-card p {
    font-size: 1.06rem;
    line-height: 1.8;
    color: #334155;
    margin: 18px 0 0
}

.review-card strong {
    display: block;
    margin-top: 24px
}

.review-cta {
    text-align: center;
    margin-top: 32px
}

.location-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 40px;
    align-items: start
}

.location-copy {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155
}

.contact-list {
    margin-top: 28px;
    display: grid;
    gap: 14px;
    color: #334155
}

.contact-list a {
    color: #1d4ed8
}

.contact-list a:hover {
    text-decoration: underline
}

.vibe-card {
    margin-top: 28px;
    background: #fff;
    border: 1px solid #bfdbfe;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(59,130,246,.08)
}

.vibe-card h3 {
    margin: 0;
    font-size: 1.2rem
}

.vibe-card p {
    margin: 12px 0 0;
    line-height: 1.75;
    color: #334155
}

.map-card {
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow)
}

.map-card iframe {
    display: block;
    border: none;
    border-radius: 24px
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #fff
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 0;
    align-items: center
}

.footer-inner p {
    margin: 8px 0 0;
    color: var(--muted)
}

.footer-copy {
    font-size: .95rem;
    color: var(--muted)
}

@media (max-width: 980px) {
    .hero-grid,.location-grid,.reviews-grid,.gallery-grid,.panel-grid {
        grid-template-columns:1fr
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 760px) {
    .container {
        width:min(100% - 32px,1120px)
    }

    .menu-toggle {
        display: block
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 20px 50px rgba(15,23,42,.08)
    }

    .nav.open {
        display: flex
    }

    .hero {
        padding-top: 40px
    }

    .hero-grid {
        padding-bottom: 76px
    }

    .hero-actions {
        flex-direction: column
    }

    .btn {
        width: 100%
    }

    .stat-grid {
        grid-template-columns: 1fr
    }

    .accordion-list summary h3,.gallery-more summary h3 {
        font-size: 1.25rem
    }

    .menu-item {
        flex-direction: column
    }

    .menu-item span {
        align-self: flex-start
    }

    .gallery-grid,.reviews-grid {
        grid-template-columns: 1fr
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start
    }
}

/* HERO PROMOTION SLIDER */

.promo-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
}

.promo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.promo-slide.active {
    opacity: 1;
    z-index: 2;
}

.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
