:root {
    --espresso: #2B1B14;
    --cream: #FFF3E4;
    --caramel: #B86B32;
    --gold: #F4B04E;
    --white: #FFFFFF;
    --red: #A83F2A;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(244, 176, 78, 0.3);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    color: var(--espresso);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    position: relative;
}
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
}
.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -20%;
    left: -20%;
    animation: blobFloat1 25s ease-in-out infinite;
}
.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--caramel);
    top: 30%;
    right: -10%;
    animation: blobFloat2 30s ease-in-out infinite;
}
.blob-3 {
    width: 550px;
    height: 550px;
    background: var(--cream);
    bottom: -20%;
    left: 20%;
    animation: blobFloat3 35s ease-in-out infinite;
}
@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(150px, 80px) scale(1.15); }
    66% { transform: translate(80px, 150px) scale(0.9); }
}
@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-120px, 100px) scale(1.2); }
    66% { transform: translate(-150px, -80px) scale(0.85); }
}
@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(120px, -90px) scale(1.1); }
    66% { transform: translate(-90px, -120px) scale(0.95); }
}
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    color: var(--caramel);
    opacity: 0.12;
}
.floating-icon.croissant {
    top: 15%;
    left: 5%;
    animation: floatIcon 14s ease-in-out infinite;
}
.floating-icon.coffee {
    top: 50%;
    right: 8%;
    animation: floatIcon 17s ease-in-out infinite reverse;
}
.floating-icon.cake {
    bottom: 20%;
    left: 10%;
    animation: floatIcon 20s ease-in-out infinite;
}
@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-40px) rotate(8deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(40px) rotate(-8deg); }
}
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader {
    text-align: center;
}
.coffee-cup {
    position: relative;
    margin-bottom: 30px;
}
.cup {
    width: 80px;
    height: 90px;
    background: linear-gradient(135deg, var(--espresso), var(--caramel));
    border-radius: 0 0 40px 40px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(43, 27, 20, 0.2);
}
.cup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(135deg, var(--cream), var(--white));
    border-radius: 50%;
    transform: translateY(-50%);
}
.handle {
    position: absolute;
    right: -30px;
    top: 20px;
    width: 30px;
    height: 40px;
    border: 8px solid var(--espresso);
    border-left: none;
    border-radius: 0 20px 20px 0;
}
.steam {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}
.steam span {
    width: 8px;
    height: 40px;
    background: var(--caramel);
    border-radius: 50%;
    opacity: 0;
    animation: steam 2s ease-in-out infinite;
}
.steam span:nth-child(1) { animation-delay: 0s; }
.steam span:nth-child(2) { animation-delay: 0.3s; }
.steam span:nth-child(3) { animation-delay: 0.6s; }
@keyframes steam {
    0% { opacity: 0; transform: translateY(0) scaleX(1); }
    50% { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(-40px) scaleX(1.5); }
}
.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--espresso);
}
.dots span {
    animation: dotPulse 1.4s ease-in-out infinite;
}
.dots span:nth-child(1) { animation-delay: 0s; }
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
    0%, 60%, 100% { opacity: 0.3; }
    30% { opacity: 1; }
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--caramel), var(--gold));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(184, 107, 50, 0.4);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--espresso);
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 8px 30px rgba(43, 27, 20, 0.4);
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: var(--transition);
    transform: translateY(-100%);
    animation: navbarSlideDown 0.8s ease 1.8s forwards;
}
@keyframes navbarSlideDown {
    to { transform: translateY(0); }
}
.navbar.scrolled {
    background: rgba(43, 27, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.logo-text {
    position: relative;
    z-index: 2;
}
.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: logoShine 5s ease-in-out infinite;
}
@keyframes logoShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}
.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.nav-link span {
    display: inline-block;
    position: relative;
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-link:hover::before {
    transform: translateX(0);
}
.btn-cta {
    background: linear-gradient(135deg, var(--gold), #FFD166);
    color: var(--espresso);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(244, 176, 78, 0.3);
}
.btn-cta::before {
    display: none;
}
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}
@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}
.btn-cta:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(244, 176, 78, 0.5);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    animation: heroZoom 40s ease-in-out infinite;
}
@keyframes heroZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 27, 20, 0.9) 0%, rgba(43, 27, 20, 0.65) 100%);
    z-index: 2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(244, 176, 78, 0.3) 0%, transparent 70%);
    z-index: 3;
    animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.3); }
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}
.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}
.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotateX(-90deg);
    animation: wordReveal 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 2s; }
