/* ============================================================
   ZINGARA — Design System CSS
   Brand: Dark Luxurious Restaurant | Mysore White Biryani
   Palette: Charcoal #1C1A18 | True Red #C8332A | Cream #F5EDD8 | Burnished Gold #C9933A
   Typography: Cormorant Garamond (headings) + DM Sans (body/UI)
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Colors */
  --color-charcoal: #1C1A18;
  --color-charcoal-light: #242220;
  --color-charcoal-mid: #2E2B28;
  --color-charcoal-dark: #151310;
  --color-red: #C8332A;
  --color-red-dark: #9F2721;
  --color-red-light: #D9453C;
  --color-cream: #F5EDD8;
  --color-cream-light: #FFFBF0;
  --color-cream-muted: #C8BDAA;
  --color-gold: #C9933A;
  --color-gold-light: #E4B05A;
  --color-gold-dark: #9F7422;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* Font Sizes — fluid scale */
  --fs-xs: 0.75rem;
  /* 12px */
  --fs-sm: 0.875rem;
  /* 14px */
  --fs-base: 1rem;
  /* 16px */
  --fs-md: 1.125rem;
  /* 18px */
  --fs-lg: 1.25rem;
  /* 20px */
  --fs-xl: 1.5rem;
  /* 24px */
  --fs-2xl: 2rem;
  /* 32px */
  --fs-3xl: 2.5rem;
  /* 40px */
  --fs-4xl: 3.25rem;
  /* 52px */
  --fs-5xl: 4.5rem;
  /* 72px */
  --fs-hero: clamp(2.8rem, 7vw, 5.5rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 68px;

  /* Borders & Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 999px;

  /* Transitions */
  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-glow-red: 0 0 32px rgba(200, 51, 42, 0.25);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--fs-hero);
}

h2 {
  font-size: var(--fs-4xl);
}

h3 {
  font-size: var(--fs-3xl);
}

h4 {
  font-size: var(--fs-2xl);
}

h5 {
  font-size: var(--fs-xl);
}

h6 {
  font-size: var(--fs-lg);
}

p {
  margin-bottom: var(--sp-4);
}

p:last-child {
  margin-bottom: 0;
}

.text-red {
  color: var(--color-red);
}

.text-gold {
  color: var(--color-gold);
}

.text-cream {
  color: var(--color-cream);
}

.text-muted {
  color: var(--color-cream-muted);
}

.text-center {
  text-align: center;
}

.text-upper {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.text-italic {
  font-style: italic;
}

.label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
}

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-8);
}

.container--narrow {
  max-width: 760px;
}

.section {
  padding-block: var(--sp-24);
}

.section--dark {
  background-color: var(--color-charcoal-dark);
}

.section--mid {
  background-color: var(--color-charcoal-mid);
}

.section--cream {
  background-color: var(--color-cream);
  color: var(--color-charcoal);
}

/* ---------- DIVIDERS ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-block: var(--sp-8);
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.5;
}

.divider__icon {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  filter: brightness(1.2);
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin-inline: auto;
  margin-block: var(--sp-6);
  opacity: 0.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-header .label {
  display: block;
  margin-bottom: var(--sp-3);
}

.section-header h2 {
  color: var(--color-cream);
  margin-bottom: var(--sp-4);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-cream);
  border-color: var(--color-red);
}

.btn--primary:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  box-shadow: var(--shadow-glow-red);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-cream);
  border-color: var(--color-cream);
}

.btn--outline:hover {
  background: var(--color-cream);
  color: var(--color-charcoal);
}

.btn--gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background: var(--color-gold);
  color: var(--color-charcoal);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-cream);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #1DAA55;
  border-color: #1DAA55;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(28, 26, 24, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 147, 58, 0.15);
  transition: background var(--transition-slow);
}

.nav.scrolled {
  background: rgba(21, 19, 16, 0.97);
  border-bottom-color: rgba(201, 147, 58, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__logo-icon {
  width: auto;
  height: 5.5rem;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-red) !important;
  line-height: 1;
}

.nav__zingara-text-img {
  height: 8rem;
  width: auto;
  object-fit: contain;
  margin-left: -2.2rem; /* Slightly reduced overlap for cleaner 'g' intersection */
  transition: all var(--transition);
}

