
 :root {
 --green-deep: #2d4a2d;
 --green-mid: #3d6b3d;
 --cream: #f9f4ec;
 --cream-dark: #ede6d8;
 --brown: #6b4226;
 --brown-light: #a0673b;
 --brown-dark: #3e2010;
 --text-dark: #2a1f14;
 --text-mid: #5a4535;
 --text-light: #8a7060;
 --white: #ffffff;
 --shadow: 0 4px 24px rgba(42,31,20,0.12);
 --shadow-strong: 0 8px 40px rgba(42,31,20,0.22);
 }

 * { margin: 0; padding: 0; box-sizing: border-box; }
 html { scroll-behavior: smooth; }
 body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text-dark); line-height: 1.7; }

 /* NAV */
 nav {
 position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
 background: rgba(245,240,232,0.97); backdrop-filter: blur(8px);
 box-shadow: 0 2px 16px rgba(42,31,20,0.10);
 display: flex; align-items: center; justify-content: space-between;
 padding: 0 5%; height: 70px;
 border-bottom: 2px solid var(--cream-dark);
 }
 .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
 .nav-logo img { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 8px rgba(42,31,20,0.18); }
 .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
 .nav-links a {
 text-decoration: none; color: var(--text-mid);
 font-size: 0.9rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
 padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
 }
 .nav-links a:hover { color: var(--green-deep); border-color: var(--green-deep); }
 .nav-cta {
 background: var(--green-deep) !important; color: var(--white) !important;
 padding: 9px 22px !important; border-radius: 30px; border: none !important;
 transition: background 0.2s, transform 0.15s !important;
 }
 .nav-cta:hover { background: var(--green-mid) !important; transform: translateY(-1px); border-color: transparent !important; }

 .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
 .hamburger span { display: block; width: 26px; height: 3px; background: var(--text-dark); border-radius: 2px; }

 /* SECTIONS */
 section { scroll-margin-top: 70px; }

 /* BUTTONS */
 .btn {
 display: inline-block; padding: 14px 32px;
 border-radius: 40px; font-size: 0.95rem; font-weight: 700;
 letter-spacing: 0.8px; text-decoration: none; transition: all 0.2s;
 }
 .btn-primary { background: var(--green-deep); color: var(--white); box-shadow: 0 4px 18px rgba(45,74,45,0.45); }
 .btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); }
 .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
 .btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
 .btn-dark { background: var(--brown); color: var(--white); }
 .btn-dark:hover { background: var(--brown-light); transform: translateY(-2px); }
 .btn-green-outline { background: transparent; color: var(--green-deep); border: 2px solid var(--green-deep); }
 .btn-green-outline:hover { background: var(--green-deep); color: white; }
 .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

 /* HERO */
 .hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
 .hero-bg { position: absolute; inset: 0; }
 .hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62); }
 .hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(30,50,20,0.55) 0%, rgba(20,10,5,0.65) 100%); }
 .hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; max-width: 820px; }
 .hero-badge { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35); color: var(--cream); font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; padding: 6px 18px; border-radius: 30px; margin-bottom: 22px; }
 .hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem,7vw,6.5rem); font-weight: 700; color: var(--white); line-height: 1.05; text-shadow: 0 4px 20px rgba(0,0,0,0.4); margin-bottom: 18px; }
 .hero-content p { font-size: clamp(1rem,2.2vw,1.3rem); color: rgba(255,255,255,0.88); margin-bottom: 14px; font-style: italic; }
 .hero-desc { font-size: 1rem !important; color: rgba(255,255,255,0.75) !important; margin-bottom: 38px !important; font-style: normal !important; max-width: 600px; margin-left: auto; margin-right: auto; }

 /* SECTION COMMONS */
 .page-section { padding: 80px 5%; }
 .section-tag { display: inline-block; background: var(--cream-dark); color: var(--brown); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; padding: 5px 14px; border-radius: 30px; margin-bottom: 14px; }
 .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
 .section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 580px; }
 .section-center { text-align: center; }
 .section-center .section-subtitle { margin: 0 auto; }
 .divider { width: 50px; height: 3px; background: var(--green-mid); border-radius: 2px; margin-bottom: 22px; }
 .divider-center { margin-left: auto; margin-right: auto; }

 /* ABOUT */
 .about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
 .about-text p { color: var(--text-mid); margin-bottom: 18px; font-size: 1.05rem; }
 .about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
 .highlight-item { background: var(--cream); border-radius: 12px; padding: 16px; display: flex; align-items: flex-start; gap: 10px; }
 .highlight-icon { font-size: 1.4rem; }
 .highlight-item p { font-size: 0.88rem; color: var(--text-mid); font-weight: 600; margin: 0; }
 .about-img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-strong); aspect-ratio: 4/5; }
 .about-img img { width: 100%; height: 100%; object-fit: cover; }

 /* FEATURED */
 .featured-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }
 .feat-card { background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
 .feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
 .feat-card-img { width: 100%; height: 230px; overflow: hidden; }
 .feat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
 .feat-card:hover .feat-card-img img { transform: scale(1.06); }
 .feat-card-body { padding: 24px 22px 28px; flex: 1; }
 .feat-card-tag { font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--brown-light); font-weight: 700; margin-bottom: 8px; }
 .feat-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 10px; color: var(--text-dark); }
 .feat-card-body p { font-size: 0.95rem; color: var(--text-mid); }

 /* GALLERY */
 .gallery-section { background: var(--green-deep); padding: 80px 5%; }
 .gallery-section .section-title { color: var(--cream); }
 .gallery-section .section-subtitle { color: rgba(249,244,236,0.75); }
 .gallery-section .divider { background: var(--cream-dark); }
 .gallery-grid { max-width: 1200px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
 .gallery-item { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
 .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
 .gallery-item:hover img { transform: scale(1.07); }

 /* REVIEWS */
 .reviews-grid { max-width: 1200px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
 .review-card { background: var(--cream); border-radius: 16px; padding: 28px 24px; box-shadow: var(--shadow); position: relative; }
 .review-stars { color: #d4a017; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
 .review-card p { font-size: 0.95rem; color: var(--text-mid); font-style: italic; line-height: 1.7; }
 .review-quote { position: absolute; top: 20px; right: 22px; font-size: 3rem; color: var(--cream-dark); font-family: 'Playfair Display', serif; line-height: 1; }

 /* CTA */
 .cta-section { background: linear-gradient(135deg, var(--green-deep) 0%, var(--brown-dark) 100%); text-align: center; padding: 90px 5%; }
 .cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.8rem); color: var(--white); margin-bottom: 18px; }
 .cta-section p { color: rgba(255,255,255,0.80); max-width: 500px; margin: 0 auto 36px; font-size: 1.05rem; }

 /* MENU */
 .menu-hero { background: linear-gradient(135deg, var(--green-deep) 0%, var(--brown-dark) 100%); padding: 100px 5% 60px; text-align: center; }
 .menu-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,5vw,3.8rem); color: var(--white); margin-bottom: 16px; }
 .menu-hero p { color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

 .menu-sections { max-width: 1200px; margin: 0 auto; }
 .menu-section-row { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 40px; }
 .menu-section-row.reverse { direction: rtl; }
 .menu-section-row.reverse > * { direction: ltr; }
 .menu-section-img img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
 .menu-section-content { background: var(--white); padding: 46px 42px; display: flex; flex-direction: column; justify-content: center; }
 .menu-section-content h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--text-dark); margin-bottom: 10px; }
 .menu-section-content .intro { font-size: 0.95rem; color: var(--text-light); margin-bottom: 24px; font-style: italic; }
 .menu-items-list { list-style: none; }
 .menu-items-list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.97rem; color: var(--text-mid); }
 .menu-items-list li:last-child { border-bottom: none; }
 .menu-items-list li::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--green-mid); flex-shrink: 0; }

 /* COFFEE */
 .coffee-section { background: var(--cream); padding: 60px 5%; }
 .coffee-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: center; }
 .coffee-visual { border-radius: 18px; overflow: hidden; height: 260px; }
 .coffee-visual img { width: 100%; height: 100%; object-fit: cover; }
 .coffee-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
 .coffee-item { background: var(--white); border-radius: 14px; padding: 20px 18px; text-align: center; box-shadow: var(--shadow); }
 .coffee-item .icon { font-size: 1.8rem; margin-bottom: 10px; }
 .coffee-item h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; }
 .coffee-item p { font-size: 0.82rem; color: var(--text-light); }

 .seasonal-section { background: var(--brown); padding: 50px 5%; text-align: center; }
 .seasonal-section h2 { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 1.7rem; margin-bottom: 12px; }
 .seasonal-section p { color: rgba(249,244,236,0.80); max-width: 460px; margin: 0 auto 24px; }
 .seasonal-note { font-size: 0.82rem; color: rgba(249,244,236,0.55); margin-top: 20px; }

 /* CONTACT */
 .contact-hero { background: linear-gradient(135deg, var(--green-deep) 0%, var(--brown-dark) 100%); padding: 100px 5% 60px; text-align: center; }
 .contact-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,5vw,3.8rem); color: var(--white); margin-bottom: 16px; }
 .contact-hero p { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

 .contact-main { max-width: 1200px; margin: 0 auto; padding: 70px 5%; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
 .contact-card { background: var(--white); border-radius: 14px; padding: 20px 22px; margin-bottom: 16px; box-shadow: var(--shadow); display: flex; align-items: flex-start; gap: 16px; }
 .contact-card-icon { font-size: 1.5rem; width: 42px; flex-shrink: 0; }
 .contact-card-text h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); margin-bottom: 4px; }
 .contact-card-text a, .contact-card-text p { font-size: 0.97rem; color: var(--text-dark); text-decoration: none; font-weight: 600; display: block; line-height: 1.5; }
 .contact-card-text a:hover { color: var(--green-deep); }
 .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
 .contact-form { background: var(--white); border-radius: 18px; padding: 40px; box-shadow: var(--shadow); }
 .contact-form h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 24px; }
 .form-group { margin-bottom: 20px; }
 .form-group label { display: block; font-size: 0.83rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: var(--text-mid); margin-bottom: 7px; }
 .form-group input, .form-group textarea { width: 100%; padding: 13px 16px; border: 2px solid var(--cream-dark); border-radius: 10px; font-family: 'Lato', sans-serif; font-size: 1rem; color: var(--text-dark); background: var(--cream); outline: none; transition: border-color 0.2s; }
 .form-group input:focus, .form-group textarea:focus { border-color: var(--green-mid); background: white; }
 .form-group textarea { min-height: 120px; resize: vertical; }

 .why-section { background: var(--cream); padding: 70px 5%; }
 .why-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
 .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 20px; margin-top: 44px; }
 .why-item { background: var(--white); border-radius: 16px; padding: 28px 16px; box-shadow: var(--shadow); }
 .why-item .icon { font-size: 2rem; margin-bottom: 12px; }
 .why-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }

 .map-section { padding: 70px 5%; background: var(--white); text-align: center; }
 .map-section h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 16px; }
 .map-section p { color: var(--text-light); margin-bottom: 30px; }
 .map-iframe { max-width: 900px; margin: 0 auto; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-strong); height: 380px; }
 .map-iframe iframe { width: 100%; height: 100%; border: none; }

 .final-cta { background: linear-gradient(135deg, var(--brown-dark) 0%, var(--green-deep) 100%); padding: 80px 5%; text-align: center; }
 .final-cta h2 { font-family: 'Playfair Display', serif; color: var(--white); font-size: clamp(1.6rem,3.5vw,2.4rem); margin-bottom: 18px; }
 .final-cta p { color: rgba(255,255,255,0.80); max-width: 520px; margin: 0 auto 36px; }

 /* FOOTER */
 footer { background: var(--brown-dark); color: rgba(249,244,236,0.80); padding: 60px 5% 30px; }
 .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
 .footer-brand { display: flex; flex-direction: column; gap: 14px; }
 .footer-logo { height: 60px; width: 60px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.2); }
 .footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--cream); }
 .footer-brand-tagline { font-size: 0.85rem; color: rgba(249,244,236,0.60); font-style: italic; }
 .footer-brand p { font-size: 0.9rem; color: rgba(249,244,236,0.65); line-height: 1.7; }
 .footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--cream-dark); margin-bottom: 18px; font-weight: 700; }
 .footer-col ul { list-style: none; }
 .footer-col ul li { margin-bottom: 9px; font-size: 0.9rem; }
 .footer-col ul li a { color: rgba(249,244,236,0.65); text-decoration: none; transition: color 0.2s; }
 .footer-col ul li a:hover { color: var(--cream); }
 .footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(249,244,236,0.40); flex-wrap: wrap; gap: 12px; }
 .footer-social { display: flex; gap: 12px; }
 .footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); color: rgba(249,244,236,0.65); text-decoration: none; font-size: 0.9rem; transition: all 0.2s; }
 .footer-social a:hover { background: var(--green-mid); border-color: var(--green-mid); color: white; }

 /* RESPONSIVE */
 @media (max-width: 900px) {
 .about-inner { grid-template-columns: 1fr; }
 .about-img { order: -1; aspect-ratio: 16/9; }
 .menu-section-row { grid-template-columns: 1fr; }
 .menu-section-row.reverse { direction: ltr; }
 .menu-section-img img { min-height: 230px; max-height: 300px; }
 .contact-main { grid-template-columns: 1fr; }
 .footer-inner { grid-template-columns: 1fr; gap: 30px; }
 .coffee-inner { grid-template-columns: 1fr; }
 .gallery-grid { grid-template-columns: repeat(2,1fr); }
 }
 @media (max-width: 640px) {
 nav { padding: 0 4%; }
 .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(245,240,232,0.98); box-shadow: var(--shadow); padding: 20px 0; gap: 0; }
 .nav-links.open { display: flex; }
 .nav-links li { width: 100%; }
 .nav-links a { display: block; padding: 12px 5%; border-bottom: 1px solid var(--cream-dark); font-size: 1rem; }
 .hamburger { display: flex; }
 .gallery-grid { grid-template-columns: 1fr 1fr; }
 .page-section { padding: 60px 4%; }
 .coffee-grid { grid-template-columns: repeat(2,1fr); }
 .menu-section-content { padding: 28px 22px; }
 }