.hero-title .word:nth-child(2) { animation-delay: 2.12s; }
.hero-title .word:nth-child(3) { animation-delay: 2.24s; }
.hero-title .word:nth-child(4) { animation-delay: 2.36s; }
.hero-title .word:nth-child(5) { animation-delay: 2.48s; }
.hero-title .word:nth-child(6) { animation-delay: 2.6s; }
.hero-title .word:nth-child(7) { animation-delay: 2.72s; }
@keyframes wordReveal {
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}
.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 48px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.9s forwards;
    font-weight: 300;
    letter-spacing: 0.02em;
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), #FFD166);
    color: var(--espresso);
    box-shadow: 0 6px 24px rgba(244, 176, 78, 0.4);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.1s forwards;
}
.btn-primary:hover {
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(244, 176, 78, 0.6);
}
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: skewX(-25deg);
}
.btn-primary:hover .btn-shine {
    animation: btnShine 0.8s ease;
}
@keyframes btnShine {
    to { left: 150%; }
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.3s forwards;
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--espresso);
    border-color: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    width: 180px;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.card-1 {
    top: 18%;
    left: 8%;
    animation: floatCard1 7s ease-in-out infinite, fadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.6s forwards;
}
.card-2 {
    top: 28%;
    right: 6%;
    animation: floatCard2 8s ease-in-out infinite, fadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.8s forwards;
}
.card-3 {
    bottom: 18%;
    left: 12%;
    animation: floatCard3 9s ease-in-out infinite, fadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 4s forwards;
}
@keyframes floatCard1 {
    0%, 100% { transform: translate(0, 0) rotate(-4deg); }
    33% { transform: translate(30px, -35px) rotate(0deg); }
    66% { transform: translate(-20px, -15px) rotate(4deg); }
}
@keyframes floatCard2 {
    0%, 100% { transform: translate(0, 0) rotate(4deg); }
    33% { transform: translate(-30px, -40px) rotate(0deg); }
    66% { transform: translate(20px, -20px) rotate(-4deg); }
}
@keyframes floatCard3 {
    0%, 100% { transform: translate(0, 0) rotate(3deg); }
    33% { transform: translate(35px, 25px) rotate(-3deg); }
    66% { transform: translate(-25px, 30px) rotate(3deg); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}
.floating-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 12px;
}
.floating-card p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--espresso);
}
.scroll-mouse {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 4.2s forwards;
}
.mouse-wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2.2s ease-in-out infinite;
}
@keyframes mouseScroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.4; transform: translateX(-50%) translateY(18px); }
}
section {
    padding: 120px 0;
    position: relative;
}
.section-title {
    font-size: 3.2rem;
    margin-bottom: 24px;
    color: var(--espresso);
}
.section-title.center {
    text-align: center;
    margin-bottom: 60px;
}
.reveal-heading {
    opacity: 1;
    transform: none;
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body.js-enabled .reveal-heading {
    opacity: 0;
    transform: translateY(50px);
}
body.js-enabled .reveal-heading.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-text {
    opacity: 1;
    transform: none;
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}
body.js-enabled .reveal-text {
    opacity: 0;
    transform: translateY(40px);
}
body.js-enabled .reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-card {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body.js-enabled .reveal-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}
body.js-enabled .reveal-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.reveal-img {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), clip-path 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body.js-enabled .reveal-img {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
}
body.js-enabled .reveal-img.active {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}
.about {
    background: var(--white);
    position: relative;
    z-index: 2;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.about-images {
    position: relative;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.img-wrapper {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
}
.img-wrapper img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.img-wrapper:hover img {
    transform: scale(1.1);
}
.img-1 {
    height: 450px;
    grid-row: span 2;
}
.img-2, .img-3 {
    height: 213px;
}
.about-text {
    color: #555;
    margin-bottom: 48px;
    font-size: 1.1rem;
    line-height: 1.8;
}
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    background: linear-gradient(135deg, var(--cream), #FFFAF5);
    padding: 36px 30px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-soft);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(184, 107, 50, 0);
    transition: box-shadow 0.5s ease;
}
.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-medium);
}
.feature-card:hover::before {
    box-shadow: 0 0 50px rgba(184, 107, 50, 0.25);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--caramel), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
    box-shadow: 0 8px 24px rgba(184, 107, 50, 0.3);
}
.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
}
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.feature-card p {
    font-size: 0.95rem;
    color: #666;
    position: relative;
    z-index: 2;
}
.menu {
    background: linear-gradient(180deg, var(--cream) 0%, #FFFAF5 100%);
    position: relative;
    z-index: 2;
}
.menu-filters {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 12px 36px;
    border: 2px solid var(--caramel);
    background: transparent;
    color: var(--espresso);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}
.filter-btn span {
    position: relative;
    z-index: 2;
}
.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--caramel), #C97B3A);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.filter-btn:hover::before, .filter-btn.active::before {
    transform: translateX(0);
}
.filter-btn:hover, .filter-btn.active {
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(184, 107, 50, 0.3);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    position: relative;
}
.menu-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.menu-card.filtered-out {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    pointer-events: none;
    visibility: hidden;
    position: absolute;
    width: calc(25% - 27px);
}
.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 0 50px rgba(244, 176, 78, 0);
    transition: box-shadow 0.5s ease;
    pointer-events: none;
}
.menu-card:hover {
    transform: translateY(-18px);
    box-shadow: var(--shadow-medium);
}
.menu-card:hover::before {
    box-shadow: 0 0 60px rgba(244, 176, 78, 0.35);
}
.menu-card-img {
    height: 220px;
    overflow: hidden;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.2);
}
.menu-card-content {
    padding: 28px;
    position: relative;
    z-index: 2;
}
.menu-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.menu-card-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}
.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--caramel);
    transform: scale(0.9);
    transition: transform 0.5s ease;
}
.menu-card:hover .price {
    transform: scale(1.15);
}
.btn-small {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold), #FFD166);
    color: var(--espresso);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(244, 176, 78, 0.3);
}
.btn-small span {
    position: relative;
    z-index: 2;
}
.btn-small:hover {
    background: linear-gradient(135deg, var(--caramel), #C97B3A);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(184, 107, 50, 0.4);
    transform: translateY(-2px);
}
.special-offer {
    background: linear-gradient(135deg, var(--espresso) 0%, #3D2419 100%);
    position: relative;
    overflow: hidden;
}
.offer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}
.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    animation: floatShape 10s ease-in-out infinite;
}
.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    animation: floatShape 12s ease-in-out infinite reverse;
}
.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 25%;
    animation: floatShape 8s ease-in-out infinite;
}
@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(12deg); }
}
.offer-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}
.offer-content h2 {
    font-size: 3.4rem;
    margin-bottom: 18px;
}
.offer-content p {
    font-size: 1.3rem;
    margin-bottom: 36px;
    opacity: 0.9;
    font-weight: 300;
}
.gallery {
    background: var(--white);
    position: relative;
    z-index: 2;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}
