/* ─── VARIABLES ─────────────────────────────────────── */

:root {
    --bg: #080608;
    --bg-dark: #0d090b;
    --card: rgba(255, 255, 255, 0.04);
    --card-hover: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(74, 144, 196, 0.35);
    --text: #ede8e3;
    --muted: rgba(237, 232, 227, 0.65);
    --accent: #2e6da4;
    --accent-bright: #4a90c4;
    --accent-glow: rgba(46, 109, 164, 0.25);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
}


/* ─── RESET & BASE ───────────────────────────────────── */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--card-hover);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-bright);
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-user-select: none;
    user-select: none;
    letter-spacing: -0.01em;
}

:focus-visible {
    outline: 1px solid var(--accent-bright);
    outline-offset: 4px;
}


/* ─── SCROLL REVEAL ──────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1), transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ─── NAV ────────────────────────────────────────────── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
    padding: 16px 48px;
    background: rgba(8, 6, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text em {
    color: var(--accent-bright);
    font-style: normal;
    text-shadow: 0 0 15px var(--accent-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    background: none;
    border: none;
    color: var(--muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all .2s ease;
}

.nav-link:hover {
    color: var(--text);
    background: var(--card);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}


/* ─── STATUS PILL ────────────────────────────────────── */

.status-pill {
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--border);
}

.status-pill.open {
    color: #4ade80;
    border-color: rgba(74, 222, 128, .3);
    background: rgba(74, 222, 128, .08);
}

.status-pill.closed {
    color: #f87171;
    border-color: rgba(248, 113, 113, .3);
    background: rgba(248, 113, 113, .08);
}


/* ─── LANG BTN ───────────────────────────────────────── */

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.lang-btn:hover {
    background: var(--card);
    border-color: var(--muted);
}


/* ─── HAMBURGER ──────────────────────────────────────── */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card);
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text);
    transition: all .25s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
}


/* ─── MOBILE MENU ────────────────────────────────────── */

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(8, 6, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    opacity: 0;
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.nav-link.mobile {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    padding: 8px 0;
    width: 100%;
    text-align: left;
    color: var(--muted);
}

.nav-link.mobile:hover {
    color: var(--text);
    background: transparent;
    padding-left: 8px;
}

.mobile-menu-bottom {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all .2s;
}


/* ─── HERO ───────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blob {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    top: 30%;
    left: 0;
}

.blob-2 {
    top: 70%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.noise {
    position: absolute;
    inset: 0;
    opacity: .4;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 40px;
    max-width: 1400px;
}

.hero-top-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.google-rating,
.hero-badge {
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.rating-stars {
    color: #f59e0b;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(48px, 9.5vw, 120px);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.outline-text {
    -webkit-text-stroke: 1px var(--muted);
    color: transparent;
}

.hero-sub {
    margin: 32px auto 0;
    font-size: 16px;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.6;
}

.hero-status-row {
    margin-top: 40px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-status {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hero-status.open {
    background: rgba(74, 222, 128, .06);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, .2);
}

.hero-status.closed {
    background: rgba(248, 113, 113, .06);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, .2);
}

.hero-countdown {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 12px;
    color: var(--muted);
}


/* Hero CTA Row */

.hero-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .2s ease;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 30px;
    height: 1px;
    background: var(--border);
}


/* ─── SECTIONS ───────────────────────────────────────── */

.section {
    padding: 140px 0;
}

.section-dark {
    background: var(--bg-dark);
}

.section-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-bright);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 64px;
}


/* ─── ABOUT ──────────────────────────────────────────── */

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.about-headline h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.about-headline h2 em {
    color: transparent;
    -webkit-text-stroke: 1px var(--text);
    font-style: normal;
}

.about-body p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}

.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-bright);
    letter-spacing: -1px;
    display: block;
}

.stat-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: .5px;
}


/* ─── SERVICES ───────────────────────────────────────── */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    background: var(--card-hover);
}

.new-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 2px 8px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid var(--accent-bright);
    color: var(--accent-bright);
    font-size: 9px;
    font-weight: 700;
}

.service-icon {
    font-size: 28px;
    margin-bottom: 32px;
}

.service-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}


/* ─── DEALS ──────────────────────────────────────────── */

.deals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.deal-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.deal-card:hover {
    border-color: var(--border-hover);
    background: var(--card-hover);
}

.deal-card.hot {
    border-color: rgba(239, 68, 68, .25);
    background: rgba(239, 68, 68, .04);
}

