/* ========================================
   CULICHI'S PAN - Custom Stylesheet
   Color Palette: Plum (#4A1C40) + Amber (#F4B942)
   ======================================== */

/* CSS Custom Properties */
:root {
    --color-plum-dark: #2D0A25;
    --color-plum: #4A1C40;
    --color-plum-light: #6B2D5C;
    --color-plum-lighter: #8B3D78;
    --color-plum-pale: #F5E6F0;
    --color-plum-paler: #FDF2F8;
    
    --color-amber-dark: #C49A2A;
    --color-amber: #F4B942;
    --color-amber-light: #FCD67C;
    --color-amber-pale: #FFF8E7;
    
    --color-white: #FFFFFF;
    --color-off-white: #FAFAFA;
    --color-light: #F5F5F5;
    --color-gray: #6B7280;
    --color-dark: #1F2937;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(74, 28, 64, 0.08);
    --shadow-md: 0 4px 20px rgba(74, 28, 64, 0.12);
    --shadow-lg: 0 10px 40px rgba(74, 28, 64, 0.15);
    --shadow-xl: 0 20px 60px rgba(74, 28, 64, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

@media (prefers-reduced-motion: no-preference) {
    .cursor, .cursor-follower {
        position: fixed;
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.1s ease;
    }
    .cursor {
        width: 8px;
        height: 8px;
        background: var(--color-amber);
    }
    .cursor-follower {
        width: 40px;
        height: 40px;
        border: 2px solid var(--color-plum-light);
        transition: transform 0.15s ease, width 0.2s, height 0.2s;
    }
    .cursor-follower.hover {
        width: 60px;
        height: 60px;
        border-color: var(--color-amber);
        background: rgba(244, 185, 66, 0.1);
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-plum);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--color-amber);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-plum-dark);
    margin-bottom: 24px;
}

.text-accent {
    color: var(--color-amber-dark);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.mt-5 {
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: none;
}

.btn-primary {
    background: var(--color-amber);
    color: var(--color-plum-dark);
    border-color: var(--color-amber);
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-plum);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-plum);
    border-color: var(--color-plum);
}

.btn-outline:hover {
    background: var(--color-plum);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--color-plum-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-amber);
    color: var(--color-plum-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-body);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--color-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-amber);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-amber);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--color-plum);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span {
    background: var(--color-plum-dark);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-plum-dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-white);
}

.mobile-menu a:hover {
    color: var(--color-amber);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--color-plum-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-amber);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-plum-lighter);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--color-amber-light);
    top: 50%;
    left: 40%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 185, 66, 0.15);
    border: 1px solid rgba(244, 185, 66, 0.3);
    color: var(--color-amber);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-amber);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .title-line {
    display: block;
}

.hero-title .accent {
    color: var(--color-amber);
    font-style: italic;
}

.hero-title em {
    font-style: italic;
    color: var(--color-amber-light);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-secondary {
    width: 260px;
    height: 320px;
    bottom: 40px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--color-plum-dark);
}

.hero-card {
    position: absolute;
    bottom: 280px;
    right: -20px;
    z-index: 4;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    color: var(--color-plum-dark);
    font-size: 0.95rem;
}

.card-text span {
    color: var(--color-gray);
    font-size: 0.8rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-amber), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--color-plum-pale);
    border-radius: 50%;
    opacity: 0.5;
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-md);
}

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

.about-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: var(--color-amber);
    border-radius: var(--radius-md);
    transform: rotate(15deg);
    z-index: -1;
}

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

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

.about-text em {
    color: var(--color-plum);
    font-style: italic;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-plum-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-plum);
}

.feature strong {
    display: block;
    color: var(--color-plum-dark);
    margin-bottom: 2px;
}

.feature span {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Menu Section */
.menu-preview {
    padding: 120px 0;
    background: var(--color-plum-paler);
    position: relative;
}

.menu-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-plum), var(--color-amber), var(--color-plum));
}

.section-header {
    margin-bottom: 48px;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 10px 24px;
    border: 2px solid var(--color-plum);
    background: transparent;
    color: var(--color-plum);
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: none;
    transition: var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--color-plum);
    color: var(--color-white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.menu-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.menu-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-amber);
    color: var(--color-plum-dark);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-card-content {
    padding: 24px;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.menu-card-header h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-plum-dark);
}

.menu-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-amber-dark);
}

.menu-card-content p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Atmosphere Section */
.atmosphere {
    padding: 120px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

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

.atm-content {
    order: 1;
}

.atm-text {
    font-size: 1.05rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.atm-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.atm-highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.atm-highlight-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-amber);
    line-height: 1;
    min-width: 40px;
}

.atm-highlight strong {
    display: block;
    color: var(--color-plum-dark);
    margin-bottom: 4px;
}

.atm-highlight p {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.atm-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    order: 2;
}

.atm-img {
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.atm-img:hover img {
    transform: scale(1.05);
}

.atm-img-1 {
    grid-row: 1 / 3;
    height: 400px;
}

.atm-img-2 {
    height: 190px;
}

.atm-img-3 {
    height: 190px;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--color-plum-dark);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--color-plum-light);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.3;
}

.testimonials .section-label {
    color: var(--color-amber);
}

.testimonials .section-title {
    color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: var(--color-amber);
    border-color: var(--color-amber);
}

.testimonial-card.featured .testimonial-text {
    color: var(--color-plum-dark);
}

.testimonial-card.featured .testimonial-author strong {
    color: var(--color-plum-dark);
}

.testimonial-card.featured .testimonial-author span {
    color: var(--color-plum-light);
}

.testimonial-stars {
    color: var(--color-plum-dark);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--color-amber);
    color: var(--color-plum-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--color-white);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--color-white);
    position: relative;
}

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

.contact-text {
    font-size: 1.05rem;
    color: var(--color-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-plum-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-plum);
}

.contact-item strong {
    display: block;
    color: var(--color-plum-dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-item a {
    color: var(--color-plum);
}

.contact-item a:hover {
    color: var(--color-amber-dark);
}

.contact-form-wrapper {
    background: var(--color-plum-paler);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-plum-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--color-plum-pale);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-dark);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-amber);
    box-shadow: 0 0 0 3px rgba(244, 185, 66, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray);
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--color-amber);
    color: var(--color-plum-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.success-icon p {
    color: var(--color-gray);
}

/* Map Section */
.map-section {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 10, 37, 0.85), rgba(74, 28, 64, 0.75));
    display: flex;
    align-items: center;
}

.map-content {
    text-align: center;
    color: var(--color-white);
}

.map-content h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.map-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

/* Footer */
.footer {
    background: var(--color-plum-dark);
    color: var(--color-white);
    padding: 80px 0 0;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-hours h4,
.footer-social h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-amber);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-amber);
}

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

.footer-hours p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-amber);
    color: var(--color-plum-dark);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid,
    .atm-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .atm-content {
        order: 2;
    }
    
    .atm-gallery {
        order: 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .atm-gallery {
        grid-template-columns: 1fr;
    }
    
    .atm-img-1 {
        grid-row: auto;
        height: 250px;
    }
    
    .atm-img-2,
    .atm-img-3 {
        height: 200px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    body {
        cursor: auto;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
    
    .btn, button {
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}
