/* ==========================================================================
   Public Business Profile Stylesheet
   Modern, Editorial, High-Performance, Strict CSP Compliant
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Self-Hosted Fonts (Plus Jakarta Sans & Outfit)
   -------------------------------------------------------------------------- */
@font-face {
    font-family: "Plus Jakarta Sans";
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url("../../fonts/PlusJakartaSans-Variable.7660bd9909fb.woff2") format("woff2-variations"),
         url("../../fonts/PlusJakartaSans-Variable.7660bd9909fb.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../../fonts/Outfit-Variable.fdf9c509a809.woff2") format("woff2-variations"),
         url("../../fonts/Outfit-Variable.fdf9c509a809.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   1. Design System & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --font-display: "Plus Jakarta Sans", "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Light Theme (Default) */
    --bg-base: #fcfbf9;
    --bg-surface: #ffffff;
    --bg-surface-raised: #ffffff;
    --bg-surface-glass: rgba(255, 255, 255, 0.88);
    --bg-sunken: #f4f1eb;
    --bg-hero: linear-gradient(145deg, #1c1917 0%, #292524 50%, #44403c 100%);

    --ink-primary: #1c1917;
    --ink-secondary: #57534e;
    --ink-muted: #78716c;
    --ink-faint: #a8a29e;
    --ink-on-dark: #fafaf9;

    --accent: #c2410c;
    --accent-hover: #9a3412;
    --accent-soft: rgba(194, 65, 12, 0.08);
    --accent-border: rgba(194, 65, 12, 0.2);

    --border-subtle: rgba(28, 25, 23, 0.08);
    --border-medium: rgba(28, 25, 23, 0.16);

    --status-open-text: #15803d;
    --status-open-bg: #dcfce7;
    --status-open-border: #bbf7d0;

    --status-closed-text: #b91c1c;
    --status-closed-bg: #fee2e2;
    --status-closed-border: #fecaca;

    --star-gold: #f59e0b;

    --shadow-sm: 0 1px 2px 0 rgba(28, 25, 23, 0.05);
    --shadow-md: 0 4px 12px -2px rgba(28, 25, 23, 0.08), 0 2px 6px -2px rgba(28, 25, 23, 0.04);
    --shadow-lg: 0 12px 24px -4px rgba(28, 25, 23, 0.1), 0 4px 8px -2px rgba(28, 25, 23, 0.04);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --container-max: 920px;
    --brand-nav-height: 56px;
    --nav-height: 48px;
}

/* Dark Theme overrides */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg-base: #0f0e0d;
        --bg-surface: #1a1816;
        --bg-surface-raised: #24211e;
        --bg-surface-glass: rgba(26, 24, 22, 0.9);
        --bg-sunken: #141211;
        --bg-hero: linear-gradient(145deg, #0a0908 0%, #171513 50%, #262320 100%);

        --ink-primary: #f5f5f4;
        --ink-secondary: #d6d3d1;
        --ink-muted: #a8a29e;
        --ink-faint: #78716c;
        --ink-on-dark: #fafaf9;

        --accent: #ea580c;
        --accent-hover: #f97316;
        --accent-soft: rgba(234, 88, 12, 0.16);
        --accent-border: rgba(234, 88, 12, 0.3);

        --border-subtle: rgba(255, 255, 255, 0.08);
        --border-medium: rgba(255, 255, 255, 0.16);

        --status-open-text: #4ade80;
        --status-open-bg: rgba(34, 197, 94, 0.16);
        --status-open-border: rgba(34, 197, 94, 0.3);

        --status-closed-text: #f87171;
        --status-closed-bg: rgba(239, 68, 68, 0.16);
        --status-closed-border: rgba(239, 68, 68, 0.3);

        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
        --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.5);
        --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.6);
    }
}

[data-theme="dark"] {
    --bg-base: #0f0e0d;
    --bg-surface: #1a1816;
    --bg-surface-raised: #24211e;
    --bg-surface-glass: rgba(26, 24, 22, 0.9);
    --bg-sunken: #141211;
    --bg-hero: linear-gradient(145deg, #0a0908 0%, #171513 50%, #262320 100%);

    --ink-primary: #f5f5f4;
    --ink-secondary: #d6d3d1;
    --ink-muted: #a8a29e;
    --ink-faint: #78716c;
    --ink-on-dark: #fafaf9;

    --accent: #ea580c;
    --accent-hover: #f97316;
    --accent-soft: rgba(234, 88, 12, 0.16);
    --accent-border: rgba(234, 88, 12, 0.3);

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.16);

    --status-open-text: #4ade80;
    --status-open-bg: rgba(34, 197, 94, 0.16);
    --status-open-border: rgba(34, 197, 94, 0.3);

    --status-closed-text: #f87171;
    --status-closed-bg: rgba(239, 68, 68, 0.16);
    --status-closed-border: rgba(239, 68, 68, 0.3);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.6);
}

