:root {
  --bg: #faf6f0;
  --surface: #fff;
  --surface2: #f5ede0;
  --saffron: #e8851a;
  --saffron-light: #f5a03a;
  --saffron-dark: #c06a0a;
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-dark: #1b4332;
  --red: #c1121f;
  --text: #1a1208;
  --text-mid: #4a3728;
  --muted: #8a7060;
  --border: #e8d8c8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 14px;
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.06em; cursor: pointer; border: 2px solid transparent; transition: var(--transition); text-transform: uppercase; }
.btn-primary { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.btn-primary:hover { background: var(--saffron-dark); border-color: var(--saffron-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,133,26,0.35); }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,0.35); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--bg); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); transition: background var(--transition), box-shadow var(--transition); }
.navbar.scrolled { background: rgba(250,246,240,0.97); box-shadow: 0 1px 0 var(--border); backdrop-filter: blur(12px); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; gap: 32px; }
.nav-logo img { height: 72px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > li > a { display: block; padding: 8px 14px; font-size: 0.88rem; font-weight: 500; color: var(--text-mid); transition: color var(--transition); white-space: nowrap; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--saffron); }
.nav-cta { background: var(--green) !important; color: #fff !important; border-radius: 50px; padding: 9px 20px !important; font-weight: 700 !important; margin-left: 8px; transition: var(--transition) !important; }
.nav-cta:hover { background: var(--green-dark) !important; }
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); min-width: 220px; padding: 8px 0; opacity: 0; pointer-events: none; transform: translateY(8px); transition: var(--transition); z-index: 200; box-shadow: 0 16px 40px rgba(26,18,8,0.12); }
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 20px; font-size: 0.88rem; color: var(--muted); transition: color var(--transition), background var(--transition); }
.dropdown li a:hover { color: var(--saffron); background: rgba(232,133,26,0.06); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; z-index: 200; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: var(--transition); transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--green-dark); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) saturate(0.8); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,67,50,0.92) 40%, rgba(27,67,50,0.4) 100%); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px; padding-top: var(--nav-h); }
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron-light); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before, .hero-eyebrow::after { content: '✦'; font-size: 0.6rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 7rem); font-weight: 700; line-height: 1.0; color: #fff; margin-bottom: 8px; font-style: italic; }
.hero-title span { color: var(--saffron-light); font-style: normal; display: block; font-size: 0.55em; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge { position: absolute; bottom: 48px; right: 48px; z-index: 3; background: var(--saffron); color: #fff; width: 120px; height: 120px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; font-size: 0.75rem; line-height: 1.3; animation: spin 20s linear infinite; box-shadow: 0 8px 32px rgba(232,133,26,0.4); }
.hero-badge strong { font-size: 0.95rem; font-weight: 800; display: block; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* STRIP */
.strip { background: var(--saffron); overflow: hidden; padding: 13px 0; }
.strip-inner { display: flex; align-items: center; gap: 28px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; white-space: nowrap; animation: marquee 25s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTION LABELS */
.section-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--saffron); margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; line-height: 1.1; margin-bottom: 12px; font-style: italic; color: var(--text); }
.section-sub { color: var(--muted); font-size: 1rem; margin-bottom: 48px; max-width: 500px; }

/* ABOUT */
.about-section { padding: 100px 0; background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; border-radius: 20px; }
.about-img-tag { position: absolute; bottom: 24px; left: -16px; background: var(--green); color: #fff; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 10px 20px; border-radius: 4px; transform: rotate(2deg); }
.about-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; font-style: italic; line-height: 1.2; margin-bottom: 20px; }
.about-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.85; margin-bottom: 16px; }
.about-pills { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0 32px; }
.pill { background: var(--surface2); border: 1px solid var(--border); border-radius: 50px; padding: 6px 16px; font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }

/* FEATURED ITEMS */
.featured-section { padding: 100px 0; background: var(--bg); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card { border-radius: 20px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); transition: var(--transition); }
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,18,8,0.12); }
.feat-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s ease; }
.feat-card:hover .feat-card-img { transform: scale(1.05); }
.feat-card-body { padding: 20px; }
.feat-card-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; font-style: italic; margin-bottom: 6px; }
.feat-card-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 14px; }
.feat-card-footer { display: flex; align-items: center; justify-content: space-between; }
.feat-card-price { font-size: 1.1rem; font-weight: 700; color: var(--saffron); }
.feat-card-link { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); transition: color var(--transition); }
.feat-card:hover .feat-card-link { color: var(--saffron); }

/* CATEGORIES GRID */
.categories-section { padding: 100px 0; background: var(--green-dark); }
.categories-section .section-label { color: var(--saffron-light); }
.categories-section .section-title { color: #fff; }
.categories-section .section-sub { color: rgba(255,255,255,0.6); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; display: block; cursor: pointer; transition: transform var(--transition); }
.cat-card:hover { transform: translateY(-4px); }
.cat-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.55); }
.cat-card:hover .cat-img-wrap img { transform: scale(1.06); filter: brightness(0.7); }
.cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,67,50,0.9) 30%, transparent 70%); border-radius: var(--radius); }
.cat-label { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px 16px 16px; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; font-style: italic; color: #fff; text-align: center; transition: color var(--transition); }
.cat-card:hover .cat-label { color: var(--saffron-light); }

/* PROMISES */
.promise-section { padding: 100px 0; background: var(--surface2); }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.promise-card { text-align: center; padding: 40px 28px; background: var(--surface); border-radius: 20px; border: 1px solid var(--border); transition: var(--transition); }
.promise-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,18,8,0.08); }
.promise-icon { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 20px; border: 3px solid var(--saffron); }
.promise-icon img { width: 100%; height: 100%; object-fit: cover; }
.promise-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; font-style: italic; margin-bottom: 10px; }
.promise-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* GALLERY */
.gallery-section { padding: 100px 0; background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.9); }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1); }

