@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Cormorant:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --cream: #FFFDF0;
    --rose-light: #E6C8D9;
    --rose-muted: #C187AC;
    --olive-light: #B2C28F;
    --olive-dark: #5F7236;
    --green-logo: #063E0B;
    --bg-cream: #FFFDF0;
    --bg-dark-green: #063E0B;
    --bg-light-pink: #F5E8EF;
    --bg-light-olive: #EFF3E6;
    --gradient-warm: linear-gradient(135deg, #FFFDF0, #E6C8D9);
    --gradient-nature: linear-gradient(135deg, #B2C28F, #5F7236);
    --gradient-accent: linear-gradient(135deg, #C187AC, #063E0B);
    --gradient-dark: linear-gradient(180deg, #063E0B, #042607);
    --shadow-sm: 0 2px 8px rgba(6, 62, 11, 0.06);
    --shadow-md: 0 4px 20px rgba(6, 62, 11, 0.08);
    --shadow-lg: 0 8px 30px rgba(6, 62, 11, 0.12);
    --shadow-xl: 0 12px 40px rgba(6, 62, 11, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s ease;
}

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

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

body {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #2D2D2D;
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--green-logo);
}

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

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

ul {
    list-style: none;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-nature);
    margin: 12px auto 0;
    border-radius: 2px;
}

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

.section-title-light::after {
    background: var(--olive-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-light {
    color: rgba(255, 253, 240, 0.8);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--green-logo);
    color: var(--cream);
    box-shadow: 0 4px 15px rgba(6, 62, 11, 0.3);
}

.btn-primary:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 62, 11, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--green-logo);
    border: 2px solid var(--green-logo);
}

.btn-secondary:hover {
    background: var(--green-logo);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 62, 11, 0.3);
}

.btn-secondary i {
    transition: var(--transition-fast);
}

.btn-secondary:hover i {
    transform: rotate(5deg);
}

.btn-full {
    width: 100%;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    pointer-events: none;
    transform: none !important;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ===================== HEADER ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 253, 240, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(6, 62, 11, 0.05);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(6, 62, 11, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--green-logo);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--olive-dark);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--olive-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--green-logo);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 62, 11, 0.65) 0%, rgba(6, 62, 11, 0.45) 50%, rgba(6, 62, 11, 0.7) 100%);
    z-index: 1;
}

.steam-container {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.steam {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255, 253, 240, 0.08);
    filter: blur(20px);
}

.steam-1 {
    width: 60px;
    height: 60px;
    left: 30%;
    animation: steam-rise 4s ease-in-out infinite;
}

.steam-2 {
    width: 80px;
    height: 80px;
    left: 50%;
    animation: steam-rise 5s ease-in-out infinite 1s;
}

.steam-3 {
    width: 50px;
    height: 50px;
    left: 70%;
    animation: steam-rise 4.5s ease-in-out infinite 2s;
}

@keyframes steam-rise {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    30% {
        opacity: 0.6;
        transform: scale(1.1);
    }
    70% {
        opacity: 0.3;
        transform: scale(1.3);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--cream);
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-desc {
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 1.5rem;
    opacity: 0.85;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(178, 194, 143, 0.25);
    border: 1px solid rgba(178, 194, 143, 0.5);
    color: var(--cream);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.hero .btn-primary {
    background: var(--cream);
    color: var(--green-logo);
    font-size: 1.05rem;
    padding: 16px 40px;
}

.hero .btn-primary:hover {
    background: var(--olive-light);
    color: var(--green-logo);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===================== ABOUT ===================== */
.about {
    position: relative;
    padding: 100px 0 120px;
    background: var(--cream);
}

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

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

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrap:hover .about-img {
    filter: brightness(1.08);
    transform: scale(1.03);
}

.about-text {
    padding: 20px 0;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text .section-title::after {
    margin: 12px 0 0;
}

.about-desc {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.dog-friendly-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 2rem;
    padding: 20px 24px;
    background: rgba(178, 194, 143, 0.12);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--olive-dark);
}

.dog-icon {
    font-size: 2rem;
    color: var(--olive-dark);
    flex-shrink: 0;
    margin-top: 4px;
}

.dog-title {
    font-size: 1.1rem;
    color: var(--green-logo);
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.dog-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ===================== STATS ===================== */
.stats {
    position: relative;
    padding: 80px 0 100px;
    background: var(--gradient-dark);
    color: var(--cream);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 15px;
}

.stat-number {
    font-family: 'Cormorant', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--olive-light);
    font-variant-numeric: tabular-nums;
    min-width: 120px;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 253, 240, 0.75);
    font-weight: 500;
}

/* ===================== MENU SECTION ===================== */
.menu-section {
    position: relative;
    padding: 100px 0 120px;
    background: var(--cream);
}

.own-cup-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--olive-dark);
    color: var(--cream);
    padding: 14px 28px;
    border-radius: 30px;
    max-width: 380px;
    margin: 0 auto 3rem;
    animation: pulse-banner 3s ease-in-out infinite;
}

