/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #fffbe6;
    --cream-100: #fff8d6;
    --cream-200: #fef3c7;
    --cream-300: #fde68a;
    --warm-white: #fefcf7;
    --warm-gray-50: #fafaf8;
    --warm-gray-100: #f5f5f0;
    --warm-gray-200: #e8e8e0;
    --warm-gray-300: #d4d4cc;
    --warm-gray-500: #787870;
    --warm-gray-700: #3d3d38;
    --warm-gray-900: #1a1a16;
    --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.06), 0 1px 2px rgba(6, 78, 59, 0.04);
    --shadow-md: 0 4px 16px rgba(6, 78, 59, 0.08), 0 2px 6px rgba(6, 78, 59, 0.05);
    --shadow-lg: 0 12px 40px rgba(6, 78, 59, 0.12), 0 4px 12px rgba(6, 78, 59, 0.06);
    --shadow-xl: 0 24px 60px rgba(6, 78, 59, 0.14), 0 8px 20px rgba(6, 78, 59, 0.08);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--warm-gray-900);
    background-color: var(--warm-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 252, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(254, 252, 247, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--emerald-800);
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--emerald-800);
    color: var(--cream-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.logo-accent {
    color: var(--emerald-600);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-gray-700);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--emerald-700);
    background: rgba(6, 78, 59, 0.06);
}

.nav-cta {
    background: var(--emerald-800);
    color: var(--cream-50) !important;
    font-weight: 600;
    margin-left: 6px;
}

.nav-cta:hover {
    background: var(--emerald-700);
    color: var(--cream-50) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    border-radius: var(--radius-sm);
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--emerald-800);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger span {
    width: 60%;
    margin-left: auto;
}

.hamburger::before {
    content: '';
}

.hamburger::after {
    content: '';
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream-50) 50%, var(--cream-100) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 78, 59, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(6, 78, 59, 0.07);
    border: 1px solid rgba(6, 78, 59, 0.12);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--emerald-700);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--emerald-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--warm-gray-900);
    margin-bottom: 24px;
}

.hero-headline em {
    color: var(--emerald-700);
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--warm-gray-500);
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--emerald-800);
    color: var(--cream-50);
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.25);
}

.btn-primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.3);
}

.btn-secondary {
    background: var(--warm-white);
    color: var(--emerald-800);
    border: 1.5px solid rgba(6, 78, 59, 0.2);
}

.btn-secondary:hover {
    border-color: var(--emerald-600);
    background: rgba(6, 78, 59, 0.04);
    transform: translateY(-2px);
}

.btn-cream {
    background: var(--cream-50);
    color: var(--emerald-800);
    box-shadow: var(--shadow-md);
}

.btn-cream:hover {
    background: var(--cream-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-cream {
    background: transparent;
    color: var(--cream-50);
    border: 1.5px solid rgba(255, 251, 230, 0.4);
}

.btn-outline-cream:hover {
    background: rgba(255, 251, 230, 0.1);
    border-color: rgba(255, 251, 230, 0.7);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--warm-gray-500);
}

.trust-item svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* Hero Images */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 500px;
    aspect-ratio: 6/7;
}

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

.hero-image-float {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 260px;
    animation: float-gentle 4s ease-in-out infinite;
}

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

.hero-image-float img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.float-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--emerald-700);
}

.float-badge svg {
    color: var(--emerald-500);
    flex-shrink: 0;
}

.hero-accent-circle {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--emerald-600);
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--warm-gray-900);
    margin-bottom: 20px;
}

.section-title em {
    color: var(--emerald-700);
    font-style: italic;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 24px;
    background: var(--warm-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    max-width: 500px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-gray-500);
    margin-bottom: 18px;
}

.about-stats {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 140px;
    padding: 20px 22px;
    background: var(--cream-50);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 78, 59, 0.06);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--warm-gray-500);
    line-height: 1.4;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.about-img-1 {
    height: 320px;
}

.about-img-2 {
    height: 240px;
}

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

.about-img:hover img {
    transform: scale(1.03);
}

/* ===== MENU ===== */
.menu {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--warm-white) 100%);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.menu-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--warm-gray-500);
}

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

.menu-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(6, 78, 59, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 78, 59, 0.12);
}

.menu-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--warm-gray-200);
}

.menu-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--emerald-700), var(--emerald-500));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-50);
    flex-shrink: 0;
}

.menu-icon--drinks {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.menu-icon--food {
    background: linear-gradient(135deg, #d97706, #fbbf24);
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--warm-gray-900);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-list li {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--warm-gray-900);
}

.menu-item-desc {
    font-size: 0.82rem;
    color: var(--warm-gray-500);
    line-height: 1.4;
}

.menu-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--warm-gray-500);
}

.menu-note a {
    color: var(--emerald-600);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(16, 185, 129, 0.3);
    text-underline-offset: 3px;
    transition: var(--transition);
}

.menu-note a:hover {
    text-decoration-color: var(--emerald-600);
}

/* ===== ATMOSPHERE ===== */
.atmosphere {
    padding: 100px 24px;
    background: var(--warm-white);
}

.atmosphere-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.atmosphere .section-title {
    margin-bottom: 52px;
}

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

.atm-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(6, 78, 59, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
}

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

.atm-card-img {
    height: 220px;
    overflow: hidden;
}

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

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

.atm-card-body {
    padding: 24px 28px 28px;
}

.atm-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--warm-gray-900);
    margin-bottom: 10px;
}

.atm-card-body p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--warm-gray-500);
}

/* ===== VISIT ===== */
.visit {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-800) 100%);
    color: var(--cream-50);
}

.visit-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-content {
    max-width: 500px;
}

.visit .section-label {
    color: var(--emerald-400);
}

.visit .section-title {
    color: var(--cream-50);
}

.visit .section-title em {
    color: var(--cream-300);
}

.visit-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 251, 230, 0.7);
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

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

.detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 251, 230, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-300);
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 251, 230, 0.5);
}

.detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream-50);
    line-height: 1.6;
}

.detail-value a {
    color: var(--cream-300);
    transition: var(--transition);
}

.detail-value a:hover {
    color: var(--cream-50);
}

.visit-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
    min-height: 420px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--cream-100) 100%);
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--warm-gray-900);
    margin-bottom: 16px;
    line-height: 1.25;
}

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

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    padding: 64px 24px 32px;
    background: var(--warm-gray-900);
    color: var(--cream-50);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand {
    max-width: 280px;
}

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

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 251, 230, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 251, 230, 0.4);
    margin-bottom: 18px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 251, 230, 0.65);
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 251, 230, 0.55);
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--emerald-500);
}

.footer-contact a {
    color: rgba(255, 251, 230, 0.55);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 28px;
    font-size: 0.82rem;
    color: rgba(255, 251, 230, 0.35);
}

.footer-bottom a {
    color: rgba(255, 251, 230, 0.45);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--cream-50);
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 22, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-image-float {
        left: -20px;
        bottom: 20px;
    }
    
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-categories .menu-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        align-items: stretch;
        padding: 90px 28px 40px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }
    
    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        order: 1;
    }
    
    .hero-image-wrapper {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-image-float {
        left: -10px;
        bottom: 10px;
        max-width: 200px;
    }
    
    .hero-trust {
        gap: 20px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .menu-categories .menu-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .atm-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .visit-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visit-content {
        max-width: 100%;
    }
    
    .visit-map {
        min-height: 300px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 20px 50px;
    }
    
    .hero-headline {
        font-size: 1.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .visit-actions {
        flex-direction: column;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