[data-theme="light"] {
    --bg-base: #fcfbf9;
    --bg-surface: #ffffff;
    --bg-surface-raised: #ffffff;
    --bg-surface-glass: rgba(255, 255, 255, 0.88);
    --bg-sunken: #f4f1eb;
    --bg-hero: linear-gradient(145deg, #1c1917 0%, #292524 50%, #44403c 100%);

    --ink-primary: #1c1917;
    --ink-secondary: #57534e;
    --ink-muted: #78716c;
    --ink-faint: #a8a29e;
    --ink-on-dark: #fafaf9;

    --accent: #c2410c;
    --accent-hover: #9a3412;
    --accent-soft: rgba(194, 65, 12, 0.08);
    --accent-border: rgba(194, 65, 12, 0.2);

    --border-subtle: rgba(28, 25, 23, 0.08);
    --border-medium: rgba(28, 25, 23, 0.16);

    --status-open-text: #15803d;
    --status-open-bg: #dcfce7;
    --status-open-border: #bbf7d0;

    --status-closed-text: #b91c1c;
    --status-closed-bg: #fee2e2;
    --status-closed-border: #fecaca;

    --shadow-sm: 0 1px 2px 0 rgba(28, 25, 23, 0.05);
    --shadow-md: 0 4px 12px -2px rgba(28, 25, 23, 0.08), 0 2px 6px -2px rgba(28, 25, 23, 0.04);
    --shadow-lg: 0 12px 24px -4px rgba(28, 25, 23, 0.1), 0 4px 8px -2px rgba(28, 25, 23, 0.04);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-primary);
    background-color: var(--bg-base);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
}

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

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

button {
    font-family: inherit;
}

/* Focus Visible Styling */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--ink-primary);
    color: var(--ink-on-dark);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Container */
.site-wrapper {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --------------------------------------------------------------------------
   2B. Top Brand Navbar Header (VarsaCore Identity & Modern Separation)
   -------------------------------------------------------------------------- */
.brand-navbar {
    position: sticky;
    top: 0;
    z-index: 60;
    height: var(--brand-nav-height);
    background: var(--bg-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.brand-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.brand-navbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    user-select: none;
}

.brand-navbar__logo-box {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 2px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.brand-navbar__brand:hover .brand-navbar__logo-box {
    transform: scale(1.05);
}

.brand-navbar__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-navbar__text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-navbar__name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--ink-primary);
}

.brand-navbar__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.18rem 0.55rem;
    border-radius: var(--radius-full);
    background: var(--status-open-bg);
    color: var(--status-open-text);
    border: 1px solid var(--status-open-border);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.brand-navbar__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--status-open-text);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    animation: pulse-badge 2s infinite ease-in-out;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

.brand-navbar__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-navbar__call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: var(--ink-on-dark);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.brand-navbar__call-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   3. Hero Section & Dual-Mode Variants
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    background: var(--bg-hero);
    color: var(--ink-on-dark);
    overflow: hidden;
}

/* 3A. Typographic Hero Fallback (When 0 Photos) */
.hero--typographic {
    padding: clamp(3rem, 7vw, 5.5rem) 1.25rem clamp(2.5rem, 5vw, 4rem);
    background:
        radial-gradient(ellipse at top right, rgba(194, 65, 12, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse at bottom left, rgba(217, 119, 6, 0.12) 0%, transparent 60%),
        var(--bg-hero);
}

.hero--typographic .hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.hero-meta-badges {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-on-dark);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
}

.status-pill::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.status-pill--open {
    background: var(--status-open-bg);
    color: var(--status-open-text);
    border: 1px solid var(--status-open-border);
}

.status-pill--open::before {
    background: var(--status-open-text);
}

.status-pill--closed {
    background: var(--status-closed-bg);
    color: var(--status-closed-text);
    border: 1px solid var(--status-closed-border);
}

