:root {
    --coffee-dark: #3C2415;
    --coffee-brown: #6F4E37;
    --coffee-medium: #8B6914;
    --coffee-tan: #9B7653;
    --coffee-caramel: #D4A574;
    --coffee-latte: #E8D5B5;
    --coffee-cream: #F5E6D3;
    --coffee-milk: #FFF8F0;
    --coffee-white: #FFFDFB;

    --accent-orange: #E8751A;
    --accent-amber: #F59E0B;
    --accent-gold: #B8860B;
    --accent-rust: #C06014;
    --accent-rose: #E07B6E;
    --accent-green: #5B8A3C;

    --gradient-hero: linear-gradient(135deg, #6F4E37 0%, #E8751A 50%, #D4A574 100%);
    --gradient-warm: linear-gradient(135deg, #E8751A, #F59E0B);
    --gradient-brown: linear-gradient(135deg, #6F4E37, #9B7653);
    --gradient-gold: linear-gradient(135deg, #B8860B, #D4A574);
    --gradient-sunset: linear-gradient(135deg, #E8751A, #C06014, #D4A574);

    --shadow-sm: 0 2px 8px rgba(60, 36, 21, 0.06);
    --shadow-md: 0 4px 20px rgba(60, 36, 21, 0.08);
    --shadow-lg: 0 8px 40px rgba(60, 36, 21, 0.12);
    --shadow-xl: 0 16px 60px rgba(60, 36, 21, 0.16);
    --shadow-glow: 0 0 30px rgba(232, 117, 26, 0.15);
    --shadow-card: 0 4px 24px rgba(60, 36, 21, 0.07);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, system-ui, sans-serif;
    --font-script: 'Dancing Script', cursive;

    --section-py: 100px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--coffee-dark);
    background-color: var(--coffee-white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--accent-orange);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.section-padding {
    padding: var(--section-py) 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(232, 117, 26, 0.08), rgba(212, 165, 116, 0.08));
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(232, 117, 26, 0.15);
}

.section-label i {
    font-size: 0.9rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title .highlight {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--coffee-tan);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.navbar {
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 253, 251, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: white !important;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand {
    color: var(--coffee-dark) !important;
}

.brand-icon {
    font-size: 1.8rem;
    color: var(--accent-orange);
    filter: drop-shadow(0 2px 4px rgba(232, 117, 26, 0.3));
    animation: steamFloat 3s ease-in-out infinite;
}

@keyframes steamFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-3px) rotate(5deg);
    }
}

.brand-text {
    letter-spacing: -0.5px;
}

.brand-accent {
    color: var(--accent-orange);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--coffee-brown) !important;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--accent-orange) !important;
    background: rgba(232, 117, 26, 0.08);
}

.btn-cta {
    background: var(--gradient-warm);
    color: white !important;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(232, 117, 26, 0.3);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 117, 26, 0.4);
    color: white !important;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(111, 78, 55, 0.3);
}

.navbar-toggler-icon {
    filter: brightness(10);
}

.navbar.scrolled .navbar-toggler-icon {
    filter: none;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #3C2415 0%, #6F4E37 30%, #8B5C2A 60%, #A0522D 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(232, 117, 26, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.15);
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--coffee-caramel);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #F59E0B, #E8751A, #D4A574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero-primary {
    background: var(--gradient-warm);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(232, 117, 26, 0.35);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 117, 26, 0.45);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-amber);
    display: block;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-amber);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-image-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 2px dashed rgba(232, 117, 26, 0.3);
    animation: ringRotate 20s linear infinite;
    z-index: 1;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-badge {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--coffee-dark);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: badgeBounce 4s ease-in-out infinite;
}

.hero-badge i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.badge-top {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes badgeBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.about-section {
    background: var(--coffee-milk);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 117, 26, 0.04), transparent 70%);
    pointer-events: none;
}

.about-image-grid {
    position: relative;
    padding: 20px;
}

.about-img-main img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
}

.about-img-main:hover img {
    transform: scale(1.02);
}

.about-img-secondary {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 200px;
    border: 6px solid var(--coffee-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-img-secondary img {
    border-radius: var(--radius-md);
}

.about-experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gradient-warm);
    color: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: badgeBounce 5s ease-in-out infinite;
}

.badge-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    display: block;
    margin-top: 4px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--coffee-tan);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-md);
    background: white;
    border: 1px solid rgba(232, 117, 26, 0.08);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 117, 26, 0.2);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(232, 117, 26, 0.1), rgba(212, 165, 116, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.about-feature-item h5 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--coffee-dark);
}

.about-feature-item p {
    font-size: 0.9rem;
    color: var(--coffee-tan);
    margin: 0;
}

.menu-section {
    background: white;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coffee-caramel), transparent);
}

.menu-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(60, 36, 21, 0.06);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(232, 117, 26, 0.15);
}

