/* ════════════════════════════════════════════
   AlyCakes Custom — Design System
   Brand Colors: Pink #ec4899, Purple #a855f7, Cyan #06b6d4
   ════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
    --pink: #ec4899;
    --pink-light: #fce7f3;
    --pink-50: #fdf2f8;
    --purple: #a855f7;
    --purple-dark: #7c3aed;
    --purple-light: #f3e8ff;
    --cyan: #06b6d4;
    --dark: #1a1a2e;
    --dark-2: #16162a;
    --dark-3: #0f0f1a;
    --text: #171717;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --white: #ffffff;
    --off-white: #fafafa;
    --border: #f3f4f6;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --nav-height: 80px;
    --section-padding: 100px;
    --container-max: 1200px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --shadow-glow: 0 0 40px rgba(236, 72, 153, 0.3);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Typography ─── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--pink);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section {
    padding: var(--section-padding) 0;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ═══════════════════ NAVIGATION ═══════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.4s var(--ease-out);
    background: transparent;
}

.nav.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    height: 70px;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s var(--ease-spring);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1) rotate(5deg);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--pink);
}

.nav-cta {
    background: linear-gradient(135deg, var(--pink), var(--purple)) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    position: absolute;
}

.hamburger {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger::before {
    content: '';
    top: -7px;
    left: 0;
}

.hamburger::after {
    content: '';
    top: 7px;
    left: 0;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(236, 72, 153, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--dark-3) 0%, var(--dark) 50%, var(--dark-2) 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(236, 72, 153, 0.5);
    border-radius: 50%;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero-logo-wrapper {
    margin-bottom: 32px;
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 60px rgba(236, 72, 153, 0.3), 0 0 120px rgba(168, 85, 247, 0.2);
    animation: logo-pulse 4s ease-in-out infinite;
}

@keyframes logo-pulse {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(236, 72, 153, 0.3), 0 0 120px rgba(168, 85, 247, 0.2);
    }

    50% {
        box-shadow: 0 0 80px rgba(236, 72, 153, 0.5), 0 0 160px rgba(168, 85, 247, 0.3);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ═══════════════════ ABOUT ═══════════════════ */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-xl);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(236, 72, 153, 0.2);
    border-radius: 20px;
    pointer-events: none;
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.about-exp-text {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.4;
}


.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.about-stat {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ═══════════════════ MENU / SERVICES ═══════════════════ */
.menu-section {
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.menu-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.menu-card:hover::before {
    transform: scaleX(1);
}

.menu-card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.menu-card-notice {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pink);
    background: var(--pink-light);
    padding: 4px 12px;
    border-radius: 20px;
}

/* To-Go Banner */
.togo-banner {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.togo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.togo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.togo-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.togo-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    max-width: 500px;
}

.togo-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
}

.togo-detail {
    color: rgba(255, 255, 255, 0.8);
}

.togo-detail strong {
    color: white;
}

/* ═══════════════════ GALLERY ═══════════════════ */
.gallery-section {
    background: var(--off-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease-out);
}

.gallery-filter:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.gallery-filter.active {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
    min-height: 400px;
    /* CFP-04: Stabilize layout during filter transitions */
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s ease,
        filter 0.35s ease;
}

.gallery-item.hidden {
    transform: scale(0.85);
    opacity: 0;
    filter: blur(4px);
    pointer-events: none;
    /* CFP-05: No position:absolute — items fade in-place within the grid */
}

.gallery-item.entering {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
}

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

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
    display: block;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

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

.gallery-placeholder small {
    font-size: 0.8rem;
    font-weight: 500;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.gallery-category {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* ═══════════════════ REVIEWS ═══════════════════ */
.reviews-section {
    background: var(--off-white);
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    padding: 12px 28px;
    border-radius: 50px;
    margin-top: 16px;
    border: none;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
    /* CFP-08: Override browser default anchor styling */
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(168, 85, 247, 0.5);
}

.reviews-badge .reviews-rating {
    color: white;
}

.reviews-badge .reviews-stars {
    color: #ffd700;
}

.reviews-badge .reviews-count {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.google-icon {
    flex-shrink: 0;
}

.reviews-rating {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.reviews-stars {
    color: #fbbc05;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.reviews-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─── Speech Bubble Review Cards Layout ─── */
.review-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 16px;
    align-items: stretch;
}

.review-card-wrapper {
    flex: 1 1 calc(33.333% - 28px);
    max-width: 420px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

/* Force bubble to grow if content is short so buttons align (optional but good for stretch) */
.review-bubble {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 20px;
    padding: 28px 28px 22px;
    color: white;
    position: relative;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}

.review-bubble:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(168, 85, 247, 0.45);
}

/* Speech bubble pointer (downward arrow) */
.review-bubble::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 18px solid #7c3aed;
}

.review-bubble-stars {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-bubble-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
}

.review-bubble-readmore {
    background: none;
    border: none;
    color: #e9d5ff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    margin-top: 4px;
    display: inline-block;
}

/* Author row sits below the bubble */
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 4px 8px;
}

.review-author-initials-container {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.review-author-avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(168, 85, 247, 0.4);
    background: white;
    z-index: 2;
}

.review-author-initials {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    z-index: 1;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

.review-author-time {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}



.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.review-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.review-source {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ═══════════════════ LOCATION ═══════════════════ */
.location-section {
    background: var(--off-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.location-map {
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.location-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s var(--ease-out);
}

.location-card:hover {
    border-color: var(--pink-light);
    box-shadow: var(--shadow-md);
}

.location-card-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.location-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.location-card a {
    color: var(--pink);
    transition: color 0.3s;
}

.location-card a:hover {
    color: var(--purple);
}

.hours-notice {
    display: inline-block;
    font-weight: 600;
    color: var(--pink) !important;
    font-size: 0.85rem !important;
    margin-bottom: 12px !important;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .closed {
    color: var(--text-light);
}

/* ═══════════════════ CTA SECTION ═══════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--dark-3), var(--dark), var(--dark-2));
    padding: 120px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
    background: var(--dark-3);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    transform: translateY(-2px);
}

.footer-nav h4,
.footer-contact h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav a {
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--pink);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-contact a {
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--pink);
}

.footer-cta {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    color: var(--pink) !important;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════ LIGHTBOX ═══════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: white;
    font-size: 2rem;
    z-index: 2001;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

/* ═══════════════════ SCROLL REVEAL ═══════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

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

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --nav-height: 70px;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 4px;
        transition: right 0.4s var(--ease-out);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-frame {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .togo-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    /* Reviews */

    /* Location */
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 300px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-filters {
        gap: 6px;
    }

    .gallery-filter {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reviews-badge {
        flex-wrap: wrap;
        justify-content: center;
    }
}