@keyframes pulse-banner {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(95, 114, 54, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(95, 114, 54, 0.5);
    }
}

.own-cup-icon {
    font-size: 1.4rem;
}

.own-cup-text {
    font-weight: 600;
    font-size: 1rem;
}

.menu-category-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--green-logo);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--rose-light);
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--green-logo);
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab:hover {
    background: var(--rose-light);
    color: var(--green-logo);
}

.menu-tab.active {
    background: var(--green-logo);
    border-color: var(--green-logo);
    color: var(--cream);
}

.menu-tab-content {
    display: none;
    animation: fadeTab 0.4s ease;
}

.menu-tab-content.active {
    display: block;
}

@keyframes fadeTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-grid {
    max-width: 700px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: baseline;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.menu-item:hover {
    background: rgba(178, 194, 143, 0.08);
}

.menu-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(193, 135, 172, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.menu-item:hover::after {
    width: 100%;
    height: 200%;
    opacity: 0.6;
}

.menu-item-name {
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.menu-item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(6, 62, 11, 0.2);
    margin: 0 10px;
    min-width: 20px;
    position: relative;
    z-index: 1;
    align-self: center;
}

.menu-item-price {
    font-weight: 600;
    color: var(--green-logo);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.addon-note {
    margin-top: 8px;
    opacity: 0.8;
}

.addons-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.addon-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.addon-pink {
    background: rgba(230, 200, 217, 0.4);
    color: var(--rose-muted);
    border: 1px solid rgba(193, 135, 172, 0.3);
}

.addon-pink:hover {
    background: rgba(230, 200, 217, 0.7);
}

.addon-olive {
    background: rgba(178, 194, 143, 0.3);
    color: var(--olive-dark);
    border: 1px solid rgba(95, 114, 54, 0.3);
}

.addon-olive:hover {
    background: rgba(178, 194, 143, 0.6);
}

.menu-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ===================== LOYALTY ===================== */
.loyalty {
    position: relative;
    padding: 100px 0 120px;
    background: var(--bg-light-pink);
}

.loyalty-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.loyalty-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
}

.loyalty-logo {
    height: 40px;
    width: auto;
}

.loyalty-label {
    font-family: 'Cormorant', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-logo);
}

.stamps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 260px;
    margin: 0 auto 1.5rem;
}

.stamp {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    border: 2px dashed var(--olive-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: rgba(95, 114, 54, 0.3);
    transition: var(--transition);
    margin: 0 auto;
    position: relative;
}

.stamp.filled {
    background: var(--gradient-nature);
    border-style: solid;
    border-color: var(--olive-dark);
    color: white;
}

.stamp.free {
    background: var(--green-logo);
    border: 2px solid var(--green-logo);
    color: var(--cream);
    animation: pulse-stamp 2s ease-in-out infinite;
    flex-direction: column;
    gap: 2px;
}

.free-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

@keyframes pulse-stamp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(6, 62, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(6, 62, 11, 0);
    }
}

.loyalty-note {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

/* ===================== GALLERY ===================== */
.gallery-section {
    position: relative;
    padding: 100px 0 120px;
    background: var(--cream);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(95, 114, 54, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    transform: scale(0.5);
    transition: var(--transition);
}

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

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--olive-light);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
    position: relative;
    padding: 100px 0 120px;
    background: var(--gradient-dark);
}

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

.testimonial-card {
    background: rgba(255, 253, 240, 0.08);
    border: 1px solid rgba(255, 253, 240, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.testimonial-card:hover {
    background: rgba(255, 253, 240, 0.12);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    margin-bottom: 16px;
}

.testimonial-quote i {
    font-size: 1.8rem;
    color: var(--olive-light);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 253, 240, 0.85);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 16px;
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #F2C94C;
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-photo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--olive-light);
}

.testimonial-name {
    font-weight: 600;
    color: var(--cream);
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: rgba(255, 253, 240, 0.6);
}

/* ===================== TEAM ===================== */
.team {
    position: relative;
    padding: 100px 0 120px;
    background: var(--cream);
}

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

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.team-photo-wrap {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-photo {
    filter: brightness(1.08);
    transform: scale(1.03);
}

.team-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-name {
    font-size: 1.3rem;
    color: var(--green-logo);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--olive-dark);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

/* ===================== CONTACT ===================== */
.contact {
    position: relative;
    padding: 100px 0 120px;
    background: var(--bg-light-olive);
}

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

.contact-info-block {
    padding: 20px 0;
}

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

.contact-info-item i {
    font-size: 1.3rem;
    color: var(--green-logo);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 62, 11, 0.08);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: #555;
}