.hero__zingara-text-img {
  height: 1em;
  width: auto;
  object-fit: contain;
}

.footer__branding {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer__logo-icon {
  height: 5.5rem;
  width: auto;
  object-fit: contain;
}

.footer__zingara-text-img {
  height: 8rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 0;
  margin-left: -2.5rem;
  transition: all var(--transition);
}

.nav__logo-text span {
  color: var(--color-red);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-cream-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-red);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-cream);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.nav__wa-icon {
  color: #25D366;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  opacity: 0.9;
}

.nav__wa-icon:hover {
  opacity: 1;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-charcoal-dark);
  border-bottom: 1px solid rgba(201, 147, 58, 0.2);
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transform: translateY(-110%);
  transition: transform var(--transition-slow);
  z-index: 99;
}

.nav__mobile.open {
  transform: translateY(0);
}

.nav__mobile a {
  font-size: var(--fs-lg);
  font-family: var(--font-serif);
  color: var(--color-cream);
  padding-block: var(--sp-2);
  border-bottom: 1px solid rgba(245, 237, 216, 0.08);
}

/* ---------- HERO (shared) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: hero-zoom-out 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes hero-zoom-out {
  from {
    transform: scale(1.18);
    opacity: 0.5;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero__bg {
    background-position: center 35%;
    /* Optimizing vertical center for mobile screens */
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(28, 26, 24, 0.55) 0%,
      rgba(28, 26, 24, 0.35) 40%,
      rgba(28, 26, 24, 0.72) 80%,
      rgba(28, 26, 24, 0.95) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-inline: var(--sp-8);
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-6);
  border: 1px solid rgba(201, 147, 58, 0.35);
  padding: 0.4em 1.2em;
  border-radius: var(--radius-pill);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--color-red);
  line-height: 1.05;
  margin-bottom: var(--sp-4);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-cream);
  margin-bottom: var(--sp-6);
  line-height: 1.3;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--color-cream-muted);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-10);
}

.hero__cta-group {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--color-cream-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  transform: rotate(45deg);
  opacity: 0.6;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ---------- CARDS ---------- */
.card {
  background: var(--color-charcoal-mid);
  border: 1px solid rgba(201, 147, 58, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.card:hover {
  border-color: rgba(201, 147, 58, 0.3);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card__body {
  padding: var(--sp-6);
}

.card__label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--sp-2);
}

.card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: var(--sp-2);
}

.card__price {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-gold);
  float: right;
}

.card__desc {
  font-size: var(--fs-sm);
  color: var(--color-cream-muted);
  line-height: 1.6;
}

/* ---------- GRIDS ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

/* ---------- MENU ITEMS (inline) ---------- */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: var(--sp-4);
  border-bottom: 1px solid rgba(245, 237, 216, 0.08);
  gap: var(--sp-4);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__info {
  flex: 1;
}

.menu-item__name {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-cream);
  display: block;
  margin-bottom: var(--sp-1);
}

.menu-item__desc {
  font-size: var(--fs-sm);
  color: var(--color-cream-muted);
  line-height: 1.5;
}

.menu-item__price {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-gold);
  flex-shrink: 0;
}

.menu-subsection {
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-6);
}

/* ---------- MENU CATEGORY HEADER ---------- */
.menu-category {
  margin-bottom: var(--sp-12);
}

.menu-category__header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.menu-category__header::before,
.menu-category__header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 147, 58, 0.3);
}

.menu-category__title {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}

/* ---------- TABS ---------- */
.tabs {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-bottom: var(--sp-12);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

@media (min-width: 1024px) {
  .tabs {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) transparent;
  }
}

.tabs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .tabs::-webkit-scrollbar {
    display: block;
    height: 4px;
  }
  .tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
  }
  .tabs::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
  }
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 237, 216, 0.2);
  color: var(--color-cream-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover {
  border-color: rgba(245, 237, 216, 0.5);
  color: var(--color-cream);
}

.tab-btn.active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-cream);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: var(--sp-3);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

