/* ============================================================
   Odisha Hotel — Global Stylesheet
   odishahotel.in
   ============================================================ */

/* ---- Google Fonts loaded via <link preload> in head.php (non-blocking) ---- */

/* ---- CSS Variables ---- */
:root {
  --primary:       #C8440A;   /* Burnt saffron / Odia temple colour */
  --primary-dark:  #9E3208;
  --primary-light: #F4601A;
  --accent:        #F5A623;   /* Turmeric gold */
  --accent-dark:   #D48A0D;
  --dark:          #1A1209;
  --dark-2:        #2E1E0F;
  --text:          #3D2B1A;
  --text-light:    #7A5C46;
  --bg:            #FFFAF5;
  --bg-card:       #FFF6EC;
  --white:         #FFFFFF;
  --border:        #EDD9C5;
  --shadow:        0 4px 24px rgba(200, 68, 10, 0.10);
  --shadow-lg:     0 12px 48px rgba(200, 68, 10, 0.18);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--dark);
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---- Container ---- */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Logo Image (replaces placeholder when logo file is uploaded) ---- */
.logo-img {
  height: 65px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* Footer logo — inside a white rectangular box on the dark footer */
.footer-logo-box {
  display: inline-block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.5rem 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.footer .logo-img {
  height: 64px;
  max-width: 190px;
  object-fit: contain;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,68,10,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  padding: 0.7rem 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-placeholder {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.4rem;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1209 0%, #3A1A06 50%, #1A1209 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-img, url('https://images.unsplash.com/photo-1631515243349-e0cb75fb8d3a?w=1600&q=80')) center/cover no-repeat;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,18,9,0.92) 40%, rgba(26,18,9,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeInUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 50px;
  padding: 0.42rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 5%;
  display: flex;
  gap: 2rem;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ============================================================
   SECTIONS — Shared
   ============================================================ */
section { padding: 6rem 0; }

.section-header {
  margin-bottom: 3.5rem;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--primary);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-item::after {
  content: '●';
  color: var(--accent);
  font-size: 0.6rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT STRIP (homepage)
   ============================================================ */
.about-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.img-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-ph-block {
  background: linear-gradient(135deg, var(--border), #F5DEC5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.82rem;
}

.img-ph-icon {
  font-size: 2rem;
  opacity: 0.5;
}

.about-image-grid .img-placeholder:first-child {
  grid-row: span 2;
  min-height: 360px;
}

.about-image-grid .img-placeholder:not(:first-child) {
  min-height: 165px;
}

.about-text .section-tag { margin-bottom: 0.4rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}

.about-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feat-icon {
  width: 40px; height: 40px;
  background: rgba(200,68,10,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feat-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.feat-text p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */
.signature-dishes { background: var(--bg); }

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

.dish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.dish-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.dish-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-img img {
  transform: scale(1.07);
}

.dish-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.dish-body {
  padding: 1.4rem;
}

.dish-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.dish-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   CUISINE SHOWCASE
   ============================================================ */
.cuisine-showcase {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cuisine-showcase::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,68,10,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cuisine-showcase .section-title,
.cuisine-showcase .section-tag { color: var(--white); }
.cuisine-showcase .section-title .highlight { color: var(--accent); }
.cuisine-showcase .section-subtitle { color: rgba(255,255,255,0.6); }

.cuisine-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cuisine-tab {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.cuisine-tab:hover,
.cuisine-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.cuisine-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.cuisine-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.3rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.cuisine-item:hover {
  background: rgba(200,68,10,0.15);
  border-color: rgba(200,68,10,0.4);
}

.cuisine-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.cuisine-item span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* ============================================================
   PITHA SECTION
   ============================================================ */
.pitha-section {
  background: var(--bg-card);
}

.pitha-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pitha-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.pitha-card h3,
.pitha-card p {
  padding: 0 1.5rem;
}

.pitha-card h3 { padding-top: 0; margin-top: 0; }
.pitha-card p  { padding-bottom: 1.5rem; }

.pitha-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 28px rgba(245,166,35,0.15);
  transform: translateY(-4px);
}

.pitha-img {
  width: 100%;
  height: 180px;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.pitha-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pitha-card:hover .pitha-img img {
  transform: scale(1.06);
}

.pitha-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.pitha-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 1rem;
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,9,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(26,18,9,0.45);
}

.gallery-overlay span {
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span { opacity: 1; }

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 8; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-card); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.testi-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
}

.testi-location {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 400px; height: 400px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ============================================================
   BLOG — Listing & Post Pages
   ============================================================ */

/* ── Blog listing grid ───────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ── Blog card ───────────────────────────────────────────── */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

/* Image wrapper — padding-top 16:9 trick (universal browser support) */
.blog-card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f0ebe4;
  padding-top: 56.25%;   /* 9/16 = 56.25% → forces 16:9 ratio */
  text-decoration: none;
}
.blog-card-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.blog-card:hover .blog-card-img { transform: scale(1.07); }

/* Category badge on image */
.blog-card-cat {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 0.22rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* Card body */
.blog-card-body {
  padding: 1.5rem 1.6rem 1.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* Date + read time */
.blog-card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 0.75rem;
}
.blog-card-meta i { margin-right: 0.2rem; color: var(--primary); }

/* Title */
.blog-card-title {
  font-family: var(--font-head);
  font-size: 1.07rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.42;
  margin: 0 0 0.7rem;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--primary); }

/* Excerpt — clamp to 3 lines */
.blog-card-excerpt {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.75;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read more */
.blog-read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.blog-read-more:hover { gap: 0.65rem; }

/* ── Blog post hero ──────────────────────────────────────── */
.blog-post-hero {
  position: relative;
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 7rem 0 3.5rem;
  margin-top: 80px;
}
.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.50) 45%,
    rgba(0,0,0,0.85) 100%
  );
}
.blog-post-hero .container {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

/* Breadcrumb on dark hero */
.breadcrumb-dark {
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
}
.breadcrumb-dark a,
.breadcrumb-dark span {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
}
.breadcrumb-dark a:hover { color: #fff !important; text-decoration: underline; }

/* Category badge on post hero */
.blog-cat-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.28rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}

/* Post H1 */
.blog-post-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3.8vw, 2.8rem);
  color: #fff;
  line-height: 1.22;
  margin: 0.4rem 0 1.2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Post meta row */
.blog-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
}
.blog-post-meta i { margin-right: 0.3rem; }

/* ── Blog prose (article body) ───────────────────────────── */
.blog-post-body {
  padding: 4.5rem 0 3rem;
  background: #fff;
}

.blog-prose {
  max-width: 800px;
  margin: 0 auto;
}

/* Lead paragraph */
.blog-lead {
  font-size: 1.12rem;
  color: #2c2c2c;
  line-height: 1.9;
  font-weight: 400;
  border-left: 4px solid var(--primary);
  padding: 0.6rem 1.5rem;
  margin-bottom: 2.5rem;
  background: rgba(0,0,0,0.025);
  border-radius: 0 6px 6px 0;
}

/* H2 section headings */
.blog-prose h2 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  color: #1a1a1a;
  margin: 2.75rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eee;
  line-height: 1.3;
}

/* H3 sub-headings */
.blog-prose h3 {
  font-family: var(--font-head);
  font-size: 1.18rem;
  color: #222;
  margin: 2rem 0 0.6rem;
}

/* Body copy */
.blog-prose p {
  color: #454545;
  line-height: 1.95;
  margin-bottom: 1.3rem;
  font-size: 1rem;
}

/* Lists */
.blog-prose ul {
  padding-left: 1.6rem;
  margin-bottom: 1.4rem;
}
.blog-prose ul li {
  color: #454545;
  line-height: 1.9;
  margin-bottom: 0.55rem;
  font-size: 1rem;
}
.blog-prose ul li::marker { color: var(--primary); }

.blog-prose a { color: var(--primary); }
.blog-prose a.btn { text-decoration: none; }
.blog-prose a.btn-primary { color: #fff; }
.blog-prose a.btn-primary:hover { color: #fff; }
.blog-prose a.btn-outline-dark { color: var(--dark, #1a1a1a); }
.blog-prose a.btn-outline-light { color: var(--dark, #1a1a1a); }
.blog-prose strong { color: #1a1a1a; font-weight: 700; }
.blog-prose em { font-style: italic; color: #555; }

/* ── Blog tags ───────────────────────────────────────────── */
.blog-tags {
  max-width: 800px;
  margin: 3rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.blog-tag-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 0.25rem;
}
.blog-tag {
  font-size: 0.76rem;
  background: #f6f2ee;
  color: #666;
  border: 1px solid #e5ddd5;
  padding: 0.22rem 0.7rem;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.blog-tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── Related posts ───────────────────────────────────────── */
.blog-related {
  max-width: 800px;
  margin: 3.5rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid #eee;
}
.blog-related h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 580px) { .blog-related-grid { grid-template-columns: 1fr; } }

.blog-related-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.blog-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* Related card image */
.blog-related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-related-card span {
  display: block;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.45;
}

/* ── Blog responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .blog-post-hero { padding: 5rem 0 2.5rem; min-height: 360px; }
  .blog-post-body { padding: 2.5rem 0 2rem; }
  .blog-prose h2 { font-size: 1.3rem; margin-top: 2.25rem; }
  .blog-prose h3 { font-size: 1.08rem; }
  .blog-lead { font-size: 1rem; padding: 0.5rem 1rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name { font-size: 1.35rem; }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-links li { margin-bottom: 0.7rem; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1.1rem;
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item .fc-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Legal links row */
.footer-legal {
  text-align: center;
  padding: 1.2rem 0 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.85); }
.footer-legal-sep {
  margin: 0 0.6rem;
  color: rgba(255,255,255,0.2);
}

.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: rgba(255,255,255,0.85);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-consent.show { display: flex; }
.cookie-consent p { margin: 0; max-width: 700px; }
.cookie-consent a { color: var(--primary-light, #e8a87c); text-decoration: underline; }
.cookie-consent-btn {
  background: var(--primary, #c0392b);
  color: #fff;
  border: none;
  padding: 0.5rem 1.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-consent-btn:hover { background: #a8350a; }

.footer-bottom a {
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--primary-light); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 380px;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1596797038530-2c107229654b?w=1400&q=80') center/cover no-repeat;
  opacity: 0.18;
}

.page-hero-content {
  position: relative; z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page { background: var(--bg); }

.menu-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.menu-category { margin-bottom: 4rem; }

.category-title {
  font-size: 1.5rem;
  font-family: var(--font-head);
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-title::before {
  content: '';
  width: 4px; height: 28px;
  background: var(--primary);
  border-radius: 2px;
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.menu-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.menu-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.menu-item-img {
  width: 70px; height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.menu-item-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.menu-item-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.veg-badge, .nonveg-badge {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid;
  border-radius: 2px;
  position: relative;
  margin-bottom: 4px;
}

.veg-badge {
  border-color: #2E7D32;
}

.veg-badge::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2E7D32;
}

.nonveg-badge {
  border-color: #C62828;
}

.nonveg-badge::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #C62828;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page { background: var(--bg); }

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-full-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(26,18,9,0.85));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-full-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page { background: var(--bg); }

.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Odia Food Heritage two-column layout */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.heritage-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.heritage-img-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
}

.heritage-img-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
}

.story-img img { width: 100%; height: 100%; object-fit: cover; }

.story-content .section-title { margin-bottom: 1.2rem; }

.story-content p {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.8rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.team-section { background: var(--bg-card); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { background: var(--bg); }

.branches-section { padding-top: 0; }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-bottom: 5rem;
}

.branch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.branch-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.branch-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.branch-num {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.branch-header h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.branch-badge {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.branch-body {
  padding: 1.5rem;
}

.branch-info-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: var(--text);
}

.bi-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

.branch-info-row strong { color: var(--dark); }

.branch-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.branch-phone:hover { color: var(--primary-dark); }

.contact-form-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-block { padding-top: 0.5rem; }

.contact-info-block .section-title { margin-bottom: 0.8rem; }

.contact-info-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.cd-icon {
  width: 44px; height: 44px;
  background: rgba(200,68,10,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cd-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.cd-text span, .cd-text a {
  font-size: 0.88rem;
  color: var(--text-light);
}

.cd-text a:hover { color: var(--primary); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,68,10,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.map-section { padding-top: 0; background: var(--bg); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats { right: 2%; gap: 1rem; }
  .stat-item { padding: 1rem 1.1rem; }
  .about-strip .container { grid-template-columns: 1fr; gap: 3rem; }
  .about-story .container { grid-template-columns: 1fr; }
  .heritage-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .heritage-imgs { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .heritage-img-item { height: 160px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 1024px) {
  .values-grid[style*="repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile CTA inside menu — hidden on desktop */
.nav-mobile-cta { display: none; }

/* nav-overlay not needed for dropdown style — keep stub for JS compat */
.nav-overlay { display: none !important; }

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 3px solid var(--primary);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    /* hidden by default */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }

  .nav-menu.open {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.85rem 1.5rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
    display: block;
    text-align: center;
  }
  .nav-menu li:last-child .nav-link { border-bottom: none; }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--primary);
    background: rgba(200,68,10,0.04);
  }
  .nav-menu .nav-link::after { display: none; }

  .nav-mobile-cta {
    display: flex !important;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border);
  }
  .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.5rem;
  }

  .hamburger { display: flex; z-index: 1001; }

  .nav-cta { display: none; }

  /* ---- Mobile Hero ---- */
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
    height: auto;
    padding: 80px 0 0;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(26,18,9,0.50) 0%,
      rgba(26,18,9,0.80) 55%,
      rgba(26,18,9,0.96) 100%);
  }

  .hero-bg::before { opacity: 0.45; }

  .hero .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-content { max-width: 100%; }

  .hero-badge { flex-wrap: wrap; max-width: 100%; }
  .hero-badge span { white-space: normal; }

  .hero h1 { font-size: 2rem; line-height: 1.15; }

  .hero-desc { font-size: 0.92rem; margin-bottom: 1.5rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-actions .btn { justify-content: center; }

  .hero-stats {
    position: static;
    display: flex;
    width: 100%;
    justify-content: space-around;
    gap: 0;
    margin-top: 0;
    padding: 0.9rem 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .stat-item {
    flex: 1;
    padding: 0.6rem 0.5rem;
    background: transparent;
    border: none;
    backdrop-filter: none;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
  }
  .stat-item:last-child { border-right: none; }

  .stat-number { font-size: 1.6rem; }
  .stat-label  { font-size: 0.68rem; }

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

  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-item:nth-child(1) { grid-column: span 2 !important; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.25rem; }

  .form-row { grid-template-columns: 1fr; }
  .values-grid[style*="repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero { min-height: unset; height: auto; padding: 80px 0 0; }
  .stat-number { font-size: 1.4rem; }
  .branches-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 1.5rem; }

  .logo-img { height: 52px; max-width: 160px; }

  .dishes-grid { grid-template-columns: 1fr; }
  .pitha-grid  { grid-template-columns: 1fr 1fr; }

  .section-title { font-size: 1.6rem; }

  .footer-logo-box { display: block; text-align: center; }
  .footer-logo-box .logo-img { margin: 0 auto; }
}

/* ---- Ad Slots ---- */
.ad-slot {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ad-slot--top    { border-top: none; }
.ad-slot--bottom { border-bottom: none; }
.ad-slot ins,
.ad-slot iframe,
.ad-slot img { max-width: 100%; }

/* ---- FAQ Accordion ---- */
.faq-section { padding: 5rem 0; background: var(--bg); }

.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.faq-icon i {
  font-size: 0.7rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.38s ease;
  padding: 0 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.35rem;
}