.contact-info-item a {
    color: var(--green-logo);
}

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

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--green-logo);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--olive-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(6, 62, 11, 0.3);
}

.contact-form-block {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--green-logo);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(6, 62, 11, 0.1);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #333;
    background: var(--cream);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--olive-dark);
    box-shadow: 0 0 0 3px rgba(95, 114, 54, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

/* ===================== MAP ===================== */
.map-section {
    padding: 100px 0 80px;
    background: var(--cream);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--rose-light);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.map-wrapper:hover {
    box-shadow: var(--shadow-xl);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--green-logo);
    color: rgba(255, 253, 240, 0.8);
    padding: 60px 0 0;
}

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

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(10);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 253, 240, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--olive-light);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a {
    color: rgba(255, 253, 240, 0.7);
}

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

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255, 253, 240, 0.1);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 253, 240, 0.5);
}

/* ===================== EXIT POPUP ===================== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.exit-popup.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.exit-popup-content {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: var(--transition);
}

.exit-popup.active .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.exit-popup-close:hover {
    color: var(--green-logo);
    transform: rotate(90deg);
}

.exit-popup-icon {
    font-size: 3rem;
    color: var(--olive-dark);
    margin-bottom: 16px;
}

.exit-popup-title {
    font-size: 1.8rem;
    color: var(--green-logo);
    margin-bottom: 12px;
}

.exit-popup-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

.exit-popup-btn {
    margin-top: 8px;
}

/* ===================== SCROLL TOP ===================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    background: var(--green-logo);
    color: var(--cream);
    border: none;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(6, 62, 11, 0.3);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    animation: bounce-subtle 0.6s ease;
}

.scroll-top-btn:hover {
    background: var(--olive-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(6, 62, 11, 0.35);
}

@keyframes bounce-subtle {
    0% { transform: translateY(10px); opacity: 0; }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); opacity: 1; }
}

/* ===================== TOAST NOTIFICATIONS ===================== */
.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    transition: right 0.3s ease-out;
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

/* ===================== ANIMATIONS ===================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.no-js .animate-on-scroll,
noscript ~ * .animate-on-scroll {
    opacity: 1;
    transform: none;
}

/* ===================== COMPARISON SLIDER ===================== */
.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: ew-resize;
    user-select: none;
}

.comparison-images {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-before {
    z-index: 1;
}

.comparison-after {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    transition: clip-path 0.05s ease;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    z-index: 10;
    pointer-events: none;
    font-size: 0.85rem;
}

.comparison-before .comparison-label {
    left: 20px;
}

.comparison-after .comparison-label {
    right: 20px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: var(--radius-full);
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    pointer-events: auto;
}

.comparison-divider::before,
.comparison-divider::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.comparison-divider::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent #333 transparent transparent;
    left: 10px;
}

.comparison-divider::after {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #333;
    right: 10px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrap {
        max-height: 400px;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text .section-title::after {
        margin: 12px auto 0;
    }

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

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid .team-card:last-child {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(6, 62, 11, 0.08);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-grid .team-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.4rem;
        min-width: 100px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-desc {
        max-width: none;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .loyalty-card {
        padding: 30px 24px;
    }

    .stamps-grid {
        gap: 10px;
    }

    .stamp {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .menu-tabs {
        gap: 6px;
    }

    .menu-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .menu-item-name {
        font-size: 0.85rem;
    }

    .comparison-slider {
        max-width: 100%;
        border-radius: var(--radius-sm);
    }

    .comparison-divider {
        width: 40px;
        height: 40px;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 576px) {
    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
    }

    .toast-notification.show {
        right: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
        min-width: 80px;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .own-cup-banner {
        padding: 12px 20px;
    }

    .own-cup-text {
        font-size: 0.9rem;
    }

    .addons-pills {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-block {
        padding: 24px 20px;
    }

    .exit-popup-content {
        padding: 36px 24px;
    }

    .exit-popup-title {
        font-size: 1.4rem;
    }

    .exit-popup-text {
        font-size: 0.9rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .stamps-grid {
        max-width: 220px;
    }

    .stamp {
        width: 55px;
        height: 55px;
        font-size: 1rem;
    }

    .menu-item {
        padding: 10px 8px;
    }

    .dog-friendly-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .header-inner {
        height: 60px;
    }

    .logo-img {
        height: 35px;
    }

    .hero {
        padding-top: 60px;
    }
}