/* ---------- ICON FEATURE STRIP ---------- */
.icon-strip {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--sp-12);
  flex-wrap: wrap;
  padding-block: var(--sp-16);
}

.icon-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  text-align: center;
  max-width: 140px;
}

.icon-feature__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.88;
  filter: brightness(1.1);
}

.icon-feature__label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cream-muted);
  line-height: 1.4;
}

/* ---------- STAT / NUMBER BLOCK ---------- */
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2);
}

.stat-block__number {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  color: rgba(201, 147, 58, 0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--color-charcoal-dark);
  border-top: 1px solid rgba(201, 147, 58, 0.2);
  border-bottom: 1px solid rgba(201, 147, 58, 0.2);
  padding-block: var(--sp-16);
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: var(--sp-2);
}

.cta-banner__sub {
  font-size: var(--fs-sm);
  color: var(--color-cream-muted);
  margin-bottom: var(--sp-8);
}

.cta-banner__buttons {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- DELIVERY CARDS ---------- */
.delivery-card {
  background: var(--color-charcoal-mid);
  border: 1px solid rgba(245, 237, 216, 0.1);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  transition: all var(--transition);
}

.delivery-card:hover {
  border-color: rgba(201, 147, 58, 0.3);
  box-shadow: var(--shadow-card);
}

.delivery-card__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.delivery-card__name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--color-cream);
}

/* ---------- MAP SECTION ---------- */
.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 147, 58, 0.2);
  overflow: hidden;
  background: var(--color-charcoal-mid);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

.map-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.map-details__name {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-cream);
}

.map-details__row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--color-cream-muted);
}

.map-details__row svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-charcoal-dark);
  border-top: 1px solid rgba(201, 147, 58, 0.2);
  padding-block: var(--sp-16) var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red) !important;
  margin-bottom: var(--sp-2);
}

.footer__brand-name span {
  color: var(--color-red);
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--color-cream-muted);
  margin-bottom: var(--sp-6);
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.footer__social {
  display: flex;
  gap: var(--sp-4);
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 237, 216, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream-muted);
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__links a {
  font-size: var(--fs-sm);
  color: var(--color-cream-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-cream);
}

.footer__bottom {
  border-top: 1px solid rgba(245, 237, 216, 0.08);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(200, 189, 170, 0.5);
}

/* ---------- STORY SECTION ---------- */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.story-split--reverse {
  direction: rtl;
}

.story-split--reverse>* {
  direction: ltr;
}

.story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 147, 58, 0.15);
}

.story-text .label {
  margin-bottom: var(--sp-4);
}

.story-text h2 {
  font-size: var(--fs-3xl);
  color: var(--color-cream);
  margin-bottom: var(--sp-6);
  line-height: 1.2;
}

.story-text p {
  font-size: var(--fs-md);
  color: var(--color-cream-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}

/* ---------- PHILOSOPHY LIST ---------- */
.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.philosophy-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  border-bottom: 1px solid rgba(245, 237, 216, 0.07);
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--color-cream);
}

.philosophy-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-red);
  flex-shrink: 0;
}

/* ---------- MANIFESTO BLOCK ---------- */
.manifesto {
  text-align: center;
  padding-block: var(--sp-20);
  position: relative;
}

.manifesto__text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.25;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: var(--sp-4);
}

.manifesto__attr {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ---------- INLINE FOOD SECTION ---------- */
.food-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}

.food-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.food-split__text {
  background: var(--color-charcoal-mid);
  padding: var(--sp-16) var(--sp-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------- STORIES SECTION ---------- */
.story-card {
  background: var(--color-charcoal-mid);
  border: 1px solid rgba(201, 147, 58, 0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  transition: all var(--transition-slow);
}

.story-card:hover {
  border-color: rgba(201, 147, 58, 0.3);
  transform: translateY(-3px);
}

.story-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: var(--sp-4);
  line-height: 1.3;
}

.story-card__body {
  font-size: var(--fs-sm);
  color: var(--color-cream-muted);
  line-height: 1.7;
}

/* ---------- PAGE HERO VARIANTS ---------- */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-16);
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(28, 26, 24, 0.3) 0%,
      rgba(28, 26, 24, 0.9) 100%);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: var(--sp-3);
}

