/* =========================================================
   CHASKA — "Addiction of a Good Taste"
   Main stylesheet
   ========================================================= */

:root {
  --black: #0b0b0b;
  --near-black: #141414;
  --charcoal: #1c1c1c;
  --red: #d81f11;
  --red-dark: #a3160b;
  --orange: #ff7a1a;
  --gold: #f5c518;
  --gold-soft: #ffe9a8;
  --green: #4c8c2b;
  --pink: #ff2f78;
  --cream: #fff8ec;
  --off-white: #faf7f2;
  --ink: #1b1710;
  --muted: #6b6255;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.18);
  --shadow-soft: 0 4px 16px rgba(0,0,0,0.10);
  --max-width: 1180px;
  --font-display: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--black);
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--red);
  background: rgba(216,31,17,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section {
  padding: 72px 0;
}
.section--tight { padding: 48px 0; }
.section--dark {
  background: var(--black);
  color: #eee;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .section-head p { color: #b7b0a2; }
.section--cream {
  background:
    radial-gradient(rgba(216,31,17,0.045) 1.5px, transparent 1.5px) 0 0/26px 26px,
    var(--cream);
}
.section--maroon {
  background: linear-gradient(135deg, var(--red-dark) 0%, #4a0d06 60%, var(--black) 100%);
  color: #fff;
}
.section--maroon h1, .section--maroon h2, .section--maroon h3 { color: #fff; }
.section--maroon .section-head p { color: #ffd8cf; }
.section--maroon .post-card h3,
.section--maroon .card h3,
.section--maroon .combo-card h3,
.section--maroon .testimonial p { color: var(--black); }
.section--gold-tint {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--cream) 100%);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(216,31,17,0.35);
}
.btn-primary:hover { box-shadow: 0 12px 26px rgba(216,31,17,0.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-block { width: 100%; justify-content: center; }

/* ===================== Topbar & Header ===================== */
.topbar {
  background: var(--black);
  color: #ddd;
  font-size: .82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #ddd; }
.topbar a:hover { color: var(--gold); }
.topbar-links { display: flex; gap: 18px; align-items: center; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { font-weight: 600; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,11,11,0.96);
  backdrop-filter: saturate(150%) blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 42px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: #f0ece4;
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 2px;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; row-gap: 8px; }

/* Compact per-branch call + WhatsApp cluster (no dropdown, no clutter) */
.branch-cluster { display: flex; align-items: center; gap: 8px; }
.branch-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 5px 8px 5px 14px;
}
.branch-pill .b-name { color: #f0ece4; font-weight: 700; font-size: .78rem; white-space: nowrap; }
.b-icon,
.s-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}
.b-icon:hover { background: var(--red); transform: scale(1.06); }
.b-icon.wa,
.s-icon.wa { background: #25D366; color: #05330f; }
.b-icon.wa:hover,
.s-icon.wa:hover { background: #1fbd5a; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  display: block;
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,122,26,0.25), transparent 55%),
              radial-gradient(ellipse at 10% 80%, rgba(216,31,17,0.25), transparent 55%),
              linear-gradient(rgba(11,11,11,0.93), rgba(11,11,11,0.93)),
              url('../images/hero-spread.jpg');
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center 35%;
  color: #fff;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 560px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--gold); font-style: italic; }
.hero p.lead {
  font-size: 1.15rem;
  color: #d8d3c8;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ecebe6;
  font-weight: 600;
  font-size: .9rem;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-art img {
  width: min(320px, 40vw);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,0.5));
}
.hero-ring {
  position: absolute;
  width: min(320px, 40vw);
  height: min(320px, 40vw);
  border-radius: 50%;
  border: 2px dashed rgba(245,197,24,0.35);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Desktop/tablet only — anchor the mascot near the top of the hero row
   instead of true vertical centering, so it can't get cropped by the
   fold regardless of window/browser-chrome height. Enlarge it slightly
   now that it has more headroom. Mobile layout (<=720px) is untouched. */
@media (min-width: 721px) {
  .hero-art { align-self: flex-start; margin-top: 6px; }
  .hero-art img { width: min(370px, 42vw); }
  .hero-ring { width: min(370px, 42vw); height: min(370px, 42vw); }
}

/* ===================== Highlight cards ===================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
}
.card:nth-child(2) .icon { background: linear-gradient(135deg, var(--green), #7cbf52); }
.card:nth-child(3) .icon { background: linear-gradient(135deg, var(--gold), #c99a00); }
.card:nth-child(4) .icon { background: linear-gradient(135deg, var(--pink), var(--red)); }
.card h3 { font-size: 1.15rem; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }
.card { border-top: 4px solid var(--red); }
.card:nth-child(2) { border-top-color: var(--green); }
.card:nth-child(3) { border-top-color: var(--gold); }
.card:nth-child(4) { border-top-color: var(--pink); }

/* ===================== Menu teaser / cards ===================== */
.dish-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.05);
}
.dish-card .dish-img {
  height: 170px;
  background: linear-gradient(135deg, var(--gold-soft), #ffd27a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  position: relative;
  overflow: hidden;
}
.dish-card .dish-img.has-photo,
.dish-card .dish-img.tint-green,
.dish-card .dish-img.tint-gold,
.dish-card .dish-img.photo-butter-chicken,
.dish-card .dish-img.photo-paneer-tikka,
.dish-card .dish-img.photo-chilli-chicken,
.dish-card .dish-img.photo-dal-makhani {
  background-size: cover;
  background-position: center;
}
.dish-card .dish-img.photo-butter-chicken { background-image: url('../images/dish-butter-chicken.jpg'); }
.dish-card .dish-img.photo-paneer-tikka { background-image: url('../images/dish-paneer-tikka.jpg'); }
.dish-card .dish-img.photo-chilli-chicken { background-image: url('../images/dish-chilli-chicken.jpg'); }
.dish-card .dish-img.photo-dal-makhani { background-image: url('../images/dish-dal-makhani.jpg'); }
.dish-card .dish-body { padding: 18px 20px 22px; }
.dish-card h4 { margin: 0 0 6px; font-size: 1.05rem; display:flex; justify-content:space-between; gap:10px;}
.dish-card .price { color: var(--red); font-weight: 700; white-space: nowrap; }
.dish-card p { color: var(--muted); font-size: .88rem; margin: 0; }
.tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tag-veg { background: #e4f4e0; color: var(--green); }
.tag-nonveg { background: #fde3e3; color: var(--red-dark); }
.tag-chef { background: #fff2cf; color: #9a6b00; }
.tag-new { background: #e2f0fb; color: #1a6fa3; }
.spice-level {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--red-dark);
  vertical-align: middle;
}

/* ===================== Combos ===================== */
.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.combo-grid.combo-grid-2 { grid-template-columns: repeat(2, 1fr); }
.combo-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.combo-card .combo-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.combo-card .combo-code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .78rem;
  color: var(--black);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.combo-card h3 { font-size: 1.1rem; margin: 0; }
.combo-card .for { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.combo-card .combo-desc { font-size: .88rem; color: #45403a; line-height: 1.5; }
.combo-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px dashed rgba(0,0,0,0.12);
}
.combo-row .combo-opt { font-size: .88rem; color: var(--ink); display: flex; gap: 8px; align-items: flex-start; }
.combo-row .combo-pricing { text-align: right; white-space: nowrap; }
.combo-row .combo-pricing .price { font-weight: 800; color: var(--red); font-size: 1.15rem; display: block; }
.combo-row .combo-pricing .mrp { font-size: .74rem; color: var(--muted); display: block; margin-top: 2px; }
.combo-row .combo-pricing .save { font-size: .74rem; color: var(--green); font-weight: 700; display: block; }
.combo-single-price { text-align: right; white-space: nowrap; padding-top: 8px; border-top: 1px dashed rgba(0,0,0,0.12); margin-top: 4px; }
.combo-single-price .price { font-weight: 800; color: var(--red); font-size: 1.4rem; display: block; }
.combo-single-price .mrp { font-size: .78rem; color: var(--muted); display: block; margin-top: 4px; }
.combo-single-price .save { font-size: .78rem; color: var(--green); font-weight: 700; display: block; }
.combo-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 6px; }

/* ===================== Menu page ===================== */
.menu-notice {
  background: #fff2cf;
  border: 1px dashed #c99a00;
  color: #6b4f00;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: .92rem;
  margin-bottom: 40px;
}
.menu-search-wrap {
  max-width: 560px;
  margin: 0 auto 34px;
  text-align: center;
}
.menu-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 6px 8px 6px 20px;
  box-shadow: var(--shadow-soft);
  transition: border-color .15s ease;
}
.menu-search:focus-within { border-color: var(--red); }
.menu-search-icon { font-size: 1rem; opacity: .6; }
.menu-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: .95rem;
  padding: 10px 0;
  background: transparent;
  color: var(--ink);
}
.menu-search input::placeholder { color: var(--muted); }
.menu-search button#menu-search-clear {
  border: none;
  background: rgba(0,0,0,0.08);
  color: var(--ink);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .85rem;
  flex-shrink: 0;
}
.menu-search button#menu-search-clear:hover { background: var(--red); color: #fff; }
.menu-search-status {
  margin: 12px 0 0;
  font-size: .88rem;
  color: var(--muted);
}
.menu-item.is-hidden,
.menu-subhead.is-hidden,
.menu-list.is-hidden,
.menu-category.is-hidden {
  display: none !important;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.menu-tabs button {
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  color: var(--ink);
}
.menu-tabs button.active,
.menu-tabs button:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.menu-tabs button.tab-combo {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--near-black);
}
.menu-tabs button.tab-combo:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}
.menu-category { margin-bottom: 56px; scroll-margin-top: 100px; }
.menu-category-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
}
.menu-category-title h2 { margin: 0; font-size: 1.5rem; }
.menu-category-title span { color: var(--muted); font-size: .85rem; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 40px; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(0,0,0,0.14);
}
.menu-item-name { font-weight: 700; font-size: .98rem; }
.menu-item-desc { color: var(--muted); font-size: .84rem; margin-top: 3px; }
.menu-item-price { font-weight: 700; color: var(--red); white-space: nowrap; text-align:right; }

.dot-veg, .dot-nonveg {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  position: relative;
  margin-right: 6px;
  flex: none;
}
.dot-veg { border: 1.5px solid var(--green); }
.dot-veg::after { content:''; position:absolute; inset:1.5px; border-radius:50%; background: var(--green); }
.dot-nonveg { border: 1.5px solid var(--red-dark); }
.dot-nonveg::after { content:''; position:absolute; inset:1.5px; border-radius:50%; background: var(--red-dark); }
.bestseller-mark { color: #b8860b; font-weight: 700; }
.menu-subhead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 22px 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-subhead .line { flex: 1; height: 1px; background: rgba(0,0,0,0.1); }
.menu-subnote { font-size: .78rem; color: var(--muted); font-style: italic; margin-bottom: 10px; margin-top: -6px; }

/* ===================== Testimonials ===================== */
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial p { font-style: italic; color: #3a352c; }
.testimonial .who { margin-top: 16px; font-weight: 700; font-size: .88rem; color: var(--muted); }

/* ===================== Instagram teaser ===================== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.insta-grid a {
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--pink), var(--orange));
  color: #fff;
  font-size: 1.4rem;
  transition: transform .2s ease;
}
.insta-grid a:hover { transform: scale(1.04); }
.insta-grid a.has-photo {
  background-image: linear-gradient(135deg, rgba(216,31,17,0.35), rgba(11,11,11,0.45)), url('../images/dish-spotlight.jpg');
  background-size: cover;
  background-position: center;
}
.insta-grid a.photo-insta-1 {
  background-image: linear-gradient(135deg, rgba(216,31,17,0.35), rgba(11,11,11,0.45)), url('../images/insta-tile-1.jpg');
}
.insta-grid a.photo-insta-2 {
  background-image: linear-gradient(135deg, rgba(216,31,17,0.35), rgba(11,11,11,0.45)), url('../images/insta-tile-2.jpg');
}
.insta-grid a.photo-insta-3 {
  background-image: linear-gradient(135deg, rgba(216,31,17,0.35), rgba(11,11,11,0.45)), url('../images/insta-tile-3.jpg');
}
.insta-grid a.photo-insta-4 {
  background-image: linear-gradient(135deg, rgba(216,31,17,0.35), rgba(11,11,11,0.45)), url('../images/insta-tile-4.jpg');
}
.insta-grid a.photo-insta-5 {
  background-image: linear-gradient(135deg, rgba(216,31,17,0.35), rgba(11,11,11,0.45)), url('../images/insta-tile-5.jpg');
}

/* ===================== CTA band ===================== */
.cta-band {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: #fff;
  text-align: center;
  border-radius: 24px;
  padding: 56px 30px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe0da; margin-bottom: 26px; }

/* ===================== Locations ===================== */
.grid-2-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.location-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.06);
  scroll-margin-top: 100px;
}
.location-card-head {
  padding: 18px 22px 0;
}
.location-card-head h3 { margin: 8px 0 14px; font-size: 1.2rem; }
.location-card .map-frame { border-radius: 0; width: 100%; border: 0; display: block; }
.location-card-body { padding: 18px 22px 22px; }
.location-card-body p { margin: 0 0 8px; font-size: .92rem; }

/* ===================== Contact ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.info-row .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--black); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-row h4 { margin: 0 0 4px; font-size: 1rem; }
.info-row p { margin: 0; color: var(--muted); font-size: .92rem; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 0;
  width: 100%;
  min-height: 340px;
}
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: inherit;
  font-size: .95rem;
  background: #fff;
}
.form-field select { cursor: pointer; }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 10px; }

table.hours { width: 100%; border-collapse: collapse; }
table.hours td { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-size: .95rem; }
table.hours td:last-child { text-align: right; font-weight: 700; }

/* ===================== Offers / Blog ===================== */
.post-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-thumb {
  height: 190px;
  background: linear-gradient(135deg, var(--black), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 2.2rem;
}
.post-thumb.has-photo {
  background-image: linear-gradient(135deg, rgba(11,11,11,0.55), rgba(163,22,11,0.55)), url('../images/dish-spotlight.jpg');
  background-size: cover;
  background-position: center 25%;
}

/* ===================== Photo spotlight ===================== */
.photo-spotlight {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.photo-spotlight .frame {
  position: relative;
  border-radius: 22px;
  padding: 14px;
  background: linear-gradient(145deg, var(--gold), var(--red));
  box-shadow: var(--shadow);
}
.photo-spotlight .frame img {
  border-radius: 14px;
  width: 100%;
  display: block;
}
.photo-spotlight .badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 2px solid var(--gold);
}
.photo-spotlight .copy h2 { margin-bottom: 14px; }
.photo-spotlight .copy p { color: var(--muted); font-size: 1.02rem; margin-bottom: 22px; }
.photo-spotlight.on-dark .copy p { color: #d8d3c8; }
.photo-spotlight .spotlight-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.story-stats { display: flex; gap: 36px; margin: 22px 0 26px; }
.story-stat .num { font-size: 2.6rem; font-weight: 800; color: var(--red-dark); line-height: 1; }
.story-stat .label { font-size: .82rem; color: var(--muted); margin-top: 4px; font-weight: 600; }
.post-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-meta { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.post-body h3 { font-size: 1.15rem; margin: 0; }
.post-body p { color: var(--muted); font-size: .92rem; margin: 0; flex: 1; }
.post-body .read-more { font-weight: 700; color: var(--red); font-size: .88rem; }

.offer-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--black);
  color: #fff;
  border-radius: 18px;
  padding: 30px 36px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.offer-banner .badge {
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ===================== About ===================== */
.about-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.about-hero .art {
  background:
    linear-gradient(160deg, rgba(11,11,11,0.75), rgba(163,22,11,0.75)),
    url('../images/dish-spotlight.jpg') center 20%/cover,
    var(--black);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 26px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-item .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
  background: var(--black);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-item h3 { margin: 0 0 4px; font-size: 1rem; }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.faq-item h3 { font-size: 1.05rem; margin: 0 0 6px; color: var(--red-dark); }
.faq-item p { margin: 0; color: var(--muted); }
.value-item p { margin: 0; color: var(--muted); font-size: .88rem; }

/* ===================== Blog / Article pages ===================== */
.article-meta { max-width: 760px; margin: 0 auto 26px; display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font-size: .92rem; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin: 34px 0 12px; font-size: 1.45rem; }
.article-body h3 { margin: 22px 0 8px; font-size: 1.1rem; color: var(--red-dark); }
.article-body p { margin: 0 0 16px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--red); font-weight: 600; }
.article-hero-img { width: 100%; max-width: 760px; height: auto; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius); margin: 0 auto 26px; display: block; box-shadow: var(--shadow-soft); }
.article-hero-video-wrap { max-width: 360px; margin: 0 auto 26px; }
.article-hero-video { width: 100%; height: auto; border-radius: var(--radius); display: block; box-shadow: var(--shadow-soft); background: #000; }
.article-hero-video-caption { text-align: center; color: var(--muted); font-size: .85rem; margin: 8px 0 0; }
.article-cta { max-width: 760px; margin: 34px auto; background: var(--cream); border-radius: var(--radius); padding: 26px; text-align: center; box-shadow: var(--shadow-soft); }
.article-cta h3 { margin: 0 0 12px; }
.article-cta .btn { margin: 4px 6px; }
.related-posts-head { max-width: 760px; margin: 0 auto 18px; }

/* ===================== Footer ===================== */
footer.site-footer {
  background: var(--black);
  color: #cfc9bd;
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-grid img.f-logo { height: 40px; margin-bottom: 14px; }
.footer-grid p { font-size: .88rem; color: #b7b0a2; }
.footer-links a { display: block; padding: 6px 0; font-size: .9rem; color: #cfc9bd; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.footer-social a:hover { background: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .82rem;
  color: #948d7f;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: #948d7f; }
.footer-bottom a:hover { color: var(--gold); }

/* Compact floating contact card — replaces the old 3-pill stack */
.sticky-contact-card {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: none;
  flex-direction: column;
  gap: 8px;
  background: rgba(20,20,20,0.94);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 10px 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.sticky-branch { display: flex; align-items: center; gap: 8px; }
.sticky-branch .s-name {
  color: #f0ece4;
  font-weight: 700;
  font-size: .74rem;
  width: 52px;
  white-space: nowrap;
}
.sticky-branch .s-icon { width: 32px; height: 32px; background: var(--red); }

.breadcrumb {
  background: var(--black);
  color: #cfc9bd;
  font-size: .85rem;
  padding: 16px 0;
}
.breadcrumb a { color: #cfc9bd; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

.page-hero {
  background:
    linear-gradient(135deg, rgba(11,11,11,0.88), rgba(163,22,11,0.82)),
    url('../images/page-banner.jpg') center 40%/cover;
  color: #fff;
  padding: 64px 0 52px;
  text-align: center;
  position: relative;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #f0e6dc; max-width: 620px; margin: 0 auto; }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .combo-grid, .combo-grid.combo-grid-2 { grid-template-columns: 1fr 1fr; }
  .hero .container { grid-template-columns: 1fr; text-align: center; padding-top: 50px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-art { order: -1; }
  .about-hero { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-spotlight { grid-template-columns: 1fr; text-align: center; }
  .grid-2-locations { grid-template-columns: 1fr; }
  .photo-spotlight .frame { max-width: 460px; margin: 0 auto; }
  .photo-spotlight .spotlight-tags { justify-content: center; }
  .story-stats { justify-content: center; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .branch-cluster { display: none; }
  .header-actions .btn-primary { padding: 10px 18px; font-size: .85rem; }
  .sticky-contact-card { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .combo-grid, .combo-grid.combo-grid-2 { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-links span.sep { display: none; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .value-list { grid-template-columns: 1fr; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--near-black);
    padding: 18px 24px 26px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}