.gallery-item:nth-child(1), .gallery-item:nth-child(4), .gallery-item:nth-child(7) {
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img {
    transform: scale(1.2);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 27, 20, 0.88), rgba(184, 107, 50, 0.88));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(24px);
    transition: transform 0.5s ease;
}
.gallery-overlay i {
    font-size: 1.8rem;
    transform: translateY(-24px);
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-overlay span,
.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 16px;
    transform: scale(0.6);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.lightbox.active img {
    transform: scale(1);
    opacity: 1;
}
.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--white);
    font-size: 2.2rem;
    cursor: pointer;
    transition: transform 0.5s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}
.lightbox-close:hover {
    transform: rotate(90deg) scale(1.15);
    background: rgba(255, 255, 255, 0.25);
}
.reviews {
    background: linear-gradient(180deg, #FFFAF5 0%, var(--cream) 100%);
    position: relative;
    z-index: 2;
}
.reviews-carousel {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
}
.review-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.review-card {
    min-width: 100%;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.review-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 28px;
}
.review-stars i {
    opacity: 0;
    animation: starPop 0.6s ease forwards;
}
.review-stars i:nth-child(1) { animation-delay: 0.1s; }
.review-stars i:nth-child(2) { animation-delay: 0.2s; }
.review-stars i:nth-child(3) { animation-delay: 0.3s; }
.review-stars i:nth-child(4) { animation-delay: 0.4s; }
.review-stars i:nth-child(5) { animation-delay: 0.5s; }
@keyframes starPop {
    0% { opacity: 0; transform: scale(0); }
    50% { transform: scale(1.4); }
    100% { opacity: 1; transform: scale(1); }
}
.review-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 36px;
    line-height: 1.9;
    font-style: italic;
}
.review-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}
.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--caramel), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 600;
    position: relative;
    box-shadow: 0 8px 24px rgba(184, 107, 50, 0.3);
}
.avatar-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    animation: avatarRing 2.5s linear infinite;
}
@keyframes avatarRing {
    to { transform: rotate(360deg); }
}
.review-author h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}
.review-author span {
    color: #888;
    font-size: 0.95rem;
}
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}
.carousel-btn {
    width: 56px;
    height: 56px;
    border: 2px solid var(--caramel);
    background: transparent;
    color: var(--caramel);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}