.page-hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--color-cream-muted);
}

/* ---------- CONTACT ROW ---------- */
.contact-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--color-cream-muted);
  font-size: var(--fs-sm);
}

.contact-row svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* ---------- FORM ELEMENTS ---------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 237, 216, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  width: 100%;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-input::placeholder {
  color: var(--color-cream-muted);
}

/* ---------- INSTAGRAM FOLLOW ---------- */
.ig-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding-block: var(--sp-10);
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--color-cream);
}

.ig-follow a {
  color: var(--color-gold);
  transition: color var(--transition);
}

.ig-follow a:hover {
  color: var(--color-gold-light);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .story-split {
    gap: var(--sp-10);
  }
}

@media (max-width: 768px) {
  :root {
    --sp-24: 4rem;
    --sp-20: 3.5rem;
    --sp-16: 3rem;
    --sp-12: 2.5rem;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__actions .btn {
    display: none;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .story-split,
  .food-split,
  .map-section {
    grid-template-columns: 1fr;
  }

  .food-split__img {
    min-height: 300px;
  }

  .food-split__text {
    padding: var(--sp-10) var(--sp-6);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .icon-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-10) var(--sp-4);
    justify-items: center;
    padding-block: var(--sp-12);
  }

  .icon-feature:last-child {
    grid-column: span 2;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer__branding {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__zingara-text-img {
    margin-left: 0;
    margin-top: -2.8rem; /* Pulling name closer to logo in the stacked layout */
    height: 7rem;
  }

  .footer__logo-icon {
    height: 5rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-3);
    text-align: center;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-hero__title {
    font-size: var(--fs-3xl);
  }

  .tabs {
    gap: var(--sp-2);
  }

  .tab-btn {
    font-size: var(--fs-xs);
    padding: 0.4rem 0.9rem;
  }

  .map-section {
    gap: var(--sp-8);
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: var(--sp-4);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .delivery-cards {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: var(--fs-2xl);
  }

  /* Header Logo positioning refinements */
  .nav__inner {
    padding-inline: var(--sp-4);
  }

  .nav__logo-icon {
    height: 4.8rem;
  }

  .nav__zingara-text-img {
    height: 7rem;
    margin-left: -2.4rem; /* Reduced gap / increased overlap for tighter header look */
  }
}

/* ---------- UTILITY ---------- */
.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mt-auto {
  margin-top: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-4 {
  gap: var(--sp-4);
}

.pt-nav {
  padding-top: var(--nav-height);
}

/* ---------- IMAGE PLACEHOLDERS ---------- */
.img-placeholder {
  background: #232018;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 1px solid rgba(201, 147, 58, 0.12);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 147, 58, 0.03) 0%, transparent 60%),
    repeating-linear-gradient(45deg,
      transparent,
      transparent 18px,
      rgba(201, 147, 58, 0.025) 18px,
      rgba(201, 147, 58, 0.025) 19px);
}

.img-placeholder__icon {
  position: relative;
  z-index: 1;
  opacity: 0.22;
}

.img-placeholder__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.2;
}

.img-placeholder__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 147, 58, 0.35);
}

/* Hero bg placeholder */
.hero-ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1710 0%, #0e0c09 50%, #1c1710 100%);
  z-index: 0;
}

/* Full-bleed section bg placeholder */
.section-bg-ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #181510 0%, #0f0d0a 100%);
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: hero-zoom-out 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Map placeholder */
.map-ph {
  background: #1a1a14;
  border: 1px solid rgba(201, 147, 58, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.map-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 147, 58, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 147, 58, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-ph__pin {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.map-ph__pin svg {
  width: 28px;
  height: 28px;
  color: var(--color-red);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.map-ph__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 147, 58, 0.5);
}

/* Smooth fade-in on scroll (handled by JS intersection observer) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}