/* TESTIMONIALS */
.testimonials-section { padding: 100px 0; background: var(--green-dark); }
.testimonials-section .section-label { color: var(--saffron-light); }
.testimonials-section .section-title { color: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px; }
.testi-stars { color: var(--saffron-light); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--saffron); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.testi-loc { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* VISIT / LOCATION */
.visit-section { padding: 100px 0; background: var(--surface); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.visit-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.visit-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; font-style: italic; margin-bottom: 28px; }
.visit-detail { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.visit-detail svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--saffron); margin-top: 3px; }
.visit-detail p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.visit-detail a { color: var(--saffron); font-weight: 600; }
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.map-embed { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(26,18,8,0.08); }
.map-embed iframe { display: block; width: 100%; height: 480px; border: none; }

/* CTA */
.cta-section { position: relative; padding: 120px 0; text-align: center; overflow: hidden; background: var(--saffron); }
.cta-pattern { position: absolute; inset: 0; opacity: 0.08; background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; font-style: italic; color: #fff; margin-bottom: 16px; line-height: 1.1; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }

/* FOOTER */
.footer { background: var(--text); color: rgba(255,255,255,0.8); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { height: 72px; width: auto; margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; max-width: 260px; }
.footer-links h4, .footer-social h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--saffron-light); margin-bottom: 20px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color var(--transition); }
.footer-links ul li a:hover { color: #fff; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); transition: var(--transition); }
.social-links a svg { width: 17px; height: 17px; }
.social-links a:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.footer-bottom { padding: 20px 24px; text-align: center; color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom a { color: var(--saffron-light); }

/* PAGE HERO */
.page-hero { position: relative; padding: calc(var(--nav-h) + 60px) 0 70px; text-align: center; background: var(--green-dark); overflow: hidden; }
.page-hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 700; font-style: italic; line-height: 1.1; color: #fff; position: relative; z-index: 1; }
.page-hero h1 em { color: var(--saffron-light); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-top: 12px; position: relative; z-index: 1; }

/* MENU TABS */
.menu-tabs { position: sticky; top: var(--nav-h); z-index: 50; background: var(--surface); border-bottom: 1px solid var(--border); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tabs-inner { display: flex; gap: 0; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tab-link { display: block; padding: 15px 18px; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); border-bottom: 3px solid transparent; white-space: nowrap; transition: var(--transition); }
.tab-link:hover, .tab-link.active { color: var(--saffron); border-bottom-color: var(--saffron); }

/* MENU SECTIONS */
.menu-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.menu-section:last-of-type { border-bottom: none; }
.menu-section-alt { background: var(--surface2); }
.menu-section-header { margin-bottom: 40px; }
.menu-section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; font-style: italic; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.menu-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.menu-card:hover { border-color: var(--saffron); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,18,8,0.1); }
.menu-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: filter var(--transition), transform 0.5s ease; }
.menu-card:hover .menu-card-img { transform: scale(1.04); }
.menu-card-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.menu-card-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; font-style: italic; margin-bottom: 6px; color: var(--text); }
.menu-card-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.6; flex: 1; margin-bottom: 14px; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-card-price { font-size: 1.1rem; font-weight: 700; color: var(--saffron); }
.menu-card-order { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); transition: color var(--transition); }
.menu-card:hover .menu-card-order { color: var(--saffron); }

/* ADMIN */
.page-hero-admin { background: var(--green-dark); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(250,246,240,0.98); flex-direction: column; align-items: stretch; justify-content: flex-start; padding-top: var(--nav-h); overflow-y: auto; z-index: 149; border-top: none; }
  .nav-links.open { display: flex !important; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { display: block; text-align: left; font-size: 1rem; padding: 14px 28px; color: var(--text); border-bottom: 1px solid var(--border); font-weight: 500; }
  .nav-cta { margin: 16px 24px !important; border-radius: 50px !important; text-align: center !important; padding: 14px 24px !important; display: block !important; }
  .dropdown { position: static !important; opacity: 1 !important; pointer-events: all !important; transform: none !important; background: var(--surface2) !important; border: none !important; border-radius: 0 !important; box-shadow: none !important; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding: 11px 44px !important; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 360px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .promise-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badge { bottom: 24px; right: 24px; width: 100px; height: 100px; font-size: 0.7rem; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 3rem; }
  .hero-badge { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .featured-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .promise-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .tab-link { padding: 12px 14px; font-size: 0.76rem; }
  .visit-actions { flex-direction: column; }
  .visit-actions .btn { width: 100%; justify-content: center; }
}