.carousel-btn:hover {
    background: linear-gradient(135deg, var(--caramel), var(--gold));
    color: var(--white);
    transform: scale(1.15);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(184, 107, 50, 0.3);
}
.carousel-dots {
    display: flex;
    gap: 12px;
}
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(184, 107, 50, 0.3);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active, .dot:hover {
    background: linear-gradient(135deg, var(--caramel), var(--gold));
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(184, 107, 50, 0.4);
}
.contact {
    background: var(--white);
    position: relative;
    z-index: 2;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 36px;
    padding: 30px;
    background: linear-gradient(135deg, var(--cream), #FFFAF5);
    border-radius: 24px;
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-soft);
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}
.bounce-hover:hover {
    animation: bounce 0.6s ease;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--caramel), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: transform 0.5s ease;
    box-shadow: 0 8px 24px rgba(184, 107, 50, 0.3);
}
.info-card:hover .info-icon {
    transform: scale(1.15) rotate(10deg);
}
.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.info-card p {
    color: #666;
}
.info-card a {
    color: var(--caramel);
    font-weight: 600;
}
.map-placeholder {
    background: linear-gradient(135deg, var(--espresso), var(--caramel));
    border-radius: 24px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}
.pulse-pin {
    position: relative;
}
.pulse-pin i {
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
}
.pin-pulse, .pin-pulse-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    animation: pinPulse 2.5s ease-out infinite;
}
.pin-pulse-2 {
    animation-delay: 1s;
}
@keyframes pinPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(5); opacity: 0; }
}
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--cream), #FFFAF5);
    padding: 56px;
    border-radius: 32px;
    box-shadow: var(--shadow-medium);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.form-group {
    position: relative;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid transparent;
    border-radius: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}
.form-group textarea {
    min-height: 160px;
    resize: none;
}
.form-group label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-weight: 400;
    pointer-events: none;
    transition: var(--transition);
    background: var(--white);
    padding: 0 6px;
}
.form-group textarea + label {
    top: 24px;
    transform: translateY(0);
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--caramel);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--caramel);
    box-shadow: 0 0 0 4px rgba(184, 107, 50, 0.1);
}
.error-message {
    color: var(--red);
    font-size: 0.85rem;
    margin-top: 10px;
    display: none;
}
.form-group.error .error-message {
    display: block;
}
.form-group.error input, .form-group.error textarea {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(168, 63, 42, 0.1);
}
.btn-block {
    width: 100%;
}
.final-cta {
    background: linear-gradient(135deg, #FFFAF5 0%, var(--cream) 100%);
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 18px;
}
.cta-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn-secondary {
    border-color: var(--espresso);
    color: var(--espresso);
}
.cta-buttons .btn-secondary:hover {
    background: var(--espresso);
    color: var(--white);
    border-color: var(--espresso);
}
.footer {
    background: linear-gradient(180deg, var(--espresso) 0%, #1A0F0A 100%);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
    z-index: 2;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(244, 176, 78, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 24px;
}
.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 24px;
}
.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 28px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 14px;
}
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}
.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 6px;
    transform: translateX(6px);
}
.footer-col ul li i {
    margin-right: 12px;
    color: var(--gold);
}
.social-links {
    display: flex;
    gap: 18px;
}
.social-links a {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}
.social-links a:hover {
    background: linear-gradient(135deg, var(--gold), #FFD166);
    color: var(--espresso);
    transform: translateY(-6px) rotate(12deg);
    box-shadow: 0 8px 24px rgba(244, 176, 78, 0.4);
}
.newsletter-form {
    display: flex;
    gap: 12px;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 22px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.newsletter-form button {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), #FFD166);
    border: none;
    border-radius: 50%;
    color: var(--espresso);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.newsletter-form button:hover {
    background: var(--white);
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(244, 176, 78, 0.4);
}
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .menu-card.filtered-out {
        width: calc(50% - 18px);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-images {
        order: -1;
    }
    .container {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .offer-content h2, .cta-content h2 {
        font-size: 2.4rem;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(43, 27, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 0;
        transform: translateX(100%);
        transition: var(--transition);
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
    }
    .nav-links.active li {
        animation: slideInStagger 0.6s ease forwards;
    }
    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.18s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.26s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.34s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.42s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.5s; }
    .nav-links.active li:nth-child(7) { animation-delay: 0.58s; }
    @keyframes slideInStagger {
        to { opacity: 1; transform: translateX(0); }
    }
    .hamburger {
        display: flex;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-card.filtered-out {
        width: 100%;
    }
    .floating-cards {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:nth-child(1), .gallery-item:nth-child(4), .gallery-item:nth-child(7) {
        grid-row: span 1;
    }
    .review-card {
        padding: 40px 30px;
    }
    .contact-form-wrapper {
        padding: 36px;
    }
    section {
        padding: 80px 0;
    }
    .floating-icons, .bg-blobs {
        display: none;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