.deal-card.hot:hover {
    border-color: rgba(239, 68, 68, .5);
    background: var(--card-hover);
}

.deal-badge {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .5px;
}

.deal-icon {
    font-size: 28px;
}

.deal-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.deal-desc {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.deal-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
}

.deal-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-bright);
}

.deal-validity {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}


/* ─── HOURS ──────────────────────────────────────────── */

.hours-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 100px;
}

.hours-table {
    gap: 2px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    transition: all .2s;
}

.hours-row:hover {
    background: var(--card);
}

.hours-row.today {
    background: rgba(46, 109, 164, .10);
    border: 1px solid rgba(46, 109, 164, .3);
}

.hours-row.today .day-name {
    color: var(--accent-bright);
}

.day-name,
.day-time {
    font-size: 14px;
}

.clock-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.clock-svg {
    width: 160px;
    height: 160px;
    opacity: 0.3;
}

.clock-time {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
}


/* ─── REVIEWS ────────────────────────────────────────── */

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.reviews-header .section-title {
    margin-bottom: 0;
}

.google-total {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.gt-score {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.gt-stars {
    color: #f59e0b;
}

.gt-label {
    font-size: 12px;
    color: var(--muted);
}


/* Reviews wrapper — arrows + grid */

.reviews-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.reviews-wrapper .arrow-btn {
    flex-shrink: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
    border-color: var(--border-hover);
    background: var(--card-hover);
    transform: translateY(-4px);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--accent-bright);
}

.review-name {
    font-size: 14px;
    font-weight: 700;
}

.review-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text);
    flex-grow: 1;
}

.review-stars {
    color: #f59e0b;
    font-size: 12px;
    display: flex;
    gap: 4px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

.arrow-btn:hover {
    background: rgba(46, 109, 164, 0.15);
    border-color: var(--accent-bright);
    color: var(--accent-bright);
}

.reviews-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
}

.dot {
    width: 20px;
    height: 2px;
    background: var(--border);
    border-radius: 0;
    transition: all .3s ease;
    cursor: pointer;
}

.dot.active {
    background: var(--accent-bright);
    width: 32px;
}


/* ─── CONTACT BUTTONS ────────────────────────────────── */

.route-btn,
.whatsapp-btn,
.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
    border: none;
}