.status-pill--closed::before {
    background: var(--status-closed-text);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
    text-wrap: balance;
    color: var(--ink-on-dark);
}

.hero-rating-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: rgba(250, 250, 249, 0.9);
    margin-bottom: 1.25rem;
}

.stars-group {
    display: inline-flex;
    align-items: center;
    color: var(--star-gold);
}

.star-icon {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.hero-address-snippet {
    font-size: 0.95rem;
    color: rgba(250, 250, 249, 0.75);
    margin-bottom: 2rem;
    max-width: 620px;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

/* 3B. Image Carousel Hero */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: var(--container-max);
    margin: 1.5rem auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-carousel__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-carousel__track::-webkit-scrollbar {
    display: none;
}

.hero-carousel__slide {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: unset;
    height: auto;
    scroll-snap-align: center;
    position: relative;
    background-color: #1c1917;
    overflow: hidden;
}

.hero-carousel__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-carousel__scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(15, 14, 13, 0.88) 0%,
        rgba(15, 14, 13, 0.40) 38%,
        rgba(15, 14, 13, 0.08) 70%,
        rgba(15, 14, 13, 0) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.5rem, 4vw, 3rem) 1.5rem;
}

.hero-carousel__content {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    pointer-events: auto;
}

.hero-carousel__btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 16, 14, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--ink-on-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s;
}

.hero-carousel__btn:hover {
    background: rgba(18, 16, 14, 0.95);
    transform: translateY(-50%) scale(1.05);
}

.hero-carousel__btn--prev {
    left: 1.25rem;
}

.hero-carousel__btn--next {
    right: 1.25rem;
}

.hero-carousel__nav {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    display: flex;
    gap: 0.4rem;
    z-index: 10;
}

.hero-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-carousel__dot.is-active,
.hero-carousel__dot[aria-current="true"] {
    width: 22px;
    background: var(--ink-on-dark);
}

/* --------------------------------------------------------------------------
   4. Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.35rem;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--ink-on-dark);
    border-color: var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--ink-on-dark);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.btn-review {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.6);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35);
    font-weight: 700;
}

.btn-review:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.5);
    color: #ffffff;
}

.btn-sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
}

.btn-accent-soft {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--accent-border);
    font-weight: 600;
}

.btn-accent-soft:hover {
    background: var(--accent);
    color: var(--ink-on-dark);
}

.visit-action-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-outline {
    background: transparent;
    color: var(--ink-primary);
    border: 1px solid var(--border-medium);
}

.btn-outline:hover {
    background: var(--bg-sunken);
    border-color: var(--accent);
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   5. Sticky Section Navigation
   -------------------------------------------------------------------------- */
.profile-nav-wrapper {
    position: sticky;
    top: var(--brand-nav-height);
    z-index: 50;
    background: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    transition: top 0.2s ease;
}

.profile-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.profile-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    padding: 0.65rem 0;
    flex: 1;
    min-width: 0;
}

.profile-nav::-webkit-scrollbar {
    display: none;
}

.profile-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-secondary);
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.profile-nav__link:hover {
    color: var(--ink-primary);
    background: var(--bg-sunken);
}

.profile-nav__link.is-active,
.profile-nav__link[aria-current="true"] {
    color: var(--accent);
    background: var(--accent-soft);
    font-weight: 600;
}

/* Theme Switcher Slider */
.theme-slider {
    display: inline-flex;
    align-items: center;
    background: var(--bg-sunken);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 3px;
    gap: 2px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.theme-slider__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.theme-slider__btn:hover {
    color: var(--ink-primary);
    background: rgba(125, 125, 125, 0.12);
}

.theme-slider__btn.is-active,
.theme-slider__btn[aria-checked="true"] {
    background: var(--bg-surface-raised);
    color: var(--accent);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Glassmorphic theme slider when inside Hero section */
.hero-section .theme-slider {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-section .theme-slider__btn {
    color: rgba(255, 255, 255, 0.65);
}

.hero-section .theme-slider__btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.hero-section .theme-slider__btn.is-active,
.hero-section .theme-slider__btn[aria-checked="true"] {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   6. Content Layout & Shared Section Styles
   -------------------------------------------------------------------------- */
.main-content {
    flex: 1;
    padding: 2.5rem 0 4rem;
}

.profile-section {
    scroll-margin-top: calc(var(--brand-nav-height) + var(--nav-height) + 1.25rem);
    margin-bottom: 3.5rem;
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}

.section-header {
    margin-bottom: 1.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink-primary);
    margin: 0 0 0.4rem 0;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--ink-muted);
    margin: 0;
}

/* --------------------------------------------------------------------------
   7. At-a-Glance Info Card (#visit)
   -------------------------------------------------------------------------- */
.info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0;
}

.info-content {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink-primary);
    margin: 0;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.info-link:hover {
    text-decoration: underline;
}

/* Hours List inside Info Card */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    color: var(--ink-secondary);
}

