/* =============================================================
   TIKKA TACO FUSION — Chipotle-inspired, Indo-Mexi color story
   Saffron / Turmeric / Charcoal palette
   ============================================================= */

:root {
  --tt-saffron:        #E87722;   /* primary action / accent */
  --tt-saffron-dark:   #C45F0E;   /* hover */
  --tt-turmeric:       #FFB81C;   /* highlight */
  --tt-charcoal:       #1C1A18;   /* dark surfaces, text */
  --tt-charcoal-soft:  #2B2622;
  --tt-cream:          #FFF7EC;   /* page bg */
  --tt-cream-2:        #F2E7D5;
  --tt-line:           #E5D8C2;
  --tt-text:           #1C1A18;
  --tt-muted:          #6E6258;
  --tt-success:        #2E7D32;
  --tt-shadow:         0 4px 24px rgba(28,26,24,.08);
  --tt-shadow-lg:      0 12px 40px rgba(28,26,24,.16);
  --tt-radius:         18px;
  --font-display:      'Bebas Neue', 'Oswald', Impact, sans-serif;
  --font-body:         'Source Sans 3', 'Inter', system-ui, sans-serif;
  --font-script:       'Caveat', cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--tt-cream);
  color: var(--tt-text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--tt-saffron); text-decoration: none; transition: color .2s; }
a:hover { color: var(--tt-saffron-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin: 0 0 .6em;
  color: var(--tt-charcoal);
  font-weight: 400;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: 1.6rem; font-family: var(--font-body); font-weight: 700; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--tt-charcoal);
  color: var(--tt-cream-2);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--tt-turmeric); }
.topbar i { margin-right: 6px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--tt-cream);
  border-bottom: 2px solid var(--tt-line);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 1px;
  color: var(--tt-charcoal);
}
.brand .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--tt-saffron); display: inline-block; }
.brand em { color: var(--tt-saffron); font-style: normal; }

