.gallery-carousel{padding:6rem 0;background:linear-gradient(135deg,#fdfbfb,#f7f4f1);position:relative;overflow:hidden}.gallery-carousel:before{content:"";position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(139,69,19,.1),transparent)}.carousel-container{position:relative;max-width:900px;margin:3rem auto;border-radius:16px;overflow:hidden;box-shadow:0 10px 40px #0000001a;background:#fff}.carousel-track{position:relative;width:100%;overflow:hidden}.carousel-slides{display:flex;transition:transform .5s cubic-bezier(.4,0,.2,1)}.carousel-slide{min-width:100%;aspect-ratio:4 / 3;display:flex;align-items:center;justify-content:center;background:#f9f9f9}.carousel-slide img{width:100%;height:100%;object-fit:cover;display:block}.carousel-button{position:absolute;top:50%;transform:translateY(-50%);background:#fffffff2;border:none;width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:10;transition:all .3s ease;box-shadow:0 4px 12px #00000026}.carousel-button:hover{background:#fff;box-shadow:0 6px 20px #0003;transform:translateY(-50%) scale(1.05)}.carousel-button:active{transform:translateY(-50%) scale(.95)}.carousel-button.prev{left:16px}.carousel-button.next{right:16px}.carousel-button svg{color:#8b4513}.carousel-dots{display:flex;justify-content:center;gap:12px;margin-top:2rem;padding:0 1rem}.dot{width:10px;height:10px;border-radius:50%;border:2px solid #d4a574;background:transparent;cursor:pointer;transition:all .3s ease;padding:0}.dot:hover{background:#d4a5744d;transform:scale(1.2)}.dot.active{background:#d4a574;transform:scale(1.3);border-color:#d4a574}.gallery-note{text-align:center;margin-top:2.5rem;font-size:.875rem;color:#666;font-style:italic;font-family:Cormorant Garamond,serif;letter-spacing:.3px}@media (max-width: 768px){.gallery-carousel{padding:4rem 0}.carousel-container{margin:2rem 1rem;border-radius:12px}.carousel-slide{aspect-ratio:3 / 4}.carousel-button{width:40px;height:40px}.carousel-button.prev{left:12px}.carousel-button.next{right:12px}.carousel-button svg{width:20px;height:20px}.carousel-dots{gap:8px;margin-top:1.5rem}.dot{width:8px;height:8px}.gallery-note{font-size:.8rem;padding:0 1rem;margin-top:2rem}}@media (max-width: 480px){.carousel-container{margin:1.5rem .5rem;border-radius:8px}.carousel-button{width:36px;height:36px}.carousel-button.prev{left:8px}.carousel-button.next{right:8px}}@media (prefers-reduced-motion: reduce){.carousel-slides{transition:none}.carousel-button:hover{transform:translateY(-50%)}.dot:hover{transform:none}}.App{min-height:100vh}.navbar{position:fixed;top:0;left:0;right:0;background:#fff8f0fa;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border-bottom:1px solid rgba(168,181,160,.2);z-index:1000;transition:all .3s ease;box-shadow:0 2px 10px #0000000d}.nav-container{max-width:1200px;margin:0 auto;padding:1rem 2rem;display:flex;justify-content:space-between;align-items:center}.nav-brand{display:flex;align-items:center;gap:.75rem;cursor:pointer;transition:transform .2s ease}.nav-brand:hover{transform:translateY(-2px)}.brand-icon{color:var(--sage)}.brand-name{font-family:Holly Berry Pop,Cormorant Garamond,serif;font-size:1.5rem;font-weight:600;color:var(--deep-brown)}.nav-menu{display:flex;list-style:none;gap:2rem;align-items:center}.nav-menu button{background:none;border:none;color:var(--warm-brown);font-size:.95rem;font-weight:500;cursor:pointer;padding:.5rem 0;position:relative;transition:color .2s ease}.nav-menu button:hover,.nav-menu button.active{color:var(--sage)}.nav-menu button:after{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--sage);transition:width .3s ease}.nav-menu button:hover:after,.nav-menu button.active:after{width:100%}.mobile-menu-toggle{display:none;background:none;border:none;color:var(--deep-brown);cursor:pointer;padding:.5rem}.mobile-menu{display:none;flex-direction:column;background:var(--cream);border-top:1px solid rgba(168,181,160,.2)}.mobile-menu-item{background:none;border:none;padding:1rem 2rem;text-align:left;color:var(--warm-brown);font-size:1rem;font-weight:500;cursor:pointer;transition:background .2s ease;border-bottom:1px solid rgba(168,181,160,.1)}.mobile-menu-item:hover{background:#a8b5a01a;color:var(--sage)}@media (max-width: 768px){.desktop-menu{display:none}.mobile-menu-toggle{display:block}.mobile-menu{display:flex}}.hero{min-height:100vh;display:flex;align-items:center;justify-content:space-between;padding:8rem 2rem 4rem;max-width:1200px;margin:0 auto;gap:4rem;position:relative}.hero-content{flex:1;max-width:600px;animation:fadeInUp .8s ease-out}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.hero-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 1.25rem;background:linear-gradient(135deg,#a8b5a033,#a8b5a01a);border-radius:50px;color:var(--sage);font-size:.875rem;font-weight:600;margin-bottom:1.5rem;border:1px solid rgba(168,181,160,.3)}.hero-title{font-size:clamp(2.5rem,5vw,4.5rem);line-height:1.1;color:var(--deep-brown);margin-bottom:1.5rem;font-weight:600}.hero-subtitle{font-size:1.125rem;line-height:1.8;color:var(--warm-brown);margin-bottom:2.5rem}.hero-buttons{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2rem}.btn{display:inline-flex;align-items:center;gap:.5rem;padding:1rem 2rem;border:none;border-radius:50px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease;font-family:Montserrat,sans-serif}.btn-primary{background:var(--sage);color:#fff;box-shadow:0 4px 15px #a8b5a04d}.btn-primary:hover{background:var(--warm-brown);transform:translateY(-3px);box-shadow:0 8px 25px #8b6f474d}.btn-secondary{background:transparent;color:var(--sage);border:2px solid var(--sage)}.btn-secondary:hover{background:var(--sage);color:#fff;transform:translateY(-3px);box-shadow:0 8px 20px #a8b5a040}.hero-features{display:flex;gap:2rem;flex-wrap:wrap;margin-top:2rem}.hero-feature{display:flex;align-items:center;gap:.5rem;color:var(--warm-brown);font-size:.9rem;font-weight:500}.hero-feature svg{color:var(--sage)}.hero-scroll{position:absolute;bottom:2rem;left:50%;transform:translate(-50%);text-align:center;cursor:pointer;transition:opacity .3s ease}.hero-scroll:hover{opacity:.7}.hero-scroll span{display:block;font-size:.8rem;color:var(--warm-brown);margin-top:.5rem}.scroll-icon{color:var(--sage);animation:bounce 2s infinite}@keyframes bounce{0%,20%,50%,80%,to{transform:translateY(0)}40%{transform:translateY(-10px)}60%{transform:translateY(-5px)}}.hero-image{flex:1;display:flex;align-items:center;justify-content:center;animation:fadeIn 1s ease-out .3s both}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.image-container{position:relative;width:100%;max-width:550px}.hero-img{width:100%;height:auto;border-radius:20px;box-shadow:0 20px 60px #00000026;position:relative;z-index:2}.image-accent{position:absolute;top:-20px;right:-20px;width:100%;height:100%;background:linear-gradient(135deg,#a8b5a033,#d4896b33);border-radius:20px;z-index:1}@media (max-width: 968px){.hero{flex-direction:column;text-align:center;padding-top:8rem}.hero-content{max-width:100%}.hero-buttons,.hero-features{justify-content:center}.hero-image{width:100%}.hero-scroll{position:relative;bottom:auto;left:auto;transform:none;margin-top:3rem}}.section-container{max-width:1200px;margin:0 auto;padding:6rem 2rem}.section-label{display:inline-block;font-size:.875rem;font-weight:600;color:var(--sage);letter-spacing:.1em;text-transform:uppercase;margin-bottom:1rem}.section-title{font-size:clamp(2rem,4vw,3.5rem);color:var(--deep-brown);margin-bottom:1rem;font-weight:600;line-height:1.2}.section-subtitle{font-size:1.125rem;color:var(--warm-brown);margin-bottom:3rem;max-width:700px;line-height:1.7}.about-header,.menu-header,.contact-header,.order-header,.testimonials-header{text-align:center;margin-bottom:4rem}.about{background:#fff}.about-story{display:grid;grid-template-columns:2fr 1fr;gap:4rem;margin-bottom:4rem;align-items:start}.story-content{max-width:700px}.story-lead{font-size:1.25rem;line-height:1.8;color:var(--deep-brown);margin-bottom:1.5rem;font-weight:500}.story-content p{font-size:1.05rem;line-height:1.8;color:var(--warm-brown);margin-bottom:1.5rem}.story-image{position:relative}.story-img-wrapper{background:linear-gradient(135deg,#a8b5a026,#d4896b26);padding:3rem;border-radius:20px;text-align:center;border:2px dashed rgba(168,181,160,.3)}.story-icon{width:80px;height:80px;color:var(--sage);margin-bottom:1rem}.story-caption{font-family:Cormorant Garamond,serif;font-size:1.25rem;color:var(--deep-brown);font-style:italic}.values-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2.5rem;margin-top:4rem}.value-card{text-align:center;padding:2.5rem;border-radius:20px;background:var(--cream);transition:all .3s ease;border:2px solid transparent}.value-card:hover{transform:translateY(-8px);box-shadow:0 15px 40px #0000001a;border-color:#a8b5a033}.value-icon-wrapper{width:80px;height:80px;margin:0 auto 1.5rem;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 5px 15px #00000014}.value-icon{color:var(--sage);width:40px;height:40px}.value-card h3{font-size:1.5rem;color:var(--deep-brown);margin-bottom:1rem}.value-card p{color:var(--warm-brown);line-height:1.7;font-size:.95rem}@media (max-width: 968px){.about-story{grid-template-columns:1fr;gap:2rem}.story-content{max-width:100%}}.menu{background:var(--cream)}.menu-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2.5rem;margin-top:3rem}.menu-category{background:#fff;padding:2.5rem;border-radius:20px;box-shadow:0 8px 30px #00000014;transition:all .3s ease;border:2px solid transparent}.menu-category:hover{transform:translateY(-5px);box-shadow:0 15px 45px #0000001f;border-color:#a8b5a033}.category-header{display:flex;gap:1rem;align-items:flex-start;margin-bottom:2rem;padding-bottom:1.5rem;border-bottom:2px solid rgba(168,181,160,.15)}.category-icon{font-size:2.5rem;flex-shrink:0}.category-title{font-size:1.75rem;color:var(--deep-brown);margin-bottom:.5rem}.category-description{font-size:.9rem;color:var(--warm-brown);font-style:italic}.menu-items{list-style:none}.menu-item{padding:1rem 0;border-bottom:1px solid rgba(168,181,160,.15);transition:padding-left .2s ease}.menu-item:hover{padding-left:.5rem}.menu-item:last-child{border-bottom:none}.item-info{display:flex;flex-direction:column;gap:.25rem;margin-bottom:.5rem}.item-name{color:var(--deep-brown);font-weight:600;font-size:1.05rem}.item-description{color:var(--warm-brown);font-size:.85rem;line-height:1.5}.item-price{color:var(--sage);font-size:.95rem;font-weight:700}.menu-cta{margin-top:4rem;background:linear-gradient(135deg,#a8b5a026,#d4896b1a);padding:3rem;border-radius:20px;text-align:center;border:2px solid rgba(168,181,160,.2)}.menu-cta-content h3{font-size:2rem;color:var(--deep-brown);margin-bottom:1rem}.menu-cta-content p{color:var(--warm-brown);margin-bottom:2rem;font-size:1.05rem}.testimonials{background:#fff}.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-top:3rem}.testimonial-card{background:var(--cream);padding:2.5rem;border-radius:20px;position:relative;box-shadow:0 5px 20px #0000000f;transition:all .3s ease}.testimonial-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px #0000001a}.testimonial-quote{font-size:5rem;font-family:Cormorant Garamond,serif;color:var(--sage);opacity:.3;position:absolute;top:1rem;left:1.5rem;line-height:1}.testimonial-text{font-size:1.05rem;line-height:1.7;color:var(--warm-brown);margin:2rem 0 1.5rem;position:relative;z-index:1;font-style:italic}.testimonial-author{display:flex;flex-direction:column;gap:.25rem;padding-top:1rem;border-top:2px solid rgba(168,181,160,.2)}.testimonial-author strong{color:var(--deep-brown);font-size:1.05rem}.testimonial-author span{color:var(--sage);font-size:.9rem}.order{background:#fff}.order-content{display:grid;grid-template-columns:1.5fr 1fr;gap:3rem;margin-top:3rem}.order-form{background:var(--cream);padding:3rem;border-radius:20px;box-shadow:0 8px 30px #00000014;border:2px solid rgba(168,181,160,.1)}.form-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;margin-bottom:1.5rem}.form-group{margin-bottom:1.5rem}.form-group label{display:block;margin-bottom:.75rem;color:var(--deep-brown);font-weight:600;font-size:.95rem}.form-group input,.form-group select,.form-group textarea{width:100%;padding:1rem;border:2px solid rgba(168,181,160,.3);border-radius:12px;font-family:Montserrat,sans-serif;font-size:1rem;color:var(--deep-brown);background:#fff;transition:all .2s ease}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--sage);box-shadow:0 0 0 3px #a8b5a01a}.form-group textarea{resize:vertical;min-height:140px;line-height:1.6}.btn-submit{width:100%;padding:1.25rem;font-size:1.125rem}.btn-submit:disabled{opacity:.6;cursor:not-allowed}.form-message{margin-top:1.5rem;padding:1.25rem;border-radius:12px;text-align:center;font-weight:500;font-size:.95rem}.form-message.success{background:#a8b5a033;color:var(--sage);border:2px solid rgba(168,181,160,.3)}.form-message.error{background:#d4896b33;color:var(--terracotta);border:2px solid rgba(212,137,107,.3)}.order-info{display:flex;flex-direction:column;gap:2rem}.order-info-card{background:var(--cream);padding:2rem;border-radius:20px;box-shadow:0 5px 20px #0000000f;display:flex;gap:1.5rem;align-items:flex-start}.info-icon{color:var(--sage);flex-shrink:0;width:32px;height:32px}.order-info-card h3{font-size:1.25rem;color:var(--deep-brown);margin-bottom:1rem}.order-info-card ol,.order-info-card ul{padding-left:1.25rem;margin:0}.order-info-card li{color:var(--warm-brown);margin-bottom:.75rem;line-height:1.6;font-size:.95rem}.order-info-card p{color:var(--warm-brown);line-height:1.7;margin-bottom:.5rem}.small-text{font-size:.85rem;color:var(--warm-brown);opacity:.8;margin-top:.5rem}@media (max-width: 968px){.order-content{grid-template-columns:1fr}.order-form{padding:2rem}.form-row{grid-template-columns:1fr}}.contact{background:var(--cream)}.contact-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:4rem;margin-top:3rem}.contact-info{display:flex;flex-direction:column;gap:2rem}.contact-item{display:flex;gap:1.5rem;align-items:flex-start;padding:1.5rem;background:#fff;border-radius:15px;transition:all .3s ease}.contact-item:hover{box-shadow:0 8px 25px #00000014;transform:translate(5px)}.contact-icon-wrapper{width:56px;height:56px;background:linear-gradient(135deg,#a8b5a033,#a8b5a01a);border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.contact-icon{color:var(--sage);width:28px;height:28px}.contact-item strong{display:block;color:var(--deep-brown);margin-bottom:.5rem;font-size:1.05rem}.contact-link{color:var(--sage);text-decoration:none;font-size:1.05rem;font-weight:600;transition:color .2s ease;display:block;margin-bottom:.25rem}.contact-link:hover{color:var(--warm-brown)}.contact-item p{color:var(--warm-brown);margin:.25rem 0;line-height:1.6}.social-section{background:#fff;padding:2rem;border-radius:15px}.social-section h3{font-size:1.5rem;color:var(--deep-brown);margin-bottom:.75rem}.social-section>p{color:var(--warm-brown);margin-bottom:1.5rem}.social-links{display:flex;flex-direction:column;gap:1rem}.social-link{display:flex;align-items:center;gap:1rem;padding:1rem 1.5rem;background:var(--cream);color:var(--sage);text-decoration:none;border-radius:12px;transition:all .3s ease;font-weight:600}.social-link:hover{background:var(--sage);color:#fff;transform:translate(5px);box-shadow:0 5px 15px #a8b5a04d}.location-card{background:#fff;padding:2.5rem;border-radius:20px;box-shadow:0 8px 30px #00000014;height:fit-content}.location-card h3{font-size:1.75rem;color:var(--deep-brown);margin-bottom:1.5rem}.location-card p{color:var(--warm-brown);line-height:1.8;margin-bottom:1rem;font-size:1.05rem}.hours-info{display:flex;gap:1rem;align-items:flex-start;padding:1.5rem;background:var(--cream);border-radius:12px;margin:2rem 0}.hours-info svg{color:var(--sage);flex-shrink:0}.hours-info strong{display:block;color:var(--deep-brown);margin-bottom:.5rem}.hours-info p{margin:0;font-size:.95rem}.location-badge{display:flex;align-items:center;justify-content:center;gap:.75rem;padding:1.25rem;background:linear-gradient(135deg,#a8b5a033,#d4896b1a);border-radius:12px;margin-top:2rem;border:2px solid rgba(168,181,160,.2)}.location-badge svg{color:var(--sage)}.location-badge span{color:var(--deep-brown);font-weight:600}@media (max-width: 968px){.contact-grid{grid-template-columns:1fr;gap:2rem}}.footer{background:linear-gradient(135deg,var(--deep-brown),#2d1b13);color:var(--cream);padding:4rem 2rem 2rem}.footer-content{max-width:1200px;margin:0 auto}.footer-main{display:grid;grid-template-columns:1.5fr 1fr;gap:4rem;margin-bottom:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,248,240,.15)}.footer-brand-section{max-width:500px}.footer-brand{display:inline-flex;align-items:center;gap:.75rem;margin-bottom:1rem;font-family:Holly Berry Pop,Cormorant Garamond,serif;font-size:1.75rem;font-weight:600}.footer-brand svg{color:var(--sage)}.footer-tagline{font-family:Cormorant Garamond,serif;font-size:1.125rem;margin-bottom:1rem;color:var(--sage)}.footer-description{color:#fff8f0cc;line-height:1.7;font-size:.95rem}.footer-links{display:grid;grid-template-columns:repeat(2,1fr);gap:3rem}.footer-column h4{font-size:1.125rem;margin-bottom:1rem;color:var(--cream);font-weight:600}.footer-column button,.footer-column a,.footer-column span{display:block;background:none;border:none;color:#fff8f0b3;text-decoration:none;padding:.5rem 0;font-size:.95rem;cursor:pointer;transition:all .2s ease;text-align:left;font-family:Montserrat,sans-serif}.footer-column button:hover,.footer-column a:hover{color:var(--sage);padding-left:.5rem}.footer-bottom{text-align:center;padding-top:2rem}.footer-copyright{font-size:.875rem;color:#fff8f099;display:flex;align-items:center;justify-content:center;gap:.5rem}.footer-copyright svg{color:var(--terracotta);animation:heartbeat 1.5s ease-in-out infinite}@keyframes heartbeat{0%,to{transform:scale(1)}50%{transform:scale(1.1)}}@media (max-width: 768px){.footer-main,.footer-links{grid-template-columns:1fr;gap:2rem}.footer-brand-section{max-width:100%}}*{margin:0;padding:0;box-sizing:border-box}@font-face{font-family:Holly Berry Pop;src:url(./HollyBerryPop-LVxvE-CVQjRDFd.ttf) format("truetype"),url(./HollyBerryPop-PVxdZ-BVbjWT8x.otf) format("opentype");font-weight:400;font-style:normal;font-display:swap}:root{--cream: #FFF8F0;--sage: #A8B5A0;--terracotta: #D4896B;--warm-brown: #8B6F47;--deep-brown: #3E2723;--white: #FFFFFF;--soft-shadow: rgba(0, 0, 0, .08)}body{font-family:Montserrat,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:var(--cream);color:var(--deep-brown);overflow-x:hidden}h1,h2,h3,h4,h5,h6{font-family:Cormorant Garamond,serif;font-weight:500}button{font-family:Montserrat,sans-serif}html{scroll-behavior:smooth}::selection{background:var(--sage);color:#fff}