.hours-row--today {
    background: var(--accent-soft);
    color: var(--ink-primary);
    font-weight: 600;
    border: 1px solid var(--accent-border);
}

.hours-day {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hours-today-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--accent);
    color: var(--ink-on-dark);
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-full);
}

/* Rating & Price Row */
.rating-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-top: 0.25rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--ink-primary);
}

.price-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.65rem;
    background: var(--bg-sunken);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-secondary);
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   8. About Section (#about)
   -------------------------------------------------------------------------- */
.about-card {
    background: var(--bg-surface);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-sm);
    border-top: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--ink-primary);
    margin: 0;
    font-style: italic;
}

/* --------------------------------------------------------------------------
   9. Menu / Offerings Section (#menu)
   -------------------------------------------------------------------------- */
.profile-menu {
    scroll-margin-top: calc(var(--brand-nav-height) + var(--nav-height) + 1.25rem);
    margin-bottom: 3.5rem;
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}

.menu-section {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-section[open] {
    border-color: var(--border-medium);
}

.menu-section-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    background: var(--bg-surface);
    list-style: none;
    user-select: none;
    transition: background-color 0.2s ease;
}

.menu-section-summary::-webkit-details-marker {
    display: none;
}

.menu-section-summary:hover {
    background: var(--bg-sunken);
}

.menu-section-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink-primary);
    margin: 0;
}

.menu-section-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-section-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink-muted);
    background: var(--bg-sunken);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

.menu-section-chevron {
    width: 20px;
    height: 20px;
    color: var(--ink-muted);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.menu-section[open] .menu-section-chevron {
    transform: rotate(180deg);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0 1.25rem 1.25rem 1.25rem;
    margin: 0;
}

.menu-item-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.menu-item-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-border);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.menu-item-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink-primary);
}

.menu-item-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--ink-muted);
    margin: 0.25rem 0 0 0;
    line-height: 1.5;
}

.menu-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.tag-pill {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.15rem 0.45rem;
    background: var(--bg-sunken);
    color: var(--ink-secondary);
    border-radius: var(--radius-full);
}

.menu-item--unavailable {
    opacity: 0.6;
}

/* --------------------------------------------------------------------------
   10. Gallery Section (#gallery)
   -------------------------------------------------------------------------- */
.profile-gallery {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}

.gallery-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gallery-see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--accent-border);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-see-more-btn:hover {
    background: var(--accent);
    color: var(--ink-on-dark);
    transform: translateY(-1px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.gallery-card {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-sunken);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    position: relative;
    aspect-ratio: 16 / 9;
}

.gallery-card--hidden {
    display: none;
}

.gallery-card--has-more .gallery-img {
    filter: brightness(0.5);
}

.gallery-more-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(15, 14, 13, 0.4);
    backdrop-filter: blur(2px);
    color: #ffffff;
    gap: 0.25rem;
    transition: background 0.2s ease;
}

.gallery-card:hover .gallery-more-overlay {
    background: rgba(15, 14, 13, 0.58);
}