.main-nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.main-nav a {
  color: var(--tt-charcoal);
  font-weight: 600;
  padding: 10px 16px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .5px; font-size: 13px;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--tt-charcoal); color: var(--tt-cream);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  background: var(--tt-saffron); color: #fff !important;
  font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: .5px;
  border: 0; cursor: pointer;
  transition: transform .15s ease, background .2s, box-shadow .2s;
  box-shadow: 0 6px 0 var(--tt-saffron-dark);
}
.btn:hover { background: var(--tt-saffron-dark); transform: translateY(2px); box-shadow: 0 4px 0 #8a4309; }
.btn-dark { background: var(--tt-charcoal); box-shadow: 0 6px 0 #000; }
.btn-dark:hover { background: #000; box-shadow: 0 4px 0 #000; }
.btn-outline {
  background: transparent; color: var(--tt-charcoal) !important;
  border: 2px solid var(--tt-charcoal); box-shadow: none;
  padding: 12px 26px;
}
.btn-outline:hover { background: var(--tt-charcoal); color: var(--tt-cream) !important; }

.menu-toggle {
  display: none; background: none; border: 0; font-size: 28px; color: var(--tt-charcoal); cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(28,26,24,.85) 0%, rgba(28,26,24,.55) 50%, rgba(28,26,24,.2) 100%);
}
.hero .container { position: relative; z-index: 2; padding: 90px 24px; max-width: 1240px; }
.hero .eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: var(--tt-saffron); color: #fff; font-weight: 700;
  text-transform: uppercase; font-size: 12px; letter-spacing: 1.5px; margin-bottom: 24px;
}
.hero h1 { color: #fff; max-width: 820px; }
.hero h1 em { font-style: normal; color: var(--tt-turmeric); }
.hero .lead { font-size: 1.3rem; max-width: 620px; margin: 18px 0 32px; opacity: .92; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 24px; margin-top: 56px; max-width: 600px;
}
.hero-stats .num {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--tt-turmeric); display: block;
}
.hero-stats .lbl { text-transform: uppercase; letter-spacing: 1px; font-size: 12px; opacity: .85; }

/* ===== MARQUEE ===== */
.marquee {
  background: var(--tt-saffron); color: #fff; padding: 18px 0;
  overflow: hidden; white-space: nowrap; font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 2px; border-top: 4px solid var(--tt-charcoal); border-bottom: 4px solid var(--tt-charcoal);
}
.marquee-track { display: inline-block; padding-left: 100%; animation: marquee 30s linear infinite; }
.marquee-track span { margin: 0 18px; }
.marquee-track .sep { color: var(--tt-turmeric); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* ===== SECTION ===== */
.section { padding: 90px 0; }
.section.alt { background: var(--tt-cream-2); }
.section.dark { background: var(--tt-charcoal); color: var(--tt-cream); }
.section.dark h2, .section.dark h3 { color: #fff; }
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head .eyebrow {
  font-family: var(--font-script); color: var(--tt-saffron);
  font-size: 1.5rem; display: block; margin-bottom: 6px;
}
.section h2 em { font-style: normal; color: var(--tt-saffron); }

/* ===== CATEGORY GRID ===== */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; }
.cat-card {
  position: relative; border-radius: var(--tt-radius); overflow: hidden;
  background: var(--tt-charcoal); color: #fff;
  min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--tt-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--tt-shadow-lg); }
.cat-card .img-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.cat-card:hover .img-bg { transform: scale(1.06); }
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,26,24,0) 0%, rgba(28,26,24,.95) 100%);
}
.cat-card .body {
  position: relative; z-index: 2; padding: 28px;
}
.cat-card .count {
  display: inline-block; background: var(--tt-saffron); color: #fff;
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.cat-card h3 { font-family: var(--font-display); font-size: 2rem; color: #fff; margin: 8px 0; letter-spacing: 1px; }
.cat-card p { color: rgba(255,255,255,.78); font-size: 14px; margin: 0 0 16px; }
.cat-card .price-from { color: var(--tt-turmeric); font-weight: 700; }
.cat-card .arrow {
  width: 40px; height: 40px; border-radius: 50%; background: var(--tt-saffron);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 16px; transition: background .2s, transform .25s;
}
.cat-card:hover .arrow { background: var(--tt-turmeric); transform: translateX(6px); }

/* ===== ITEM GRID ===== */
.item-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.item-card {
  background: #fff; border-radius: var(--tt-radius); overflow: hidden;
  box-shadow: var(--tt-shadow); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .25s;
}
.item-card:hover { transform: translateY(-4px); box-shadow: var(--tt-shadow-lg); }
.item-card .img { aspect-ratio: 4/3; overflow: hidden; background: var(--tt-cream-2); }
.item-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.item-card:hover .img img { transform: scale(1.06); }
.item-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.item-card .name {
  font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .5px; margin: 0 0 6px;
}
.item-card .desc { color: var(--tt-muted); font-size: 14px; flex: 1; margin: 0 0 14px; }
.item-card .footer {
  display: flex; justify-content: space-between; align-items: center; padding-top: 14px;
  border-top: 1px dashed var(--tt-line);
}
.item-card .price {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--tt-saffron);
}
.badge {
  display: inline-block; padding: 4px 10px; border-radius: 4px;
  background: var(--tt-saffron); color: #fff; font-size: 11px;
  text-transform: uppercase; font-weight: 700; letter-spacing: 1px;
}
.badge.veg { background: var(--tt-success); }
.badge.spicy { background: #C62828; }
.badge.popular, .badge.bestseller, .badge.signature { background: var(--tt-turmeric); color: var(--tt-charcoal); }
.badge-row { margin-bottom: 10px; }

/* ===== MENU PAGE ===== */
.menu-tabs {
  position: sticky; top: 78px; z-index: 50;
  background: var(--tt-cream);
  padding: 18px 0; border-bottom: 2px solid var(--tt-line);
  margin-bottom: 40px;
}
.menu-tabs .tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.menu-tabs a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px;
  background: #fff; color: var(--tt-charcoal); border: 2px solid var(--tt-line);
  font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .5px;
}
.menu-tabs a:hover { border-color: var(--tt-saffron); color: var(--tt-saffron); }

.menu-cat-block { margin-bottom: 80px; scroll-margin-top: 160px; }
.menu-cat-head { display: flex; gap: 24px; align-items: end; flex-wrap: wrap; margin-bottom: 36px; }
.menu-cat-head .num {
  font-family: var(--font-display); font-size: 4rem; color: var(--tt-saffron);
  line-height: 1; opacity: .35;
}
.menu-cat-head h2 { margin: 0; }
.menu-cat-head p { color: var(--tt-muted); max-width: 580px; margin: 6px 0 0; }

/* ===== FEATURED ===== */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }

/* ===== ABOUT ===== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-split .img { border-radius: var(--tt-radius); overflow: hidden; box-shadow: var(--tt-shadow-lg); }
.about-split .img img { aspect-ratio: 4/5; object-fit: cover; }
.about-split p { font-size: 1.05rem; }

.feature-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 28px; margin-top: 56px; }
.feature {
  text-align: left; padding: 28px; border-radius: var(--tt-radius);
  background: #fff; border: 2px solid var(--tt-line);
}
.feature i { font-size: 28px; color: var(--tt-saffron); margin-bottom: 10px; }
.feature h4 { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 6px; letter-spacing: 1px; }
.feature p { font-size: 14px; color: var(--tt-muted); margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.testimonial {
  background: #fff; border-radius: var(--tt-radius); padding: 32px;
  box-shadow: var(--tt-shadow); border-left: 4px solid var(--tt-saffron);
}
.testimonial .stars { color: var(--tt-turmeric); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial blockquote { margin: 0 0 18px; font-size: 1.05rem; }
.testimonial .who { display: flex; align-items: center; gap: 14px; }
.testimonial .avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--tt-saffron);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; letter-spacing: 1px;
}
.testimonial .info strong { display: block; font-weight: 700; }
.testimonial .info span { color: var(--tt-muted); font-size: 13px; }

/* ===== SPECIAL ===== */
.special {
  background: linear-gradient(135deg, var(--tt-saffron) 0%, var(--tt-turmeric) 100%);
  color: #fff; padding: 70px 0; text-align: center;
}
.special h2 { color: #fff; }
.special h2 em { font-style: normal; color: var(--tt-charcoal); }
.special .pct {
  font-family: var(--font-display); font-size: 8rem; line-height: 1; color: var(--tt-charcoal);
}
.special .lead { max-width: 560px; margin: 0 auto 28px; font-size: 1.15rem; opacity: .95; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gallery-grid .g {
  position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 12px;
  background: var(--tt-cream-2);
}
.gallery-grid .g img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-grid .g:hover img { transform: scale(1.08); }
.gallery-grid .g .cap {
  position: absolute; inset: auto 0 0 0; padding: 12px;
  background: linear-gradient(180deg, transparent, rgba(28,26,24,.85));
  color: #fff; font-size: 13px; font-weight: 600;
  opacity: 0; transition: opacity .25s;
}
.gallery-grid .g:hover .cap { opacity: 1; }

/* ===== CONTACT ===== */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.info-card { background: #fff; border-radius: var(--tt-radius); padding: 36px; box-shadow: var(--tt-shadow); }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px dashed var(--tt-line); }
.info-row:last-child { border: 0; }
.info-row .icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--tt-saffron); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex: 0 0 auto;
}
.info-row strong { display: block; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--tt-muted); }
.info-row span { color: var(--tt-charcoal); font-size: 1.05rem; white-space: pre-line; }

.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 2px solid var(--tt-line);
  font: inherit; background: var(--tt-cream); color: var(--tt-charcoal);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--tt-saffron); }
.contact-form textarea { min-height: 140px; resize: vertical; }

.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-weight: 600; }
.alert.success { background: #DCEBDC; color: #1B5E20; border: 1px solid #2E7D32; }
.alert.error   { background: #FBE0E0; color: #B71C1C; border: 1px solid #B71C1C; }

/* ===== MAP ===== */
.map { border-radius: var(--tt-radius); overflow: hidden; box-shadow: var(--tt-shadow); }
.map iframe { width: 100%; height: 360px; border: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--tt-charcoal); color: var(--tt-cream-2);
  padding: 70px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.site-footer h4 { color: #fff; font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 1px; margin-bottom: 16px; }
.site-footer a { color: var(--tt-cream-2); display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--tt-turmeric); }
.site-footer .brand { color: #fff; margin-bottom: 18px; }
.socials a {
  display: inline-flex; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); align-items: center; justify-content: center;
  margin-right: 8px; padding: 0;
}
.socials a:hover { background: var(--tt-saffron); color: #fff; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; text-align: center; font-size: 13px; opacity: .65; }

/* ===== HERO BANNER (sub pages) ===== */
.page-hero {
  position: relative; padding: 110px 0 80px;
  color: #fff; background-size: cover; background-position: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,26,24,.85), rgba(28,26,24,.6));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { font-size: 1.2rem; max-width: 720px; opacity: .9; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--tt-cream); padding: 12px;
    border-bottom: 2px solid var(--tt-line);
    box-shadow: var(--tt-shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 18px; border-radius: 12px; }
  .about-split, .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 60vh; }
  .section { padding: 70px 0; }
  .menu-tabs { top: 70px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .special .pct { font-size: 5rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-stats .num { font-size: 1.8rem; }
}
