*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --black-deep: #000000;
  --gold: #EFA026;
  --gold-light: #F5BE5C;
  --gold-dark: #96600D;
  --white: #FFFFFF;
  --offwhite: #F7F5F0;
  --text-dark: #1C1A17;
  --text-muted: #625C53;
  --text-on-dark: rgba(255,255,255,0.82);
  --border: #E6E0D4;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--offwhite); color: var(--text-dark); font-weight: 300; line-height: 1.7; }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--black); color: var(--white);
  padding: 1rem 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; font-size: 0.85rem;
  border-top: 1px solid rgba(239,160,38,0.3);
}
#cookie-banner p { flex: 1; min-width: 200px; opacity: 0.85; }
#cookie-banner a { color: var(--gold); }
#cookie-banner button {
  background: var(--gold); color: var(--black); border: none;
  padding: 0.5rem 1.2rem; cursor: pointer; font-family: inherit; font-size: 0.85rem; font-weight: 600;
}
#cookie-banner button:hover { background: var(--gold-light); }
.hidden { display: none !important; }

/* NAV */
nav.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px;
  border-bottom: 1px solid rgba(239,160,38,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-logo img { height: 42px; width: 42px; object-fit: contain; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--white); letter-spacing: 0.01em; }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--black) !important; padding: 0.5rem 1.1rem; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; }
@media (max-width: 820px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--black); flex-direction: column; padding: 1rem 2rem 1.5rem; gap: 1rem; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

/* PAGE HERO (interior pages) */
.page-hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 55%, #000000 100%);
  color: var(--white); text-align: center; padding: 4rem 2rem 3.5rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23EFA026' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; max-width: 720px; margin: 0 auto; }
.page-eyebrow { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; margin-bottom: 1rem; color: var(--white); }
.page-hero p { font-size: 1rem; color: var(--text-on-dark); }

/* HOME HERO */
.hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  color: var(--white); text-align: center; padding: 3rem 2rem 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23EFA026' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 720px; margin: 0 auto; }
.hero-welcome { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.3rem, 3vw, 1.7rem); color: var(--gold); margin-bottom: 0.8rem; }
.hero-eyebrow { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; opacity: 0.9; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.15; margin-bottom: 1.2rem; color: var(--white); }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p { font-size: 1.05rem; color: var(--white); opacity: 0.92; margin-bottom: 2rem; }
.hero-call { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--gold); color: var(--black); text-decoration: none; padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 1rem; }
.hero-call:hover { background: var(--gold-light); }
.hero-payment-note { font-size: 0.85rem; color: var(--text-on-dark); margin-top: 0.8rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(239,160,38,0.3); padding: 0.35rem 0.8rem; font-size: 0.8rem; margin-top: 1.5rem; color: var(--text-on-dark); }