.gallery-more-badge {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gallery-more-sub {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.9;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #fff;
    padding: 0.75rem 0.6rem 0.4rem;
    font-size: 0.8rem;
    text-align: center;
}

/* Lightbox Dialog */
.gallery-lightbox {
    border: none;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    color: var(--ink-primary);
    padding: 0;
    max-width: min(90vw, 840px);
    width: 100%;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.gallery-lightbox::backdrop {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
}

.gallery-lightbox__inner {
    position: relative;
    display: flex;
    flex-direction: column;
}

.gallery-lightbox__viewport {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.gallery-lightbox__img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #000;
}

.gallery-lightbox__footer {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-lightbox__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.gallery-lightbox__counter {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.gallery-lightbox__caption {
    margin: 0;
    font-size: 0.9rem;
}

.gallery-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

/* --------------------------------------------------------------------------
   12. Review Platform Selection Modal
   -------------------------------------------------------------------------- */
.review-platform-modal {
    border: none;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    color: var(--ink-primary);
    padding: 0;
    max-width: min(92vw, 440px);
    width: 100%;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.review-platform-modal::backdrop {
    background: rgba(15, 14, 13, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.review-platform-modal__inner {
    position: relative;
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.review-platform-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-sunken);
    color: var(--ink-muted);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.review-platform-modal__close:hover {
    background: var(--border-medium);
    color: var(--ink-primary);
}

.review-platform-modal__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.review-platform-modal__icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.review-platform-modal__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: var(--ink-primary);
}

.review-platform-modal__subtitle {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin: 0;
}

.review-platform-modal__options {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.review-platform-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md);
    background: var(--bg-base);
    border: 1.5px solid var(--border-subtle);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.review-platform-option:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.review-platform-option--google:hover {
    border-color: #4285f4;
    background: rgba(66, 133, 244, 0.04);
}

.review-platform-option--zomato:hover {
    border-color: #e23744;
    background: rgba(226, 55, 68, 0.04);
}

.review-platform-option__icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
}

.review-platform-option__icon-box--zomato {
    background: #e23744;
}

.zomato-badge-text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.72rem;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.review-platform-option__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.review-platform-option__name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink-primary);
}

.review-platform-option__hint {
    font-size: 0.78rem;
    color: var(--ink-muted);
}

.review-platform-option__chevron {
    color: var(--ink-faint);
    transition: transform 0.2s ease, color 0.2s ease;
}

.review-platform-option:hover .review-platform-option__chevron {
    transform: translateX(3px);
    color: var(--ink-primary);
}

.mobile-action-btn--accent {
    color: #f59e0b;
}

.brand-navbar__review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-navbar__review-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

/* --------------------------------------------------------------------------
   11. FAQ Section (#faq)
   -------------------------------------------------------------------------- */
.profile-faq {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
    border-color: var(--accent-border);
    box-shadow: var(--shadow-sm);
}

.faq-summary {
    padding: 1.15rem 1.35rem;
    font-weight: 600;
    font-size: 1.025rem;
    color: var(--ink-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary:hover {
    color: var(--accent);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--ink-muted);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 1.35rem 1.25rem 1.35rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-secondary);
    margin: 0;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 2.5rem 0;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.88rem;
    color: var(--ink-muted);
}

.footer-brand {
    font-weight: 600;
    color: var(--ink-primary);
    display: inline-flex;
    align-items: center;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-brand-link:hover {
    color: var(--accent);
}

.footer-logo-img {
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 2px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.footer-attribution a {
    color: var(--accent);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   13. Mobile Sticky Bottom Action Bar
   -------------------------------------------------------------------------- */
.mobile-action-bar {
    display: none;
}

@media (max-width: 768px) {
    :root {
        --brand-nav-height: 48px;
        --nav-height: 42px;
    }

    .brand-navbar__call-btn {
        display: none;
    }

    .brand-navbar__logo-box {
        width: 28px;
        height: 28px;
    }

    .brand-navbar__name {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .profile-nav__link {
        padding: 0.35rem 0.75rem;
        font-size: 0.85rem;
    }

    .info-card {
        gap: 1.5rem;
        padding: 1.25rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    /* 1. Full-width hero on mobile without desktop margins/radius */
    .hero-carousel {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    /* 2. Hide desktop carousel prev/next buttons on mobile */
    .hero-carousel__btn {
        display: none !important;
    }

    /* 3. Hide cluttered desktop CTA buttons from hero carousel on mobile (available in sticky bottom bar) */
    .hero-carousel .hero-ctas {
        display: none !important;
    }

    /* 3. Adaptable dynamic hero photo aspect ratio on mobile */
    .hero-carousel__slide {
        aspect-ratio: 16 / 9;
        min-height: unset;
        max-height: 58vw;
        height: auto;
    }

    .hero-carousel__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* 4. Sleek scrim on mobile letting the HD photo stay visible */
    .hero-carousel__scrim {
        padding: 1rem 1rem 1.4rem;
        background: linear-gradient(
            to top,
            rgba(15, 14, 13, 0.85) 0%,
            rgba(15, 14, 13, 0.35) 45%,
            rgba(15, 14, 13, 0) 100%
        );
    }

    .hero-title {
        font-size: clamp(1.35rem, 5.5vw, 1.85rem);
        margin-bottom: 0.2rem;
    }

    .hero-rating-line {
        font-size: 0.82rem;
    }

    .hero-carousel__nav {
        bottom: 0.6rem;
        right: 1rem;
    }

    /* 5. Sleek, compact bottom navigation tab bar with small uniform buttons */
    .mobile-action-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: var(--bg-surface-glass);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-medium);
        display: flex;
        align-items: stretch;
        justify-content: space-around;
        padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -2px 14px rgba(0, 0, 0, 0.1);
    }

    .mobile-action-btn {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        padding: 0.35rem 0.2rem;
        border-radius: var(--radius-sm);
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--ink-secondary);
        background: transparent;
        border: none;
        text-decoration: none;
        line-height: 1;
        min-height: 48px;
        min-width: 0;
        cursor: pointer;
        transition: color 0.2s ease, background 0.2s ease, transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-action-btn:hover {
        color: var(--accent);
        background: var(--bg-sunken);
    }

    .mobile-action-btn:active {
        transform: scale(0.92);
    }

    .mobile-action-btn--review {
        color: var(--accent);
    }

    .mobile-action-btn--call {
        color: var(--ink-primary);
    }

    .mobile-action-icon {
        width: 19px;
        height: 19px;
        flex-shrink: 0;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        transform-origin: center center;
    }

    /* Professional Icon Micro-Animations */
    @keyframes star-idle-pulse {
        0%, 82%, 100% {
            transform: scale(1);
        }
        90% {
            transform: scale(1.14) rotate(6deg);
        }
        95% {
            transform: scale(1.05) rotate(-3deg);
        }
    }

    @keyframes star-shimmer {
        0%, 100% {
            transform: scale(1) rotate(0deg);
        }
        25% {
            transform: scale(1.22) rotate(14deg);
        }
        50% {
            transform: scale(0.95) rotate(-8deg);
        }
        75% {
            transform: scale(1.1) rotate(4deg);
        }
    }

    @keyframes phone-ring {
        0%, 100% {
            transform: rotate(0deg) scale(1);
        }
        20% {
            transform: rotate(-18deg) scale(1.15);
        }
        40% {
            transform: rotate(18deg) scale(1.15);
        }
        60% {
            transform: rotate(-10deg) scale(1.08);
        }
        80% {
            transform: rotate(10deg) scale(1.05);
        }
    }

    @keyframes pin-jump {
        0%, 100% {
            transform: translateY(0) scale(1);
        }
        35% {
            transform: translateY(-4px) scale(1.12);
        }
        65% {
            transform: translateY(1.5px) scale(0.94);
        }
        80% {
            transform: translateY(-1.5px) scale(1.03);
        }
    }

    @keyframes menu-pop {
        0%, 100% {
            transform: scale(1);
        }
        40% {
            transform: scale(1.2) rotate(-6deg);
        }
        75% {
            transform: scale(0.94) rotate(3deg);
        }
    }

    .mobile-action-btn--review .mobile-action-icon {
        animation: star-idle-pulse 5s ease-in-out infinite;
    }

    .mobile-action-btn--review:hover .mobile-action-icon,
    .mobile-action-btn--review:active .mobile-action-icon {
        animation: star-shimmer 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-action-btn--call:hover .mobile-action-icon,
    .mobile-action-btn--call:active .mobile-action-icon {
        animation: phone-ring 0.6s ease;
    }

    .mobile-action-btn--directions:hover .mobile-action-icon,
    .mobile-action-btn--directions:active .mobile-action-icon {
        animation: pin-jump 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-action-btn--menu:hover .mobile-action-icon,
    .mobile-action-btn--menu:active .mobile-action-icon {
        animation: menu-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* 6. Ensure entire footer is completely scrolled above the sticky mobile bottom bar */
    .site-footer {
        padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 16px)) !important;
    }

    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 480px) {
    .brand-navbar__badge {
        padding: 0.12rem 0.45rem;
        font-size: 0.68rem;
    }

    .brand-navbar__name {
        font-size: 0.95rem;
    }

    .hero--typographic .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero--typographic .hero-ctas .btn {
        width: 100%;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   14. Reduced Motion & Responsive Utilities
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