.menu-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.1);
}

.menu-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-warm);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.menu-card-badge.best-seller {
    background: var(--gradient-gold);
}

.menu-card-badge.new-badge {
    background: linear-gradient(135deg, var(--accent-green), #7DC462);
}

.menu-card-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 2;
}

.menu-card:hover .menu-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.menu-card-overlay .btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.menu-card-overlay .btn:hover {
    background: var(--accent-orange);
    color: white;
}

.menu-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu-card-category i {
    font-size: 0.7rem;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 6px;
}

.menu-card-desc {
    font-size: 0.88rem;
    color: var(--coffee-tan);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.menu-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.btn-add-cart {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(232, 117, 26, 0.1), rgba(232, 117, 26, 0.05));
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(232, 117, 26, 0.2);
    transition: var(--transition);
    font-size: 1rem;
}

.btn-add-cart:hover {
    background: var(--gradient-warm);
    color: white;
    border-color: transparent;
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(232, 117, 26, 0.3);
}

.menu-item {
    transition: var(--transition-slow);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-section {
    background: var(--coffee-milk);
    position: relative;
}

.feature-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(60, 36, 21, 0.05);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--accent, var(--accent-orange)) 10%, transparent),
            color-mix(in srgb, var(--accent, var(--accent-orange)) 5%, transparent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--accent, var(--accent-orange));
    transition: var(--transition);
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--coffee-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--coffee-tan);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.feature-link:hover {
    color: var(--accent-rust);
    gap: 12px;
}

.testimonials-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '\201C';
    position: absolute;
    top: 60px;
    left: 5%;
    font-family: var(--font-display);
    font-size: 20rem;
    color: rgba(232, 117, 26, 0.04);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card {
    background: var(--coffee-milk);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(60, 36, 21, 0.05);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-testimonial {
    background: linear-gradient(135deg, #FFF8F0, #FFF0E0);
    border-color: rgba(232, 117, 26, 0.15);
}

.testimonial-stars {
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: var(--accent-amber);
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--coffee-brown);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-author h6 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--coffee-dark);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--coffee-tan);
}

.carousel-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-carousel {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--coffee-milk);
    border: 2px solid rgba(232, 117, 26, 0.15);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-carousel:hover {
    background: var(--gradient-warm);
    color: white;
    border-color: transparent;
}

.carousel-indicators {
    display: flex;
    gap: 8px;
    margin: 0;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--coffee-latte);
    border: none;
    opacity: 1;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background: var(--accent-orange);
    width: 30px;
    border-radius: 5px;
}

.gallery-section {
    background: var(--coffee-milk);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(60, 36, 21, 0.7), rgba(232, 117, 26, 0.5));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.cta-section {
    background: linear-gradient(135deg, #3C2415, #6F4E37, #8B5C2A);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 117, 26, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-title span {
    color: var(--accent-amber);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cta-info-item i {
    font-size: 1.3rem;
    color: var(--accent-amber);
    margin-top: 4px;
}

.cta-info-item h6 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1rem;
}

.cta-info-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

.cta-form-wrapper {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.cta-form-wrapper h4 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.cta-form-wrapper>p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.cta-form .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.cta-form .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(232, 117, 26, 0.15);
    color: white;
}

.cta-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-cta-submit {
    background: var(--gradient-warm);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(232, 117, 26, 0.3);
    transition: var(--transition);
}

.btn-cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 117, 26, 0.4);
    color: white;
}

.form-success-msg {
    text-align: center;
    padding: 20px;
    color: #7DC462;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-success-msg i {
    font-size: 1.5rem;
    margin-right: 8px;
}

.site-footer {
    background: var(--coffee-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-brand i {
    color: var(--accent-orange);
    font-size: 1.6rem;
}

.footer-about {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent-orange);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 6px;
}

.footer-hours {
    color: var(--accent-amber);
    font-weight: 500;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 30px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-warm);
    color: white;
    border: none;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(232, 117, 26, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(232, 117, 26, 0.45);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1199.98px) {
    .hero-image {
        width: 320px;
        height: 320px;
    }

    .hero-image-ring {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-py: 80px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .about-img-secondary {
        width: 160px;
    }

    .navbar-collapse {
        background: rgba(255, 253, 251, 0.98);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
    }

    .navbar-collapse .nav-link {
        color: var(--coffee-brown) !important;
        padding: 10px 16px !important;
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--accent-orange) !important;
        background: rgba(232, 117, 26, 0.08);
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-py: 60px;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
        display: none;
    }

    .hero-stats .stat-item {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .about-img-secondary {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .cta-form-wrapper {
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .testimonial-card {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .feature-card {
        padding: 28px 20px;
    }
}

body {
    opacity: 0;
    animation: bodyFadeIn 0.8s ease forwards;
}

@keyframes bodyFadeIn {
    to {
        opacity: 1;
    }
}