/* CTA / ORDER SECTION */
.order-section {
  background: var(--white); border-bottom: 2px solid var(--border);
  padding: 2.5rem 2rem;
}
.order-section .inner { max-width: 900px; margin: 0 auto; text-align: center; }
.order-section h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.order-section p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.order-buttons { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

.order-btn {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 2rem; text-decoration: none; font-weight: 600;
  font-size: 1rem; min-width: 260px; border-radius: 4px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.order-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.order-btn-phone { background: var(--black); color: var(--white); border: 1px solid var(--gold); }
.order-btn-menu { background: var(--gold); color: var(--black); }
.order-btn-icon { font-size: 1.6rem; flex-shrink: 0; }
.order-btn-text { text-align: left; }
.order-btn-text small { display: block; font-size: 0.75rem; font-weight: 400; opacity: 0.8; }
.order-btn-text strong { display: block; font-size: 1rem; }

/* SECTION */
section { padding: 4rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container.narrow { max-width: 800px; }
.section-label { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.section-sub { color: var(--text-muted); max-width: 620px; }
.section-alt { background: var(--white); }

/* INFO CARDS */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.info-card { background: var(--white); border: 1px solid var(--border); padding: 1.8rem; border-top: 3px solid var(--gold); }
.info-card .icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.info-card h3 { font-weight: 600; font-size: 1rem; margin-bottom: 0.4rem; }
.info-card p, .info-card a { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; text-decoration: none; }
.info-card a:hover { color: var(--gold-dark); }

/* PAGE LINK CARDS (home quick links) */
.link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.link-card { background: var(--black); color: var(--white); padding: 2rem 1.6rem; text-decoration: none; display: block; border: 1px solid rgba(239,160,38,0.2); transition: border-color 0.2s, transform 0.15s; }
.link-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.link-card .icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.link-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--gold); }
.link-card p { font-size: 0.85rem; color: var(--text-on-dark); }

/* MENU */
.menu-section { background: var(--white); }
.menu-tabs { display: flex; gap: 0; flex-wrap: wrap; border-bottom: 2px solid var(--border); margin-bottom: 2rem; overflow-x: auto; }
.menu-tab {
  background: none; border: none; cursor: pointer;
  padding: 0.75rem 1rem; font-family: inherit; font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
.menu-tab.active { color: var(--gold-dark); border-bottom-color: var(--gold); }
.menu-tab:hover { color: var(--text-dark); }
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.menu-group-title { font-weight: 600; margin-bottom: 0.8rem; font-size: 0.9rem; color: var(--text-dark); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.menu-item { background: var(--offwhite); padding: 1rem 1.2rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.menu-item:hover { background: #f0ead9; }
.menu-item-info { flex: 1; }
.menu-item-name { font-weight: 500; font-size: 0.9rem; margin-bottom: 0.15rem; }
.menu-item-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.badge { font-size: 0.65rem; padding: 0.1rem 0.35rem; margin-left: 0.3rem; vertical-align: middle; font-weight: 600; }
.badge-veg { background: #2d7a2d; color: #fff; }
.badge-hot { background: #b3391f; color: #fff; }
.badge-pop { background: var(--gold); color: var(--black); }
.menu-price { font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.menu-note { margin-top: 1.2rem; padding: 0.9rem 1.2rem; background: #fdf5e6; border-left: 3px solid var(--gold); font-size: 0.82rem; color: var(--text-muted); }
.legal-note { margin-top: 2.5rem; padding: 1rem 1.2rem; background: var(--offwhite); border: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* DECLARATION TABLE */
.decl-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.decl-table tr { border-bottom: 1px solid var(--border); }
.decl-table td { padding: 0.6rem 0.4rem; font-size: 0.88rem; }
.decl-table td:first-child { font-weight: 500; width: 45%; }
.decl-table td:last-child { color: var(--text-muted); }

/* HOURS */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 0.65rem 0.4rem; font-size: 0.9rem; }
.hours-table td:first-child { font-weight: 500; width: 45%; }
.hours-table td:last-child { color: var(--text-muted); }

/* DELIVERY ZONES */
.zone-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.zone-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 1.6rem; }
.zone-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.zone-card .zone-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold-dark); margin-top: 0.4rem; }

/* CONTACT GRID */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

.map-wrapper { border: 1px solid var(--border); overflow: hidden; }
.map-wrapper iframe { display: block; width: 100%; height: 320px; border: none; }

.payment-inline { display: inline-flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; font-size: 0.85rem; color: var(--text-muted); }
.payment-chip { display: inline-flex; align-items: center; gap: 0.35rem; background: var(--offwhite); border: 1px solid var(--border); padding: 0.3rem 0.65rem; font-size: 0.8rem; }

/* ABOUT PAGE */
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .story-grid { grid-template-columns: 1fr; } }
.story-visual { background: var(--black); color: var(--gold); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(239,160,38,0.25); }
.story-visual img { height: 45%; opacity: 0.95; }

/* FOOTER */
footer.site-footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 3rem 2rem 2rem; font-size: 0.85rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { max-width: 320px; }
.footer-brand .nav-logo-text { font-size: 1.3rem; }
.footer-brand p { margin-top: 0.8rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--gold); }
.footer-payments { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.9rem; }
.pay-chip { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); padding: 0.3rem 0.65rem; font-size: 0.75rem; color: rgba(255,255,255,0.75); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; align-items: center; padding-top: 1.5rem; }
footer a { color: rgba(255,255,255,0.6); }
footer a:hover { color: var(--white); }

@media (max-width: 600px) {
  .order-btn { min-width: 100%; }
  .order-buttons { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