.route-btn {
    background: var(--accent);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.route-btn:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.whatsapp-btn {
    background: rgba(37, 211, 102, .06);
    border: 1px solid rgba(37, 211, 102, .2);
    color: #25d366;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, .12);
    transform: translateY(-2px);
}

.call-btn {
    background: rgba(59, 130, 246, .06);
    border: 1px solid rgba(59, 130, 246, .2);
    color: #3b82f6;
}

.call-btn:hover {
    background: rgba(59, 130, 246, .12);
    transform: translateY(-2px);
}


/* ─── MAP ────────────────────────────────────────────── */

.map-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 64px;
    align-items: start;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-address-block {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.map-pin {
    font-size: 24px;
}

.map-street {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.map-city {
    font-size: 14px;
    color: var(--muted);
    margin-top: 2px;
}

.map-embed {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    filter: invert(90%) hue-rotate(180deg);
}


/* ─── FOOTER ─────────────────────────────────────────── */

footer {
    border-top: 1px solid var(--border);
    padding: 36px 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
}

.footer-address {
    font-size: 13px;
    color: var(--muted);
    font-style: normal;
}

.footer-copy {
    font-size: 12px;
    color: var(--muted);
    margin-left: auto;
}


/* ─── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 960px) {
    nav,
    nav.scrolled {
        padding: 20px 32px;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .about-layout,
    .hours-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .map-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    .hero {
        min-height: 100svh;
        padding: 80px 0;
    }
    .section {
        padding: 80px 0;
    }
    .section-inner {
        padding: 0 24px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 0;
    }
    .hero-title {
        font-size: clamp(56px, 17vw, 90px);
    }
    .hero-top-row {
        margin-top: 20px;
    }
    .hero-sub {
        margin-top: 22px;
        font-size: 15.5px;
    }
    .hero-status-row {
        margin-top: 26px;
    }
    .section {
        padding: 64px 0;
    }
    .section-inner {
        padding: 0 20px;
    }
    nav,
    nav.scrolled {
        padding: 16px 20px;
    }
    .status-pill {
        display: none;
    }
    .services-grid,
    .deals-grid {
        grid-template-columns: 1fr;
    }
    .reviews-wrapper .arrow-btn {
        display: none;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .review-card {
        padding: 16px;
        gap: 10px;
    }
    .review-avatar {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    .review-name {
        font-size: 12px;
    }
    .review-text {
        font-size: 11.5px;
        line-height: 1.5;
    }
    .review-stars {
        font-size: 10px;
    }
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .google-total {
        width: 100%;
    }
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }
    .hero-cta-btn {
        justify-content: center;
    }
    .map-embed iframe {
        height: 260px;
    }
    .footer-links {
        gap: 6px;
    }
    .about-layout {
        gap: 32px;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .stat-num {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: clamp(50px, 18vw, 84px);
    }
    .hero-top-row {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
}

/* ─── GALLERY ────────────────────────────────────────── */

.gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.gallery-wrapper .arrow-btn {
    flex-shrink: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    cursor: pointer;
}

.gallery-item--wide {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(12px);
    transform: scale(1.05);
    transition: filter .4s ease, transform .4s ease;
}

.gallery-item img.lqip-loaded {
    filter: blur(0);
    transform: scale(1);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 6, 8, 0.55);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity .25s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
    opacity: 1;
}

.gallery-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
}

/* ─── LIGHTBOX ───────────────────────────────────────── */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(8, 6, 8, 0.92);
    backdrop-filter: blur(8px);
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 85vw;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.lightbox-placeholder {
    width: 320px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.lightbox-counter {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: var(--muted);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(46, 109, 164, 0.15);
    border-color: var(--accent-bright);
    color: var(--accent-bright);
}

.lightbox-arrow {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-arrow.left {
    left: 24px;
}

.lightbox-arrow.right {
    right: 24px;
}

.lightbox-arrow:hover {
    background: rgba(46, 109, 164, 0.15);
    border-color: var(--accent-bright);
    color: var(--accent-bright);
}

@media (max-width: 768px) {
    .gallery-wrapper .arrow-btn {
        display: none;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
    }
    .lightbox-arrow {
        width: 36px;
        height: 36px;
    }
    .lightbox-arrow.left {
        left: 10px;
    }
    .lightbox-arrow.right {
        right: 10px;
    }
}

/* ─── PRODUCTS ───────────────────────────────────────── */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    background: var(--card-hover);
}

.product-emoji {
    font-size: 26px;
}

.product-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.product-price {
    font-size: 13px;
    color: var(--muted);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    border: 1px solid var(--accent-bright);
    color: var(--accent-bright);
    background: transparent;
}

.product-badge.badge-bestseller {
    border-color: #f59e0b;
    color: #f59e0b;
}

.product-badge.badge-popular {
    border-color: rgba(239, 68, 68, .6);
    color: #ef4444;
}

.product-badge.badge-new-product {
    border-color: var(--accent-bright);
    color: var(--accent-bright);
}

.product-badge.badge-service {
    border-color: var(--muted);
    color: var(--muted);
}

/* ─── FAQ ────────────────────────────────────────────── */

.faq-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    min-width: 0;
}

.faq-sidebar-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-cat-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.faq-cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 13.5px;
    text-align: left;
    cursor: pointer;
    transition: all .2s ease;
}

.faq-cat-btn:hover {
    background: var(--card);
}

.faq-cat-btn.active {
    background: var(--card);
    border-color: var(--border-hover);
    color: var(--accent-bright);
}

.faq-cat-icon {
    font-size: 15px;
}

.faq-cat-count {
    margin-left: auto;
    font-size: 11px;
    color: var(--muted);
}

.faq-search-wrap {
    position: relative;
    margin-bottom: 20px;
}

.faq-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}

.faq-search {
    width: 100%;
    padding: 14px 16px 14px 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    font-family: inherit;
    font-size: 13.5px;
}

.faq-search:focus {
    outline: none;
    border-color: var(--accent-bright);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-no-results {
    display: none;
    color: var(--muted);
    font-size: 13.5px;
    padding: 24px 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-q-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-q-icon {
    font-size: 15px;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform .25s ease;
}

.faq-q[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-a.open {
    max-height: 300px;
}

.faq-a-inner {
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .faq-sidebar {
        position: static;
    }
    .faq-cat-list {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding-bottom: 2px;
    }
    .faq-cat-list::-webkit-scrollbar {
        display: none;
    }
    .faq-cat-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}